aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan Oberkirch2013-07-06 03:32:02 +0200
committerMilan Oberkirch2013-07-06 03:32:02 +0200
commitad78f672013e4a927176ed42cc8685bccade42e2 (patch)
tree0a3464c97af4e953c9880ff6256881b1dabdcb9c
downloadaur-ad78f672013e4a927176ed42cc8685bccade42e2.tar.gz
Initial commit.
-rw-r--r--.SRCINFO14
-rw-r--r--LICENSE.md31
-rw-r--r--PKGBUILD28
-rw-r--r--README.md1
-rwxr-xr-xpdf-decrypt.bash49
-rw-r--r--pdf-decrypt.desktop12
-rw-r--r--pdf-decrypt.pngbin0 -> 4805 bytes
-rw-r--r--pdf-decrypt.svg979
8 files changed, 1114 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..44d8bc3c8108
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = pdf-decrypt
+ pkgdesc = Remove password-protection from PDFs permanently.
+ pkgver = 0
+ pkgrel = 1
+ url = https://github.com/zvynar/pdf-decrypt
+ arch = any
+ license = MIT
+ makedepends = git
+ depends = qpdf
+ source = git://github.com/zvynar/pdf-decrypt.git
+ md5sums = SKIP
+
+pkgname = pdf-decrypt
+
diff --git a/LICENSE.md b/LICENSE.md
new file mode 100644
index 000000000000..e85c1c681032
--- /dev/null
+++ b/LICENSE.md
@@ -0,0 +1,31 @@
+Copyright (2013) Milan Oberkirch.
+
+Text-Files (except ending in .svg):
+----------------------------------
+
+Permission is hereby granted, free of charge, to any person (except persons
+working on behalf of the military, a military organizations or organizations
+promoting or manufacturing firearms or explosive weapons) obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
+of the Software, and to permit persons to whom the Software is furnished to do
+so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+pdf-decrypt.png and pdf-decrypt.svg
+-----------------------------------
+
+Are under CC-BY-SA containing work from FĂșlvio
+(http://commons.wikimedia.org/wiki/User:F%C3%BAlvio) and Benjamin D. Esham
+(http://commons.wikimedia.org/wiki/User:F%C3%BAlvio).
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..195c62f6ac06
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,28 @@
+pkgname=pdf-decrypt
+_gitname=pdf-decrypt
+pkgver=0
+pkgrel=1
+pkgdesc="Remove password-protection from PDFs permanently."
+arch=('any')
+url="https://github.com/zvynar/pdf-decrypt"
+license=('MIT')
+depends=('qpdf')
+makedepends=('git')
+source=('git://github.com/zvynar/pdf-decrypt.git')
+md5sums=('SKIP')
+
+pkgver() {
+ cd $_gitname
+ ## Use the tag of the last commit
+ # git describe --always | sed 's|-|.|g'
+ echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
+}
+
+package() {
+ install -Dm755 "$srcdir/$_gitname/$pkgname.bash" "$pkgdir/usr/bin/$pkgname"
+ install -Dm755 "$srcdir/$_gitname/$pkgname.png"\
+ "$pkgdir/usr/share/pixmaps/$pkgname.png"
+ install -Dm755 "$srcdir/$_gitname/$pkgname.desktop"\
+ "$pkgdir/usr/share/applications/$pkgname.desktop"
+
+}
diff --git a/README.md b/README.md
new file mode 100644
index 000000000000..c2dc7be3689a
--- /dev/null
+++ b/README.md
@@ -0,0 +1 @@
+Removes password-protection from a PDF-document permanently.
diff --git a/pdf-decrypt.bash b/pdf-decrypt.bash
new file mode 100755
index 000000000000..999d9698d561
--- /dev/null
+++ b/pdf-decrypt.bash
@@ -0,0 +1,49 @@
+#!/bin/bash
+
+__NAME__=pdf-decrypt
+
+function pdf-decrypt() {
+ function pdf-decrypt-error-handler() {
+ local errno=$1
+ if [ $errno -gt 0 ]; then
+ echo "The program 'qpdf' exited with code $errno!" > /dev/stderr
+ echo "Press Enter to exit." > /dev/stderr
+ read
+ exit $errno
+ fi
+ }
+ local errno=''
+ case $1 in -h|--help|''):
+ echo Usage: \"$0 [file]\".
+ echo Removes passwort-protection from PDF-File called [file].
+ exit 0
+ ;;
+ esac
+ if [ -f "$1" ]; then
+ local file="$1"
+ local encryptionStatus="$(qpdf --show-encryption $file 2>/dev/null)"
+ local tempFile=""
+ local password=""
+ else
+ echo \"$1\" is not a file. > /dev/stderr
+ exit 1
+ fi
+
+ if [[ "$encryptionStatus" == "File is not encrypted" ]]; then
+ echo $encryptionStatus.
+ else
+ echo "Passwort: "
+ read password
+
+ tempFile=$(mktemp)
+ qpdf --password="$password" --decrypt "$file" "$tempFile" && \
+ mv "$tempFile" "$file"
+ pdf-decrypt-error-handler $?
+ fi
+
+ xdg-open "$file"
+}
+
+if [[ $0 == *${__NAME__}.bash ]]; then
+ $__NAME__ "$@"
+fi
diff --git a/pdf-decrypt.desktop b/pdf-decrypt.desktop
new file mode 100644
index 000000000000..82cac822f9aa
--- /dev/null
+++ b/pdf-decrypt.desktop
@@ -0,0 +1,12 @@
+[Desktop Entry]
+Version=1.0
+Encoding=UTF-8
+Type=Application
+Name=PDF Decryptor
+Comment=Removes password-protection from a PDF-document.
+Exec=/usr/bin/pdf-decrypt %u
+Icon=/usr/share/pixmaps/pdf-decrypt.png
+Terminal=true
+Categories=Office;
+MimeType=application/pdf;
+StartupNotify=true
diff --git a/pdf-decrypt.png b/pdf-decrypt.png
new file mode 100644
index 000000000000..74d5a1775795
--- /dev/null
+++ b/pdf-decrypt.png
Binary files differ
diff --git a/pdf-decrypt.svg b/pdf-decrypt.svg
new file mode 100644
index 000000000000..901bcff9350c
--- /dev/null
+++ b/pdf-decrypt.svg
@@ -0,0 +1,979 @@
+<?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"
+ version="1.1"
+ width="48"
+ height="48"
+ id="svg2"
+ inkscape:version="0.48.4 r9939"
+ sodipodi:docname="pdf-decrypt.svg"
+ inkscape:export-filename="/home/milan/Programme/pdf-decrypt/pdf-decrypt.png"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1364"
+ inkscape:window-height="742"
+ id="namedview76"
+ showgrid="false"
+ inkscape:zoom="12.291667"
+ inkscape:cx="25.265547"
+ inkscape:cy="19.84457"
+ inkscape:window-x="2"
+ inkscape:window-y="0"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="g3216"
+ fit-margin-top="0"
+ fit-margin-left="0"
+ fit-margin-right="0"
+ fit-margin-bottom="0" />
+ <defs
+ id="defs4">
+ <radialGradient
+ cx="55"
+ cy="125"
+ r="14.375"
+ fx="55"
+ fy="125"
+ id="radialGradient4753"
+ xlink:href="#linearGradient12512"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ cx="24.306795"
+ cy="42.07798"
+ r="15.821514"
+ fx="24.306795"
+ fy="42.07798"
+ id="radialGradient4548"
+ xlink:href="#linearGradient4542"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.284916,0,30.08928)" />
+ <radialGradient
+ cx="20.892099"
+ cy="64.567902"
+ r="5.257"
+ fx="20.892099"
+ fy="64.567902"
+ id="radialGradient2285"
+ xlink:href="#aigrd3"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.229703,0,0,0.229703,4.613529,3.979808)" />
+ <radialGradient
+ cx="20.892099"
+ cy="114.5684"
+ r="5.256"
+ fx="20.892099"
+ fy="114.5684"
+ id="radialGradient2283"
+ xlink:href="#aigrd2"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.229703,0,0,0.229703,4.613529,3.979808)" />
+ <radialGradient
+ cx="8.1435566"
+ cy="7.2678967"
+ r="38.158695"
+ fx="8.1435566"
+ fy="7.2678967"
+ id="radialGradient15668"
+ xlink:href="#linearGradient15662"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.968273,0,0,1.032767,3.353553,0.646447)" />
+ <radialGradient
+ cx="33.966679"
+ cy="35.736916"
+ r="86.70845"
+ fx="33.966679"
+ fy="35.736916"
+ id="radialGradient15658"
+ xlink:href="#linearGradient259"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="scale(0.960493,1.041132)" />
+ <radialGradient
+ cx="8.824419"
+ cy="3.7561285"
+ r="37.751713"
+ fx="8.824419"
+ fy="3.7561285"
+ id="radialGradient15656"
+ xlink:href="#linearGradient269"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.968273,0,0,1.032767,3.353553,0.646447)" />
+ <linearGradient
+ id="linearGradient259">
+ <stop
+ id="stop260"
+ style="stop-color:#fafafa;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop261"
+ style="stop-color:#bbbbbb;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient269">
+ <stop
+ id="stop270"
+ style="stop-color:#a3a3a3;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop271"
+ style="stop-color:#4c4c4c;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ cx="20.892099"
+ cy="114.5684"
+ r="5.256"
+ fx="20.892099"
+ fy="114.5684"
+ id="aigrd2"
+ gradientUnits="userSpaceOnUse">
+ <stop
+ id="stop15566"
+ style="stop-color:#f0f0f0;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop15568"
+ style="stop-color:#9a9a9a;stop-opacity:1"
+ offset="1" />
+ </radialGradient>
+ <radialGradient
+ cx="20.892099"
+ cy="64.567902"
+ r="5.257"
+ fx="20.892099"
+ fy="64.567902"
+ id="aigrd3"
+ gradientUnits="userSpaceOnUse">
+ <stop
+ id="stop15573"
+ style="stop-color:#f0f0f0;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop15575"
+ style="stop-color:#9a9a9a;stop-opacity:1"
+ offset="1" />
+ </radialGradient>
+ <linearGradient
+ id="linearGradient15662">
+ <stop
+ id="stop15664"
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop15666"
+ style="stop-color:#f8f8f8;stop-opacity:1"
+ offset="1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4542">
+ <stop
+ id="stop4544"
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop4546"
+ style="stop-color:#000000;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ cx="55"
+ cy="125"
+ r="14.375"
+ fx="55"
+ fy="125"
+ id="radialGradient278"
+ xlink:href="#linearGradient12512"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient12512">
+ <stop
+ id="stop12513"
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="0" />
+ <stop
+ id="stop12517"
+ style="stop-color:#fff520;stop-opacity:0.89108908"
+ offset="0.5" />
+ <stop
+ id="stop12514"
+ style="stop-color:#fff300;stop-opacity:0"
+ offset="1" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4542"
+ id="radialGradient3091"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.284916,0,30.08928)"
+ cx="24.306795"
+ cy="42.07798"
+ fx="24.306795"
+ fy="42.07798"
+ r="15.821514" />
+ </defs>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="layer1"
+ transform="translate(-135.66551,-174.56428)">
+ <g
+ transform="matrix(0.97964328,0,0,0.91743998,132.89475,176.04663)"
+ id="g3216">
+ <g
+ id="layer6">
+ <path
+ d="m 40.128309,42.07798 a 15.821514,4.5078058 0 1 1 -31.643028,0 15.821514,4.5078058 0 1 1 31.643028,0 z"
+ transform="translate(0,0.707108)"
+ id="path3667"
+ style="opacity:0.7836257;color:#000000;fill:url(#radialGradient3091);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="layer5"
+ style="display:inline"
+ transform="matrix(1.1411789,0,0,1.1406603,-3.4848338,-3.1281643)">
+ <rect
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
+ id="rect3147"
+ width="26.033897"
+ height="33.111862"
+ x="9.7627115"
+ y="7.0779672"
+ transform="matrix(0.89449579,0,0,0.95557771,5.532147,1.3259147)" />
+ <g
+ transform="matrix(0.909091,0,0,1,2.363628,0)"
+ id="g2253">
+ <rect
+ width="22.000004"
+ height="1"
+ rx="0.15156493"
+ ry="0.065390877"
+ x="15.000002"
+ y="9"
+ id="rect15686"
+ style="color:#000000;fill:#9b9b9b;fill-opacity:0.54970757;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:block;overflow:visible" />
+ <rect
+ width="22.000004"
+ height="1"
+ rx="0.15156493"
+ ry="0.065390877"
+ x="15.000002"
+ y="11"
+ id="rect15688"
+ style="color:#000000;fill:#9b9b9b;fill-opacity:0.54970757;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:block;overflow:visible" />
+ <rect
+ width="22.000004"
+ height="1"
+ rx="0.15156493"
+ ry="0.065390877"
+ x="15.000002"
+ y="13"
+ id="rect15690"
+ style="color:#000000;fill:#9b9b9b;fill-opacity:0.54970757;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:block;overflow:visible" />
+ <rect
+ width="22.000004"
+ height="1"
+ rx="0.15156493"
+ ry="0.065390877"
+ x="15.000002"
+ y="15"
+ id="rect15692"
+ style="color:#000000;fill:#9b9b9b;fill-opacity:0.54970757;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:block;overflow:visible" />
+ <rect
+ width="22.000004"
+ height="1"
+ rx="0.15156493"
+ ry="0.065390877"
+ x="15.000002"
+ y="17"
+ id="rect15694"
+ style="color:#000000;fill:#9b9b9b;fill-opacity:0.54970757;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:block;overflow:visible" />
+ <rect
+ width="22.000004"
+ height="1"
+ rx="0.15156493"
+ ry="0.065390877"
+ x="15.000002"
+ y="19"
+ id="rect15696"
+ style="color:#000000;fill:#9b9b9b;fill-opacity:0.54970757;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:block;overflow:visible" />
+ <rect
+ width="22.000004"
+ height="1"
+ rx="0.15156493"
+ ry="0.065390877"
+ x="15.000002"
+ y="21"
+ id="rect15698"
+ style="color:#000000;fill:#9b9b9b;fill-opacity:0.54970757;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:block;overflow:visible" />
+ <rect
+ width="22.000004"
+ height="1"
+ rx="0.15156493"
+ ry="0.065390877"
+ x="15.000002"
+ y="23"
+ id="rect15700"
+ style="color:#000000;fill:#9b9b9b;fill-opacity:0.54970757;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:block;overflow:visible" />
+ <rect
+ width="9.9000053"
+ height="1"
+ rx="0.068204239"
+ ry="0.065390877"
+ x="14.999992"
+ y="25"
+ id="rect15732"
+ style="color:#000000;fill:#9b9b9b;fill-opacity:0.54970757;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:block;overflow:visible" />
+ <rect
+ width="22.000004"
+ height="1"
+ rx="0.15156493"
+ ry="0.065390877"
+ x="14.999992"
+ y="29"
+ id="rect15736"
+ style="color:#000000;fill:#9b9b9b;fill-opacity:0.54970757;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:block;overflow:visible" />
+ <rect
+ width="22.000004"
+ height="1"
+ rx="0.15156493"
+ ry="0.065390877"
+ x="14.999992"
+ y="31"
+ id="rect15738"
+ style="color:#000000;fill:#9b9b9b;fill-opacity:0.54970757;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:block;overflow:visible" />
+ <rect
+ width="22.000004"
+ height="1"
+ rx="0.15156493"
+ ry="0.065390877"
+ x="14.999992"
+ y="33"
+ id="rect15740"
+ style="color:#000000;fill:#9b9b9b;fill-opacity:0.54970757;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:block;overflow:visible" />
+ <rect
+ width="22.000004"
+ height="1"
+ rx="0.15156493"
+ ry="0.065390877"
+ x="14.999992"
+ y="35"
+ id="rect15742"
+ style="color:#000000;fill:#9b9b9b;fill-opacity:0.54970757;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:block;overflow:visible" />
+ <rect
+ width="15.400014"
+ height="1"
+ rx="0.10609552"
+ ry="0.065390877"
+ x="14.999992"
+ y="37"
+ id="rect15744"
+ style="color:#000000;fill:#9b9b9b;fill-opacity:0.54970757;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:block;overflow:visible" />
+ </g>
+ </g>
+ <g
+ transform="matrix(1.4659376,0,0,1.5653297,-19.356933,-12.753648)"
+ style="font-size:42.19268799px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:ClearlyU"
+ id="text3723">
+ <path
+ d="m 32.295191,23.973695 c 0.410674,3e-6 0.725713,0.07876 0.945116,0.236279 0.222213,0.154709 0.33332,0.386769 0.333323,0.696179 -3e-6,0.168773 -0.03094,0.313634 -0.09282,0.434585 -0.05907,0.118141 -0.14627,0.215184 -0.261595,0.29113 -0.112516,0.07314 -0.250345,0.126579 -0.413488,0.160332 -0.163147,0.03375 -0.347388,0.05063 -0.552724,0.05063 l -0.324884,0 0,1.084352 -0.409269,0 0,-2.88176 c 0.115326,-0.02813 0.24331,-0.04641 0.383953,-0.05485 0.143455,-0.01125 0.274252,-0.01687 0.392392,-0.01688 m 0.03375,0.358638 c -0.174397,2e-6 -0.308007,0.0042 -0.40083,0.01266 l 0,1.147641 0.308007,0 c 0.140641,1e-6 0.267219,-0.0084 0.379734,-0.02532 0.112512,-0.01969 0.206742,-0.05063 0.282691,-0.09282 0.07876,-0.045 0.139234,-0.10548 0.181428,-0.181428 0.04219,-0.07595 0.06329,-0.172988 0.06329,-0.29113 -2e-6,-0.112512 -0.0225,-0.205335 -0.06751,-0.278472 -0.04219,-0.07313 -0.101264,-0.130795 -0.177209,-0.17299 -0.07314,-0.045 -0.158928,-0.07594 -0.257376,-0.09282 -0.09845,-0.01687 -0.202526,-0.02531 -0.312226,-0.02532"
+ style="font-size:4.2192688px;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
+ id="path3728"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 36.482486,25.463097 c -3e-6,0.253157 -0.03938,0.473965 -0.11814,0.662425 -0.07876,0.185649 -0.189869,0.340355 -0.333322,0.46412 -0.143457,0.120952 -0.315041,0.21237 -0.514751,0.274252 -0.199713,0.05907 -0.419115,0.08861 -0.658206,0.08861 -0.11814,0 -0.248937,-0.0056 -0.392392,-0.01688 -0.140642,-0.0084 -0.268627,-0.02672 -0.383953,-0.05485 l 0,-2.835348 c 0.115326,-0.02813 0.243311,-0.04641 0.383953,-0.05485 0.143455,-0.01125 0.274252,-0.01687 0.392392,-0.01688 0.239091,3e-6 0.458493,0.03094 0.658206,0.09282 0.19971,0.05907 0.371294,0.15049 0.514751,0.274252 0.143453,0.120955 0.25456,0.275662 0.333322,0.46412 0.07876,0.18565 0.118137,0.405051 0.11814,0.658206 m -1.590664,1.130764 c 0.388171,0 0.677894,-0.09845 0.869169,-0.295349 0.191271,-0.199711 0.286908,-0.478183 0.28691,-0.835415 -2e-6,-0.35723 -0.09564,-0.634295 -0.28691,-0.831196 -0.191275,-0.19971 -0.480998,-0.299566 -0.869169,-0.299568 -0.115328,2e-6 -0.205339,0.0014 -0.270034,0.0042 -0.06188,0.0028 -0.105482,0.0056 -0.130797,0.0084 l 0,2.236212 c 0.02531,0.0028 0.06891,0.0056 0.130797,0.0084 0.0647,0.0028 0.154706,0.0042 0.270034,0.0042"
+ style="font-size:4.2192688px;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
+ id="path3730"
+ inkscape:connector-curvature="0" />
+ <path
+ d="m 37.089599,26.927183 0,-2.923953 1.763654,0 0,0.350199 -1.354385,0 0,0.881827 1.202492,0 0,0.34598 -1.202492,0 0,1.345947 -0.409269,0"
+ style="font-size:4.2192688px;font-family:Ubuntu;-inkscape-font-specification:Ubuntu"
+ id="path3732"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ transform="matrix(0.38977041,0,0,0.38676206,134.87771,173.79731)"
+ id="g2995">
+ <path
+ style="fill:#f4f4f4"
+ d="M 14.466031,124.59997 C 10.455138,122.85262 5.0475303,117.358 3.3571436,113.31234 2.2809117,110.73655 2.0045459,100.69141 2.021962,64.782119 2.0421608,23.135445 2.190181,19.178863 3.865662,15.5 6.2083259,10.3562 12.797993,4.4275638 17.679221,3.0721238 23.008775,1.5921908 103.1344,1.633105 108.5,3.1184992 c 5.92548,1.6403868 12.87454,9.0206728 14.88908,15.8130018 2.30373,7.767426 2.40413,84.034489 0.12074,91.723489 -1.68675,5.67988 -7.03486,11.83079 -12.14211,13.96473 -4.72224,1.97308 -92.368314,1.95521 -96.901679,-0.0198 z M 89.065741,97.964816 C 90.863424,97.002726 91,95.710578 91,79.664816 91,61.594145 90.642988,60.01526 86.55,59.984687 82.339894,59.953239 81.726266,58.632698 81.610493,49.354763 81.523234,42.36194 81.06808,39.76475 79.445934,37.003398 c -6.94197,-11.817197 -25.949898,-11.817197 -32.891868,0 -1.63501,2.78325 -2.066612,5.296911 -2.115563,12.321084 C 44.373831,58.604549 43.742994,59.95262 39.45,59.984687 35.357436,60.015257 35,61.594853 35,79.65031 c 0,15.373902 0.190357,17.361182 1.75,18.269591 2.374592,1.383073 49.739389,1.423737 52.315741,0.04492 z M 51.664505,58.521648 c -1.873752,-1.873753 -1.089961,-16.899223 1.053551,-20.196825 3.86914,-5.952325 17.912146,-5.43618 20.964499,0.770543 1.888127,3.839358 2.317395,17.761827 0.60058,19.478642 -2.062287,2.062287 -20.546773,2.019497 -22.61863,-0.05236 z"
+ id="path3215"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fcf4ea"
+ d="M 17.557825,124.52865 C 10.04503,121.81275 4.9835367,116.36629 2.9482864,108.80795 2.2719691,106.2963 2.0069773,89.785031 2.2004128,62.208989 L 2.5,19.5 5.6060798,14 C 7.7667152,10.174118 10.177926,7.5868448 13.52766,5.5 l 4.8155,-3 44.57842,0 c 39.62218,0 44.91427,0.184242 47.5992,1.6571483 4.19145,2.2993515 8.28897,6.5860467 10.82975,11.3297457 2.108,3.935673 2.14947,4.881386 2.14947,49.013106 0,44.15846 -0.0403,45.0748 -2.15268,49 -2.49463,4.63539 -5.43013,7.5101 -10.34732,10.13303 -3.24018,1.72837 -6.69212,1.88381 -46.5,2.09385 -35.137218,0.1854 -43.720848,-0.0337 -46.942175,-1.19823 z M 89.065741,97.964816 C 90.863936,97.002452 91,95.7097 91,79.587261 91,60.76729 90.934754,60.536951 85.283612,59.406722 L 82.257839,58.801568 81.787048,49.024676 C 81.41295,41.25579 80.86527,38.518071 79.12042,35.694844 c -6.314139,-10.216492 -25.926701,-10.216492 -32.24084,0 -1.74485,2.823227 -2.29253,5.560946 -2.666628,13.329832 l -0.470791,9.776892 -3.025773,0.605154 C 35.06567,60.536866 35,60.768533 35,79.572755 c 0,15.447764 0.189878,17.438458 1.75,18.347146 2.374592,1.383073 49.739389,1.423737 52.315741,0.04492 z M 53.25,59.294267 C 51.109145,58.88192 51,58.410051 51,49.566813 51,40.956232 51.186124,40.086603 53.530863,37.741865 56.386736,34.885991 61.42781,33.611268 66.25,34.525612 73.193779,35.842233 75,39.100377 75,50.309259 L 75,58.75 71.875,59.375 C 68.501764,60.049647 56.910994,59.999405 53.25,59.29427 z"
+ id="path3213"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#f8ede5"
+ d="M 17.557825,124.52865 C 10.04503,121.81275 4.9835367,116.36629 2.9482864,108.80795 2.2719691,106.2963 2.0069773,89.785031 2.2004128,62.208989 2.4914654,20.716682 2.5612335,19.385676 4.6494695,15.486894 7.4159311,10.321851 11.589054,6.1390348 16,4.1099999 18.995665,2.731994 25.312502,2.4563863 59.837796,2.1973285 86.396123,1.9980502 101.98059,2.269373 105.45951,2.9915948 c 6.2694,1.3015228 12.51965,6.185548 15.82498,12.3658512 2.19315,4.10075 2.21551,4.59666 2.21551,49.142554 0,42.01475 -0.12385,45.23219 -1.86697,48.5 -2.62293,4.91719 -5.49764,7.85269 -10.13303,10.34732 -3.8967,2.09709 -5.1105,2.15854 -47,2.37956 -35.137218,0.1854 -43.720848,-0.0337 -46.942175,-1.19823 z M 90.581977,97.55887 C 91.667065,96.073494 92,91.833492 92,79.5 92,61.584537 91.612459,60.279307 85.951145,59.12759 L 82.5,58.425502 82,48.962751 C 81.437677,38.320498 79.913908,34.501256 74.765089,30.828838 71.961444,28.829127 70.298725,28.5 63,28.5 55.701275,28.5 54.038556,28.829127 51.234911,30.828838 46.086092,34.501256 44.562323,38.320498 44,48.962751 l -0.5,9.462751 -3.451145,0.702088 C 34.387541,60.279307 34,61.584537 34,79.5 c 0,16.354841 0.43198,18.496482 4,19.830941 0.825,0.308554 12.67439,0.472819 26.331977,0.365033 23.303428,-0.183911 24.919264,-0.315462 26.25,-2.137104 z M 51.69757,58.364237 c -1.165714,-1.165714 -0.77879,-15.091872 0.497115,-17.892179 3.41545,-7.496097 18.569058,-7.285073 21.711872,0.302351 0.668779,1.614576 1.058243,6.116288 0.890854,10.297158 L 74.5,58.5 63.44757,58.780903 c -6.078837,0.154497 -11.366337,-0.033 -11.75,-0.416666 z M 108.15136,8.75 C 107.28252,7.8802093 102.58314,7.4618629 92.701365,7.3746182 L 78.5,7.2492364 92.667245,7.8746182 C 100.45923,8.2185782 107.17173,8.8375 107.58391,9.25 c 0.41218,0.4125 0.98942,0.75 1.28276,0.75 0.29333,0 -0.0286,-0.5625 -0.71531,-1.25 z"
+ id="path3211"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#eaeaea"
+ d="M 17.557825,124.52865 C 10.04503,121.81275 4.9835367,116.36629 2.9482864,108.80795 2.271871,106.29594 2.0069493,89.760582 2.2004128,62.128674 L 2.5,19.339371 5.5236586,14.450612 C 7.1866708,11.761795 10.487935,8.1979371 12.8598,6.5309272 L 17.172284,3.5 l 45.736887,0 45.736889,0 4.02592,2.6642293 c 5.58941,3.6988949 10.0569,10.7793647 10.82929,17.1631827 0.34421,2.844924 0.48474,23.397588 0.31228,45.672588 -0.28852,37.2668 -0.46259,40.77941 -2.18052,44 -2.62293,4.91719 -5.49764,7.85269 -10.13303,10.34732 -3.8967,2.09709 -5.1105,2.15854 -47,2.37956 -35.137218,0.1854 -43.720848,-0.0337 -46.942175,-1.19823 z M 89.777494,98.443296 C 91.926956,96.937754 92,96.324115 92,79.772037 92,61.333525 91.387188,59 86.545012,59 82.786823,59 82,57.086681 82,47.947883 82,38.191999 80.343323,34.495782 74.07832,30.273797 c -4.887676,-3.293805 -17.268964,-3.293805 -22.15664,0 C 45.656677,34.495782 44,38.191999 44,47.947883 44,56.983428 43.202419,59 39.628741,59 c -1.084193,0 -2.794193,0.744744 -3.8,1.654988 C 34.191425,62.136738 34,64.119643 34,79.598284 34,96.329914 34.07156,96.936717 36.222506,98.443296 38.087558,99.749629 42.394286,100 63,100 83.605714,100 87.912442,99.749629 89.777494,98.443296 z M 51.991588,57.489864 c -0.869056,-1.047148 -1.102361,-3.862113 -0.760975,-9.181627 0.457522,-7.129173 0.724183,-7.878656 3.772113,-10.60198 2.965125,-2.649339 3.800132,-2.887338 8.70346,-2.480716 8.074175,0.669574 10.258497,3.268214 11.001153,13.087838 C 75.496104,58.742665 75.21419,59 63,59 55.519641,59 52.952637,58.647858 51.991588,57.489864 z M 112.43694,10.897966 C 110.44097,7.6684241 105.13843,6.9994778 82.782119,7.1568419 L 60.5,7.3136838 82.954659,8.2374835 c 14.675407,0.603756 23.509691,1.3872652 25.500001,2.2615845 3.84728,1.690067 4.84184,1.789691 3.98228,0.398898 z"
+ id="path3209"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#f9e4d8"
+ d="M 18.764045,124.02464 C 13.5573,122.41813 8.9707199,118.80624 6.2411522,114.16297 L 3.5,109.5 3.5,64 3.5,18.5 6,14.044405 C 7.375,11.593827 10.451264,8.2188273 12.836142,6.5444047 L 17.172284,3.5 l 45.736887,0 45.736889,0 4.12169,2.7276085 c 2.26694,1.5001846 5.38407,4.8751845 6.92697,7.4999995 L 122.5,18.5 l 0,45.5 0,45.5 -2.77658,4.72342 c -1.80051,3.06297 -4.43703,5.69949 -7.5,7.5 L 107.5,124.5 l -43,0.1844 c -23.65,0.10143 -44.23118,-0.19547 -45.735955,-0.65976 z M 89.777494,98.443296 C 91.926956,96.937754 92,96.324115 92,79.772037 92,61.333525 91.387188,59 86.545012,59 82.786823,59 82,57.086681 82,47.947883 82,38.191999 80.343323,34.495782 74.07832,30.273797 c -4.887676,-3.293805 -17.268964,-3.293805 -22.15664,0 C 45.656677,34.495782 44,38.191999 44,47.947883 44,56.983428 43.202419,59 39.628741,59 c -1.084193,0 -2.794193,0.744744 -3.8,1.654988 C 34.191425,62.136738 34,64.119643 34,79.598284 34,96.329914 34.07156,96.936717 36.222506,98.443296 38.087558,99.749629 42.394286,100 63,100 83.605714,100 87.912442,99.749629 89.777494,98.443296 z M 51.991588,57.489864 c -0.869056,-1.047148 -1.102361,-3.862113 -0.760975,-9.181627 0.457522,-7.129173 0.724183,-7.878656 3.772113,-10.60198 2.965125,-2.649339 3.800132,-2.887338 8.70346,-2.480716 8.074175,0.669574 10.258497,3.268214 11.001153,13.087838 C 75.496104,58.742665 75.21419,59 63,59 55.519641,59 52.952637,58.647858 51.991588,57.489864 z M 112.43694,10.897966 C 110.44097,7.6684241 105.13843,6.9994778 82.782119,7.1568419 L 60.5,7.3136838 82.954659,8.2374835 c 14.675407,0.603756 23.509691,1.3872652 25.500001,2.2615845 3.84728,1.690067 4.84184,1.789691 3.98228,0.398898 z"
+ id="path3207"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#f9ded0"
+ d="M 18.764045,124.02464 C 13.5573,122.41813 8.9707199,118.80624 6.2411522,114.16297 L 3.5,109.5 3.191131,67.5 C 3.0212531,44.4 3.15444,23.633419 3.4871019,21.352041 4.4117713,15.010708 9.2064321,8.5743468 15.248572,5.5634214 L 20.392689,3 62.946344,3.021962 c 47.617676,0.024576 47.342856,-0.012361 53.689376,7.215927 6.44885,7.344835 6.47701,7.599926 6.15505,55.763138 L 122.5,109.5 l -2.77658,4.72342 c -1.80051,3.06297 -4.43703,5.69949 -7.5,7.5 L 107.5,124.5 l -43,0.1844 c -23.65,0.10143 -44.23118,-0.19547 -45.735955,-0.65976 z M 89.777494,98.443296 C 91.929137,96.936226 92,96.332702 92,79.514725 92,60.645883 91.55049,59 86.397187,59 83.274571,59 82.907553,57.948595 82.681265,48.354914 82.460187,38.982119 80.356249,33.993697 75.124947,30.438935 72.013283,28.324505 70.400035,28 63,28 55.599965,28 53.986717,28.324505 50.875053,30.438935 45.547717,34.058954 43.526216,38.962488 43.360757,48.666283 43.202424,57.952162 42.812202,59 39.512412,59 34.458564,59 34,60.70657 34,79.514725 34,96.332702 34.070863,96.936226 36.222506,98.443296 38.087558,99.749629 42.394286,100 63,100 83.605714,100 87.912442,99.749629 89.777494,98.443296 z M 52.29969,57.57289 C 51.859861,56.787979 51.725,52.472933 52,47.983898 52.627871,37.734674 54.220125,36 63,36 c 8.779875,0 10.372129,1.734674 11,11.983898 0.275,4.489035 0.140139,8.804081 -0.29969,9.588992 C 73.091649,58.659093 70.535568,59 63,59 55.464432,59 52.908351,58.659093 52.29969,57.57289 z M 115,13.068094 C 115,12.555546 113.7625,11.268009 112.25,10.2069 106.2064,5.9669558 103.49623,5.7293 71.144658,6.6023597 54.290096,7.0572074 41.625,7.5680881 43,7.7376501 c 1.375,0.1695619 16.225,0.6402337 33,1.0459373 28.79533,0.6964155 30.69562,0.8581736 34,2.8941826 3.95926,2.439514 5,2.728907 5,1.390324 z"
+ id="path3205"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fde3c6"
+ d="M 18.764045,124.02464 C 13.5573,122.41813 8.9707199,118.80624 6.2411522,114.16297 L 3.5,109.5 3.2099503,66.255591 C 3.0073891,36.055109 3.2654027,21.728086 4.0653404,18.757344 5.561591,13.200694 13.021654,5.6351044 18.5,4.1184992 c 5.360515,-1.4839852 83.49672,-1.5247819 88.82078,-0.046375 5.24761,1.4571782 11.01401,6.9540658 13.59926,12.9636518 2.11886,4.925414 2.15374,5.834858 1.86955,48.741643 L 122.5,109.5 l -2.77658,4.72342 c -1.80051,3.06297 -4.43703,5.69949 -7.5,7.5 L 107.5,124.5 l -43,0.1844 c -23.65,0.10143 -44.23118,-0.19547 -45.735955,-0.65976 z M 89.920764,98.25 c 2.066141,-1.687762 2.132319,-2.390161 1.860784,-19.75 L 91.5,60.5 87.344302,59.184626 83.188604,57.869252 82.844302,48.608389 C 82.543004,40.504226 82.157052,38.829696 79.754266,35.201648 75.827838,29.273004 72.037653,27.539702 63,27.539702 c -9.037653,0 -12.827838,1.733302 -16.754266,7.661946 -2.402786,3.628048 -2.788738,5.302578 -3.090036,13.406741 L 42.811396,57.869252 38.655698,59.184626 34.5,60.5 34.218452,78.5 C 33.946917,95.859839 34.013095,96.562238 36.079236,98.25 37.99135,99.811943 40.884286,100 63,100 85.115714,100 88.00865,99.811943 89.920764,98.25 z M 53.25,58.337719 C 51.432741,57.60444 51.595081,43.683708 53.463015,40.071521 55.260122,36.596299 56.738268,35.991229 63.331787,36.031803 71.755761,36.083642 74,39.090935 74,50.32727 74,56.206186 73.664962,57.914589 72.418213,58.393011 70.546925,59.111092 55.055878,59.066407 53.25,58.337719 z M 114.35262,11.800905 C 109.96781,6.8699654 105.8486,6.0452964 85.5,6.0245881 65.512656,6.0042473 25.756441,7.0897744 26.307482,7.6408153 c 0.17758,0.1775804 18.034742,0.7947979 39.682581,1.3715945 34.722667,0.9251694 39.854057,1.2673942 43.555777,2.9048402 2.30783,1.020866 4.56152,2.447447 5.0082,3.170181 0.63995,1.035461 0.90108,1.047217 1.23167,0.05545 0.23074,-0.692236 -0.41415,-2.196125 -1.43309,-3.341977 z"
+ id="path3203"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fad9c7"
+ d="M 18.764045,124.02464 C 13.5573,122.41813 8.9707199,118.80624 6.2411522,114.16297 L 3.5,109.5 3.2099503,66.255591 C 3.0073891,36.055109 3.2654027,21.728086 4.0653404,18.757344 5.561591,13.200694 13.021654,5.6351044 18.5,4.1184992 c 5.360515,-1.4839852 83.49672,-1.5247819 88.82078,-0.046375 5.24761,1.4571782 11.01401,6.9540658 13.59926,12.9636518 2.11886,4.925414 2.15374,5.834858 1.86955,48.741643 L 122.5,109.5 l -2.77658,4.72342 c -1.80051,3.06297 -4.43703,5.69949 -7.5,7.5 L 107.5,124.5 l -43,0.1844 c -23.65,0.10143 -44.23118,-0.19547 -45.735955,-0.65976 z M 90.332381,98.746224 c 1.530558,-1.119171 1.685277,-3.239521 1.44113,-19.75 L 91.5,60.5 87.344302,59.184626 83.188604,57.869252 82.844302,48.608389 C 82.543004,40.504226 82.157052,38.829696 79.754266,35.201648 75.827838,29.273004 72.037653,27.539702 63,27.539702 c -9.037653,0 -12.827838,1.733302 -16.754266,7.661946 -2.405808,3.632612 -2.788581,5.29891 -3.091832,13.459447 l -0.346098,9.31357 -3.947802,1.063032 c -5.585946,1.50414 -6.098608,3.54685 -5.609851,22.352558 0.36522,14.052443 0.628055,16.047519 2.272546,17.25 2.586462,1.891265 52.236864,1.987265 54.809684,0.105969 z M 53.25,58.337719 C 51.432741,57.60444 51.595081,43.683708 53.463015,40.071521 55.260122,36.596299 56.738268,35.991229 63.331787,36.031803 71.755761,36.083642 74,39.090935 74,50.32727 74,56.206186 73.664962,57.914589 72.418213,58.393011 70.546925,59.111092 55.055878,59.066407 53.25,58.337719 z M 114.35262,11.800905 C 109.96781,6.8699654 105.8486,6.0452964 85.5,6.0245881 65.512656,6.0042473 25.756441,7.0897744 26.307482,7.6408153 c 0.17758,0.1775804 18.034742,0.7947979 39.682581,1.3715945 34.722667,0.9251694 39.854057,1.2673942 43.555777,2.9048402 2.30783,1.020866 4.56152,2.447447 5.0082,3.170181 0.63995,1.035461 0.90108,1.047217 1.23167,0.05545 0.23074,-0.692236 -0.41415,-2.196125 -1.43309,-3.341977 z"
+ id="path3201"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fee5b7"
+ d="M 18.764045,124.02464 C 13.5573,122.41813 8.9707199,118.80624 6.2411522,114.16297 L 3.5,109.5 3.2099503,66.255591 C 3.0073891,36.055109 3.2654027,21.728086 4.0653404,18.757344 5.561591,13.200694 13.021654,5.6351044 18.5,4.1184992 c 5.360515,-1.4839852 83.49672,-1.5247819 88.82078,-0.046375 5.24761,1.4571782 11.01401,6.9540658 13.59926,12.9636518 2.11886,4.925414 2.15374,5.834858 1.86955,48.741643 L 122.5,109.5 l -2.77658,4.72342 c -1.80051,3.06297 -4.43703,5.69949 -7.5,7.5 L 107.5,124.5 l -43,0.1844 c -23.65,0.10143 -44.23118,-0.19547 -45.735955,-0.65976 z M 90.332381,98.746224 c 1.530558,-1.119171 1.685277,-3.239521 1.44113,-19.75 L 91.5,60.5 87.25,59.155107 83,57.810214 83,49.100888 C 83,41.179237 82.733834,39.971861 80.057004,35.750939 75.990538,29.338787 72.253343,27.539702 63,27.539702 c -9.253343,0 -12.990538,1.799085 -17.057004,8.211237 C 43.262434,39.977745 43,41.173219 43,49.157237 l 0,8.765675 -3.982994,1.072509 c -2.22116,0.598096 -4.475257,1.992312 -5.095859,3.151917 -0.740795,1.384189 -0.971887,7.603514 -0.691196,18.60208 0.374721,14.683057 0.629351,16.674533 2.286989,17.886627 2.59175,1.895135 52.237901,1.994925 54.815441,0.110179 z M 53.25,58.337719 C 52.396316,57.99325 52,55.298943 52,49.839744 c 0,-7.501687 0.179878,-8.173468 2.923077,-10.916667 3.935643,-3.935643 11.498216,-4.185092 15.759352,-0.519817 2.561297,2.203135 2.825036,3.087662 3.167194,10.622115 0.279989,6.165478 0.0331,8.434358 -0.988192,9.081427 C 71.428701,59.014548 55.395224,59.203336 53.25,58.337719 z M 115.30934,13.146367 C 114.2498,11.690865 111.38426,9.4559074 108.94146,8.1797942 L 104.5,5.8595884 63.286691,6.1931036 C 34.858732,6.4231544 21.729337,6.8706625 20.964364,7.6356365 20.15234,8.44766 30.921435,8.9329192 61.177673,9.4476621 c 22.72728,0.3866544 43.027447,1.1411979 45.111487,1.6767629 2.08405,0.535565 5.23405,2.270378 7,3.855139 3.65294,3.278118 4.91034,2.137089 2.02018,-1.833197 z"
+ id="path3199"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#edd8c7"
+ d="M 18.764045,124.02464 C 13.5573,122.41813 8.9707199,118.80624 6.2411522,114.16297 L 3.5,109.5 3.2099503,66.255591 C 3.0073891,36.055109 3.2654027,21.728086 4.0653404,18.757344 5.561591,13.200694 13.021654,5.6351044 18.5,4.1184992 c 5.360515,-1.4839852 83.49672,-1.5247819 88.82078,-0.046375 5.24761,1.4571782 11.01401,6.9540658 13.59926,12.9636518 2.11886,4.925414 2.15374,5.834858 1.86955,48.741643 L 122.5,109.5 l -2.77658,4.72342 c -1.80051,3.06297 -4.43703,5.69949 -7.5,7.5 L 107.5,124.5 l -43,0.1844 c -23.65,0.10143 -44.23118,-0.19547 -45.735955,-0.65976 z m 71.78141,-25.479185 c 2.271787,-2.271788 2.447155,-3.146656 2.355295,-11.75 C 92.846162,81.682955 92.508662,73.675 92.15075,69 L 91.5,60.5 87.25,59.155107 83,57.810214 83,49.100888 C 83,41.179237 82.733834,39.971861 80.057004,35.750939 75.990538,29.338787 72.253343,27.539702 63,27.539702 c -9.253343,0 -12.990538,1.799085 -17.057004,8.211237 C 43.262434,39.977745 43,41.173219 43,49.157237 l 0,8.765675 -3.982994,1.072509 c -2.190646,0.589879 -4.440646,1.927641 -5,2.972802 C 33.445584,63.035936 33,71.094716 33,80.361678 l 0,16.493162 2.634859,2.07258 C 38.140314,100.89821 39.49313,101 63.180313,101 l 24.910596,0 2.454546,-2.454545 z M 53.25,58.337719 C 52.396316,57.99325 52,55.298943 52,49.839744 c 0,-7.501687 0.179878,-8.173468 2.923077,-10.916667 3.935643,-3.935643 11.498216,-4.185092 15.759352,-0.519817 2.561297,2.203135 2.825036,3.087662 3.167194,10.622115 0.279989,6.165478 0.0331,8.434358 -0.988192,9.081427 C 71.428701,59.014548 55.395224,59.203336 53.25,58.337719 z M 115.30934,13.146367 C 114.2498,11.690865 111.38426,9.4559074 108.94146,8.1797942 L 104.5,5.8595884 63.286691,6.1931036 C 34.858732,6.4231544 21.729337,6.8706625 20.964364,7.6356365 20.15234,8.44766 30.921435,8.9329192 61.177673,9.4476621 c 22.72728,0.3866544 43.027447,1.1411979 45.111487,1.6767629 2.08405,0.535565 5.23405,2.270378 7,3.855139 3.65294,3.278118 4.91034,2.137089 2.02018,-1.833197 z"
+ id="path3197"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#d9d9d9"
+ d="M 18.764045,124.02464 C 13.5573,122.41813 8.9707199,118.80624 6.2411522,114.16297 L 3.5,109.5 3.2130328,65.5 2.9260656,21.5 5.7130328,16.050145 C 7.2458648,13.052724 10.228835,9.2277243 12.341856,7.5501447 L 16.183713,4.5 61.214385,4.220109 C 105.15706,3.9469804 106.34947,3.9907627 110.5665,6.032192 c 3.00414,1.45428 5.48163,3.8258155 8.12747,7.779891 L 122.5,19.5 l 0,45 0,45 -2.77658,4.72342 c -1.80051,3.06297 -4.43703,5.69949 -7.5,7.5 L 107.5,124.5 l -43,0.1844 c -23.65,0.10143 -44.23118,-0.19547 -45.735955,-0.65976 z M 90.694124,98.396785 93.29734,95.793569 92.603219,78.694483 c -0.382867,-9.431618 -1.167211,-17.669126 -1.749152,-18.370322 -0.580268,-0.69918 -2.584816,-1.558225 -4.45455,-1.90899 L 83,57.777418 83,49.348871 C 83,37.470799 80.044436,32.005647 71.74552,28.538138 64.69995,25.594311 53.836802,27.124973 48.680189,31.788138 44.643796,35.438279 43,40.5202 43,49.348871 l 0,8.428547 -3.471258,0.651212 C 33.543629,59.551444 33,61.360113 33,80.149926 l 0,16.704914 2.634859,2.07258 C 38.140314,100.89821 39.49313,101 63.180313,101 l 24.910596,0 2.603215,-2.603215 z M 52,49.923077 c 0,-7.593792 0.174847,-8.251771 2.923077,-11 3.941053,-3.941053 11.498008,-4.185271 15.771142,-0.509676 2.601479,2.237698 2.831418,3.038531 3.158379,11 L 74.205232,58 63.102616,58 52,58 52,49.923077 z M 117,15.90121 C 117,12.749908 111.44787,8.1860681 105.51645,6.4617572 100.9265,5.1274242 95.230393,5.0554224 60.993439,5.8989628 39.289583,6.433709 21.313761,7.2862388 20.794545,7.8054546 20.208946,8.391054 35.412829,9.0093303 61.177673,9.4476621 c 22.72728,0.3866544 43.027447,1.1411979 45.111487,1.6767629 2.08405,0.535565 5.23405,2.288474 7,3.895352 C 117.15531,18.53765 117,18.50076 117,15.90121 z"
+ id="path3195"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fcd3b9"
+ d="M 16.410604,122.57666 C 12.143926,120.71904 6.3404214,114.50687 4.7907847,110.13859 3.8119511,107.37936 3.5,95.987113 3.5,63 L 3.5,19.5 6,15.089392 C 7.375,12.663558 10.228835,9.2885578 12.341856,7.5893921 L 16.183713,4.5 61.214385,4.220109 C 105.15706,3.9469804 106.34947,3.9907627 110.5665,6.032192 c 3.00414,1.45428 5.48163,3.8258155 8.12747,7.779891 L 122.5,19.5 l 0,43.5 c 0,48.00874 -0.0142,48.13368 -6.20519,54.50832 -6.40394,6.59392 -5.59084,6.49588 -53.512691,6.45254 -33.990461,-0.0307 -43.94534,-0.3279 -46.371515,-1.3842 z M 90.694124,98.396785 93.29734,95.793569 92.603219,78.694483 c -0.382867,-9.431618 -1.167211,-17.669126 -1.749152,-18.370322 -0.580268,-0.69918 -2.584816,-1.558225 -4.45455,-1.90899 L 83,57.777418 83,49.348871 C 83,37.470799 80.044436,32.005647 71.74552,28.538138 64.69995,25.594311 53.836802,27.124973 48.680189,31.788138 44.643796,35.438279 43,40.5202 43,49.348871 l 0,8.428547 -3.471258,0.651212 C 33.543629,59.551444 33,61.360113 33,80.149926 l 0,16.704914 2.634859,2.07258 C 38.140314,100.89821 39.49313,101 63.180313,101 l 24.910596,0 2.603215,-2.603215 z M 52,49.923077 c 0,-7.593792 0.174847,-8.251771 2.923077,-11 3.941053,-3.941053 11.498008,-4.185271 15.771142,-0.509676 2.601479,2.237698 2.831418,3.038531 3.158379,11 L 74.205232,58 63.102616,58 52,58 52,49.923077 z M 117,15.90121 C 117,12.749908 111.44787,8.1860681 105.51645,6.4617572 100.9265,5.1274242 95.230393,5.0554224 60.993439,5.8989628 39.289583,6.433709 21.313761,7.2862388 20.794545,7.8054546 20.208946,8.391054 35.412829,9.0093303 61.177673,9.4476621 c 22.72728,0.3866544 43.027447,1.1411979 45.111487,1.6767629 2.08405,0.535565 5.23405,2.288474 7,3.895352 C 117.15531,18.53765 117,18.50076 117,15.90121 z"
+ id="path3193"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fdcbb4"
+ d="M 16.410604,122.57666 C 12.143926,120.71904 6.3404214,114.50687 4.7907847,110.13859 3.8119511,107.37936 3.5,95.987113 3.5,63 L 3.5,19.5 6,15.089392 C 7.375,12.663558 10.228835,9.2885578 12.341856,7.5893921 L 16.183713,4.5 61.214385,4.220109 C 105.15706,3.9469804 106.34947,3.9907627 110.5665,6.032192 c 3.00414,1.45428 5.48163,3.8258155 8.12747,7.779891 L 122.5,19.5 l 0,43.5 c 0,48.00874 -0.0142,48.13368 -6.20519,54.50832 -6.40394,6.59392 -5.59084,6.49588 -53.512691,6.45254 -33.990461,-0.0307 -43.94534,-0.3279 -46.371515,-1.3842 z M 90.545455,98.545455 C 92.951017,96.139892 93,95.765165 93,79.767961 93,61.416309 92.431223,59.546726 86.510229,58.435941 l -3.432287,-0.643901 0.19734,-8.64602 C 83.460048,41.050892 83.281907,40.213277 80.479431,36 72.591594,24.141329 53.739363,23.86954 45.797756,35.5 43.323107,39.124116 43.063321,40.357486 43.033221,48.625 L 43,57.75 39.815617,58.386877 C 33.231338,59.703732 33,60.423158 33,79.582407 l 0,17.272433 2.634859,2.07258 C 38.140314,100.89821 39.49313,101 63.180313,101 l 24.910596,0 2.454546,-2.454545 z M 52.193838,49.528479 c 0.332494,-6.334842 0.903188,-8.97821 2.26269,-10.480443 3.692348,-4.079999 14.310199,-3.859881 17.071175,0.353901 0.848419,1.29485 1.788351,5.884747 2.14065,10.453267 L 74.296435,58 63.022816,58 51.749197,58 52.193838,49.528479 z M 116.94525,15.75 C 115.77275,11.585995 111.81144,8.3664658 105.5,6.4479459 101.35031,5.1865417 96.078412,5.0235474 74.5,5.4895007 31.076339,6.4271691 20.316057,7.0329144 18.302549,8.6531116 16.606788,10.017629 16.628214,10.06849 18.664213,9.511619 c 1.190317,-0.3255663 21.215317,-0.1093708 44.5,0.4804346 39.678167,1.0050554 42.606827,1.2035584 46.653487,3.1621414 2.37474,1.149373 4.84549,2.934877 5.49055,3.967787 1.81958,2.913614 2.64819,2.219149 1.637,-1.371982 z"
+ id="path3191"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#dbd4cd"
+ d="M 16.410604,122.57666 C 12.143926,120.71904 6.3404214,114.50687 4.7907847,110.13859 3.8119511,107.37936 3.5,95.987113 3.5,63 L 3.5,19.5 6,15.089392 C 7.375,12.663558 10.228835,9.2885578 12.341856,7.5893921 L 16.183713,4.5 61.214385,4.220109 C 105.15706,3.9469804 106.34947,3.9907627 110.5665,6.032192 c 3.00414,1.45428 5.48163,3.8258155 8.12747,7.779891 L 122.5,19.5 l 0,43.5 c 0,48.00874 -0.0142,48.13368 -6.20519,54.50832 -6.40394,6.59392 -5.59084,6.49588 -53.512691,6.45254 -33.990461,-0.0307 -43.94534,-0.3279 -46.371515,-1.3842 z M 90.365141,98.92742 93,96.85484 93,80.149926 C 93,61.487254 92.43619,59.547658 86.698349,58.471233 l -3.244167,-0.60861 0.02291,-8.681311 C 83.498216,41.176196 83.265791,40.149491 80.49312,36 76.563546,30.119126 70.500963,27 63,27 c -7.500963,0 -13.563546,3.119126 -17.49312,9 -2.808172,4.20262 -2.996528,5.071212 -2.850238,13.143672 l 0.156643,8.643671 -3.091025,0.618205 C 33.242137,59.701573 33,60.464367 33,79.582407 l 0,17.272433 2.634859,2.07258 C 38.139146,100.89729 39.495235,101 63,101 c 23.504765,0 24.860854,-0.10271 27.365141,-2.07258 z M 52.358152,54.25 c 0.34091,-2.0625 0.624789,-5.8875 0.630842,-8.5 C 53.004753,38.948816 55.234422,37 63,37 c 7.765578,0 9.995247,1.948816 10.011006,8.75 0.0061,2.6125 0.289932,6.4375 0.630842,8.5 L 74.261685,58 63,58 51.738315,58 52.358152,54.25 z m 65.022568,-37 C 116.33592,12.879328 115.246,11.313903 111.76265,9.1808577 105.05249,5.071861 102.10026,4.8832254 60.580579,5.9105282 27.914201,6.7187778 20.592546,7.1593424 18.059697,8.4691295 16.376864,9.3393564 14.999892,10.152304 14.999761,10.27568 c -1.32e-4,0.123376 5.547586,0.06768 12.328263,-0.123779 18.705536,-0.5281576 75.539046,1.641345 80.068926,3.056467 2.14333,0.669568 5.06833,2.44993 6.5,3.95636 3.33091,3.504827 4.30692,3.528716 3.48377,0.08527 z"
+ id="path3189"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ecd1bd"
+ d="M 17.5,122.49725 C 12.440019,120.70732 6.4861663,114.41377 5.0875322,109.37658 4.3961834,106.88669 4.009159,90.104908 4.0055769,62.46189 4.0000482,19.795923 4.0194554,19.3857 6.25,15.019856 7.4875,12.597698 10.228819,9.2398474 12.341821,7.5579661 L 16.183642,4.5 60.341821,4.1940536 c 29.563936,-0.2048313 45.380199,0.05111 47.855659,0.7744075 4.51022,1.3178237 9.47912,6.1109349 11.93144,11.5093469 1.67688,3.691393 1.8285,7.517538 1.84354,46.522192 0.0108,28.112081 -0.35924,43.85304 -1.09316,46.4967 -1.44848,5.2176 -8.165,11.93412 -13.3826,13.3826 -6.38599,1.77285 -84.846553,1.43977 -89.9967,-0.38205 z M 90.365141,98.92742 93,96.85484 93,80.149926 C 93,61.487254 92.43619,59.547658 86.698349,58.471233 l -3.244167,-0.60861 0.02291,-8.681311 C 83.498216,41.176196 83.265791,40.149491 80.49312,36 76.563546,30.119126 70.500963,27 63,27 c -7.500963,0 -13.563546,3.119126 -17.49312,9 -2.808172,4.20262 -2.996528,5.071212 -2.850238,13.143672 l 0.156643,8.643671 -3.091025,0.618205 C 33.242137,59.701573 33,60.464367 33,79.582407 l 0,17.272433 2.634859,2.07258 C 38.139146,100.89729 39.495235,101 63,101 c 23.504765,0 24.860854,-0.10271 27.365141,-2.07258 z M 52.358152,54.25 c 0.34091,-2.0625 0.624789,-5.8875 0.630842,-8.5 C 53.004753,38.948816 55.234422,37 63,37 c 7.765578,0 9.995247,1.948816 10.011006,8.75 0.0061,2.6125 0.289932,6.4375 0.630842,8.5 L 74.261685,58 63,58 51.738315,58 52.358152,54.25 z m 65.022568,-37 C 116.33592,12.879328 115.246,11.313903 111.76265,9.1808577 105.05249,5.071861 102.10026,4.8832254 60.580579,5.9105282 27.914201,6.7187778 20.592546,7.1593424 18.059697,8.4691295 16.376864,9.3393564 14.999892,10.152304 14.999761,10.27568 c -1.32e-4,0.123376 5.547586,0.06768 12.328263,-0.123779 18.705536,-0.5281576 75.539046,1.641345 80.068926,3.056467 2.14333,0.669568 5.06833,2.44993 6.5,3.95636 3.33091,3.504827 4.30692,3.528716 3.48377,0.08527 z"
+ id="path3187"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fdc4aa"
+ d="M 17.5,122.49725 C 12.34492,120.67368 6.4392508,114.34497 5.0385406,109.14313 4.2968747,106.38879 4.0305568,90.768485 4.2196959,61.115546 L 4.5,17.16989 7.5133751,12.834945 C 9.274412,10.301574 12.375523,7.5649153 14.975265,6.25 19.320328,4.0523244 20.122324,4.0040336 49.46189,4.1734496 75.153529,4.3218014 77.47422,4.448845 65.5,5.0514382 57.8,5.4389345 45.2,5.8207651 37.5,5.8999505 26.019321,6.0180158 22.735206,6.3910767 19.25,7.97307 c -2.3375,1.0610303 -4.250108,2.063647 -4.250239,2.228038 -1.32e-4,0.164391 5.547586,0.142247 12.328263,-0.04921 18.659473,-0.526857 75.539206,1.641382 80.053066,3.051599 2.1346,0.666891 5.13749,2.468922 6.67308,4.004514 3.40323,3.403227 3.94583,3.461924 3.94583,0.426845 0,-3.723252 -3.85392,-7.6871178 -10.43834,-10.7361365 -6.30637,-2.9202621 -5.28514,-4.0635048 1.20681,-1.3509947 4.97127,2.0771298 7.95117,5.0125922 10.83052,10.6690282 L 122,20.933513 121.994,63.216756 c -0.004,27.886925 -0.38334,43.644014 -1.11512,46.279944 -1.44848,5.2176 -8.165,11.93412 -13.3826,13.3826 -6.38599,1.77285 -84.846553,1.43977 -89.9967,-0.38205 z M 90.365141,98.92742 93,96.85484 93,80.149926 C 93,61.551513 92.469032,59.700004 86.70519,58.199618 L 83.5,57.365275 83.842368,50.371587 C 84.564975,35.610619 76.886177,27 63,27 c -7.515233,0 -11.60686,1.649271 -15.723544,6.337915 -3.934186,4.480791 -5.443359,9.790138 -5.06577,17.821635 0.282798,6.015229 0.224955,6.171526 -2.568136,6.939394 C 33.217171,59.865391 33,60.567769 33,79.582407 l 0,17.272433 2.634859,2.07258 C 38.139146,100.89729 39.495235,101 63,101 c 23.504765,0 24.860854,-0.10271 27.365141,-2.07258 z M 52.638811,57.224601 C 52.375239,56.798132 52.48208,52.696576 52.876235,48.110032 53.733843,38.130571 54.76405,37 63,37 c 8.23595,0 9.266157,1.130571 10.123765,11.110032 0.394155,4.586544 0.500996,8.6881 0.237424,9.114569 C 73.097616,57.651071 68.435081,58 63,58 57.564919,58 52.902384,57.651071 52.638811,57.224601 z"
+ id="path3185"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#e8cbb5"
+ d="M 17.5,122.49725 C 12.34492,120.67368 6.4392508,114.34497 5.0385406,109.14313 4.2968747,106.38879 4.0305568,90.768485 4.2196959,61.115546 L 4.5,17.16989 7.5133751,12.834945 C 9.274412,10.301574 12.375523,7.5649153 14.975265,6.25 19.320328,4.0523244 20.122324,4.0040336 49.46189,4.1734496 75.153529,4.3218014 77.47422,4.448845 65.5,5.0514382 57.8,5.4389345 45.477209,5.8108822 38.11602,5.8779885 23.772083,6.0087512 18.074484,7.1171164 15.266106,10.323027 13.573245,12.255518 13.576202,12.311272 15.33742,11.667404 19.828979,10.025373 26.305499,9.9005435 54,10.922214 c 25.491964,0.940418 31.508368,1.478041 44.282018,3.95702 8.710572,1.690458 15.519992,3.536598 16.578742,4.494754 2.52567,2.285697 3.13924,2.043505 3.13924,-1.239129 0,-4.205858 -3.58131,-8.060881 -10.43834,-11.2361365 -6.30637,-2.9202621 -5.28514,-4.0635048 1.20681,-1.3509947 4.97127,2.0771298 7.95117,5.0125922 10.83052,10.6690282 L 122,20.933513 121.994,63.216756 c -0.004,27.886925 -0.38334,43.644014 -1.11512,46.279944 -1.44848,5.2176 -8.165,11.93412 -13.3826,13.3826 -6.38599,1.77285 -84.846553,1.43977 -89.9967,-0.38205 z M 90.365141,98.92742 93,96.85484 93,79.582407 C 93,60.5655 92.77556,59.840241 86.35745,58.117524 L 83.5,57.350542 83.845452,49.822534 C 84.23168,41.405924 82.543493,36.731411 77.341583,31.813618 73.49068,28.173044 69.972049,27 62.902782,27 49.120971,27 41.436698,35.654041 42.157632,50.363222 42.49823,57.312435 42.485229,57.352516 39.64255,58.116526 33.22405,59.841589 33,60.565623 33,79.582407 l 0,17.272433 2.634859,2.07258 C 38.139146,100.89729 39.495235,101 63,101 c 23.504765,0 24.860854,-0.10271 27.365141,-2.07258 z M 52.850628,57.517295 C 52.549081,57.215748 52.512109,53.488496 52.768468,49.234514 53.3857,38.992268 55.051803,37 63,37 c 8.086774,0 9.696975,1.982405 10.153076,12.5 L 73.5,57.5 63.449448,57.782781 c -5.527804,0.15553 -10.297273,0.03606 -10.59882,-0.265486 z"
+ id="path3183"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fdc1a4"
+ d="M 17.5,122.49725 C 12.440019,120.70732 6.4861663,114.41377 5.0875322,109.37658 4.3955219,106.8843 4.0125134,90.144967 4.014961,62.5 l 0.00381,-43 2.9498874,-5.143269 C 8.6700316,11.390301 11.522932,8.2164067 13.709271,6.8576957 17.08159,4.7619523 18.824528,4.480984 29.5,4.3121692 37.194511,4.1904933 40.423628,4.41679 38.5,4.9428898 36.85,5.3941541 32.673047,5.8166121 29.217881,5.8816852 22.370508,6.0106458 17.342754,7.6552142 15,10.532327 13.633926,12.209988 13.664053,12.31291 15.33742,11.685069 19.761331,10.025237 26.227257,9.8976571 54,10.922214 c 25.491964,0.940418 31.508368,1.478041 44.282018,3.95702 9.765312,1.895153 15.470632,3.491926 16.811052,4.704991 1.73891,1.573691 2.1611,1.627455 2.95267,0.376012 0.508,-0.80313 0.94484,-1.910237 0.97075,-2.460237 0.0259,-0.55 0.70781,-0.126492 1.51531,0.94113 1.23774,1.636432 1.46732,8.621553 1.46262,44.5 -0.004,28.088826 -0.38282,43.91775 -1.11512,46.55557 -1.44848,5.2176 -8.165,11.93412 -13.3826,13.3826 -6.38599,1.77285 -84.846553,1.43977 -89.9967,-0.38205 z M 90.365141,98.92742 93,96.85484 93,79.582407 C 93,60.565402 92.775248,59.839161 86.35745,58.118323 L 83.5,57.35214 83.792198,49.42607 c 0.26804,-7.270783 0.0442,-8.351039 -2.707542,-13.06631 C 77.218636,29.735093 71.978431,27 63.152157,27 52.976441,27 47.675277,30.246145 43.77919,38.862954 c -1.518897,3.359279 -1.892939,5.987375 -1.625949,11.424273 0.345423,7.034111 0.335749,7.064278 -2.510691,7.829299 C 33.22405,59.841589 33,60.565623 33,79.582407 l 0,17.272433 2.634859,2.07258 C 38.139146,100.89729 39.495235,101 63,101 c 23.504765,0 24.860854,-0.10271 27.365141,-2.07258 z M 52.850628,57.517295 C 52.549081,57.215748 52.512109,53.488496 52.768468,49.234514 53.3857,38.992268 55.051803,37 63,37 c 8.086774,0 9.696975,1.982405 10.153076,12.5 L 73.5,57.5 63.449448,57.782781 c -5.527804,0.15553 -10.297273,0.03606 -10.59882,-0.265486 z M 109,6.9237286 c -2.66131,-1.5149982 -2.90093,-1.8386768 -1,-1.3507611 1.375,0.3529235 3.15893,1.2683836 3.96429,2.0343558 C 113.93028,9.4771735 113.1826,9.3047501 109,6.9237286 z"
+ id="path3181"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fcbea1"
+ d="M 17.5,122.49725 C 12.440019,120.70732 6.4861663,114.41377 5.0875322,109.37658 4.3955219,106.8843 4.0125134,90.144967 4.014961,62.5 l 0.00381,-43 2.9498874,-5.143269 C 8.6700316,11.390301 11.522932,8.2164067 13.709271,6.8576957 17.08159,4.7619523 18.824528,4.480984 29.5,4.3121692 37.194511,4.1904933 40.423628,4.41679 38.5,4.9428898 36.85,5.3941541 32.673047,5.8166121 29.217881,5.8816852 22.529162,6.0076577 17.369108,7.6422147 15.127555,10.345096 c -1.555026,1.875062 -1.120939,1.95408 4.087944,0.744139 2.089918,-0.485454 14.059823,-0.477903 27.35893,0.01726 21.175296,0.788415 25.902538,1.302022 45.284501,4.920083 11.90259,2.221875 22.43473,4.482502 23.40475,5.023617 1.41862,0.791353 1.9958,0.47442 2.95002,-1.619875 1.10496,-2.425125 1.27551,-2.481775 2.48632,-0.82589 1.72026,2.352601 1.8828,84.756 0.17928,90.89227 -1.44848,5.2176 -8.165,11.93412 -13.3826,13.3826 -6.38599,1.77285 -84.846553,1.43977 -89.9967,-0.38205 z M 90.365141,98.92742 93,96.85484 93,79.582407 C 93,60.577111 92.771354,59.835649 86.38388,58.127375 l -2.831019,-0.757131 0.25811,-7.935122 C 84.046605,42.191019 83.808521,41.052369 81.077,36.35976 77.220971,29.735307 71.982595,27 63.152157,27 52.976441,27 47.675277,30.246145 43.77919,38.862954 c -1.518897,3.359279 -1.892939,5.987375 -1.625949,11.424273 0.345423,7.034111 0.335749,7.064278 -2.510691,7.829299 C 33.22405,59.841589 33,60.565623 33,79.582407 l 0,17.272433 2.634859,2.07258 C 38.139146,100.89729 39.495235,101 63,101 c 23.504765,0 24.860854,-0.10271 27.365141,-2.07258 z M 52.702938,57.284099 C 52.451454,56.852844 52.536862,53.049855 52.892735,48.833012 53.766451,38.480073 55.26707,36.810392 63.341283,37.207308 71.222616,37.594743 72.765329,39.598848 73.188794,50 l 0.30535,7.5 -10.166981,0.284099 c -5.591839,0.156254 -10.37274,-0.06875 -10.624225,-0.5 z M 109,6.9237286 c -2.66131,-1.5149982 -2.90093,-1.8386768 -1,-1.3507611 1.375,0.3529235 3.15893,1.2683836 3.96429,2.0343558 C 113.93028,9.4771735 113.1826,9.3047501 109,6.9237286 z"
+ id="path3179"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#e8c5ab"
+ d="M 17.5,122.49725 C 12.440019,120.70732 6.4861663,114.41377 5.0875322,109.37658 4.3955219,106.8843 4.0125134,90.144967 4.014961,62.5 l 0.00381,-43 2.9498874,-5.143269 C 8.6700316,11.390301 11.522932,8.2164067 13.709271,6.8576957 17.08159,4.7619523 18.824528,4.480984 29.5,4.3121692 37.194511,4.1904933 40.423628,4.41679 38.5,4.9428898 36.85,5.3941541 32.55785,5.8166121 28.96189,5.8816852 24.335764,5.9654004 21.133571,6.6579829 18.011857,8.25 13.168501,10.720024 10.966383,13.858575 15.131687,12.354939 16.434259,11.884722 26.275,11.563609 37,11.641353 c 19.248965,0.139533 19.878342,0.213556 48.88894,5.75 C 102.05286,20.476109 115.68877,23 116.19096,23 c 0.50219,0 1.40775,-1.419008 2.01234,-3.15335 1.02732,-2.946969 1.18754,-3.032632 2.44798,-1.308871 1.76533,2.414229 1.97155,84.678531 0.22802,90.958921 -1.44848,5.2176 -8.165,11.93412 -13.3826,13.3826 -6.38599,1.77285 -84.846553,1.43977 -89.9967,-0.38205 z M 90.365141,98.92742 93,96.85484 93,79.582407 C 93,60.577111 92.771354,59.835649 86.38388,58.127375 l -2.831019,-0.757131 0.304591,-8.038422 C 84.142215,41.816708 83.958603,40.962766 81.037034,36.214612 77.009489,29.669017 71.829125,27 63.152157,27 c -9.905062,0 -15.00949,3.004447 -19.322341,11.373055 -1.591571,3.088267 -1.932092,5.404862 -1.680527,11.432763 0.306494,7.344086 0.243789,7.578884 -2.198427,8.232033 -1.382655,0.369779 -3.512231,1.295782 -4.73239,2.057784 C 33.063018,61.441738 33,61.983508 33,79.167967 l 0,17.686873 2.634859,2.07258 C 38.139146,100.89729 39.495235,101 63,101 c 23.504765,0 24.860854,-0.10271 27.365141,-2.07258 z M 52.735196,57.25 C 52.524635,56.8375 52.612699,52.971023 52.930894,48.657828 53.636225,39.096948 55.447402,37 63,37 70.552598,37 72.363775,39.096948 73.069106,48.657828 73.387301,52.971023 73.475365,56.8375 73.264804,57.25 73.054243,57.6625 68.435081,58 63,58 57.564919,58 52.945757,57.6625 52.735196,57.25 z M 109,6.9237286 c -2.66131,-1.5149982 -2.90093,-1.8386768 -1,-1.3507611 1.375,0.3529235 3.15893,1.2683836 3.96429,2.0343558 C 113.93028,9.4771735 113.1826,9.3047501 109,6.9237286 z"
+ id="path3177"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fdc98f"
+ d="M 17.5,122.49725 C 12.440019,120.70732 6.4861663,114.41377 5.0875322,109.37658 4.3966134,106.88824 4.0091567,90.173104 4.0055769,62.70034 4.0007025,25.291923 4.2033273,19.49755 5.6141615,16.70034 8.8795959,10.226081 15.370449,5 20.146121,5 21.924828,5 21.415504,5.6189971 17.695781,7.9779759 12.751958,11.113256 11.255368,13.768571 15.25,12.317388 16.4875,11.867824 26.275,11.564031 37,11.642292 c 19.28568,0.140728 19.829054,0.20503 49.439093,5.850475 l 29.939097,5.708182 1.95251,-2.680369 c 1.49207,-2.048281 2.15133,-2.366751 2.79559,-1.350474 1.30613,2.060308 1.07782,85.554494 -0.24699,90.326594 -1.44848,5.2176 -8.165,11.93412 -13.3826,13.3826 -6.38599,1.77285 -84.846553,1.43977 -89.9967,-0.38205 z M 90.365141,98.92742 93,96.85484 93,79.42742 C 93,63.333333 92.846984,61.846984 91,60 c -1.1,-1.1 -3.125,-2 -4.5,-2 -1.375,0 -2.531787,-0.5625 -2.570637,-1.25 -0.03885,-0.6875 -0.01264,-4.647402 0.05824,-8.799781 C 84.107117,40.949561 83.87587,40.046511 80.808245,35.534367 76.278292,28.871296 72.373551,27 63,27 c -9.105626,0 -13.182087,1.848775 -17.5,7.936678 -2.714443,3.827142 -3.020884,5.054706 -3.219406,12.896538 -0.120673,4.766731 -0.233173,9.004284 -0.25,9.416784 -0.01683,0.4125 -1.055466,0.75 -2.308088,0.75 -1.252621,0 -3.277621,0.700517 -4.5,1.556704 C 33.066815,61.066609 33,61.65065 33,78.984124 l 0,17.870716 2.634859,2.07258 C 38.139146,100.89729 39.495235,101 63,101 c 23.504765,0 24.860854,-0.10271 27.365141,-2.07258 z M 52.833333,57.000882 C 52.65,56.451367 52.727122,52.58489 53.004716,48.40871 53.622103,39.120607 55.479988,37 63,37 c 7.520012,0 9.377897,2.120607 9.995284,11.40871 0.277594,4.17618 0.354716,8.042657 0.171383,8.592172 C 72.974779,57.576037 68.660684,58 63,58 57.339316,58 53.025221,57.576037 52.833333,57.000882 z"
+ id="path3175"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fdba9b"
+ d="M 17.5,122.49725 C 12.440019,120.70732 6.4861663,114.41377 5.0875322,109.37658 4.3966134,106.88824 4.0091567,90.173104 4.0055769,62.70034 4.0007025,25.291923 4.2033273,19.49755 5.6141615,16.70034 8.8795959,10.226081 15.370449,5 20.146121,5 21.924828,5 21.415504,5.6189971 17.695781,7.9779759 12.751958,11.113256 11.255368,13.768571 15.25,12.317388 16.4875,11.867824 26.275,11.564031 37,11.642292 c 19.28568,0.140728 19.829054,0.20503 49.439093,5.850475 l 29.939097,5.708182 1.95251,-2.680369 c 1.49207,-2.048281 2.15133,-2.366751 2.79559,-1.350474 1.30613,2.060308 1.07782,85.554494 -0.24699,90.326594 -1.44848,5.2176 -8.165,11.93412 -13.3826,13.3826 -6.38599,1.77285 -84.846553,1.43977 -89.9967,-0.38205 z M 90.777494,99.443296 C 92.933756,97.932991 93,97.351772 93,79.943296 93,63.333333 92.851384,61.851384 91,60 c -1.1,-1.1 -3.125,-2 -4.5,-2 -1.375,0 -2.531787,-0.5625 -2.570637,-1.25 -0.03885,-0.6875 -0.01264,-4.647402 0.05824,-8.799781 C 84.107117,40.949561 83.87587,40.046511 80.808245,35.534367 76.278292,28.871296 72.373551,27 63,27 c -9.105626,0 -13.182087,1.848775 -17.5,7.936678 -2.714443,3.827142 -3.020884,5.054706 -3.219406,12.896538 -0.120673,4.766731 -0.233173,9.004284 -0.25,9.416784 -0.01683,0.4125 -1.176049,0.75 -2.576049,0.75 -1.407283,0 -3.706872,1.161418 -5.1429,2.597446 l -2.597446,2.597446 0.679106,17.152554 C 33.013729,96.017823 33.251679,97.65122 35.14699,99.25 c 1.858024,1.56733 4.753784,1.75 27.741288,1.75 21.611909,0 26.017819,-0.24593 27.889216,-1.556704 z M 52.833333,57.000882 C 52.65,56.451367 52.727122,52.58489 53.004716,48.40871 53.622103,39.120607 55.479988,37 63,37 c 7.520012,0 9.377897,2.120607 9.995284,11.40871 0.277594,4.17618 0.354716,8.042657 0.171383,8.592172 C 72.974779,57.576037 68.660684,58 63,58 57.339316,58 53.025221,57.576037 52.833333,57.000882 z"
+ id="path3173"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#c5c5c4"
+ d="M 17.5,122.49725 C 12.440019,120.70732 6.4861663,114.41377 5.0875322,109.37658 4.3966134,106.88824 4.0091567,90.173104 4.0055769,62.70034 4.0007025,25.291923 4.2033273,19.49755 5.6141615,16.70034 8.8795959,10.226081 15.370449,5 20.146121,5 21.941709,5 21.481372,5.577225 17.84835,7.8812194 15.349584,9.46589 13.025605,11.49089 12.683954,12.381219 11.928018,14.351156 12.402542,14.365584 17.5,12.527656 c 6.176644,-2.227038 15.989673,-1.098948 57.5,6.610109 20.625,3.830355 38.17941,7.16234 39.0098,7.404411 0.97086,0.283018 2.00574,-0.716853 2.89911,-2.801023 2.10615,-4.913521 3.23361,-6.121058 4.23751,-4.538487 1.29224,2.037133 1.04514,85.567144 -0.26712,90.294034 -1.44848,5.2176 -8.165,11.93412 -13.3826,13.3826 -6.38599,1.77285 -84.846553,1.43977 -89.9967,-0.38205 z M 90.777494,99.443296 C 92.937141,97.93062 93,97.366565 93,79.5 93,61.633435 92.937141,61.06938 90.777494,59.556704 89.555115,58.700517 87.530115,58 86.277494,58 83.733669,58 83.810306,58.33634 83.987608,47.950219 84.107117,40.949561 83.87587,40.046511 80.808245,35.534367 76.278292,28.871296 72.373551,27 63,27 c -9.373551,0 -13.278292,1.871296 -17.808245,8.534367 -3.067625,4.512144 -3.298872,5.415194 -3.179363,12.415852 0.07089,4.152379 0.0971,8.112281 0.05824,8.799781 -0.03885,0.6875 -1.216092,1.25 -2.616092,1.25 -1.407283,0 -3.706872,1.161418 -5.1429,2.597446 l -2.597446,2.597446 0.679106,17.152554 c 0.620429,15.670377 0.858379,17.303774 2.75369,18.902554 1.858024,1.56733 4.753784,1.75 27.741288,1.75 21.611909,0 26.017819,-0.24593 27.889216,-1.556704 z M 52.811912,56.935736 C 52.616797,56.350391 52.737099,52.448948 53.079251,48.265864 53.837021,39.001492 55.59954,37 63,37 c 7.40046,0 9.162979,2.001492 9.920749,11.265864 0.342152,4.183084 0.462454,8.084527 0.267339,8.669872 -0.479842,1.439525 -19.896334,1.439525 -20.376176,0 z"
+ id="path3171"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fee16b"
+ d="M 16.45863,121.12034 C 11.98894,119.09004 7.417118,114.21862 5.3484619,109.28212 4.287841,106.75112 4,96.868055 4,62.982459 4,25.321784 4.2031146,19.497972 5.6141615,16.70034 8.8795959,10.226081 15.370449,5 20.146121,5 21.941709,5 21.481372,5.577225 17.84835,7.8812194 15.349584,9.46589 13.025605,11.49089 12.683954,12.381219 11.928018,14.351156 12.402542,14.365584 17.5,12.527656 c 6.176644,-2.227038 15.989673,-1.098948 57.5,6.610109 20.625,3.830355 38.17941,7.16234 39.0098,7.404411 0.97086,0.283018 2.00574,-0.716853 2.89911,-2.801023 2.10615,-4.913521 3.23361,-6.121058 4.23751,-4.538487 0.45262,0.713534 0.82985,20.549287 0.83827,44.079453 0.0166,46.292651 0.0497,45.978451 -5.54178,52.610181 -5.9525,7.05995 -5.98146,7.06378 -53.44291,7.06378 -39.09805,0 -42.823495,-0.14695 -46.54137,-1.83574 z M 90.777494,99.443296 C 92.937141,97.93062 93,97.366565 93,79.5 93,61.633435 92.937141,61.06938 90.777494,59.556704 89.555115,58.700517 87.530115,58 86.277494,58 83.733669,58 83.810306,58.33634 83.987608,47.950219 84.107117,40.949561 83.87587,40.046511 80.808245,35.534367 76.278292,28.871296 72.373551,27 63,27 c -9.373551,0 -13.278292,1.871296 -17.808245,8.534367 -3.067625,4.512144 -3.298872,5.415194 -3.179363,12.415852 0.07089,4.152379 0.0971,8.112281 0.05824,8.799781 -0.03885,0.6875 -1.216092,1.25 -2.616092,1.25 -1.407283,0 -3.706872,1.161418 -5.1429,2.597446 l -2.597446,2.597446 0.679106,17.152554 c 0.620429,15.670377 0.858379,17.303774 2.75369,18.902554 1.858024,1.56733 4.753784,1.75 27.741288,1.75 21.611909,0 26.017819,-0.24593 27.889216,-1.556704 z M 52.811912,56.935736 C 52.616797,56.350391 52.737099,52.448948 53.079251,48.265864 53.837021,39.001492 55.59954,37 63,37 c 7.40046,0 9.162979,2.001492 9.920749,11.265864 0.342152,4.183084 0.462454,8.084527 0.267339,8.669872 -0.479842,1.439525 -19.896334,1.439525 -20.376176,0 z"
+ id="path3169"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#d2c4b3"
+ d="M 16.45863,121.12034 C 11.98894,119.09004 7.417118,114.21862 5.3484619,109.28212 4.287841,106.75112 4,96.868055 4,62.982459 4,25.321784 4.2031146,19.497972 5.6141615,16.70034 8.8795959,10.226081 15.370449,5 20.146121,5 21.941709,5 21.481372,5.577225 17.84835,7.8812194 15.349584,9.46589 13.025605,11.49089 12.683954,12.381219 11.928018,14.351156 12.402542,14.365584 17.5,12.527656 c 6.176644,-2.227038 15.989673,-1.098948 57.5,6.610109 20.625,3.830355 38.17941,7.16234 39.0098,7.404411 0.97086,0.283018 2.00574,-0.716853 2.89911,-2.801023 2.10615,-4.913521 3.23361,-6.121058 4.23751,-4.538487 0.45262,0.713534 0.82985,20.549287 0.83827,44.079453 0.0166,46.292651 0.0497,45.978451 -5.54178,52.610181 -5.9525,7.05995 -5.98146,7.06378 -53.44291,7.06378 -39.09805,0 -42.823495,-0.14695 -46.54137,-1.83574 z M 67.75,115.25543 c -4.8125,-0.18331 -12.6875,-0.18331 -17.5,0 -4.8125,0.18332 -0.875,0.3333 8.75,0.3333 9.625,0 13.5625,-0.14998 8.75,-0.3333 z M 90.777494,99.443296 C 92.937141,97.93062 93,97.366565 93,79.5 93,61.633435 92.937141,61.06938 90.777494,59.556704 89.555115,58.700517 87.530115,58 86.277494,58 83.733669,58 83.810306,58.33634 83.987608,47.950219 84.107117,40.949561 83.87587,40.046511 80.808245,35.534367 76.278292,28.871296 72.373551,27 63,27 c -9.373551,0 -13.278292,1.871296 -17.808245,8.534367 -3.067625,4.512144 -3.298872,5.415194 -3.179363,12.415852 0.07089,4.152379 0.0971,8.112281 0.05824,8.799781 -0.03885,0.6875 -1.216092,1.25 -2.616092,1.25 -1.407283,0 -3.706872,1.161418 -5.1429,2.597446 l -2.597446,2.597446 0.679106,17.152554 c 0.620429,15.670377 0.858379,17.303774 2.75369,18.902554 1.858024,1.56733 4.753784,1.75 27.741288,1.75 21.611909,0 26.017819,-0.24593 27.889216,-1.556704 z M 52.811912,56.935736 C 52.616797,56.350391 52.737099,52.448948 53.079251,48.265864 53.837021,39.001492 55.59954,37 63,37 c 7.40046,0 9.162979,2.001492 9.920749,11.265864 0.342152,4.183084 0.462454,8.084527 0.267339,8.669872 -0.479842,1.439525 -19.896334,1.439525 -20.376176,0 z"
+ id="path3167"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fbd773"
+ d="M 16.429259,121.10719 C 11.26866,118.76329 6.4899676,113.00292 5.0883247,107.43649 3.6354618,101.66665 3.610758,23.941817 5.0601283,18.722666 6.9134291,12.048969 14.662703,5 20.146121,5 21.941709,5 21.481372,5.577225 17.84835,7.8812194 15.349584,9.46589 13.025605,11.49089 12.683954,12.381219 11.928018,14.351156 12.402542,14.365584 17.5,12.527656 c 6.176644,-2.227038 15.989673,-1.098948 57.5,6.610109 20.625,3.830355 38.18263,7.16336 39.01695,7.406679 1.01503,0.296019 2.08939,-0.878929 3.24703,-3.551023 1.8361,-4.23814 3.13665,-4.997749 4.12903,-2.411634 1.11482,2.905162 0.67503,82.262363 -0.48133,86.854703 -1.40165,5.56643 -6.18034,11.3268 -11.34094,13.6707 -3.75539,1.70566 -7.36307,1.84889 -46.57074,1.84889 -39.207669,0 -42.815346,-0.14323 -46.570741,-1.84889 z M 67.75,115.25543 c -4.8125,-0.18331 -12.6875,-0.18331 -17.5,0 -4.8125,0.18332 -0.875,0.3333 8.75,0.3333 9.625,0 13.5625,-0.14998 8.75,-0.3333 z M 90.777494,99.443296 C 92.937141,97.93062 93,97.366565 93,79.5 93,61.633435 92.937141,61.06938 90.777494,59.556704 89.555115,58.700517 87.530115,58 86.277494,58 83.733669,58 83.810306,58.33634 83.987608,47.950219 84.107117,40.949561 83.87587,40.046511 80.808245,35.534367 76.278292,28.871296 72.373551,27 63,27 c -9.373551,0 -13.278292,1.871296 -17.808245,8.534367 -3.067625,4.512144 -3.298872,5.415194 -3.179363,12.415852 0.07089,4.152379 0.0971,8.112281 0.05824,8.799781 -0.03885,0.6875 -1.216092,1.25 -2.616092,1.25 -1.407283,0 -3.706872,1.161418 -5.1429,2.597446 l -2.597446,2.597446 0.679106,17.152554 c 0.620429,15.670377 0.858379,17.303774 2.75369,18.902554 1.858024,1.56733 4.753784,1.75 27.741288,1.75 21.611909,0 26.017819,-0.24593 27.889216,-1.556704 z M 52.811912,56.935736 C 52.616797,56.350391 52.737099,52.448948 53.079251,48.265864 53.837021,39.001492 55.59954,37 63,37 c 7.40046,0 9.162979,2.001492 9.920749,11.265864 0.342152,4.183084 0.462454,8.084527 0.267339,8.669872 -0.479842,1.439525 -19.896334,1.439525 -20.376176,0 z"
+ id="path3165"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fdb493"
+ d="M 16.429259,121.10719 C 11.26866,118.76329 6.4899676,113.00292 5.0883247,107.43649 3.6354618,101.66665 3.610758,23.941817 5.0601283,18.722666 6.9134291,12.048969 14.662703,5 20.146121,5 21.941709,5 21.481372,5.577225 17.84835,7.8812194 15.349584,9.46589 13.025605,11.49089 12.683954,12.381219 11.928018,14.351156 12.402542,14.365584 17.5,12.527656 c 6.176644,-2.227038 15.989673,-1.098948 57.5,6.610109 20.625,3.830355 38.18263,7.16336 39.01695,7.406679 1.01503,0.296019 2.08939,-0.878929 3.24703,-3.551023 1.8361,-4.23814 3.13665,-4.997749 4.12903,-2.411634 1.11482,2.905162 0.67503,82.262363 -0.48133,86.854703 -1.40165,5.56643 -6.18034,11.3268 -11.34094,13.6707 -3.75539,1.70566 -7.36307,1.84889 -46.57074,1.84889 -39.207669,0 -42.815346,-0.14323 -46.570741,-1.84889 z M 76.25,115.69906 c -11.08604,-0.62034 -23.41396,-0.62034 -34.5,0 -16.709687,0.93502 -16.169374,0.96526 17.25,0.96526 33.419374,0 33.959687,-0.0302 17.25,-0.96526 z M 89,100.24845 92.5,98.5 92.781142,80 C 93.052697,62.130835 92.989246,61.440326 90.920358,59.75 89.742299,58.7875 87.703285,58 86.389216,58 83.724785,58 83.809963,58.356435 83.987608,47.950219 84.107117,40.949561 83.87587,40.046511 80.808245,35.534367 76.278292,28.871296 72.373551,27 63,27 c -9.373551,0 -13.278292,1.871296 -17.808245,8.534367 -3.067625,4.512144 -3.298872,5.415194 -3.179363,12.415852 0.07089,4.152379 0.0971,8.112281 0.05824,8.799781 -0.03885,0.6875 -1.216092,1.25 -2.616092,1.25 -1.4,0 -3.65,1.104545 -5,2.454545 -2.772332,2.772333 -2.977924,5.803911 -1.79083,26.406949 0.908901,15.774656 -0.36141,15.130346 29.83629,15.133216 19.898669,0.002 23.471942,-0.23358 26.5,-1.74626 z M 52.811912,56.935736 C 52.616797,56.350391 52.737099,52.448948 53.079251,48.265864 53.837021,39.001492 55.59954,37 63,37 c 7.40046,0 9.162979,2.001492 9.920749,11.265864 0.342152,4.183084 0.462454,8.084527 0.267339,8.669872 -0.479842,1.439525 -19.896334,1.439525 -20.376176,0 z"
+ id="path3163"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fec87b"
+ d="M 16.429259,121.10719 C 11.26866,118.76329 6.4899676,113.00292 5.0883247,107.43649 3.6354618,101.66665 3.610758,23.941817 5.0601283,18.722666 6.9134291,12.048969 14.662703,5 20.146121,5 c 1.786435,0 1.30008,0.5995296 -2.379237,2.9328834 -2.543572,1.6130859 -5.157742,3.9289246 -5.809266,5.1463086 -1.095014,2.046051 -1.005868,2.162732 1.178896,1.543043 1.299917,-0.36871 3.504403,-0.921482 4.898858,-1.228383 2.61181,-0.574824 32.178003,4.697622 92.728678,16.536012 2.34523,0.458521 4.41336,0.549378 4.59583,0.201905 0.18248,-0.347473 0.91289,-2.780861 1.62312,-5.40753 1.41252,-5.223877 2.76287,-6.734718 4.11349,-4.602354 1.30514,2.060567 1.13579,82.070005 -0.18481,87.314605 -1.40165,5.56643 -6.18034,11.3268 -11.34094,13.6707 -3.75539,1.70566 -7.36307,1.84889 -46.57074,1.84889 -39.207669,0 -42.815346,-0.14323 -46.570741,-1.84889 z M 76.25,115.69906 c -11.08604,-0.62034 -23.41396,-0.62034 -34.5,0 -16.709687,0.93502 -16.169374,0.96526 17.25,0.96526 33.419374,0 33.959687,-0.0302 17.25,-0.96526 z M 89,100.24845 92.5,98.5 92.781142,80 C 93.052697,62.130835 92.989246,61.440326 90.920358,59.75 89.742299,58.7875 87.740785,58 86.472549,58 83.537813,58 83.211767,56.906304 84.129788,50.141376 85.109953,42.918508 84.509763,40.375071 80.531596,34.893242 76.131239,28.829643 72.02879,27 62.833269,27 c -9.192214,0 -13.136636,1.908177 -17.641514,8.534367 -3.067625,4.512144 -3.298872,5.415194 -3.179363,12.415852 0.07089,4.152379 0.0971,8.112281 0.05824,8.799781 -0.03885,0.6875 -1.216092,1.25 -2.616092,1.25 -1.4,0 -3.65,1.104545 -5,2.454545 -2.772332,2.772333 -2.977924,5.803911 -1.79083,26.406949 0.908901,15.774656 -0.36141,15.130346 29.83629,15.133216 19.898669,0.002 23.471942,-0.23358 26.5,-1.74626 z M 52.911139,56.75 C 52.61952,52.647789 53.236102,45.058345 54.07718,42.397335 56.490157,34.763139 69.923784,35.150803 71.944466,42.912945 72.768404,46.077978 73.357676,53.1789 73.092737,56.75 73.025189,57.660484 70.283874,58 63,58 55.714059,58 52.975883,57.660743 52.911139,56.75 z"
+ id="path3161"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fdd768"
+ d="M 16.429259,121.10719 C 11.26866,118.76329 6.4899676,113.00292 5.0883247,107.43649 3.6354618,101.66665 3.610758,23.941817 5.0601283,18.722666 6.9134291,12.048969 14.662703,5 20.146121,5 c 1.786435,0 1.30008,0.5995296 -2.379237,2.9328834 -2.543572,1.6130859 -5.157742,3.9289246 -5.809266,5.1463086 -1.095014,2.046051 -1.005868,2.162732 1.178896,1.543043 1.299917,-0.36871 3.504403,-0.921482 4.898858,-1.228383 2.61181,-0.574824 32.178003,4.697622 92.728678,16.536012 2.34523,0.458521 4.41336,0.549378 4.59583,0.201905 0.18248,-0.347473 0.91289,-2.780861 1.62312,-5.40753 1.41252,-5.223877 2.76287,-6.734718 4.11349,-4.602354 1.30514,2.060567 1.13579,82.070005 -0.18481,87.314605 -1.40165,5.56643 -6.18034,11.3268 -11.34094,13.6707 -3.75539,1.70566 -7.36307,1.84889 -46.57074,1.84889 -39.207669,0 -42.815346,-0.14323 -46.570741,-1.84889 z M 76.25,115.69906 c -11.08604,-0.62034 -23.41396,-0.62034 -34.5,0 -16.709687,0.93502 -16.169374,0.96526 17.25,0.96526 33.419374,0 33.959687,-0.0302 17.25,-0.96526 z M 91.727768,98.531921 94.279236,95.563842 93.744526,78.576079 C 93.240838,62.573913 93.081265,61.484223 90.994124,59.794158 89.775493,58.807371 87.740785,58 86.472549,58 83.537813,58 83.211767,56.906304 84.129788,50.141376 85.109953,42.918508 84.509763,40.375071 80.531596,34.893242 76.131239,28.829643 72.02879,27 62.833269,27 c -9.192214,0 -13.136636,1.908177 -17.641514,8.534367 -3.067625,4.512144 -3.298872,5.415194 -3.179363,12.415852 0.07089,4.152379 0.0971,8.112281 0.05824,8.799781 -0.03885,0.6875 -1.216092,1.25 -2.616092,1.25 -1.4,0 -3.65,1.104545 -5,2.454545 C 32.048983,62.860108 32,63.234835 32,79.232039 c 0,17.451934 0.578714,19.807954 5.356999,21.809031 1.17865,0.4936 13.320169,0.79879 26.981151,0.67819 L 89.1763,101.5 91.727768,98.531921 z M 52.911139,56.75 C 52.61952,52.647789 53.236102,45.058345 54.07718,42.397335 56.490157,34.763139 69.923784,35.150803 71.944466,42.912945 72.768404,46.077978 73.357676,53.1789 73.092737,56.75 73.025189,57.660484 70.283874,58 63,58 55.714059,58 52.975883,57.660743 52.911139,56.75 z"
+ id="path3159"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fdb18c"
+ d="M 16.429259,121.10719 C 11.26866,118.76329 6.4899676,113.00292 5.0883247,107.43649 3.6354618,101.66665 3.610758,23.941817 5.0601283,18.722666 6.9134291,12.048969 14.662703,5 20.146121,5 c 1.786435,0 1.30008,0.5995296 -2.379237,2.9328834 -2.543572,1.6130859 -5.157742,3.9289246 -5.809266,5.1463086 -1.095014,2.046051 -1.005868,2.162732 1.178896,1.543043 1.299917,-0.36871 3.504403,-0.921482 4.898858,-1.228383 2.61181,-0.574824 32.178003,4.697622 92.728678,16.536012 2.34523,0.458521 4.41336,0.549378 4.59583,0.201905 0.18248,-0.347473 0.91289,-2.780861 1.62312,-5.40753 1.41252,-5.223877 2.76287,-6.734718 4.11349,-4.602354 1.30514,2.060567 1.13579,82.070005 -0.18481,87.314605 -1.40165,5.56643 -6.18034,11.3268 -11.34094,13.6707 -3.75539,1.70566 -7.36307,1.84889 -46.57074,1.84889 -39.207669,0 -42.815346,-0.14323 -46.570741,-1.84889 z M 92,116 c -0.887537,-0.57357 -14.361715,-0.96937 -33,-0.96937 -18.638285,0 -32.112463,0.3958 -33,0.96937 -0.984273,0.63609 10.361715,0.96937 33,0.96937 22.638285,0 33.984273,-0.33328 33,-0.96937 z M 91.727768,98.531921 94.279236,95.563842 93.744526,78.576079 C 93.240838,62.573913 93.081265,61.484223 90.994124,59.794158 89.775493,58.807371 87.740785,58 86.472549,58 83.537813,58 83.211767,56.906304 84.129788,50.141376 85.109953,42.918508 84.509763,40.375071 80.531596,34.893242 76.131239,28.829643 72.02879,27 62.833269,27 c -9.192214,0 -13.136636,1.908177 -17.641514,8.534367 -3.067625,4.512144 -3.298872,5.415194 -3.179363,12.415852 0.07089,4.152379 0.0971,8.112281 0.05824,8.799781 -0.03885,0.6875 -1.216092,1.25 -2.616092,1.25 -1.4,0 -3.65,1.104545 -5,2.454545 C 32.048983,62.860108 32,63.234835 32,79.232039 c 0,17.451934 0.578714,19.807954 5.356999,21.809031 1.17865,0.4936 13.320169,0.79879 26.981151,0.67819 L 89.1763,101.5 91.727768,98.531921 z M 52.911139,56.75 C 52.61952,52.647789 53.236102,45.058345 54.07718,42.397335 56.490157,34.763139 69.923784,35.150803 71.944466,42.912945 72.768404,46.077978 73.357676,53.1789 73.092737,56.75 73.025189,57.660484 70.283874,58 63,58 55.714059,58 52.975883,57.660743 52.911139,56.75 z"
+ id="path3157"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fdae89"
+ d="M 16.429259,121.10719 C 11.26866,118.76329 6.4899676,113.00292 5.0883247,107.43649 3.6354618,101.66665 3.610758,23.941817 5.0601283,18.722666 6.9229647,12.014631 14.670109,4.9947488 20.20034,5.0037381 22.2207,5.0070221 22.074915,5.2626796 19,7.108733 c -8.408028,5.047836 -10.4636414,9.031398 -4.22889,8.195142 2.20436,-0.295667 10.617448,0.827254 20.25,2.70283 9.063389,1.764754 20.587034,3.335562 25.608099,3.490685 7.167581,0.221439 10.390689,0.831644 15,2.839828 6.336432,2.760656 38.311391,9.19513 39.394941,7.927634 0.35962,-0.420669 1.25321,-3.373323 1.98575,-6.561454 1.41088,-6.140374 2.65572,-7.840588 4.08659,-5.581513 1.30514,2.060567 1.13579,82.070005 -0.18481,87.314605 -1.40165,5.56643 -6.18034,11.3268 -11.34094,13.6707 -3.75539,1.70566 -7.36307,1.84889 -46.57074,1.84889 -39.207669,0 -42.815346,-0.14323 -46.570741,-1.84889 z M 92,116 c -0.887537,-0.57357 -14.361715,-0.96937 -33,-0.96937 -18.638285,0 -32.112463,0.3958 -33,0.96937 -0.984273,0.63609 10.361715,0.96937 33,0.96937 22.638285,0 33.984273,-0.33328 33,-0.96937 z M 91.727768,98.531921 94.279236,95.563842 93.744526,78.576079 C 93.240838,62.573913 93.081265,61.484223 90.994124,59.794158 89.775493,58.807371 87.740785,58 86.472549,58 c -2.709976,0 -3.593575,-1.741501 -2.227352,-4.389925 0.536218,-1.03946 0.788862,-4.462458 0.561431,-7.606663 -0.32804,-4.53511 -1.125902,-6.70512 -3.86007,-10.498555 C 76.164282,28.869839 72.25529,27 63.166731,27 53.982412,27 49.902372,28.815977 45.37978,34.916756 42.157896,39.262938 41.986151,39.913789 42.05935,47.5 c 0.04245,4.4 0.04647,8.5625 0.0089,9.25 -0.03755,0.6875 -1.213726,1.25 -2.613726,1.25 -1.4,0 -3.65,1.104545 -5,2.454545 C 32.048983,62.860108 32,63.234835 32,79.232039 c 0,17.451934 0.578714,19.807954 5.356999,21.809031 1.17865,0.4936 13.320169,0.79879 26.981151,0.67819 L 89.1763,101.5 91.727768,98.531921 z M 52.810065,56.930195 C 52.115224,54.845672 54.520616,41.271027 55.872445,39.64789 56.85409,38.469232 58.874375,38 62.967457,38 c 7.391877,0 9.026846,1.64055 9.047856,9.078741 0.0084,2.981692 0.416788,6.055451 0.90748,6.830575 C 75.004729,57.198057 73.054814,58 62.976345,58 c -6.07762,0 -9.945346,-0.407004 -10.16628,-1.069805 z"
+ id="path3155"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#e5b796"
+ d="M 16.429259,121.10719 C 11.26866,118.76329 6.4899676,113.00292 5.0883247,107.43649 3.6354618,101.66665 3.610758,23.941817 5.0601283,18.722666 6.9229647,12.014631 14.670109,4.9947488 20.20034,5.0037381 22.2207,5.0070221 22.074915,5.2626796 19,7.108733 c -8.413882,5.051351 -10.735766,9.888173 -4.75,9.894942 1.7875,0.002 10.136993,1.331704 18.554428,2.95485 13.023432,2.511327 16.758708,2.862576 25.061975,2.356719 10.912477,-0.664817 15.148669,0.259499 21.633597,4.720344 3.21135,2.209019 7.026722,3.293986 19.351404,5.502906 12.504176,2.24109 15.503406,2.505451 16.170936,1.425355 0.45075,-0.72932 1.35712,-4.175129 2.01417,-7.657353 1.23692,-6.555401 2.55417,-8.561991 4.05998,-6.184611 1.30514,2.060567 1.13579,82.070005 -0.18481,87.314605 -1.40165,5.56643 -6.18034,11.3268 -11.34094,13.6707 -3.75539,1.70566 -7.36307,1.84889 -46.57074,1.84889 -39.207669,0 -42.815346,-0.14323 -46.570741,-1.84889 z M 92,116 c -0.887537,-0.57357 -14.361715,-0.96937 -33,-0.96937 -18.638285,0 -32.112463,0.3958 -33,0.96937 -0.984273,0.63609 10.361715,0.96937 33,0.96937 22.638285,0 33.984273,-0.33328 33,-0.96937 z M 91.727768,98.531921 94.279236,95.563842 93.744526,78.576079 C 93.240838,62.573913 93.081265,61.484223 90.994124,59.794158 89.775493,58.807371 87.740785,58 86.472549,58 83.764023,58 82.878855,56.258791 84.242978,53.614222 85.417562,51.337102 84.784991,39.140642 83.442559,38.181541 82.917893,37.806693 81.279083,35.875827 79.800757,33.890727 76.014496,28.806523 71.609888,27 63,27 53.977358,27 49.843558,28.864372 45.453702,34.9135 41.524797,40.327448 40.737906,43.721403 41.829488,50.545171 42.826549,56.778059 42.453162,58 39.551525,58 c -1.254994,0 -3.467494,0.932661 -4.916666,2.07258 L 32,62.14516 32,78.850074 c 0,17.863945 0.559564,20.181899 5.356999,22.190996 1.17865,0.4936 13.320169,0.79879 26.981151,0.67819 L 89.1763,101.5 91.727768,98.531921 z M 52.699509,56.659316 c -0.282958,-0.737376 -0.112993,-1.974876 0.377698,-2.75 0.490692,-0.775124 0.899058,-3.927072 0.90748,-7.004328 C 54.004698,39.593251 55.666361,38 63.272037,38 c 6.911783,0 8.720392,1.959455 8.743276,9.472506 0.0084,2.765122 0.416788,5.661686 0.90748,6.43681 C 75.003621,57.196307 73.0541,58 63,58 55.740646,58 53.081146,57.653847 52.699509,56.659316 z"
+ id="path3153"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#cbbaaa"
+ d="M 16.429259,121.10719 C 11.26866,118.76329 6.4899676,113.00292 5.0883247,107.43649 4.3914057,104.66877 4.0035133,88.438443 4.0097689,62.30718 L 4.0195378,21.5 6.3940344,16.400504 c 2.2165618,-4.760313 5.7268476,-8.2166503 9.8591276,-9.7076074 0.964239,-0.3479045 0.176739,0.9438692 -1.75,2.8706082 C 9.915772,14.150895 9.8188728,16.998664 14.25,17.003675 c 1.7875,0.002 10.136993,1.331704 18.554428,2.95485 13.023432,2.511327 16.758708,2.862576 25.061975,2.356719 10.912477,-0.664817 15.148669,0.259499 21.633597,4.720344 3.21135,2.209019 7.026722,3.293986 19.351404,5.502906 17.092176,3.063385 16.520756,3.192971 17.717726,-4.018039 0.94848,-5.714005 3.37016,-10.22654 4.51654,-8.416077 1.31265,2.073044 1.15328,82.061022 -0.17399,87.332112 -1.40165,5.56643 -6.18034,11.3268 -11.34094,13.6707 -3.75539,1.70566 -7.36307,1.84889 -46.57074,1.84889 -39.207669,0 -42.815346,-0.14323 -46.570741,-1.84889 z M 92,116 c -0.887537,-0.57357 -14.361715,-0.96937 -33,-0.96937 -18.638285,0 -32.112463,0.3958 -33,0.96937 -0.984273,0.63609 10.361715,0.96937 33,0.96937 22.638285,0 33.984273,-0.33328 33,-0.96937 z M 91.727768,98.531921 94.279236,95.563842 93.749434,78.732007 C 93.171577,60.373475 92.559295,58.433203 87.146046,57.806391 84.506998,57.50081 84.500931,57.479812 84.852054,49.866191 85.268755,40.830599 83.758683,36.821589 77.967987,31.590043 69.877118,24.280429 56.505451,24.105264 48.421583,31.202995 42.869917,36.077422 41.602976,39.357888 41.548247,49 41.501165,57.294761 41.439636,57.508153 39,57.837662 37.625,58.023376 35.4875,59.114318 34.25,60.261976 32.090796,62.264424 32,63.018629 32,78.951808 c 0,17.754188 0.564598,20.082273 5.356999,22.089262 1.17865,0.4936 13.320169,0.79879 26.981151,0.67819 L 89.1763,101.5 91.727768,98.531921 z M 53.784937,57.451604 C 53.444974,57.111641 53.41301,53.383454 53.713906,49.166745 54.419563,39.27778 55.497242,38 63.131935,38 c 7.364066,0 8.549534,1.576147 9.025562,12 L 72.5,57.5 63.451526,57.784859 c -4.976661,0.156672 -9.326626,0.0067 -9.666589,-0.333255 z"
+ id="path3151"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fdaa83"
+ d="M 16.3117,121.05455 C 10.973711,118.63106 6.4335784,112.40551 5.0126652,105.56101 4.2890629,102.07543 4.013956,86.479366 4.2069476,59.88413 4.4940424,20.320984 4.5452808,19.415312 6.7273607,15.334215 8.8585515,11.348294 12.496145,8.048456 16.253162,6.6928966 c 0.964239,-0.3479045 0.176739,0.9438692 -1.75,2.8706082 C 9.915772,14.150895 9.8188728,16.998664 14.25,17.003675 c 1.7875,0.002 10.136993,1.331704 18.554428,2.95485 13.023432,2.511327 16.758708,2.862576 25.061975,2.356719 10.912477,-0.664817 15.148669,0.259499 21.633597,4.720344 3.21135,2.209019 7.026722,3.293986 19.351404,5.502906 16.916626,3.031922 16.471146,3.11978 17.612656,-3.473638 C 117.2468,24.543733 119.01733,20 119.99632,20 121.64821,20 122,27.803033 122,64.443499 c 0,41.725091 -0.39801,45.310761 -5.73329,51.651381 -5.7475,6.83051 -5.9857,6.8612 -53.26671,6.8612 -39.631252,0 -42.78271,-0.12836 -46.6883,-1.90153 z M 92,116 c -0.887537,-0.57357 -14.361715,-0.96937 -33,-0.96937 -18.638285,0 -32.112463,0.3958 -33,0.96937 -0.984273,0.63609 10.361715,0.96937 33,0.96937 22.638285,0 33.984273,-0.33328 33,-0.96937 z M 91.727768,98.531921 94.279236,95.563842 93.749434,78.732007 C 93.171577,60.373475 92.559295,58.433203 87.146046,57.806391 84.506998,57.50081 84.500931,57.479812 84.852054,49.866191 85.268755,40.830599 83.758683,36.821589 77.967987,31.590043 69.877118,24.280429 56.505451,24.105264 48.421583,31.202995 42.869917,36.077422 41.602976,39.357888 41.548247,49 41.501165,57.294761 41.439636,57.508153 39,57.837662 37.625,58.023376 35.4875,59.114318 34.25,60.261976 32.090796,62.264424 32,63.018629 32,78.951808 c 0,17.754188 0.564598,20.082273 5.356999,22.089262 1.17865,0.4936 13.320169,0.79879 26.981151,0.67819 L 89.1763,101.5 91.727768,98.531921 z M 53.784937,57.451604 C 53.444974,57.111641 53.41301,53.383454 53.713906,49.166745 54.419563,39.27778 55.497242,38 63.131935,38 c 7.364066,0 8.549534,1.576147 9.025562,12 L 72.5,57.5 63.451526,57.784859 c -4.976661,0.156672 -9.326626,0.0067 -9.666589,-0.333255 z"
+ id="path3149"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#f7ca65"
+ d="M 16.3117,121.05455 C 10.973711,118.63106 6.4335784,112.40551 5.0126652,105.56101 4.2890629,102.07543 4.013956,86.479366 4.2069476,59.88413 4.4940424,20.320984 4.5452808,19.415312 6.7273607,15.334215 8.8585515,11.348294 12.496145,8.048456 16.253162,6.6928966 17.21794,6.3447975 16.437394,7.6292724 14.517428,9.5492382 10.902204,13.164462 9.0992491,17.530902 10.623216,18.980334 c 0.482231,0.458646 8.477751,2.268176 17.767822,4.021177 l 16.891038,3.187276 6.379961,-2.094394 C 63.744986,20.127841 72.72313,21.754549 80.421209,29.305134 L 85.5,34.286617 l 13,2.249664 13,2.249664 2.09554,-2.269162 c 1.15254,-1.248039 2.62238,-4.912376 3.2663,-8.142972 1.29351,-6.489625 2.60795,-9.236802 3.83379,-8.012566 0.4424,0.441828 0.93619,19.034684 1.0973,41.317456 0.32135,44.445239 -0.0266,47.880249 -5.51016,54.397099 -5.76562,6.85204 -5.98427,6.88028 -53.28277,6.88028 -39.631252,0 -42.78271,-0.12836 -46.6883,-1.90153 z M 92,116 c -0.887537,-0.57357 -14.361715,-0.96937 -33,-0.96937 -18.638285,0 -32.112463,0.3958 -33,0.96937 -0.984273,0.63609 10.361715,0.96937 33,0.96937 22.638285,0 33.984273,-0.33328 33,-0.96937 z M 91.720388,98.540501 94.264475,95.581002 93.779503,78.781968 C 93.24974,60.43145 92.620025,58.440235 87.146046,57.806391 L 84.5,57.5 84.846041,49.386062 C 85.24805,39.959771 84.209424,37.228807 78.135516,31.741396 69.397299,23.846942 56.248905,24.042306 47.400954,32.198062 42.185742,37.005277 40.676507,41.537625 41.161367,50.936018 41.489059,57.287915 41.419224,57.51091 39,57.837662 37.625,58.023376 35.4875,59.114318 34.25,60.261976 32.090796,62.264424 32,63.018629 32,78.951808 c 0,17.754188 0.564598,20.082273 5.356999,22.089262 1.17865,0.4936 13.320169,0.79879 26.981151,0.67819 L 89.1763,101.5 91.720388,98.540501 z M 53.681864,57.25 C 53.441971,56.8375 53.543837,52.964581 53.908235,48.643512 54.684374,39.439957 55.914396,38 63,38 c 7.085604,0 8.315626,1.439957 9.091765,10.643512 C 72.456163,52.964581 72.558029,56.8375 72.318136,57.25 72.078242,57.6625 67.885081,58 63,58 58.114919,58 53.921758,57.6625 53.681864,57.25 z"
+ id="path3147"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fed54d"
+ d="M 16.3117,121.05455 C 10.973711,118.63106 6.4335784,112.40551 5.0126652,105.56101 4.2890629,102.07543 4.013956,86.479366 4.2069476,59.88413 4.4940424,20.320984 4.5452808,19.415312 6.7273607,15.334215 8.8585515,11.348294 12.496145,8.048456 16.253162,6.6928966 17.21794,6.3447975 16.437394,7.6292724 14.517428,9.5492382 10.902204,13.164462 9.0992491,17.530902 10.623216,18.980334 c 0.482231,0.458646 8.477751,2.268176 17.767822,4.021177 l 16.891038,3.187276 6.379961,-2.094394 C 63.744986,20.127841 72.72313,21.754549 80.421209,29.305134 L 85.5,34.286617 l 13,2.249664 13,2.249664 2.09554,-2.269162 c 1.15254,-1.248039 2.62238,-4.912376 3.2663,-8.142972 1.29351,-6.489625 2.60795,-9.236802 3.83379,-8.012566 0.4424,0.441828 0.93619,19.034684 1.0973,41.317456 0.32135,44.445239 -0.0266,47.880249 -5.51016,54.397099 -5.76562,6.85204 -5.98427,6.88028 -53.28277,6.88028 -39.631252,0 -42.78271,-0.12836 -46.6883,-1.90153 z M 106.5,116.24481 c 1.56184,-0.92461 -7.679926,-1.19065 -42.1849,-1.2144 -28.548026,-0.0196 -45.181154,-0.40473 -47,-1.08812 -2.618752,-0.98394 -2.700756,-0.94183 -1.175708,0.60368 0.901665,0.91376 3.151665,2.04469 5,2.51317 5.330831,1.35115 82.953548,0.61065 85.360608,-0.81433 z M 91.679507,99.411402 94.268105,96.822804 93.789156,79.411531 C 93.265823,60.386735 92.669063,58.445913 87.146046,57.806391 L 84.5,57.5 84.846041,49.386062 C 85.24805,39.959771 84.209424,37.228807 78.135516,31.741396 69.397299,23.846942 56.248905,24.042306 47.400954,32.198062 42.185742,37.005277 40.676507,41.537625 41.161367,50.936018 41.489059,57.287915 41.419224,57.51091 39,57.837662 c -1.375,0.185714 -3.5125,1.276656 -4.75,2.424314 -2.166902,2.009587 -2.25,2.72821 -2.25,19.457793 0,17.110099 0.03688,17.408025 2.454545,19.825686 L 36.909091,102 63,102 l 26.090909,0 2.588598,-2.588598 z M 53.681864,57.25 C 53.441971,56.8375 53.543837,52.964581 53.908235,48.643512 54.684374,39.439957 55.914396,38 63,38 c 7.085604,0 8.315626,1.439957 9.091765,10.643512 C 72.456163,52.964581 72.558029,56.8375 72.318136,57.25 72.078242,57.6625 67.885081,58 63,58 58.114919,58 53.921758,57.6625 53.681864,57.25 z"
+ id="path3145"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fda57b"
+ d="M 16.3117,121.05455 C 10.973711,118.63106 6.4335784,112.40551 5.0126652,105.56101 4.2890629,102.07543 4.013956,86.479366 4.2069476,59.88413 4.4940424,20.320984 4.5452808,19.415312 6.7273607,15.334215 8.8585515,11.348294 12.496145,8.048456 16.253162,6.6928966 17.21794,6.3447975 16.437394,7.6292724 14.517428,9.5492382 10.902204,13.164462 9.0992491,17.530902 10.623216,18.980334 c 0.482231,0.458646 8.477751,2.268176 17.767822,4.021177 l 16.891038,3.187276 6.379961,-2.094394 C 63.744986,20.127841 72.72313,21.754549 80.421209,29.305134 L 85.5,34.286617 l 13,2.249664 13,2.249664 2.09554,-2.269162 c 1.15254,-1.248039 2.62238,-4.912376 3.2663,-8.142972 1.29351,-6.489625 2.60795,-9.236802 3.83379,-8.012566 0.4424,0.441828 0.93619,19.034684 1.0973,41.317456 0.32135,44.445239 -0.0266,47.880249 -5.51016,54.397099 -5.76562,6.85204 -5.98427,6.88028 -53.28277,6.88028 -39.631252,0 -42.78271,-0.12836 -46.6883,-1.90153 z m 90.10421,-4.72275 c 2.66228,-1.52436 -41.762549,-2.82032 -67.062281,-1.95634 -12.752337,0.43548 -20.099356,0.29572 -22,-0.41852 -2.654787,-0.99764 -2.739396,-0.9566 -1.214237,0.58903 0.901665,0.91376 3.151665,2.04469 5,2.51317 5.052083,1.2805 82.929918,0.61627 85.276518,-0.72734 z M 91.679507,99.411402 94.268105,96.822804 93.789156,79.411531 C 93.265823,60.386735 92.669063,58.445913 87.146046,57.806391 L 84.5,57.5 84.846041,49.386062 C 85.24805,39.959771 84.209424,37.228807 78.135516,31.741396 69.397299,23.846942 56.248905,24.042306 47.400954,32.198062 42.185742,37.005277 40.676507,41.537625 41.161367,50.936018 41.489059,57.287915 41.419224,57.51091 39,57.837662 c -1.375,0.185714 -3.5125,1.276656 -4.75,2.424314 -2.166902,2.009587 -2.25,2.72821 -2.25,19.457793 0,17.110099 0.03688,17.408025 2.454545,19.825686 L 36.909091,102 63,102 l 26.090909,0 2.588598,-2.588598 z M 53.681864,57.25 C 53.441971,56.8375 53.543837,52.964581 53.908235,48.643512 54.684374,39.439957 55.914396,38 63,38 c 7.085604,0 8.315626,1.439957 9.091765,10.643512 C 72.456163,52.964581 72.558029,56.8375 72.318136,57.25 72.078242,57.6625 67.885081,58 63,58 58.114919,58 53.921758,57.6625 53.681864,57.25 z"
+ id="path3143"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#cdb396"
+ d="M 16.3117,121.05455 C 10.973711,118.63106 6.4335784,112.40551 5.0126652,105.56101 4.2890629,102.07543 4.013956,86.479366 4.2069476,59.88413 4.4940424,20.320984 4.5452808,19.415312 6.7273607,15.334215 8.8480535,11.367928 12.497561,8.0465009 16.199699,6.7134124 c 0.934834,-0.3366208 -0.07767,1.2194147 -2.25,3.4578566 -3.138589,3.234101 -3.946554,4.815232 -3.934386,7.699313 0.0084,1.99618 0.366208,4.18177 0.795079,4.856867 0.428872,0.675097 7.885971,2.587558 16.571331,4.249913 l 15.791563,3.022465 4.163357,-2.970346 c 5.676842,-4.050141 13.284991,-5.582401 20.511876,-4.131035 7.739163,1.554246 12.240436,4.829781 15.689246,11.416922 3.287682,6.279389 3.711115,6.456173 17.533405,7.320218 l 8.57117,0.535793 3.12951,-3.564309 c 1.73482,-1.975851 3.41648,-5.245049 3.77345,-7.335689 C 117.68811,24.578425 119.05628,20 119.91354,20 121.6554,20 122,27.340264 122,64.443499 c 0,41.725091 -0.39801,45.310761 -5.73329,51.651381 -5.7475,6.83051 -5.9857,6.8612 -53.26671,6.8612 -39.631252,0 -42.78271,-0.12836 -46.6883,-1.90153 z m 90.10421,-4.72275 c 2.66228,-1.52436 -41.762549,-2.82032 -67.062281,-1.95634 -12.752337,0.43548 -20.099356,0.29572 -22,-0.41852 -2.654787,-0.99764 -2.739396,-0.9566 -1.214237,0.58903 0.901665,0.91376 3.151665,2.04469 5,2.51317 5.052083,1.2805 82.929918,0.61627 85.276518,-0.72734 z M 91.641687,99.449222 94.192465,96.898444 93.846232,78.991492 C 93.526935,62.477609 93.34441,60.967032 91.5,59.574073 90.4,58.743316 88.514058,58.049295 87.309017,58.031803 84.201283,57.986693 83.983839,57.179225 85.050716,49.645711 86.231452,41.308209 85.078905,38.138849 78.752319,32.325913 69.54,23.861531 56.521579,23.790964 47.446351,32.156217 c -5.364896,4.945189 -6.744999,8.926071 -6.295803,18.16014 0.34129,7.015865 0.291063,7.191529 -2.150548,7.521305 -1.375,0.185714 -3.5125,1.276656 -4.75,2.424314 -2.166902,2.009587 -2.25,2.72821 -2.25,19.457793 0,17.110099 0.03688,17.408025 2.454545,19.825686 L 36.909091,102 63,102 l 26.090909,0 2.550778,-2.550778 z M 53.671086,57.25 c -0.245821,-0.4125 -0.137129,-4.07068 0.241538,-8.12929 0.871898,-9.345144 3.054568,-11.671185 10.051834,-10.712103 2.468317,0.33832 5.107723,1.235003 5.865348,1.992627 1.35024,1.35024 3.445856,15.343718 2.521746,16.838959 -0.609204,0.985714 -18.093423,0.994893 -18.680466,0.0098 z"
+ id="path3141"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fda373"
+ d="m 15.975265,120.75 c -2.600449,-1.31527 -5.700027,-4.05089 -7.4610548,-6.58495 L 5.5016703,109.83009 4.6919088,74.665046 C 3.4621693,21.261857 4.1927613,14.468555 11.727361,9.24694 c 5.171928,-3.5842405 6.187733,-3.1617401 2.222338,0.924329 -3.138589,3.234101 -3.946554,4.815232 -3.934386,7.699313 0.0084,1.99618 0.366208,4.18177 0.795079,4.856867 0.428872,0.675097 7.885971,2.587558 16.571331,4.249913 l 15.791563,3.022465 4.163357,-2.970346 c 5.676842,-4.050141 13.284991,-5.582401 20.511876,-4.131035 7.739163,1.554246 12.240436,4.829781 15.689246,11.416922 3.287682,6.279389 3.711115,6.456173 17.533405,7.320218 l 8.57117,0.535793 3.12951,-3.564309 c 1.73086,-1.97134 3.41886,-5.249821 3.77694,-7.335689 1.20097,-6.995674 2.0379,-9.633611 3.17689,-10.013276 2.17773,-0.725907 2.5672,9.309764 1.85009,47.672221 -0.76338,40.838054 -0.98125,42.616304 -5.8735,47.937944 -1.21125,1.31756 -4.00227,3.22632 -6.20227,4.24169 -3.68776,1.70201 -7.32055,1.84783 -46.53811,1.86808 -42.150228,0.0218 -42.578674,0.001 -46.986625,-2.22804 z m 90.440645,-4.4182 c 2.66228,-1.52436 -41.762549,-2.82032 -67.062281,-1.95634 -12.752337,0.43548 -20.099356,0.29572 -22,-0.41852 -2.654787,-0.99764 -2.739396,-0.9566 -1.214237,0.58903 0.901665,0.91376 3.151665,2.04469 5,2.51317 5.052083,1.2805 82.929918,0.61627 85.276518,-0.72734 z M 91.641687,99.449222 94.192465,96.898444 93.846232,78.991492 C 93.526935,62.477609 93.34441,60.967032 91.5,59.574073 90.4,58.743316 88.514058,58.049295 87.309017,58.031803 84.201283,57.986693 83.983839,57.179225 85.050716,49.645711 86.231452,41.308209 85.078905,38.138849 78.752319,32.325913 69.54,23.861531 56.521579,23.790964 47.446351,32.156217 c -5.364896,4.945189 -6.744999,8.926071 -6.295803,18.16014 0.34129,7.015865 0.291063,7.191529 -2.150548,7.521305 -1.375,0.185714 -3.5125,1.276656 -4.75,2.424314 -2.166902,2.009587 -2.25,2.72821 -2.25,19.457793 0,17.110099 0.03688,17.408025 2.454545,19.825686 L 36.909091,102 63,102 l 26.090909,0 2.550778,-2.550778 z M 53.671086,57.25 c -0.245821,-0.4125 -0.137129,-4.07068 0.241538,-8.12929 0.871898,-9.345144 3.054568,-11.671185 10.051834,-10.712103 2.468317,0.33832 5.107723,1.235003 5.865348,1.992627 1.35024,1.35024 3.445856,15.343718 2.521746,16.838959 -0.609204,0.985714 -18.093423,0.994893 -18.680466,0.0098 z"
+ id="path3139"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fda36b"
+ d="m 15.975265,120.75 c -2.600449,-1.31527 -5.700027,-4.05089 -7.4610548,-6.58495 L 5.5016703,109.83009 4.6919088,74.665046 C 3.4621693,21.261857 4.1927613,14.468555 11.727361,9.24694 16.899289,5.6626995 17.915094,6.0851999 13.949699,10.171269 10.626611,13.595484 10,14.905627 10,18.429452 c 0,6.446335 1.225623,7.348746 13,9.571739 5.775,1.090315 12.436349,2.501245 14.802998,3.1354 4.129609,1.106548 4.431819,1.0308 7.5,-1.879838 5.040289,-4.781487 9.241119,-6.436036 16.579627,-6.530094 8.856297,-0.113512 13.157779,1.508641 18.03707,6.802047 5.942302,6.446636 5.332789,8.91653 -0.787614,3.191609 -9.283004,-8.683163 -22.289204,-9.090358 -31.267597,-0.978919 -6.073908,5.487411 -7.112534,8.218375 -6.710525,17.644666 0.341465,8.006632 0.312979,8.118404 -2.153959,8.4516 -1.375,0.185714 -3.5125,1.276656 -4.75,2.424314 -2.166902,2.009587 -2.25,2.72821 -2.25,19.457793 0,17.110099 0.03688,17.408025 2.454545,19.825686 L 36.909091,102 63,102 l 26.090909,0 2.53502,-2.535019 2.535019,-2.53502 -0.330474,-17.923496 C 93.52549,62.465413 93.345739,60.966527 91.5,59.573288 c -1.1,-0.830325 -2.985942,-1.523993 -4.190983,-1.541485 -3.016538,-0.04379 -3.197053,-0.709087 -1.966698,-7.248414 0.943856,-5.016586 1.3255,-5.656202 3.116622,-5.223294 1.122583,0.271325 5.18249,0.863369 9.022016,1.315655 l 6.980953,0.822336 5.59692,-5.599043 c 5.23687,-5.238866 5.6884,-6.076796 7.01904,-13.025841 0.78217,-4.084739 1.95301,-7.5992 2.60187,-7.809914 2.2302,-0.724247 2.61824,9.031322 1.89603,47.667038 -0.76338,40.838054 -0.98125,42.616304 -5.8735,47.937944 -1.21125,1.31756 -4.00227,3.22632 -6.20227,4.24169 -3.68776,1.70201 -7.32055,1.84783 -46.53811,1.86808 -42.150228,0.0218 -42.578674,0.001 -46.986625,-2.22804 z m 90.440645,-4.4182 c 2.66228,-1.52436 -41.762549,-2.82032 -67.062281,-1.95634 -12.752337,0.43548 -20.099356,0.29572 -22,-0.41852 -2.654787,-0.99764 -2.739396,-0.9566 -1.214237,0.58903 0.901665,0.91376 3.151665,2.04469 5,2.51317 5.052083,1.2805 82.929918,0.61627 85.276518,-0.72734 z M 53.62687,57.20528 c -0.595452,-0.963461 1.079251,-14.920757 1.961612,-16.348447 0.387007,-0.626191 2.59649,-0.745517 5.769363,-0.311583 8.857066,1.211327 9.187913,1.497705 10.436704,9.033917 0.61536,3.713579 0.886767,7.127458 0.603127,7.586397 -0.657884,1.064478 -18.11464,1.101414 -18.770806,0.03972 z"
+ id="path3137"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fc9e71"
+ d="m 15.975265,120.75 c -2.600449,-1.31527 -5.700027,-4.05089 -7.4610548,-6.58495 L 5.5016703,109.83009 4.6919088,74.665046 C 3.4621693,21.261857 4.1927613,14.468555 11.727361,9.24694 16.899289,5.6626995 17.915094,6.0851999 13.949699,10.171269 10.626611,13.595484 10,14.905627 10,18.429452 c 0,6.446335 1.225623,7.348746 13,9.571739 5.775,1.090315 12.436349,2.501245 14.802998,3.1354 4.129609,1.106548 4.431819,1.0308 7.5,-1.879838 5.040289,-4.781487 9.241119,-6.436036 16.579627,-6.530094 8.856297,-0.113512 13.157779,1.508641 18.03707,6.802047 5.942302,6.446636 5.332789,8.91653 -0.787614,3.191609 -9.907316,-9.267133 -22.988974,-9.132028 -32.467653,0.335322 -4.173354,4.168366 -5.159666,4.706572 -7.202134,3.930027 -1.898062,-0.721642 -2.254529,-0.607813 -1.800644,0.574993 0.311255,0.811117 1.302215,1.35429 2.202134,1.20705 1.05559,-0.172709 1.471971,0.264581 1.173369,1.232293 -0.402842,1.305533 -0.309656,6.026057 0.295571,14.972739 0.128188,1.89493 -0.416904,2.595946 -2.332724,3 -1.375,0.289994 -3.5125,1.198007 -4.75,2.017808 -2.193277,1.452969 -2.25,1.939416 -2.25,19.295454 0,17.570643 0.03229,17.837203 2.454545,20.259454 L 36.909091,102 63,102 89.090909,102 91.608384,99.482526 94.125858,96.965051 93.812929,79.02364 C 93.52391,62.45307 93.347187,60.966907 91.5,59.572918 c -1.1,-0.830121 -2.985942,-1.523623 -4.190983,-1.541115 -2.936158,-0.04262 -3.573562,-1.357084 -2.161206,-4.456867 1.291795,-2.835182 2.273925,-3.005149 8.744899,-1.513387 3.972525,0.91579 4.737767,0.769845 8,-1.525749 1.98401,-1.396123 5.85729,-5.201167 8.60729,-8.455653 4.27269,-5.056508 5.21819,-6.972264 6.5,-13.170067 0.825,-3.98905 2.03088,-7.427664 2.67974,-7.641363 2.23018,-0.734504 2.61831,9.022163 1.89603,47.661609 -0.76338,40.838054 -0.98125,42.616304 -5.8735,47.937944 -1.21125,1.31756 -4.00227,3.22632 -6.20227,4.24169 -3.68776,1.70201 -7.32055,1.84783 -46.53811,1.86808 -42.150228,0.0218 -42.578674,0.001 -46.986625,-2.22804 z m 90.440645,-4.4182 c 2.66228,-1.52436 -41.762549,-2.82032 -67.062281,-1.95634 -12.752337,0.43548 -20.099356,0.29572 -22,-0.41852 -2.654787,-0.99764 -2.739396,-0.9566 -1.214237,0.58903 0.901665,0.91376 3.151665,2.04469 5,2.51317 5.052083,1.2805 82.929918,0.61627 85.276518,-0.72734 z M 53.692164,57.286447 c -0.41145,-0.687132 1.269474,-11.182959 1.945666,-12.148891 0.139549,-0.199345 3.604984,0.383139 7.700966,1.294409 6.747199,1.501109 7.497657,1.91118 7.983577,4.362444 1.436757,7.247835 2.088999,6.677117 -7.990831,6.992038 -5.042651,0.157545 -9.380371,-0.06746 -9.639378,-0.5 z"
+ id="path3135"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#c8ac96"
+ d="m 15.975265,120.75 c -2.600449,-1.31527 -5.700027,-4.05089 -7.4610548,-6.58495 L 5.5016703,109.83009 4.6919088,74.665046 C 3.4621693,21.261857 4.1927613,14.468555 11.727361,9.24694 c 5.142651,-3.563951 6.196792,-3.1710742 2.290804,0.853779 -4.9142752,5.063826 -5.5461448,7.989273 -3.209929,14.86142 l 1.856878,5.462139 8.731496,1.718576 c 4.802323,0.945216 9.265172,2.137704 9.917443,2.649973 0.652271,0.512269 2.423447,1.227021 3.935947,1.588338 1.5125,0.361316 2.75,1.098366 2.75,1.637887 0,2.189318 2.060192,0.772652 3.343724,-2.299273 1.751638,-4.192259 7.168459,-9.618009 11.343937,-11.362635 5.019081,-2.097106 16.618094,-1.751969 21.294245,0.633625 3.948114,2.014178 9.812123,8.548536 8.683971,9.676687 -0.337161,0.337162 -2.393063,-0.99514 -4.56867,-2.960671 -9.315923,-8.416376 -22.136105,-7.682363 -32.039236,1.834389 L 40.5,38.882297 l 0.298758,6.808851 c 0.164316,3.744869 0.389316,7.921585 0.5,9.281591 0.155267,1.907828 -0.369897,2.593196 -2.298758,3 -1.375,0.289994 -3.5125,1.198007 -4.75,2.017808 -2.193277,1.452969 -2.25,1.939416 -2.25,19.295454 0,17.570643 0.03229,17.837203 2.454545,20.259454 L 36.909091,102 63,102 89.090909,102 91.608384,99.482526 94.125858,96.965051 93.812929,79.02364 C 93.52391,62.45307 93.347187,60.966907 91.5,59.572918 c -1.1,-0.830121 -2.985942,-1.523623 -4.190983,-1.541115 -2.936158,-0.04262 -3.573562,-1.357084 -2.161206,-4.456867 1.291795,-2.835182 2.273925,-3.005149 8.744899,-1.513387 4.000141,0.922156 4.736274,0.774567 8.23705,-1.65147 3.46957,-2.404417 11.19969,-10.701471 13.36338,-14.343461 0.46836,-0.788359 1.33651,-4.353663 1.92921,-7.922896 0.59271,-3.569233 1.60853,-6.663673 2.25739,-6.876532 2.23019,-0.731619 2.61829,9.024739 1.89603,47.663136 -0.76338,40.838054 -0.98125,42.616304 -5.8735,47.937944 -1.21125,1.31756 -4.00227,3.22632 -6.20227,4.24169 -3.68776,1.70201 -7.32055,1.84783 -46.53811,1.86808 -42.150228,0.0218 -42.578674,0.001 -46.986625,-2.22804 z m 90.440645,-4.4182 c 2.66228,-1.52436 -41.762549,-2.82032 -67.062281,-1.95634 -12.752337,0.43548 -20.099356,0.29572 -22,-0.41852 -2.654787,-0.99764 -2.739396,-0.9566 -1.214237,0.58903 0.901665,0.91376 3.151665,2.04469 5,2.51317 5.052083,1.2805 82.929918,0.61627 85.276518,-0.72734 z M 53.692164,57.286447 c -0.41145,-0.687132 1.269474,-11.182959 1.945666,-12.148891 0.139549,-0.199345 3.604984,0.383139 7.700966,1.294409 6.747199,1.501109 7.497657,1.91118 7.983577,4.362444 1.436757,7.247835 2.088999,6.677117 -7.990831,6.992038 -5.042651,0.157545 -9.380371,-0.06746 -9.639378,-0.5 z"
+ id="path3133"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fec745"
+ d="M 16.383912,121.08688 C 11.599815,118.91434 7.8218391,114.2169 6.1674356,108.38398 5.3600616,105.53743 5,91.106461 5,61.594142 5,21.056627 5.0989891,18.726289 6.9773607,15.044377 8.86401,11.346239 12.529559,8.034979 16.199699,6.7134124 c 0.934834,-0.3366208 -0.04686,1.1876673 -2.181534,3.3873066 -4.9142752,5.063826 -5.5461448,7.989273 -3.209929,14.86142 l 1.856878,5.462139 8.731496,1.718576 c 4.802323,0.945216 9.265172,2.137704 9.917443,2.649973 0.652271,0.512269 2.423447,1.227021 3.935947,1.588338 1.5125,0.361316 2.75,1.098366 2.75,1.637887 0,2.189318 2.060192,0.772652 3.343724,-2.299273 1.751638,-4.192259 7.168459,-9.618009 11.343937,-11.362635 5.019081,-2.097106 16.618094,-1.751969 21.294245,0.633625 3.948114,2.014178 9.812123,8.548536 8.683971,9.676687 -0.337161,0.337162 -2.393063,-0.99514 -4.56867,-2.960671 -9.315923,-8.416376 -22.136105,-7.682363 -32.039236,1.834389 L 40.5,38.882297 l 0.298758,6.808851 c 0.164316,3.744869 0.389316,7.921585 0.5,9.281591 0.155267,1.907828 -0.369897,2.593196 -2.298758,3 -1.375,0.289994 -3.5125,1.198007 -4.75,2.017808 -2.193277,1.452969 -2.25,1.939416 -2.25,19.295454 0,17.570643 0.03229,17.837203 2.454545,20.259454 L 36.909091,102 63,102 89.090909,102 91.608384,99.482526 94.125858,96.965051 93.812929,79.02364 C 93.52391,62.45307 93.347187,60.966907 91.5,59.572918 c -1.1,-0.830121 -2.985942,-1.523623 -4.190983,-1.541115 -2.936158,-0.04262 -3.573562,-1.357084 -2.161206,-4.456867 1.291795,-2.835182 2.273925,-3.005149 8.744899,-1.513387 4.000141,0.922156 4.736274,0.774567 8.23705,-1.65147 3.46957,-2.404417 11.19969,-10.701471 13.36338,-14.343461 0.46836,-0.788359 1.33651,-4.388359 1.92921,-8 2.34372,-14.281386 3.07712,-6.650097 3.33879,34.741152 0.28718,45.42598 -0.10361,49.27259 -5.53411,54.47409 -5.9101,5.66089 -6.45495,5.72007 -52.444911,5.69618 -39.133533,-0.0203 -42.588628,-0.16116 -46.398207,-1.89116 z m 90.031998,-4.75508 c 2.66228,-1.52436 -41.762549,-2.82032 -67.062281,-1.95634 -12.752337,0.43548 -20.099356,0.29572 -22,-0.41852 -2.654787,-0.99764 -2.739396,-0.9566 -1.214237,0.58903 0.901665,0.91376 3.151665,2.04469 5,2.51317 5.052083,1.2805 82.929918,0.61627 85.276518,-0.72734 z M 53.692164,57.286447 c -0.41145,-0.687132 1.269474,-11.182959 1.945666,-12.148891 0.139549,-0.199345 3.604984,0.383139 7.700966,1.294409 6.747199,1.501109 7.497657,1.91118 7.983577,4.362444 1.436757,7.247835 2.088999,6.677117 -7.990831,6.992038 -5.042651,0.157545 -9.380371,-0.06746 -9.639378,-0.5 z"
+ id="path3131"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#afaead"
+ d="M 16.383912,121.08688 C 11.599815,118.91434 7.8218391,114.2169 6.1674356,108.38398 5.3600616,105.53743 5,91.106461 5,61.594142 5,21.056627 5.0989891,18.726289 6.9773607,15.044377 8.86401,11.346239 12.529559,8.034979 16.199699,6.7134124 c 0.934834,-0.3366208 -0.04686,1.1876673 -2.181534,3.3873066 -4.9142752,5.063826 -5.5461448,7.989273 -3.209929,14.86142 l 1.856878,5.462139 8.731496,1.718576 c 4.802323,0.945216 9.265172,2.137704 9.917443,2.649973 0.652271,0.512269 2.423447,1.227021 3.935947,1.588338 1.5125,0.361316 2.75,1.098366 2.75,1.637887 0,2.189318 2.060192,0.772652 3.343724,-2.299273 1.751638,-4.192259 7.168459,-9.618009 11.343937,-11.362635 5.019081,-2.097106 16.618094,-1.751969 21.294245,0.633625 3.948114,2.014178 9.812123,8.548536 8.683971,9.676687 -0.337161,0.337162 -2.393063,-0.99514 -4.56867,-2.960671 -9.315923,-8.416376 -22.136105,-7.682363 -32.039236,1.834389 L 40.5,38.882297 l 0.298758,6.808851 c 0.164316,3.744869 0.389316,7.921585 0.5,9.281591 0.155267,1.907828 -0.369897,2.593196 -2.298758,3 -1.375,0.289994 -3.5125,1.198007 -4.75,2.017808 -2.187694,1.449271 -2.249622,1.961565 -2.236345,18.5 0.0075,9.355199 0.289707,18.039975 0.627104,19.299501 1.232917,4.602562 4.529478,5.211842 28.059581,5.186092 23.677404,-0.0259 28.844331,-0.69819 31.61071,-4.112965 1.625005,-2.005879 1.779096,-4.061277 1.5,-20.008238 C 93.523973,62.452019 93.345855,60.965902 91.5,59.572918 c -1.1,-0.830121 -2.985942,-1.523623 -4.190983,-1.541115 -2.936158,-0.04262 -3.573562,-1.357084 -2.161206,-4.456867 1.291795,-2.835182 2.273925,-3.005149 8.744899,-1.513387 4.000141,0.922156 4.736274,0.774567 8.23705,-1.65147 3.46957,-2.404417 11.19969,-10.701471 13.36338,-14.343461 0.46836,-0.788359 1.33651,-4.388359 1.92921,-8 2.34372,-14.281386 3.07712,-6.650097 3.33879,34.741152 0.28718,45.42598 -0.10361,49.27259 -5.53411,54.47409 -5.9101,5.66089 -6.45495,5.72007 -52.444911,5.69618 -39.133533,-0.0203 -42.588628,-0.16116 -46.398207,-1.89116 z m 89.971218,-4.72106 c 3.03703,-1.74022 -12.167878,-2.41595 -52.686051,-2.34146 -20.19129,0.0371 -37.264406,-0.24156 -37.940258,-0.6193 -0.675851,-0.37774 -0.491095,0.0982 0.410571,1.05775 0.901665,0.9595 3.151665,2.12785 5,2.59633 4.943186,1.2529 82.926478,0.61843 85.215738,-0.69332 z M 53.692164,57.286447 c -0.41145,-0.687132 1.269474,-11.182959 1.945666,-12.148891 0.139549,-0.199345 3.604984,0.383139 7.700966,1.294409 6.747199,1.501109 7.497657,1.91118 7.983577,4.362444 1.436757,7.247835 2.088999,6.677117 -7.990831,6.992038 -5.042651,0.157545 -9.380371,-0.06746 -9.639378,-0.5 z"
+ id="path3129"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#dca983"
+ d="M 16.5,120.10996 C 11.355998,117.73585 8.4484912,114.52261 6.5338007,109.0958 5.2467614,105.44794 5,97.844426 5,61.834435 5,21.057544 5.098477,18.727293 6.9773607,15.044377 8.86401,11.346239 12.529559,8.034979 16.199699,6.7134124 c 0.934834,-0.3366208 -0.04686,1.1876673 -2.181534,3.3873066 -4.9142752,5.063826 -5.5461448,7.989273 -3.209929,14.86142 l 1.856878,5.462139 8.731496,1.718576 c 4.802323,0.945216 9.265172,2.137704 9.917443,2.649973 0.652271,0.512269 2.423447,1.227021 3.935947,1.588338 1.5125,0.361316 2.75,1.098366 2.75,1.637887 0,2.189318 2.060192,0.772652 3.343724,-2.299273 1.751638,-4.192259 7.168459,-9.618009 11.343937,-11.362635 5.019081,-2.097106 16.618094,-1.751969 21.294245,0.633625 3.948114,2.014178 9.812123,8.548536 8.683971,9.676687 -0.337161,0.337162 -2.393063,-0.99514 -4.56867,-2.960671 -9.315923,-8.416376 -22.136105,-7.682363 -32.039236,1.834389 L 40.5,38.882297 l 0.298758,6.808851 c 0.164316,3.744869 0.389316,7.921585 0.5,9.281591 0.155267,1.907828 -0.369897,2.593196 -2.298758,3 -1.375,0.289994 -3.5125,1.198007 -4.75,2.017808 -2.187694,1.449271 -2.249622,1.961565 -2.236345,18.5 0.0075,9.355199 0.289707,18.039975 0.627104,19.299501 1.232917,4.602562 4.529478,5.211842 28.059581,5.186092 23.677404,-0.0259 28.844331,-0.69819 31.61071,-4.112965 1.625005,-2.005879 1.779096,-4.061277 1.5,-20.008238 C 93.523973,62.452019 93.345855,60.965902 91.5,59.572918 c -1.1,-0.830121 -2.985942,-1.523623 -4.190983,-1.541115 -2.936158,-0.04262 -3.573562,-1.357084 -2.161206,-4.456867 1.291795,-2.835182 2.273925,-3.005149 8.744899,-1.513387 4.000141,0.922156 4.736274,0.774567 8.23705,-1.65147 3.46957,-2.404417 11.19969,-10.701471 13.36338,-14.343461 0.46836,-0.788359 1.33651,-4.388359 1.92921,-8 2.34543,-14.291789 3.07715,-6.645279 3.33891,34.89143 0.28643,45.451242 0.0215,48.002362 -5.53799,53.327422 -5.90584,5.6568 -6.45539,5.71645 -52.441151,5.69257 C 23.813449,121.9578 20.186539,121.8114 16.5,120.10996 z m 89.85513,-3.74414 c 3.03703,-1.74022 -12.167878,-2.41595 -52.686051,-2.34146 -20.19129,0.0371 -37.264406,-0.24156 -37.940258,-0.6193 -0.675851,-0.37774 -0.491095,0.0982 0.410571,1.05775 0.901665,0.9595 3.151665,2.12785 5,2.59633 4.943186,1.2529 82.926478,0.61843 85.215738,-0.69332 z M 53.692164,57.286447 c -0.41145,-0.687132 1.269474,-11.182959 1.945666,-12.148891 0.139549,-0.199345 3.604984,0.383139 7.700966,1.294409 6.747199,1.501109 7.497657,1.91118 7.983577,4.362444 1.436757,7.247835 2.088999,6.677117 -7.990831,6.992038 -5.042651,0.157545 -9.380371,-0.06746 -9.639378,-0.5 z"
+ id="path3127"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fed236"
+ d="M 16.5,120.10996 C 11.355998,117.73585 8.4484912,114.52261 6.5338007,109.0958 4.229917,102.5659 4.2496834,21.383433 6.5563406,16.522514 7.9116737,13.666361 13.995095,6.8616148 12.834445,9.5 c -0.24195,0.55 -1.255373,2.796766 -2.252051,4.992813 -1.7570005,3.871317 -1.7541176,4.174207 0.09474,9.954158 l 1.906884,5.961346 8.772042,1.726556 c 4.824624,0.949606 9.305719,2.145685 9.95799,2.657954 0.652271,0.512269 2.423447,1.227021 3.935947,1.588338 1.5125,0.361316 2.75,1.098366 2.75,1.637887 0,2.189318 2.060192,0.772652 3.343724,-2.299273 C 43.095362,31.52752 48.512183,26.10177 52.687661,24.357144 54.474117,23.610715 59.118143,23 63.007719,23 c 8.309518,0 13.507672,2.187021 17.434349,7.33516 3.712472,4.867302 3.144329,5.322621 -1.587562,1.272298 -5.488389,-4.697857 -9.692048,-5.959366 -17.900904,-5.372026 -7.909887,0.56595 -11.956264,2.695673 -16.966098,8.929742 -2.932675,3.649321 -3.406561,4.980096 -3.342854,9.387449 0.04083,2.82444 0.373216,6.729075 0.738643,8.676967 0.612925,3.26717 0.449458,3.59448 -2.109441,4.223738 -1.525618,0.375164 -3.786352,1.337016 -5.023852,2.137448 -2.190884,1.417093 -2.249641,1.907949 -2.236345,18.682277 0.0075,9.474821 0.289707,18.257469 0.627104,19.516995 1.232917,4.602562 4.529478,5.211842 28.059581,5.186092 C 72.690153,102.96302 84.3,102.53523 86.5,102.0255 93.524875,100.39785 94,99.031313 94,80.454316 94,71.476052 93.57032,63.000056 93.045156,61.61877 c -0.656256,-1.726085 -2.219795,-2.890417 -5,-3.723387 C 85.82032,57.228806 84,56.550828 84,56.388765 c 0,-0.162062 0.522232,-1.440833 1.160515,-2.841712 1.27889,-2.806857 2.269449,-2.975369 8.732195,-1.485504 4.012653,0.925041 4.732012,0.77752 8.31436,-1.705049 4.76587,-3.302749 13.64233,-13.725541 14.22143,-16.698899 0.23113,-1.18668 0.79177,-4.146365 1.24587,-6.577076 0.45409,-2.430711 1.38813,-4.605711 2.07563,-4.833333 0.98655,-0.326635 1.25,8.323605 1.25,41.043748 0,34.701054 -0.24997,42.1661 -1.5338,45.80486 -1.91469,5.42681 -4.8222,8.64005 -9.9662,11.01416 -3.69017,1.70312 -7.29198,1.84612 -46.5,1.84612 -39.208018,0 -42.809834,-0.143 -46.5,-1.84612 z m 89.85513,-3.74414 c 3.03703,-1.74022 -12.167878,-2.41595 -52.686051,-2.34146 -20.19129,0.0371 -37.264406,-0.24156 -37.940258,-0.6193 -0.675851,-0.37774 -0.491095,0.0982 0.410571,1.05775 0.901665,0.9595 3.151665,2.12785 5,2.59633 4.943186,1.2529 82.926478,0.61843 85.215738,-0.69332 z M 53.440211,55.295212 c 0.359804,-0.937633 0.919114,-3.637633 1.242913,-6 C 55.006922,46.932845 55.68435,45 56.188519,45 c 0.504168,0 3.995641,0.700297 7.758827,1.556215 6.1464,1.39797 6.889321,1.830138 7.305976,4.25 C 71.508423,52.287797 72.05393,54.2875 72.46556,55.25 73.150381,56.851293 72.346043,57 63,57 53.786438,57 52.850097,56.833023 53.440211,55.295212 z"
+ id="path3125"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#f8b756"
+ d="M 16.5,120.10996 C 11.355998,117.73585 8.4484912,114.52261 6.5338007,109.0958 4.229917,102.5659 4.2496834,21.383433 6.5563406,16.522514 7.9116737,13.666361 13.995095,6.8616148 12.834445,9.5 c -0.24195,0.55 -1.255373,2.796766 -2.252051,4.992813 -1.7570005,3.871317 -1.7541176,4.174207 0.09474,9.954158 l 1.906884,5.961346 8.772042,1.726556 c 4.824624,0.949606 9.305719,2.145685 9.95799,2.657954 0.652271,0.512269 2.423447,1.227021 3.935947,1.588338 1.5125,0.361316 2.75,1.098366 2.75,1.637887 0,2.189318 2.060192,0.772652 3.343724,-2.299273 C 43.095362,31.52752 48.512183,26.10177 52.687661,24.357144 54.474117,23.610715 59.118143,23 63.007719,23 c 8.309518,0 13.507672,2.187021 17.434349,7.33516 3.712472,4.867302 3.144329,5.322621 -1.587562,1.272298 -5.488389,-4.697857 -9.692048,-5.959366 -17.900904,-5.372026 -7.909887,0.56595 -11.956264,2.695673 -16.966098,8.929742 -2.932675,3.649321 -3.406561,4.980096 -3.342854,9.387449 0.04083,2.82444 0.373216,6.729075 0.738643,8.676967 0.612925,3.26717 0.449458,3.59448 -2.109441,4.223738 -1.525618,0.375164 -3.786352,1.337016 -5.023852,2.137448 -2.190884,1.417093 -2.249641,1.907949 -2.236345,18.682277 0.0075,9.474821 0.289707,18.257469 0.627104,19.516995 1.232917,4.602562 4.529478,5.211842 28.059581,5.186092 C 72.690153,102.96302 84.3,102.53523 86.5,102.0255 93.524875,100.39785 94,99.031313 94,80.454316 94,71.476052 93.57032,63.000056 93.045156,61.61877 c -0.656256,-1.726085 -2.219795,-2.890417 -5,-3.723387 C 85.82032,57.228806 84,56.550828 84,56.388765 c 0,-0.162062 0.522232,-1.440833 1.160515,-2.841712 1.27889,-2.806857 2.269449,-2.975369 8.732195,-1.485504 4.012653,0.925041 4.732012,0.77752 8.31436,-1.705049 4.76587,-3.302749 13.64233,-13.725541 14.22143,-16.698899 0.23113,-1.18668 0.79177,-4.146365 1.24587,-6.577076 0.45409,-2.430711 1.38813,-4.605711 2.07563,-4.833333 0.98655,-0.326635 1.25,8.323605 1.25,41.043748 0,34.701054 -0.24997,42.1661 -1.5338,45.80486 -1.91469,5.42681 -4.8222,8.64005 -9.9662,11.01416 -3.69017,1.70312 -7.29198,1.84612 -46.5,1.84612 -39.208018,0 -42.809834,-0.143 -46.5,-1.84612 z m 90,-3.86515 c 1.85112,-1.09586 1.77668,-1.18779 -1,-1.235 -11.798715,-0.2006 -33.386721,-2.23155 -37.09204,-3.48954 -5.761278,-1.956 -13.11535,-1.93539 -18.972539,0.0532 -5.277185,1.79166 -29.375068,3.35825 -32.736926,2.12822 -2.04067,-0.74664 -2.080806,-0.68557 -0.559103,0.85066 0.901665,0.91027 3.151665,2.03834 5,2.50682 5.330831,1.35115 82.953548,0.61065 85.360608,-0.81433 z M 53.440211,55.295212 c 0.359804,-0.937633 0.919114,-3.637633 1.242913,-6 C 55.006922,46.932845 55.68435,45 56.188519,45 c 0.504168,0 3.995641,0.700297 7.758827,1.556215 6.1464,1.39797 6.889321,1.830138 7.305976,4.25 C 71.508423,52.287797 72.05393,54.2875 72.46556,55.25 73.150381,56.851293 72.346043,57 63,57 53.786438,57 52.850097,56.833023 53.440211,55.295212 z"
+ id="path3123"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fda264"
+ d="M 16.5,120.10996 C 11.355998,117.73585 8.4484912,114.52261 6.5338007,109.0958 4.229917,102.5659 4.2496834,21.383433 6.5563406,16.522514 7.9116737,13.666361 13.995095,6.8616148 12.834445,9.5 c -0.24195,0.55 -1.255373,2.796766 -2.252051,4.992813 -1.7570005,3.871317 -1.7541176,4.174207 0.09474,9.954158 l 1.906884,5.961346 8.772042,1.726556 c 4.824624,0.949606 9.305719,2.145685 9.95799,2.657954 0.652271,0.512269 2.423447,1.227021 3.935947,1.588338 1.5125,0.361316 2.75,1.098366 2.75,1.637887 0,2.189318 2.060192,0.772652 3.343724,-2.299273 C 43.095362,31.52752 48.512183,26.10177 52.687661,24.357144 54.474117,23.610715 59.118143,23 63.007719,23 c 8.309518,0 13.507672,2.187021 17.434349,7.33516 3.712472,4.867302 3.144329,5.322621 -1.587562,1.272298 -5.488389,-4.697857 -9.692048,-5.959366 -17.900904,-5.372026 -7.909887,0.56595 -11.956264,2.695673 -16.966098,8.929742 -2.932675,3.649321 -3.406561,4.980096 -3.342854,9.387449 0.04083,2.82444 0.369137,6.707329 0.729577,8.628643 0.633656,3.377676 0.52639,3.531935 -3.240813,4.660616 -2.142888,0.642025 -4.429259,1.809663 -5.080825,2.594752 -1.538252,1.85348 -1.698288,35.48835 -0.182333,38.320938 2.115857,3.953518 5.666217,4.420568 30.959788,4.072798 22.595152,-0.31067 24.195981,-0.45597 26.848866,-2.43695 L 93.5,98.286833 93.773074,81.269205 C 93.924155,71.854 93.609275,63.102514 93.06823,61.679459 92.387132,59.888034 90.862522,58.739486 88.045156,57.895383 85.82032,57.228806 84,56.550828 84,56.388765 c 0,-0.162062 0.522232,-1.440833 1.160515,-2.841712 1.27889,-2.806857 2.269449,-2.975369 8.732195,-1.485504 4.012653,0.925041 4.732012,0.77752 8.31436,-1.705049 4.76587,-3.302749 13.64233,-13.725541 14.22143,-16.698899 0.23113,-1.18668 0.79177,-4.146365 1.24587,-6.577076 0.45409,-2.430711 1.38813,-4.605711 2.07563,-4.833333 0.98655,-0.326635 1.25,8.323605 1.25,41.043748 0,34.701054 -0.24997,42.1661 -1.5338,45.80486 -1.91469,5.42681 -4.8222,8.64005 -9.9662,11.01416 -3.69017,1.70312 -7.29198,1.84612 -46.5,1.84612 -39.208018,0 -42.809834,-0.143 -46.5,-1.84612 z M 110.3089,115 c 5.4074,-3.6938 5.28717,-5.21349 -0.18774,-2.37301 l -4.75459,2.46677 -16.433285,-1.0567 C 79.881725,113.45502 70.703226,112.33069 68.5,111.53407 c -5.167744,-1.86851 -13.922051,-1.84802 -19,0.0445 -2.332182,0.86917 -9.426878,1.74313 -17.015516,2.09605 -12.035589,0.55974 -13.334328,0.44267 -17.25,-1.55496 -4.369797,-2.2293 -5.5798258,-1.64711 -2.454731,1.18106 5.033133,4.55492 6.327025,4.66658 51.294803,4.42656 L 106.64911,117.5 110.3089,115 z M 53.440211,55.295212 c 0.359804,-0.937633 0.919114,-3.637633 1.242913,-6 C 55.006922,46.932845 55.68435,45 56.188519,45 c 0.504168,0 3.995641,0.700297 7.758827,1.556215 6.1464,1.39797 6.889321,1.830138 7.305976,4.25 C 71.508423,52.287797 72.05393,54.2875 72.46556,55.25 73.150381,56.851293 72.346043,57 63,57 53.786438,57 52.850097,56.833023 53.440211,55.295212 z"
+ id="path3121"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fda65b"
+ d="M 16.5,120.10996 C 11.355998,117.73585 8.4484912,114.52261 6.5338007,109.0958 4.229917,102.5659 4.2496834,21.383433 6.5563406,16.522514 7.9116737,13.666361 13.995095,6.8616148 12.834445,9.5 c -0.24195,0.55 -1.255373,2.796766 -2.252051,4.992813 -1.7570005,3.871317 -1.7541176,4.174207 0.09474,9.954158 l 1.906884,5.961346 8.772042,1.726556 c 4.824624,0.949606 9.305719,2.145685 9.95799,2.657954 0.652271,0.512269 2.423447,1.227021 3.935947,1.588338 1.5125,0.361316 2.75,1.098366 2.75,1.637887 0,2.189318 2.060192,0.772652 3.343724,-2.299273 C 43.095362,31.52752 48.512183,26.10177 52.687661,24.357144 54.474117,23.610715 59.118143,23 63.007719,23 c 8.309518,0 13.507672,2.187021 17.434349,7.33516 3.621915,4.748576 3.171116,5.410407 -1.119341,1.643336 -2.022499,-1.775778 -5.158046,-3.847395 -6.967881,-4.603592 -3.927264,-1.640916 -12.357975,-1.779382 -17.718271,-0.291005 -4.677554,1.298802 -12.142766,8.641478 -14.321337,14.086263 -0.842819,2.106411 -2.046037,3.843522 -2.673818,3.860247 -0.627781,0.01672 -0.35392,0.489085 0.60858,1.04969 1.028133,0.598832 1.75,2.211926 1.75,3.910574 0,1.590211 0.45,3.169408 1,3.509327 2.11556,1.307488 0.840167,3.231312 -2.881373,4.346312 -2.134755,0.639589 -4.414472,1.805233 -5.066038,2.590322 -1.538252,1.85348 -1.698288,35.48835 -0.182333,38.320938 2.115857,3.953518 5.666217,4.420568 30.959788,4.072798 22.595412,-0.31068 24.19595,-0.45595 26.848866,-2.43701 L 93.5,98.286711 93.773166,80.6209 C 93.941006,69.766567 93.645534,62.206191 93.006849,61.012797 92.435133,59.944537 90.174709,58.533412 87.983683,57.876965 83.853268,56.639463 83.11007,55.67624 85.25,54.333975 c 1.738077,-1.090203 4.917517,-0.444877 7.009716,1.422752 2.552465,2.278492 5.470182,0.416135 14.492694,-9.25058 8.06545,-8.641317 9.6237,-11.344908 10.91151,-18.931663 0.45984,-2.709034 1.39858,-5.109034 2.08608,-5.333333 0.98646,-0.321836 1.25,8.332868 1.25,41.049789 0,34.701054 -0.24997,42.1661 -1.5338,45.80486 -1.91469,5.42681 -4.8222,8.64005 -9.9662,11.01416 -3.69017,1.70312 -7.29198,1.84612 -46.5,1.84612 -39.208018,0 -42.809834,-0.143 -46.5,-1.84612 z M 110.3089,115 c 5.4074,-3.6938 5.28717,-5.21349 -0.18774,-2.37301 l -4.75459,2.46677 -16.433285,-1.0567 C 79.881725,113.45502 70.703226,112.33069 68.5,111.53407 c -5.167744,-1.86851 -13.922051,-1.84802 -19,0.0445 -2.332182,0.86917 -9.426878,1.74313 -17.015516,2.09605 -12.035589,0.55974 -13.334328,0.44267 -17.25,-1.55496 -4.369797,-2.2293 -5.5798258,-1.64711 -2.454731,1.18106 5.033133,4.55492 6.327025,4.66658 51.294803,4.42656 L 106.64911,117.5 110.3089,115 z M 53,56.547053 c 0,-2.10027 2.60005,-5.499352 3.91706,-5.120828 C 57.787677,51.67645 61.2,52.188441 64.5,52.563982 70.346927,53.229365 73,54.340054 73,56.122445 73,56.6051 68.5,57 63,57 57.5,57 53,56.796174 53,56.547053 z"
+ id="path3119"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fd9967"
+ d="M 16.5,120.10996 C 11.355998,117.73585 8.4484912,114.52261 6.5338007,109.0958 4.229917,102.5659 4.2496834,21.383433 6.5563406,16.522514 7.9116737,13.666361 13.995095,6.8616148 12.834445,9.5 c -0.24195,0.55 -1.255373,2.796766 -2.252051,4.992813 -1.7570005,3.871317 -1.7541176,4.174207 0.09474,9.954158 l 1.906884,5.961346 8.772042,1.726556 c 4.824624,0.949606 9.305719,2.145685 9.95799,2.657954 0.652271,0.512269 2.423447,1.227021 3.935947,1.588338 1.5125,0.361316 2.75,1.098366 2.75,1.637887 0,2.189318 2.060192,0.772652 3.343724,-2.299273 C 43.095362,31.52752 48.512183,26.10177 52.687661,24.357144 54.474117,23.610715 59.118143,23 63.007719,23 c 8.309518,0 13.507672,2.187021 17.434349,7.33516 3.621915,4.748576 3.171116,5.410407 -1.119341,1.643336 -2.022499,-1.775778 -5.158046,-3.847395 -6.967881,-4.603592 -3.927264,-1.640916 -12.357975,-1.779382 -17.718271,-0.291005 -4.677554,1.298802 -12.142766,8.641478 -14.321337,14.086263 -0.842819,2.106411 -2.046037,3.843522 -2.673818,3.860247 -0.627781,0.01672 -0.35392,0.489085 0.60858,1.04969 1.028133,0.598832 1.75,2.211926 1.75,3.910574 0,1.590211 0.45,3.169408 1,3.509327 2.107805,1.302695 0.846169,3.229514 -2.837198,4.333077 -7.348171,2.201566 -7.551951,2.87716 -6.74192,22.351588 0.393522,9.460902 1.117612,17.953003 1.609089,18.871337 1.941598,3.627908 5.927451,4.116348 30.800073,3.774368 22.595412,-0.31068 24.19595,-0.45595 26.848866,-2.43701 L 93.5,98.286711 93.773166,80.6209 C 93.941006,69.766567 93.645534,62.206191 93.006849,61.012797 92.435133,59.944537 90.174709,58.533412 87.983683,57.876965 83.853268,56.639463 83.11007,55.67624 85.25,54.333975 c 1.738077,-1.090203 4.917517,-0.444877 7.009716,1.422752 2.552465,2.278492 5.470182,0.416135 14.492694,-9.25058 8.06545,-8.641317 9.6237,-11.344908 10.91151,-18.931663 0.45984,-2.709034 1.39858,-5.109034 2.08608,-5.333333 0.98646,-0.321836 1.25,8.332868 1.25,41.049789 0,34.701054 -0.24997,42.1661 -1.5338,45.80486 -1.91469,5.42681 -4.8222,8.64005 -9.9662,11.01416 -3.69017,1.70312 -7.29198,1.84612 -46.5,1.84612 -39.208018,0 -42.809834,-0.143 -46.5,-1.84612 z M 110.3089,115 c 5.4074,-3.6938 5.28717,-5.21349 -0.18774,-2.37301 l -4.75459,2.46677 -16.433285,-1.0567 C 79.881725,113.45502 70.703226,112.33069 68.5,111.53407 c -5.167744,-1.86851 -13.922051,-1.84802 -19,0.0445 -2.332182,0.86917 -9.426878,1.74313 -17.015516,2.09605 -12.035589,0.55974 -13.334328,0.44267 -17.25,-1.55496 -4.369797,-2.2293 -5.5798258,-1.64711 -2.454731,1.18106 5.033133,4.55492 6.327025,4.66658 51.294803,4.42656 L 106.64911,117.5 110.3089,115 z M 53,56.2 c 0,-2.256678 2.947882,-3.2 10,-3.2 7.052118,0 10,0.943322 10,3.2 0,0.44 -4.5,0.8 -10,0.8 -5.5,0 -10,-0.36 -10,-0.8 z"
+ id="path3117"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fecb31"
+ d="M 16.5,120.10996 C 11.355998,117.73585 8.4484912,114.52261 6.5338007,109.0958 4.229917,102.5659 4.2496834,21.383433 6.5563406,16.522514 7.9116737,13.666361 13.995095,6.8616148 12.834445,9.5 c -0.24195,0.55 -1.252418,2.789694 -2.245485,4.977098 -1.5784796,3.47688 -1.6562745,4.671738 -0.6185263,9.5 C 12.901948,37.616355 11.961231,36.386993 22.256118,40.032467 38.388644,45.745079 40,46.64716 40,49.965976 c 0,1.603795 0.45,3.194105 1,3.534024 2.107805,1.302695 0.846169,3.229514 -2.837198,4.333077 -7.348171,2.201566 -7.551951,2.87716 -6.74192,22.351588 0.393522,9.460902 1.117612,17.953003 1.609089,18.871337 1.941598,3.627908 5.927451,4.116348 30.800073,3.774368 22.595412,-0.31068 24.19595,-0.45595 26.848866,-2.43701 L 93.5,98.286711 93.773166,80.6209 C 93.941006,69.766567 93.645534,62.206191 93.006849,61.012797 92.435133,59.944537 90.174709,58.533412 87.983683,57.876965 83.853268,56.639463 83.11007,55.67624 85.25,54.333975 c 1.738077,-1.090203 4.917517,-0.444877 7.009716,1.422752 2.342003,2.09062 4.737722,0.788832 12.575764,-6.833431 9.18492,-8.932065 11.11464,-11.923502 12.25352,-18.995315 0.55641,-3.455011 1.24057,-6.652221 1.52035,-7.10491 C 120.64166,19.53472 121,25.613008 121,63.374273 c 0,34.626164 -0.25016,42.083307 -1.5338,45.721527 -1.91469,5.42681 -4.8222,8.64005 -9.9662,11.01416 -3.69017,1.70312 -7.29198,1.84612 -46.5,1.84612 -39.208018,0 -42.809834,-0.143 -46.5,-1.84612 z M 110.3089,115 c 5.4074,-3.6938 5.28717,-5.21349 -0.18774,-2.37301 l -4.75459,2.46677 -16.433285,-1.0567 C 79.881725,113.45502 70.703226,112.33069 68.5,111.53407 c -5.167744,-1.86851 -13.922051,-1.84802 -19,0.0445 -2.332182,0.86917 -9.426878,1.74313 -17.015516,2.09605 -12.035589,0.55974 -13.334328,0.44267 -17.25,-1.55496 -4.369797,-2.2293 -5.5798258,-1.64711 -2.454731,1.18106 5.033133,4.55492 6.327025,4.66658 51.294803,4.42656 L 106.64911,117.5 110.3089,115 z M 53,56.2 C 53,53.943322 55.947882,53 63,53 70.052118,53 73,53.943322 73,56.2 73,56.64 68.5,57 63,57 57.5,57 53,56.64 53,56.2 z M 43.046959,34.358918 c 1.462678,-3.870925 5.763634,-8.310263 9.670922,-9.982079 C 54.487716,23.619578 59.118143,23 63.007719,23 c 8.309518,0 13.507672,2.187021 17.434349,7.33516 3.621915,4.748576 3.171116,5.410407 -1.119341,1.643336 -4.940518,-4.337833 -9.212144,-5.979601 -15.540608,-5.972919 -8.240578,0.0087 -12.524505,1.652591 -17.412203,6.681663 -3.965424,4.08012 -4.295824,4.246335 -3.322957,1.671678 z"
+ id="path3115"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fdb646"
+ d="M 16.5,120.10996 C 11.355998,117.73585 8.4484912,114.52261 6.5338007,109.0958 4.229917,102.5659 4.2496834,21.383433 6.5563406,16.522514 7.9116737,13.666361 13.995095,6.8616148 12.834445,9.5 c -0.24195,0.55 -1.252418,2.789694 -2.245485,4.977098 -1.5784796,3.47688 -1.6562745,4.671738 -0.6185263,9.5 C 12.901948,37.616355 11.961231,36.386993 22.256118,40.032467 38.388644,45.745079 40,46.64716 40,49.965976 c 0,1.603795 0.45,3.194105 1,3.534024 2.107805,1.302695 0.846169,3.229514 -2.837198,4.333077 -7.348171,2.201566 -7.551951,2.87716 -6.74192,22.351588 0.393522,9.460902 1.117612,17.953003 1.609089,18.871337 1.941598,3.627908 5.927451,4.116348 30.800073,3.774368 22.595412,-0.31068 24.19595,-0.45595 26.848866,-2.43701 L 93.5,98.286711 93.773166,80.6209 C 93.941006,69.766567 93.645534,62.206191 93.006849,61.012797 92.435133,59.944537 90.174709,58.533412 87.983683,57.876965 83.853268,56.639463 83.11007,55.67624 85.25,54.333975 c 1.738077,-1.090203 4.917517,-0.444877 7.009716,1.422752 2.342003,2.09062 4.737722,0.788832 12.575764,-6.833431 9.18492,-8.932065 11.11464,-11.923502 12.25352,-18.995315 0.55641,-3.455011 1.24057,-6.652221 1.52035,-7.10491 C 120.64166,19.53472 121,25.613008 121,63.374273 c 0,34.626164 -0.25016,42.083307 -1.5338,45.721527 -1.91469,5.42681 -4.8222,8.64005 -9.9662,11.01416 -3.69017,1.70312 -7.29198,1.84612 -46.5,1.84612 -39.208018,0 -42.809834,-0.143 -46.5,-1.84612 z M 110.3089,115 c 5.48008,-3.74345 5.25618,-5.19742 -0.35228,-2.28764 -4.90279,2.54366 -4.95914,2.54833 -16.978432,1.40723 -9.929833,-0.94273 -12.714341,-1.57782 -15.768751,-3.59654 -2.04019,-1.34841 -6.716592,-3.23931 -10.392004,-4.20201 -8.686871,-2.27535 -17.665315,-0.95782 -25.140935,3.68928 -4.325751,2.68903 -6.301356,3.22482 -13.645187,3.70061 -7.492905,0.48544 -9.125105,0.28187 -12.809209,-1.59762 -4.359158,-2.22388 -5.5643211,-1.63798 -2.442349,1.18737 5.033133,4.55492 6.327025,4.66658 51.294803,4.42656 L 106.64911,117.5 110.3089,115 z M 53,56.2 C 53,53.943322 55.947882,53 63,53 70.052118,53 73,53.943322 73,56.2 73,56.64 68.5,57 63,57 57.5,57 53,56.64 53,56.2 z M 43.046959,34.358918 c 1.462678,-3.870925 5.763634,-8.310263 9.670922,-9.982079 C 54.487716,23.619578 59.118143,23 63.007719,23 c 8.309518,0 13.507672,2.187021 17.434349,7.33516 3.621915,4.748576 3.171116,5.410407 -1.119341,1.643336 -4.940518,-4.337833 -9.212144,-5.979601 -15.540608,-5.972919 -8.240578,0.0087 -12.524505,1.652591 -17.412203,6.681663 -3.965424,4.08012 -4.295824,4.246335 -3.322957,1.671678 z"
+ id="path3113"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fec32d"
+ d="M 16.5,120.10996 C 11.355998,117.73585 8.4484912,114.52261 6.5338007,109.0958 4.229917,102.5659 4.2496834,21.383433 6.5563406,16.522514 7.9116737,13.666361 13.995095,6.8616148 12.834445,9.5 c -0.24195,0.55 -1.252418,2.789694 -2.245485,4.977098 -1.5784796,3.47688 -1.6562745,4.671738 -0.6185263,9.5 C 12.901948,37.616355 11.961231,36.386993 22.256118,40.032467 38.388644,45.745079 40,46.64716 40,49.965976 c 0,1.603795 0.45,3.194105 1,3.534024 1.982107,1.22501 0.939763,3.35432 -1.95304,3.989686 -1.624172,0.356728 -4.099172,1.550144 -5.5,2.652035 C 31.003082,62.142736 31,62.164957 31,78.50748 c 0,8.999277 0.430668,17.495062 0.957039,18.879524 1.932912,5.083946 4.840175,5.618096 30.243301,5.556556 25.010422,-0.0606 29.395805,-0.73014 31.417251,-4.796758 C 94.972156,95.421777 94.32127,63.629736 92.85268,60.785253 92.365757,59.842142 90.174709,58.533412 87.983683,57.876965 83.853268,56.639463 83.11007,55.67624 85.25,54.333975 c 1.738077,-1.090203 4.917517,-0.444877 7.009716,1.422752 2.342003,2.09062 4.737722,0.788832 12.575764,-6.833431 9.18492,-8.932065 11.11464,-11.923502 12.25352,-18.995315 0.55641,-3.455011 1.24057,-6.652221 1.52035,-7.10491 C 120.64166,19.53472 121,25.613008 121,63.374273 c 0,34.626164 -0.25016,42.083307 -1.5338,45.721527 -1.91469,5.42681 -4.8222,8.64005 -9.9662,11.01416 -3.69017,1.70312 -7.29198,1.84612 -46.5,1.84612 -39.208018,0 -42.809834,-0.143 -46.5,-1.84612 z m 90.78212,-3.4924 c 3.44763,-1.48115 7.71788,-5.1252 7.71788,-6.58612 0,-0.48986 -2.06229,0.26199 -4.58288,1.67077 -4.3838,2.45016 -5.11254,2.54102 -16.776518,2.09169 -11.065893,-0.4263 -12.561139,-0.71265 -16.167123,-3.09612 -2.185414,-1.44451 -6.980634,-3.41404 -10.656046,-4.37674 -8.765531,-2.29596 -17.6903,-0.96167 -25.200144,3.76753 -4.750376,2.99147 -5.770627,3.2293 -14.229303,3.31698 -8.388006,0.087 -9.41668,-0.1217 -12.946372,-2.62585 -2.108896,-1.49616 -4.031946,-2.5227 -4.273444,-2.2812 -1.1028269,1.10282 3.394723,5.85387 7.159787,7.56333 3.875877,1.75978 7.102586,1.89581 45.454162,1.91621 32.954526,0.0175 41.931241,-0.25691 44.500001,-1.36048 z M 53,56.2 C 53,53.943322 55.947882,53 63,53 70.052118,53 73,53.943322 73,56.2 73,56.64 68.5,57 63,57 57.5,57 53,56.64 53,56.2 z M 43.046959,34.358918 c 1.462678,-3.870925 5.763634,-8.310263 9.670922,-9.982079 C 54.487716,23.619578 59.118143,23 63.007719,23 c 8.309518,0 13.507672,2.187021 17.434349,7.33516 3.621915,4.748576 3.171116,5.410407 -1.119341,1.643336 -4.940518,-4.337833 -9.212144,-5.979601 -15.540608,-5.972919 -8.240578,0.0087 -12.524505,1.652591 -17.412203,6.681663 -3.965424,4.08012 -4.295824,4.246335 -3.322957,1.671678 z"
+ id="path3111"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#d5a475"
+ d="M 16.5,120.10996 C 11.355998,117.73585 8.4484912,114.52261 6.5338007,109.0958 4.229917,102.5659 4.2496834,21.383433 6.5563406,16.522514 7.9116737,13.666361 13.995095,6.8616148 12.834445,9.5 c -0.24195,0.55 -1.252418,2.789694 -2.245485,4.977098 -1.5784796,3.47688 -1.6562745,4.671738 -0.6185263,9.5 C 12.901948,37.616355 11.961231,36.386993 22.256118,40.032467 38.388644,45.745079 40,46.64716 40,49.965976 c 0,1.603795 0.45,3.194105 1,3.534024 1.982107,1.22501 0.939763,3.35432 -1.95304,3.989686 -1.624172,0.356728 -4.099172,1.550144 -5.5,2.652035 C 31.003082,62.142736 31,62.164957 31,78.50748 c 0,8.999277 0.439777,17.519021 0.977281,18.932765 0.537505,1.413745 2.512859,3.302715 4.389675,4.197705 l 3.412394,1.62725 -7.139675,5.42832 c -6.407777,4.87186 -7.535554,5.37904 -11.001482,4.94756 -2.123993,-0.26442 -5.47486,-1.62846 -7.446371,-3.03122 -1.971511,-1.40275 -3.782154,-2.35286 -4.023652,-2.11136 -1.1028269,1.10282 3.394723,5.85387 7.159787,7.56333 3.875877,1.75978 7.102586,1.89581 45.454162,1.91621 43.920831,0.0234 44.935461,-0.0761 49.967881,-4.89944 3.58203,-3.43319 2.61719,-4.17259 -2,-1.53267 -3.4799,1.98967 -5.64328,2.43216 -11.93918,2.44202 -7.452952,0.0117 -7.822744,-0.10316 -12.036641,-3.73795 -2.391103,-2.0625 -5.455972,-4.5139 -6.81082,-5.44755 L 77.5,103.1049 l 4,-0.10889 C 87.300428,102.8381 92.275222,100.84729 93.617591,98.146802 94.972156,95.421777 94.32127,63.629736 92.85268,60.785253 92.365757,59.842142 90.174709,58.533412 87.983683,57.876965 83.853268,56.639463 83.11007,55.67624 85.25,54.333975 c 1.738077,-1.090203 4.917517,-0.444877 7.009716,1.422752 2.342003,2.09062 4.737722,0.788832 12.575764,-6.833431 9.18492,-8.932065 11.11464,-11.923502 12.25352,-18.995315 0.55641,-3.455011 1.24057,-6.652221 1.52035,-7.10491 C 120.64166,19.53472 121,25.613008 121,63.374273 c 0,34.626164 -0.25016,42.083307 -1.5338,45.721527 -1.91469,5.42681 -4.8222,8.64005 -9.9662,11.01416 -3.69017,1.70312 -7.29198,1.84612 -46.5,1.84612 -39.208018,0 -42.809834,-0.143 -46.5,-1.84612 z M 53,56.2 C 53,53.943322 55.947882,53 63,53 70.052118,53 73,53.943322 73,56.2 73,56.64 68.5,57 63,57 57.5,57 53,56.64 53,56.2 z M 43.046959,34.358918 c 1.462678,-3.870925 5.763634,-8.310263 9.670922,-9.982079 C 54.487716,23.619578 59.118143,23 63.007719,23 c 8.309518,0 13.507672,2.187021 17.434349,7.33516 3.621915,4.748576 3.171116,5.410407 -1.119341,1.643336 -4.940518,-4.337833 -9.212144,-5.979601 -15.540608,-5.972919 -8.240578,0.0087 -12.524505,1.652591 -17.412203,6.681663 -3.965424,4.08012 -4.295824,4.246335 -3.322957,1.671678 z"
+ id="path3109"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fd9658"
+ d="m 16.5,120.10996 c -4.442541,-2.05037 -8.3155863,-5.79243 -9.0080983,-8.70344 -0.249451,-1.04859 -0.9269042,-3.9422 -1.5054514,-6.43025 C 5.3149983,102.08867 5.0368027,85.632258 5.2172731,59.476266 L 5.5,18.5 7.8640675,14.697401 c 2.8268655,-4.54701 3.7870485,-4.200333 2.1451965,0.77453 -1.190753,3.608016 -0.9714055,5.459822 2.091558,17.657649 0.876149,3.489141 1.269087,3.756234 10.155296,6.902887 C 38.388644,45.745079 40,46.64716 40,49.965976 c 0,1.603795 0.45,3.194105 1,3.534024 1.882306,1.163329 0.99894,2.473603 -2.713402,4.024718 C 30.959854,60.586027 31,60.469969 31,78.589888 c 0,8.953952 0.439777,17.436613 0.977281,18.850357 0.537505,1.413745 2.512859,3.302715 4.389675,4.197705 l 3.412394,1.62725 -7.139675,5.42832 c -6.407777,4.87186 -7.535554,5.37904 -11.001482,4.94756 -2.123993,-0.26442 -5.47486,-1.62846 -7.446371,-3.03122 -1.971511,-1.40275 -3.782154,-2.35286 -4.023652,-2.11136 -1.1028269,1.10282 3.394723,5.85387 7.159787,7.56333 3.875877,1.75978 7.102586,1.89581 45.454162,1.91621 43.920831,0.0234 44.935461,-0.0761 49.967881,-4.89944 3.58203,-3.43319 2.61719,-4.17259 -2,-1.53267 -3.4799,1.98967 -5.64328,2.43216 -11.93918,2.44202 -7.452952,0.0117 -7.822744,-0.10316 -12.036641,-3.73795 -2.391103,-2.0625 -5.455972,-4.5139 -6.81082,-5.44755 L 77.5,103.1049 l 4,-0.10889 C 87.300428,102.8381 92.275222,100.84729 93.617591,98.146802 95.318628,94.724768 94.280058,63.30362 92.364981,60.25 91.588883,59.0125 90.543563,58 90.042047,58 c -0.501516,0 -2.115053,-0.457458 -3.585638,-1.016573 -2.086916,-0.793444 -2.429048,-1.311469 -1.558749,-2.360114 1.314892,-1.584349 5.541287,-1.004267 7.194245,0.987426 1.817866,2.190394 3.1187,1.708955 9.080605,-3.360739 8.4073,-7.149125 14.71351,-15.024173 15.35566,-19.175778 1.00499,-6.497478 2.55533,-11.140651 3.52062,-10.544069 0.57609,0.356044 0.94653,16.240455 0.93934,40.278864 -0.0128,42.747953 -0.51457,47.876623 -5.18034,52.946933 -1.26928,1.37934 -4.10779,3.33864 -6.30779,4.35401 -3.69017,1.70312 -7.29198,1.84612 -46.5,1.84612 -39.208018,0 -42.809834,-0.143 -46.5,-1.84612 z M 53.675343,56.342009 c -0.361895,-0.361895 -0.156795,-1.261895 0.455778,-2 C 54.887655,53.430441 57.732291,53 63,53 c 5.267709,0 8.112345,0.430441 8.868879,1.342009 C 73.687021,56.532736 72.127908,57 63,57 58.233333,57 54.037238,56.703904 53.675343,56.342009 z M 43.024137,34.5 C 44.487189,30.52107 48.741634,26.078161 52.717881,24.376839 54.487716,23.619578 59.118143,23 63.007719,23 c 8.309518,0 13.507672,2.187021 17.434349,7.33516 3.559469,4.666704 3.194924,5.673681 -0.692068,1.911688 C 75.269842,27.910764 70.14641,26 63,26 55.157335,26 50.404508,27.994044 45.710518,33.253785 42.144163,37.249981 41.985988,37.323359 43.024137,34.5 z"
+ id="path3107"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fdb835"
+ d="m 16.5,120.10996 c -4.442541,-2.05037 -8.3155863,-5.79243 -9.0080983,-8.70344 -0.249451,-1.04859 -0.9269042,-3.9422 -1.5054514,-6.43025 C 5.3149983,102.08867 5.0368027,85.632258 5.2172731,59.476266 L 5.5,18.5 7.8640675,14.697401 c 2.8339185,-4.558353 3.7860525,-4.197314 2.1337841,0.809109 -1.0153346,3.076494 -0.8537844,5.31887 1.0427404,14.473614 2.027087,9.784981 2.617447,11.22934 6.101813,14.928514 C 19.264082,47.161114 21,49.376217 21,49.831087 c 0,0.454871 2.219282,1.866494 4.931738,3.136941 4.289847,2.009257 5.476542,2.171616 9.11755,1.24743 C 39.225897,53.155322 42,53.481884 42,55.033682 c 0,0.450837 -2.475,1.952796 -5.5,3.337687 l -5.5,2.517984 0,16.990224 c 0,9.344623 0.439777,18.146924 0.977281,19.560668 0.537505,1.413745 2.512859,3.302715 4.389675,4.197705 l 3.412394,1.62725 -7.139675,5.42832 c -6.407777,4.87186 -7.535554,5.37904 -11.001482,4.94756 -2.123993,-0.26442 -5.47486,-1.62846 -7.446371,-3.03122 -1.971511,-1.40275 -3.782154,-2.35286 -4.023652,-2.11136 -1.1028269,1.10282 3.394723,5.85387 7.159787,7.56333 3.875877,1.75978 7.102586,1.89581 45.454162,1.91621 43.920831,0.0234 44.935461,-0.0761 49.967881,-4.89944 3.58203,-3.43319 2.61719,-4.17259 -2,-1.53267 -3.4799,1.98967 -5.64328,2.43216 -11.93918,2.44202 -7.452952,0.0117 -7.822744,-0.10316 -12.036641,-3.73795 -2.391103,-2.0625 -5.455972,-4.5139 -6.81082,-5.44755 L 77.5,103.1049 l 4,-0.10889 c 5.789712,-0.15762 10.774505,-2.14727 12.109785,-4.833551 0.809497,-1.628525 1.010078,-7.543211 0.661293,-19.5 C 93.726337,59.988075 93.53924,59.381334 87.717793,57.41078 c -1.769786,-0.59907 -3.185792,-1.49907 -3.14668,-2 0.145395,-1.862161 3.770832,-1.534086 6.661098,0.60278 2.652309,1.960936 3.265545,2.058008 5.48781,0.868688 C 100.40639,54.909363 114.09369,40.020011 115.65417,36.285255 116.39438,34.513695 117,31.991934 117,30.681342 c 0,-3.434638 2.03732,-8.776311 3.09741,-8.121138 0.51258,0.316793 0.89746,17.708221 0.89072,40.248813 -0.0128,42.747953 -0.51457,47.876623 -5.18034,52.946933 -1.26928,1.37934 -4.10779,3.33864 -6.30779,4.35401 -3.69017,1.70312 -7.29198,1.84612 -46.5,1.84612 -39.208018,0 -42.809834,-0.143 -46.5,-1.84612 z M 53.51816,56.029384 c -0.354708,-0.57393 -0.01629,-1.28474 0.752047,-1.579578 C 56.672659,53.527899 72.5,54.439691 72.5,55.5 c 0,1.377155 -18.145133,1.883204 -18.98184,0.529384 z M 43.024137,34.5 C 44.487189,30.52107 48.741634,26.078161 52.717881,24.376839 54.487716,23.619578 59.118143,23 63.007719,23 c 8.309518,0 13.507672,2.187021 17.434349,7.33516 3.559469,4.666704 3.194924,5.673681 -0.692068,1.911688 C 75.269842,27.910764 70.14641,26 63,26 55.157335,26 50.404508,27.994044 45.710518,33.253785 42.144163,37.249981 41.985988,37.323359 43.024137,34.5 z"
+ id="path3105"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#e99766"
+ d="m 16.5,120.10996 c -4.442541,-2.05037 -8.3155863,-5.79243 -9.0080983,-8.70344 -0.249451,-1.04859 -0.9269042,-3.9422 -1.5054514,-6.43025 C 5.3149983,102.08867 5.0368027,85.632258 5.2172731,59.476266 L 5.5,18.5 7.8640675,14.697401 c 2.8339185,-4.558353 3.7860525,-4.197314 2.1337841,0.809109 -1.0153346,3.076494 -0.8537844,5.31887 1.0427404,14.473614 2.027087,9.784981 2.617447,11.22934 6.101813,14.928514 C 19.264082,47.161114 21,49.376217 21,49.831087 c 0,0.454871 2.219282,1.866494 4.931738,3.136941 4.289847,2.009257 5.476542,2.171616 9.11755,1.24743 C 39.225897,53.155322 42,53.481884 42,55.033682 c 0,0.450837 -2.475,1.952796 -5.5,3.337687 l -5.5,2.517984 0,18.600778 c 0,18.415641 0.02443,18.625209 2.454545,21.055319 1.35,1.35 3.398831,2.45455 4.552958,2.45455 1.530216,0 0.3097,1.35387 -4.507503,5 -7.80047,5.90416 -11.420093,6.38186 -18.757957,2.47562 C 12.13392,109.0872 10,108.31208 10,108.75311 c 0,2.0201 3.636017,5.6318 7.3825,7.33314 3.806276,1.72849 7.237838,1.87149 45.399619,1.89179 43.920831,0.0234 44.935461,-0.0761 49.967881,-4.89944 3.46029,-3.31651 2.67156,-4.26029 -1.5,-1.79487 -3.19455,1.888 -5.05414,2.18916 -12.554659,2.03325 -8.445498,-0.17555 -8.955767,-0.31833 -12.508979,-3.5 -2.037375,-1.82434 -4.825278,-4.08088 -6.19534,-5.01453 L 77.5,103.1049 l 5.202947,-0.0525 c 6.51999,-0.0657 9.939125,-1.58646 11.107514,-4.940286 0.500506,-1.43669 0.686074,-10.360875 0.412374,-19.831523 C 93.684556,59.654955 93.555854,59.239391 87.75,57.380488 86.2375,56.89622 84.919501,56.05 84.821113,55.5 c -0.351138,-1.962899 3.476189,-1.656312 6.411098,0.51356 2.652309,1.960936 3.265545,2.058008 5.48781,0.868688 C 100.40639,54.909363 114.09369,40.020011 115.65417,36.285255 116.39438,34.513695 117,31.991934 117,30.681342 c 0,-3.434638 2.03732,-8.776311 3.09741,-8.121138 0.51258,0.316793 0.89746,17.708221 0.89072,40.248813 -0.0128,42.747953 -0.51457,47.876623 -5.18034,52.946933 -1.26928,1.37934 -4.10779,3.33864 -6.30779,4.35401 -3.69017,1.70312 -7.29198,1.84612 -46.5,1.84612 -39.208018,0 -42.809834,-0.143 -46.5,-1.84612 z M 53.51816,56.029384 c -0.354708,-0.57393 -0.01629,-1.28474 0.752047,-1.579578 C 56.672659,53.527899 72.5,54.439691 72.5,55.5 c 0,1.377155 -18.145133,1.883204 -18.98184,0.529384 z M 43.024137,34.5 C 44.487189,30.52107 48.741634,26.078161 52.717881,24.376839 54.487716,23.619578 59.118143,23 63.007719,23 c 8.309518,0 13.507672,2.187021 17.434349,7.33516 3.559469,4.666704 3.194924,5.673681 -0.692068,1.911688 C 75.269842,27.910764 70.14641,26 63,26 55.157335,26 50.404508,27.994044 45.710518,33.253785 42.144163,37.249981 41.985988,37.323359 43.024137,34.5 z"
+ id="path3103"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#aea392"
+ d="m 16.5,120.10996 c -4.442541,-2.05037 -8.3155863,-5.79243 -9.0080983,-8.70344 -0.249451,-1.04859 -0.9269042,-3.9422 -1.5054514,-6.43025 C 5.3149983,102.08867 5.0368027,85.632258 5.2172731,59.476266 L 5.5,18.5 7.8640675,14.697401 c 1.3002372,-2.09143 2.6202375,-3.54643 2.9333335,-3.233333 0.313096,0.313096 0.03677,1.101765 -0.614068,1.752599 -1.698094,1.698094 -1.4741097,5.700633 0.971158,17.35432 1.92021,9.151363 2.572652,10.711841 6,14.350481 C 19.269521,47.166888 21,49.376217 21,49.831087 c 0,0.454871 2.219282,1.866494 4.931738,3.136941 4.316889,2.021923 5.462579,2.17516 9.189648,1.229129 2.341851,-0.594425 4.622569,-0.855401 5.068263,-0.579948 1.940107,1.199053 0.412628,3.036812 -4.213217,5.069057 L 31,60.872533 31,79.481721 c 0,18.42457 0.02435,18.633539 2.454545,21.063729 1.35,1.35 3.398831,2.45455 4.552958,2.45455 1.530216,0 0.3097,1.35387 -4.507503,5 -7.80047,5.90416 -11.420093,6.38186 -18.757957,2.47562 C 12.13392,109.0872 10,108.31208 10,108.75311 c 0,2.0201 3.636017,5.6318 7.3825,7.33314 3.806276,1.72849 7.237838,1.87149 45.399619,1.89179 43.920831,0.0234 44.935461,-0.0761 49.967881,-4.89944 3.46029,-3.31651 2.67156,-4.26029 -1.5,-1.79487 -3.19455,1.888 -5.05414,2.18916 -12.554659,2.03325 -8.445498,-0.17555 -8.955767,-0.31833 -12.508979,-3.5 -2.037375,-1.82434 -4.825278,-4.08088 -6.19534,-5.01453 L 77.5,103.1049 l 5.202947,-0.0525 c 6.554387,-0.0661 9.939635,-1.5884 11.130834,-5.005478 C 94.718952,95.50777 94.398063,65.989457 93.434172,61.287233 93.115903,59.734597 91.790169,58.717809 88.990293,57.878946 86.795632,57.221409 85,56.079654 85,55.341712 c 0,-2.025321 3.388655,-1.610436 6.438073,0.788236 2.414557,1.899291 2.982635,1.982855 5.245785,0.771654 C 99.835565,55.21486 113.59687,40.690363 115.42001,37.126352 116.15893,35.681858 117.07459,32.475 117.4548,30 c 0.99443,-6.473237 1.56708,-8.104512 2.6172,-7.455504 0.54577,0.33731 0.92311,16.921433 0.91613,40.264521 -0.0128,42.747953 -0.51457,47.876623 -5.18034,52.946933 -1.26928,1.37934 -4.10779,3.33864 -6.30779,4.35401 -3.69017,1.70312 -7.29198,1.84612 -46.5,1.84612 -39.208018,0 -42.809834,-0.143 -46.5,-1.84612 z M 54,55.5 c 0,-1.222222 1.666667,-1.5 9,-1.5 7.333333,0 9,0.277778 9,1.5 0,1.222222 -1.666667,1.5 -9,1.5 -7.333333,0 -9,-0.277778 -9,-1.5 z M 47.810242,28.709714 c 5.089363,-5.272312 13.739557,-7.073366 22.408703,-4.665708 3.380942,0.93898 10.344942,5.72544 9.524235,6.546148 -0.18771,0.187709 -2.53298,-0.768285 -5.211713,-2.124432 -7.324358,-3.708062 -16.391626,-3.48166 -24.179921,0.603753 L 44.5,32.13895 47.810242,28.709714 z"
+ id="path3101"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#feb729"
+ d="M 18.00714,120.40702 C 13.440326,118.42659 10.303173,115.425 7.652682,110.5 5.5423284,106.57865 5.5,105.63482 5.5,62.5 l 0,-44 2.3640675,-3.802599 c 1.3002372,-2.09143 2.6202375,-3.54643 2.9333335,-3.233333 0.313096,0.313096 0.03677,1.101765 -0.614068,1.752599 -1.698094,1.698094 -1.4741097,5.700633 0.971158,17.35432 1.92021,9.151363 2.572652,10.711841 6,14.350481 C 19.269521,47.166888 21,49.376217 21,49.831087 c 0,0.454871 2.219282,1.866494 4.931738,3.136941 4.316889,2.021923 5.462579,2.17516 9.189648,1.229129 2.341851,-0.594425 4.622569,-0.855401 5.068263,-0.579948 1.940107,1.199053 0.412628,3.036812 -4.213217,5.069057 L 31,60.872533 31,79.481721 c 0,18.42457 0.02435,18.633539 2.454545,21.063729 1.35,1.35 3.398831,2.45455 4.552958,2.45455 1.530216,0 0.3097,1.35387 -4.507503,5 -7.80047,5.90416 -11.420093,6.38186 -18.757957,2.47562 C 12.13392,109.0872 10,108.31208 10,108.75311 c 0,2.0201 3.636017,5.6318 7.3825,7.33314 3.806276,1.72849 7.237838,1.87149 45.399619,1.89179 43.920831,0.0234 44.935461,-0.0761 49.967881,-4.89944 3.46029,-3.31651 2.67156,-4.26029 -1.5,-1.79487 -3.19455,1.888 -5.05414,2.18916 -12.554659,2.03325 -8.445498,-0.17555 -8.955767,-0.31833 -12.508979,-3.5 -2.037375,-1.82434 -4.825278,-4.08088 -6.19534,-5.01453 L 77.5,103.1049 l 5.202947,-0.0525 c 6.554387,-0.0661 9.939635,-1.5884 11.130834,-5.005478 C 94.718952,95.50777 94.398063,65.989457 93.434172,61.287233 93.115903,59.734597 91.790169,58.717809 88.990293,57.878946 86.795632,57.221409 85,56.079654 85,55.341712 c 0,-2.025321 3.388655,-1.610436 6.438073,0.788236 2.414557,1.899291 2.982635,1.982855 5.245785,0.771654 C 99.835565,55.21486 113.59687,40.690363 115.42001,37.126352 116.15893,35.681858 117.07459,32.475 117.4548,30 c 0.99443,-6.473237 1.56708,-8.104512 2.6172,-7.455504 0.54549,0.337134 0.928,16.961802 0.928,40.33302 0,45.071704 -0.25619,47.102174 -6.71968,53.257404 -2.07918,1.98001 -5.30997,4.10966 -7.17954,4.73255 -2.31894,0.77261 -16.461202,1.12009 -44.500003,1.09339 -34.44538,-0.0328 -41.666371,-0.28442 -44.593637,-1.55384 z M 54,55.5 c 0,-1.222222 1.666667,-1.5 9,-1.5 7.333333,0 9,0.277778 9,1.5 0,1.222222 -1.666667,1.5 -9,1.5 -7.333333,0 -9,-0.277778 -9,-1.5 z M 47.810242,28.709714 c 5.089363,-5.272312 13.739557,-7.073366 22.408703,-4.665708 3.380942,0.93898 10.344942,5.72544 9.524235,6.546148 -0.18771,0.187709 -2.53298,-0.768285 -5.211713,-2.124432 -7.324358,-3.708062 -16.391626,-3.48166 -24.179921,0.603753 L 44.5,32.13895 47.810242,28.709714 z"
+ id="path3099"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fc8c54"
+ d="M 18.00714,120.40702 C 13.440326,118.42659 10.303173,115.425 7.652682,110.5 5.5423284,106.57865 5.5,105.63482 5.5,62.5 l 0,-44 2.3640675,-3.802599 c 1.3002372,-2.09143 2.6202375,-3.54643 2.9333335,-3.233333 0.313096,0.313096 0.03677,1.101765 -0.614068,1.752599 -1.698094,1.698094 -1.4741097,5.700633 0.971158,17.35432 1.92021,9.151363 2.572652,10.711841 6,14.350481 C 19.269521,47.166888 21,49.376217 21,49.831087 c 0,0.454871 2.219282,1.866494 4.931738,3.136941 4.316889,2.021923 5.462579,2.17516 9.189648,1.229129 2.341851,-0.594425 4.622569,-0.855401 5.068263,-0.579948 1.940107,1.199053 0.412628,3.036812 -4.213217,5.069057 L 31,60.872533 31,80.21757 31,99.562607 25.221003,105.2813 c -6.1587,6.09444 -7.624878,6.59545 -12.270663,4.19302 C 11.327653,108.6352 10,108.31007 10,108.75181 c 0,2.0213 3.635016,5.63265 7.3825,7.33444 3.806276,1.72849 7.237838,1.87149 45.399619,1.89179 43.920831,0.0234 44.935461,-0.0761 49.967881,-4.89944 3.30784,-3.1704 2.73871,-4.34717 -1,-2.06764 -1.96516,1.19818 -5.02901,1.98285 -7.75,1.98481 -4.167406,0.003 -4.821804,-0.37043 -8.854006,-5.05259 -4.281805,-4.97201 -4.323262,-5.08986 -2.5,-7.10665 1.68724,-1.866337 1.827016,-3.682733 1.553943,-20.193667 C 94.034903,70.664288 93.670228,61.722422 93.389548,60.772048 93.108868,59.821675 91.106396,58.512945 88.93961,57.863761 86.772825,57.214576 85,56.079654 85,55.341712 c 0,-2.025321 3.388655,-1.610436 6.438073,0.788236 2.414557,1.899291 2.982635,1.982855 5.245785,0.771654 C 99.835565,55.21486 113.59687,40.690363 115.42001,37.126352 116.15893,35.681858 117.07459,32.475 117.4548,30 c 0.99443,-6.473237 1.56708,-8.104512 2.6172,-7.455504 0.54549,0.337134 0.928,16.961802 0.928,40.33302 0,45.071704 -0.25619,47.102174 -6.71968,53.257404 -2.07918,1.98001 -5.30997,4.10966 -7.17954,4.73255 -2.31894,0.77261 -16.461202,1.12009 -44.500003,1.09339 -34.44538,-0.0328 -41.666371,-0.28442 -44.593637,-1.55384 z M 54,55.5 c 0,-1.222222 1.666667,-1.5 9,-1.5 7.333333,0 9,0.277778 9,1.5 0,1.222222 -1.666667,1.5 -9,1.5 -7.333333,0 -9,-0.277778 -9,-1.5 z M 47.810242,28.709714 c 5.089363,-5.272312 13.739557,-7.073366 22.408703,-4.665708 3.380942,0.93898 10.344942,5.72544 9.524235,6.546148 -0.18771,0.187709 -2.53298,-0.768285 -5.211713,-2.124432 -7.324358,-3.708062 -16.391626,-3.48166 -24.179921,0.603753 L 44.5,32.13895 47.810242,28.709714 z"
+ id="path3097"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fba637"
+ d="M 18.00714,120.40702 C 13.440326,118.42659 10.303173,115.425 7.652682,110.5 5.5423284,106.57865 5.5,105.63482 5.5,62.5 l 0,-44 2.3640675,-3.802599 c 1.3002372,-2.09143 2.6018625,-3.564804 2.8925005,-3.274166 0.290638,0.290638 -0.02822,1.199157 -0.708569,2.01893 -1.4116042,1.700879 -1.1460763,6.3637 1.340963,23.548074 0.91462,6.319632 2.213766,12.014788 2.886992,12.655901 0.673225,0.641114 3.075674,1.411259 5.338776,1.711434 2.263101,0.300174 5.711449,1.307194 7.662995,2.237821 2.93227,1.398302 4.290712,1.503597 7.824919,0.60652 2.352159,-0.597042 4.641311,-0.860159 5.087005,-0.584706 1.940107,1.199053 0.412628,3.036812 -4.213217,5.069057 L 31,60.872533 31,80.21757 31,99.562607 25.221003,105.2813 c -6.1587,6.09444 -7.624878,6.59545 -12.270663,4.19302 C 11.327653,108.6352 10,108.31007 10,108.75181 c 0,2.0213 3.635016,5.63265 7.3825,7.33444 3.806276,1.72849 7.237838,1.87149 45.399619,1.89179 43.920831,0.0234 44.935461,-0.0761 49.967881,-4.89944 3.30784,-3.1704 2.73871,-4.34717 -1,-2.06764 -1.96516,1.19818 -5.02901,1.98285 -7.75,1.98481 -4.167406,0.003 -4.821804,-0.37043 -8.854006,-5.05259 -4.281805,-4.97201 -4.323262,-5.08986 -2.5,-7.10665 1.68724,-1.866337 1.827016,-3.682733 1.553943,-20.193667 C 94.034903,70.664288 93.670228,61.722422 93.389548,60.772048 93.108868,59.821675 91.106396,58.512945 88.93961,57.863761 86.772825,57.214576 85,56.079654 85,55.341712 c 0,-2.025321 3.388655,-1.610436 6.438073,0.788236 3.464535,2.725204 5.002594,1.962448 14.108257,-6.996589 8.54534,-8.40773 11.08517,-12.381717 11.90883,-18.633359 0.88751,-6.736234 1.51298,-8.637726 2.61684,-7.955504 0.54549,0.337134 0.928,16.961802 0.928,40.33302 0,45.071704 -0.25619,47.102174 -6.71968,53.257404 -2.07918,1.98001 -5.30997,4.10966 -7.17954,4.73255 -2.31894,0.77261 -16.461202,1.12009 -44.500003,1.09339 -34.44538,-0.0328 -41.666371,-0.28442 -44.593637,-1.55384 z M 54,55.5 c 0,-1.222222 1.666667,-1.5 9,-1.5 7.333333,0 9,0.277778 9,1.5 0,1.222222 -1.666667,1.5 -9,1.5 -7.333333,0 -9,-0.277778 -9,-1.5 z M 47.810242,28.709714 c 5.089363,-5.272312 13.739557,-7.073366 22.408703,-4.665708 3.380942,0.93898 10.344942,5.72544 9.524235,6.546148 -0.18771,0.187709 -2.53298,-0.768285 -5.211713,-2.124432 -7.324358,-3.708062 -16.391626,-3.48166 -24.179921,0.603753 L 44.5,32.13895 47.810242,28.709714 z"
+ id="path3095"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fd9447"
+ d="M 18.00714,120.40702 C 13.440326,118.42659 10.303173,115.425 7.652682,110.5 5.5423284,106.57865 5.5,105.63482 5.5,62.5 l 0,-44 2.3640675,-3.802599 c 1.3002372,-2.09143 2.6018625,-3.564804 2.8925005,-3.274166 0.290638,0.290638 -0.02822,1.199157 -0.708569,2.01893 -1.4116042,1.700879 -1.1460763,6.3637 1.340963,23.548074 0.91462,6.319632 2.213766,12.014788 2.886992,12.655901 0.673225,0.641114 3.075674,1.411259 5.338776,1.711434 2.263101,0.300174 5.711449,1.307194 7.662995,2.237821 2.93227,1.398302 4.290712,1.503597 7.824919,0.60652 2.352159,-0.597042 4.641311,-0.860159 5.087005,-0.584706 1.923914,1.189045 0.431357,3.028447 -4.055305,4.99769 l -4.81852,2.114899 -0.655198,8.523892 c -0.360359,4.688141 -0.361286,13.327514 -0.0021,19.198608 l 0.653139,10.674716 -5.874549,5.936496 C 22.181336,108.35366 18.675897,111 17.573466,111 c -1.094027,0 -3.695614,-1.66633 -5.781303,-3.70295 -4.6113038,-4.50282 -5.1462559,-2.4664 -0.894088,3.40355 5.241256,7.23534 5.698942,7.2994 52.15428,7.2994 44.982005,0 44.792145,0.0226 50.697645,-6.04207 4.82964,-4.95983 3.99068,-6.51009 -1.3266,-2.45132 -3.54041,2.70245 -5.52149,3.49328 -8.75,3.4929 -3.76521,-4.4e-4 -4.593164,-0.48792 -8.465135,-4.98404 l -4.291736,-4.98355 2.186876,-2.95791 C 95.229457,97.198369 95.270187,96.624417 94.567808,79.438311 94.170447,69.715527 93.608567,61.143517 93.319185,60.389399 93.029802,59.635281 91.039602,58.492934 88.896518,57.85085 86.753433,57.208766 85,56.079654 85,55.341712 c 0,-2.025321 3.388655,-1.610436 6.438073,0.788236 3.464535,2.725204 5.002594,1.962448 14.108257,-6.996589 8.54534,-8.40773 11.08517,-12.381717 11.90883,-18.633359 0.88751,-6.736234 1.51298,-8.637726 2.61684,-7.955504 0.54549,0.337134 0.928,16.961802 0.928,40.33302 0,45.071704 -0.25619,47.102174 -6.71968,53.257404 -2.07918,1.98001 -5.30997,4.10966 -7.17954,4.73255 -2.31894,0.77261 -16.461202,1.12009 -44.500003,1.09339 -34.44538,-0.0328 -41.666371,-0.28442 -44.593637,-1.55384 z M 54,55.5 c 0,-1.222222 1.666667,-1.5 9,-1.5 7.333333,0 9,0.277778 9,1.5 0,1.222222 -1.666667,1.5 -9,1.5 -7.333333,0 -9,-0.277778 -9,-1.5 z M 47.810242,28.709714 c 5.089363,-5.272312 13.739557,-7.073366 22.408703,-4.665708 3.380942,0.93898 10.344942,5.72544 9.524235,6.546148 -0.18771,0.187709 -2.53298,-0.768285 -5.211713,-2.124432 -7.324358,-3.708062 -16.391626,-3.48166 -24.179921,0.603753 L 44.5,32.13895 47.810242,28.709714 z"
+ id="path3093"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#d5976a"
+ d="M 18.00714,120.40702 C 13.440326,118.42659 10.303173,115.425 7.652682,110.5 5.5423284,106.57865 5.5,105.63482 5.5,62.5 l 0,-44 2.3640675,-3.802599 c 1.3002372,-2.09143 2.6018625,-3.564804 2.8925005,-3.274166 0.290638,0.290638 -0.02822,1.199157 -0.708569,2.01893 C 8.641865,15.136453 8.8973404,19.696028 11.367957,37 c 1.271719,8.907005 2.086779,11.87031 3.614813,13.142334 1.43849,1.197481 2.02239,3.041368 2.155684,6.807385 0.165675,4.680915 0.472387,5.314799 3.272178,6.762627 1.699152,0.878666 3.089368,1.426649 3.089368,1.21774 0,-0.208908 1.4625,0.225954 3.25,0.966361 1.804796,0.747571 3.25,2.078012 3.25,2.99192 0,0.90515 0.252574,8.122142 0.561274,16.037762 l 0.561275,14.392035 -5.779971,5.840916 C 22.149797,108.38553 18.672242,111 17.573466,111 c -1.094027,0 -3.695614,-1.66633 -5.781303,-3.70295 -4.6113038,-4.50282 -5.1462559,-2.4664 -0.894088,3.40355 5.241256,7.23534 5.698942,7.2994 52.15428,7.2994 44.982005,0 44.792145,0.0226 50.697645,-6.04207 4.82964,-4.95983 3.99068,-6.51009 -1.3266,-2.45132 -3.54041,2.70245 -5.52149,3.49328 -8.75,3.4929 -3.76521,-4.4e-4 -4.593164,-0.48792 -8.465135,-4.98404 l -4.291736,-4.98355 2.186876,-2.95791 C 95.229457,97.198369 95.270187,96.624417 94.567808,79.438311 94.170447,69.715527 93.608567,61.143517 93.319185,60.389399 93.029802,59.635281 91.039602,58.492934 88.896518,57.85085 86.753433,57.208766 85,56.079654 85,55.341712 c 0,-2.224974 3.921742,-1.510879 6.642045,1.209424 1.403125,1.403125 2.94791,2.415625 3.432855,2.25 1.756813,-0.60001 17.27933,-16.381914 19.47223,-19.797617 1.2371,-1.926936 2.54572,-5.753519 2.90803,-8.503519 0.88751,-6.736234 1.51298,-8.637726 2.61684,-7.955504 0.54549,0.337134 0.928,16.961802 0.928,40.33302 0,45.071704 -0.25619,47.102174 -6.71968,53.257404 -2.07918,1.98001 -5.30997,4.10966 -7.17954,4.73255 -2.31894,0.77261 -16.461202,1.12009 -44.500003,1.09339 -34.44538,-0.0328 -41.666371,-0.28442 -44.593637,-1.55384 z M 32,59.083333 C 32,57.101022 35.965241,54 38.5,54 c 3.753679,0 3.011559,2.40098 -1.25,4.044124 -2.0625,0.795245 -4.0875,1.598145 -4.5,1.784221 C 32.3375,60.014422 32,59.679167 32,59.083333 z M 54,55.5 c 0,-1.222222 1.666667,-1.5 9,-1.5 7.333333,0 9,0.277778 9,1.5 0,1.222222 -1.666667,1.5 -9,1.5 -7.333333,0 -9,-0.277778 -9,-1.5 z M 47.810242,28.709714 c 5.089363,-5.272312 13.739557,-7.073366 22.408703,-4.665708 3.380942,0.93898 10.344942,5.72544 9.524235,6.546148 -0.18771,0.187709 -2.53298,-0.768285 -5.211713,-2.124432 -7.324358,-3.708062 -16.391626,-3.48166 -24.179921,0.603753 L 44.5,32.13895 47.810242,28.709714 z"
+ id="path3091"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fc8b47"
+ d="M 18.00714,120.40702 C 13.440326,118.42659 10.303173,115.425 7.652682,110.5 5.561936,106.61509 5.4911167,105.28752 5.1912469,64.358497 4.9104304,26.030047 5.0401386,21.86787 6.6247706,18.358497 L 8.3670476,14.5 9.0617474,20 c 2.8895206,22.876593 4.0031516,28.545787 5.9210226,30.142334 1.43849,1.197481 2.02239,3.041368 2.155684,6.807385 0.165675,4.680915 0.472387,5.314799 3.272178,6.762627 1.699152,0.878666 3.089368,1.426649 3.089368,1.21774 0,-0.208908 1.4625,0.225954 3.25,0.966361 1.804796,0.747571 3.25,2.078012 3.25,2.99192 0,0.90515 0.252574,8.122142 0.561274,16.037762 l 0.561275,14.392035 -5.779971,5.840916 C 22.149797,108.38553 18.672242,111 17.573466,111 c -1.094027,0 -3.695614,-1.66633 -5.781303,-3.70295 -4.6113038,-4.50282 -5.1462559,-2.4664 -0.894088,3.40355 5.241256,7.23534 5.698942,7.2994 52.15428,7.2994 44.982005,0 44.792145,0.0226 50.697645,-6.04207 4.82964,-4.95983 3.99068,-6.51009 -1.3266,-2.45132 -3.54041,2.70245 -5.52149,3.49328 -8.75,3.4929 -3.768144,-4.4e-4 -4.592349,-0.48697 -8.487818,-5.01038 l -4.314419,-5.00988 2.064419,-2.62448 c 1.764097,-2.242691 2.04984,-3.950511 1.964205,-11.739629 -0.05512,-5.013327 -0.392617,-13.51941 -0.75,-18.902404 C 93.459288,59.312256 93.037543,58.497413 87.75,57.347868 86.2375,57.01904 85,56.13125 85,55.375 c 0,-2.253487 3.903661,-1.562249 6.642045,1.176136 1.403125,1.403125 2.940382,2.415625 3.416126,2.25 1.416736,-0.493221 15.770049,-14.709359 18.608179,-18.43035 1.62356,-2.128586 3.04993,-5.813993 3.73742,-9.656569 2.38844,-13.349754 3.09624,-5.263129 3.08847,35.285783 -0.007,35.69549 -0.20516,40.9152 -1.67183,44 -2.16265,4.54863 -7.43412,9.43609 -11.71963,10.86589 -2.32194,0.77469 -16.424939,1.12171 -44.500003,1.09497 -34.44538,-0.0328 -41.666371,-0.28442 -44.593637,-1.55384 z M 32,59 c 0,-0.55 0.9,-1.9 2,-3 2.376083,-2.376083 7,-2.706362 7,-0.5 0,0.825 -0.813992,1.5 -1.80887,1.5 -0.994879,0 -2.682379,0.660688 -3.75,1.468197 C 33.148094,60.202562 32,60.379992 32,59 z m 22,-3.5 c 0,-1.222222 1.666667,-1.5 9,-1.5 7.333333,0 9,0.277778 9,1.5 0,1.222222 -1.666667,1.5 -9,1.5 -7.333333,0 -9,-0.277778 -9,-1.5 z M 47.810242,28.768924 C 54.879127,21.31949 69.638835,20.979092 77.303301,28.088735 L 80.5,31.054028 75.5,28.45282 c -4.458268,-2.319377 -5.929123,-2.566083 -13.575487,-2.277014 -7.450118,0.28165 -9.156119,0.701966 -13,3.202879 L 44.5,32.257371 47.810242,28.768924 z"
+ id="path3089"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#d7b047"
+ d="M 18.00714,120.40702 C 13.440326,118.42659 10.303173,115.425 7.652682,110.5 5.561936,106.61509 5.4911167,105.28752 5.1912469,64.358497 4.909439,25.894743 5.0357703,21.880258 6.6388144,18.358497 L 8.3951351,14.5 8.7225924,18 C 8.9026939,19.925 9.7137885,25.516797 10.525025,30.426216 11.336261,35.335635 12,42.591885 12,46.551216 12,57.838918 12.515048,59.221492 17.833835,62.211328 20.400226,63.653967 22.725,64.770395 23,64.69228 c 1.573532,-0.44697 7,2.805878 7,4.196087 0,0.90515 0.252574,8.122142 0.561274,16.037762 l 0.561275,14.392035 -5.779971,5.840916 C 22.149797,108.38553 18.672242,111 17.573466,111 c -1.094027,0 -3.695614,-1.66633 -5.781303,-3.70295 -4.6113038,-4.50282 -5.1462559,-2.4664 -0.894088,3.40355 5.241256,7.23534 5.698942,7.2994 52.15428,7.2994 44.982005,0 44.792145,0.0226 50.697645,-6.04207 4.82964,-4.95983 3.99068,-6.51009 -1.3266,-2.45132 -3.54041,2.70245 -5.52149,3.49328 -8.75,3.4929 -3.768144,-4.4e-4 -4.592349,-0.48697 -8.487818,-5.01038 l -4.314419,-5.00988 2.064419,-2.62448 c 1.764097,-2.242691 2.04984,-3.950511 1.964205,-11.739629 -0.05512,-5.013327 -0.392617,-13.51941 -0.75,-18.902404 C 93.459288,59.312256 93.037543,58.497413 87.75,57.347868 86.2375,57.01904 85,56.13125 85,55.375 c 0,-2.235918 3.894792,-1.571117 6.590909,1.125 1.375,1.375 2.864465,2.5 3.309921,2.5 1.518551,0 13.96522,-12.04957 17.69477,-17.130238 2.66023,-3.623947 4.03191,-6.816778 4.8193,-11.217773 2.3767,-13.28413 3.0851,-5.147076 3.07734,35.348011 -0.007,35.69549 -0.20516,40.9152 -1.67183,44 -2.16265,4.54863 -7.43412,9.43609 -11.71963,10.86589 -2.32194,0.77469 -16.424939,1.12171 -44.500003,1.09497 -34.44538,-0.0328 -41.666371,-0.28442 -44.593637,-1.55384 z M 32,59.07258 C 32,57.608515 37.075572,54 39.134859,54 40.160686,54 41,54.675 41,55.5 c 0,0.825 -0.813992,1.5 -1.80887,1.5 -0.994879,0 -2.682379,0.660688 -3.75,1.468197 C 33.18538,60.174359 32,60.382554 32,59.07258 z M 54,55.5 c 0,-1.222222 1.666667,-1.5 9,-1.5 7.333333,0 9,0.277778 9,1.5 0,1.222222 -1.666667,1.5 -9,1.5 -7.333333,0 -9,-0.277778 -9,-1.5 z M 47.810242,28.768924 C 54.879127,21.31949 69.638835,20.979092 77.303301,28.088735 L 80.5,31.054028 75.5,28.45282 c -4.458268,-2.319377 -5.929123,-2.566083 -13.575487,-2.277014 -7.450118,0.28165 -9.156119,0.701966 -13,3.202879 L 44.5,32.257371 47.810242,28.768924 z"
+ id="path3087"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#feab24"
+ d="M 18.00714,120.40702 C 13.440326,118.42659 10.303173,115.425 7.652682,110.5 5.561936,106.61509 5.4911167,105.28752 5.1912469,64.358497 4.909439,25.894743 5.0357703,21.880258 6.6388144,18.358497 L 8.3951351,14.5 8.7225924,18 C 8.9026939,19.925 9.7137885,25.516797 10.525025,30.426216 11.336261,35.335635 12,42.591885 12,46.551216 12,57.838918 12.515048,59.221492 17.833835,62.211328 20.400226,63.653967 22.725,64.770395 23,64.69228 c 1.573532,-0.44697 7,2.805878 7,4.196087 0,0.90515 0.252574,8.122142 0.561274,16.037762 l 0.561275,14.392035 -5.779971,5.840916 C 22.149797,108.38553 18.672242,111 17.573466,111 16.479439,111 13.877852,109.33367 11.792163,107.29705 9.2824835,104.84642 8,104.12002 8,105.14917 c 0,2.40871 4.198506,8.06799 7.772117,10.47624 4.51021,3.03943 20.697499,3.83756 59.203925,2.91909 33.175058,-0.7913 33.707308,-0.88466 39.175238,-6.87127 4.38953,-4.80593 3.3831,-6.06792 -1.72788,-2.16662 -3.54041,2.70245 -5.52149,3.49328 -8.75,3.4929 -3.768144,-4.4e-4 -4.592349,-0.48697 -8.487818,-5.01038 l -4.314419,-5.00988 2.064419,-2.62448 c 1.764097,-2.242691 2.04984,-3.950511 1.964205,-11.739629 -0.05512,-5.013327 -0.392617,-13.51941 -0.75,-18.902404 C 93.459288,59.312256 93.037543,58.497413 87.75,57.347868 86.2375,57.01904 85,56.13125 85,55.375 c 0,-2.235918 3.894792,-1.571117 6.590909,1.125 1.375,1.375 2.864465,2.5 3.309921,2.5 1.518551,0 13.96522,-12.04957 17.69477,-17.130238 2.66023,-3.623947 4.03191,-6.816778 4.8193,-11.217773 2.3767,-13.28413 3.0851,-5.147076 3.07734,35.348011 -0.007,35.69549 -0.20516,40.9152 -1.67183,44 -2.16265,4.54863 -7.43412,9.43609 -11.71963,10.86589 -2.32194,0.77469 -16.424939,1.12171 -44.500003,1.09497 -34.44538,-0.0328 -41.666371,-0.28442 -44.593637,-1.55384 z M 32,59.07258 C 32,57.608515 37.075572,54 39.134859,54 40.160686,54 41,54.675 41,55.5 c 0,0.825 -0.813992,1.5 -1.80887,1.5 -0.994879,0 -2.682379,0.660688 -3.75,1.468197 C 33.18538,60.174359 32,60.382554 32,59.07258 z M 54,55.5 c 0,-1.222222 1.666667,-1.5 9,-1.5 7.333333,0 9,0.277778 9,1.5 0,1.222222 -1.666667,1.5 -9,1.5 -7.333333,0 -9,-0.277778 -9,-1.5 z M 47.810242,28.768924 C 54.879127,21.31949 69.638835,20.979092 77.303301,28.088735 L 80.5,31.054028 75.5,28.45282 c -4.458268,-2.319377 -5.929123,-2.566083 -13.575487,-2.277014 -7.450118,0.28165 -9.156119,0.701966 -13,3.202879 L 44.5,32.257371 47.810242,28.768924 z"
+ id="path3085"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fd9637"
+ d="M 18.00714,120.40702 C 13.440326,118.42659 10.303173,115.425 7.652682,110.5 5.561936,106.61509 5.4911167,105.28752 5.1912469,64.358497 4.909439,25.894743 5.0357703,21.880258 6.6388144,18.358497 L 8.3951351,14.5 8.7225924,18 C 8.9026939,19.925 9.7137885,25.516797 10.525025,30.426216 11.336261,35.335635 12,42.591885 12,46.551216 12,57.838918 12.515048,59.221492 17.833835,62.211328 20.400226,63.653967 22.725,64.770395 23,64.69228 c 1.545748,-0.439078 7.006473,2.801578 7.041968,4.17904 0.558059,21.657077 0.393379,24.305667 -1.577185,25.366209 -1.080631,0.581586 -4.869058,3.932839 -8.418726,7.447231 l -6.453944,6.38979 -2.796056,-2.06721 C 8.7472286,104.49258 8,104.30947 8,105.32218 c 0,2.25729 4.308772,7.96929 7.772117,10.30323 4.51021,3.03943 20.697499,3.83756 59.203925,2.91909 33.175058,-0.7913 33.707308,-0.88466 39.175238,-6.87127 3.86843,-4.23539 3.76396,-6.62114 -0.14588,-3.33122 -4.66249,3.92322 -7.06174,4.32208 -9.23354,1.53502 -1.01877,-1.30737 -3.6342,-4.48555 -5.812079,-7.06262 L 95,98.128819 94.899787,88.814409 C 94.84467,83.691484 94.50717,75.095731 94.149787,69.712737 93.459288,59.312256 93.037543,58.497413 87.75,57.347868 86.2375,57.01904 85,56.13125 85,55.375 c 0,-2.235918 3.894792,-1.571117 6.590909,1.125 1.375,1.375 2.864465,2.5 3.309921,2.5 1.518551,0 13.96522,-12.04957 17.69477,-17.130238 2.66023,-3.623947 4.03191,-6.816778 4.8193,-11.217773 2.3767,-13.28413 3.0851,-5.147076 3.07734,35.348011 -0.007,35.69549 -0.20516,40.9152 -1.67183,44 -2.16265,4.54863 -7.43412,9.43609 -11.71963,10.86589 -2.32194,0.77469 -16.424939,1.12171 -44.500003,1.09497 -34.44538,-0.0328 -41.666371,-0.28442 -44.593637,-1.55384 z M 32,59.07258 C 32,57.608515 37.075572,54 39.134859,54 40.160686,54 41,54.675 41,55.5 c 0,0.825 -0.813992,1.5 -1.80887,1.5 -0.994879,0 -2.682379,0.660688 -3.75,1.468197 C 33.18538,60.174359 32,60.382554 32,59.07258 z M 54,55.5 c 0,-1.222222 1.666667,-1.5 9,-1.5 7.333333,0 9,0.277778 9,1.5 0,1.222222 -1.666667,1.5 -9,1.5 -7.333333,0 -9,-0.277778 -9,-1.5 z M 47.810242,28.768924 C 54.879127,21.31949 69.638835,20.979092 77.303301,28.088735 L 80.5,31.054028 75.5,28.45282 c -4.458268,-2.319377 -5.929123,-2.566083 -13.575487,-2.277014 -7.450118,0.28165 -9.156119,0.701966 -13,3.202879 L 44.5,32.257371 47.810242,28.768924 z"
+ id="path3083"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#a29a8b"
+ d="M 18.00714,120.40702 C 13.440326,118.42659 10.303173,115.425 7.652682,110.5 5.561936,106.61509 5.4911167,105.28752 5.1912469,64.358497 4.909439,25.894743 5.0357703,21.880258 6.6388144,18.358497 L 8.3951351,14.5 8.7225924,18 C 8.9026939,19.925 9.7137885,25.516797 10.525025,30.426216 11.336261,35.335635 12,42.591885 12,46.551216 c 0,10.131449 0.746744,13.012363 3.724535,14.369135 2.232827,1.017344 2.449231,1.571821 1.898324,4.863945 -0.341985,2.043637 -0.878322,4.647163 -1.191861,5.785614 -0.486891,1.767884 0.443307,2.537006 6.375034,5.271116 6.54161,3.015224 6.981119,3.426427 7.564996,7.077792 0.917741,5.739239 -0.169723,9.531053 -3.256348,11.354367 -1.484793,0.877089 -5.105105,4.13815 -8.045139,7.246805 l -5.345515,5.65209 -2.862013,-2.11598 C 8.7805811,104.51723 8,104.31706 8,105.32218 c 0,2.25729 4.308772,7.96929 7.772117,10.30323 4.507943,3.03791 20.675018,3.83635 59.227883,2.92511 28.33517,-0.66973 30.76519,-0.86933 34.23626,-2.81213 C 112.6075,113.85147 118,107.6086 118,105.59266 c 0,-0.43992 -1.54543,0.55706 -3.43429,2.21551 -5.04369,4.42841 -7.54367,4.95651 -9.79385,2.06886 -1.01877,-1.30737 -3.6342,-4.48555 -5.812079,-7.06262 L 95,98.128819 94.994423,82.314409 C 94.991356,73.616484 94.539974,64.884102 93.991353,62.909116 93.025213,59.431099 89.9238,57 86.452947,57 85.653826,57 85,56.325 85,55.5 c 0,-2.348476 3.82238,-1.768529 6.590909,1 1.375,1.375 2.864465,2.5 3.309921,2.5 1.518551,0 13.96522,-12.04957 17.69477,-17.130238 2.66023,-3.623947 4.03191,-6.816778 4.8193,-11.217773 2.3767,-13.28413 3.0851,-5.147076 3.07734,35.348011 -0.007,35.69549 -0.20516,40.9152 -1.67183,44 -2.16265,4.54863 -7.43412,9.43609 -11.71963,10.86589 -2.32194,0.77469 -16.424939,1.12171 -44.500003,1.09497 -34.44538,-0.0328 -41.666371,-0.28442 -44.593637,-1.55384 z M 32,59.07258 C 32,57.608515 37.075572,54 39.134859,54 40.160686,54 41,54.675 41,55.5 c 0,0.825 -0.813992,1.5 -1.80887,1.5 -0.994879,0 -2.682379,0.660688 -3.75,1.468197 C 33.18538,60.174359 32,60.382554 32,59.07258 z M 54,55.5 c 0,-1.222222 1.666667,-1.5 9,-1.5 7.333333,0 9,0.277778 9,1.5 0,1.222222 -1.666667,1.5 -9,1.5 -7.333333,0 -9,-0.277778 -9,-1.5 z M 47.810242,28.768924 C 54.879127,21.31949 69.638835,20.979092 77.303301,28.088735 L 80.5,31.054028 75.5,28.45282 c -4.458268,-2.319377 -5.929123,-2.566083 -13.575487,-2.277014 -7.450118,0.28165 -9.156119,0.701966 -13,3.202879 L 44.5,32.257371 47.810242,28.768924 z"
+ id="path3081"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#d6a945"
+ d="M 19.557825,120.50788 C 13.926402,118.50178 10.857502,115.95367 8,110.91142 L 5.5,106.5 5.1912469,64.358497 c -0.2818079,-38.463754 -0.1554766,-42.478239 1.4475675,-46 L 8.3951351,14.5 8.7225924,18 C 8.9026939,19.925 9.7137885,25.516797 10.525025,30.426216 11.336261,35.335635 12,42.591885 12,46.551216 c 0,10.131449 0.746744,13.012363 3.724535,14.369135 2.232827,1.017344 2.449231,1.571821 1.898324,4.863945 -0.341985,2.043637 -0.878322,4.647163 -1.191861,5.785614 -0.486891,1.767884 0.443307,2.537006 6.375034,5.271116 6.54161,3.015224 6.981119,3.426427 7.564996,7.077792 0.917741,5.739239 -0.169723,9.531053 -3.256348,11.354367 -1.484793,0.877089 -5.105105,4.13815 -8.045139,7.246805 l -5.345515,5.65209 -2.862013,-2.11598 C 8.7805811,104.51723 8,104.31706 8,105.32218 c 0,2.25729 4.308772,7.96929 7.772117,10.30323 4.507943,3.03791 20.675018,3.83635 59.227883,2.92511 28.33517,-0.66973 30.76519,-0.86933 34.23626,-2.81213 C 112.6075,113.85147 118,107.6086 118,105.59266 c 0,-0.43992 -1.54543,0.55706 -3.43429,2.21551 -5.04369,4.42841 -7.54367,4.95651 -9.79385,2.06886 -1.01877,-1.30737 -3.6342,-4.48555 -5.812079,-7.06262 L 95,98.128819 94.994423,82.314409 C 94.991356,73.616484 94.539974,64.884102 93.991353,62.909116 93.025213,59.431099 89.9238,57 86.452947,57 85.653826,57 85,56.325 85,55.5 c 0,-2.348476 3.82238,-1.768529 6.590909,1 1.375,1.375 2.864465,2.5 3.309921,2.5 1.518551,0 13.96522,-12.04957 17.69477,-17.130238 2.66023,-3.623947 4.03191,-6.816778 4.8193,-11.217773 C 119.79048,17.374088 120.5,25.503465 120.5,66 l 0,40.5 -2.5,4.4613 c -2.75553,4.9173 -7.33813,8.48263 -12.88237,10.02267 -2.1508,0.59743 -19.430795,0.98934 -42.61763,0.96656 -30.871353,-0.0303 -39.821655,-0.33102 -42.942175,-1.44265 z M 32,59.07258 C 32,57.608515 37.075572,54 39.134859,54 40.160686,54 41,54.675 41,55.5 c 0,0.825 -0.813992,1.5 -1.80887,1.5 -0.994879,0 -2.682379,0.660688 -3.75,1.468197 C 33.18538,60.174359 32,60.382554 32,59.07258 z M 54,55.5 c 0,-1.222222 1.666667,-1.5 9,-1.5 7.333333,0 9,0.277778 9,1.5 0,1.222222 -1.666667,1.5 -9,1.5 -7.333333,0 -9,-0.277778 -9,-1.5 z M 47.810242,28.768924 C 54.879127,21.31949 69.638835,20.979092 77.303301,28.088735 L 80.5,31.054028 75.5,28.45282 c -4.458268,-2.319377 -5.929123,-2.566083 -13.575487,-2.277014 -7.450118,0.28165 -9.156119,0.701966 -13,3.202879 L 44.5,32.257371 47.810242,28.768924 z"
+ id="path3079"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#e38a55"
+ d="m 19.557825,120.50788 c -2.168197,-0.77239 -5.093197,-2.25744 -6.5,-3.30013 -3.514772,-2.60505 -7.0980689,-9.19922 -6.4348403,-11.84174 0.2964882,-1.1813 0.052607,-2.44847 -0.5419576,-2.81593 C 5.3354962,102.08931 5,89.476333 5,61.908864 5,26.436332 5.191129,21.517167 6.6975676,18.217881 L 8.3951351,14.5 8.7225924,18 C 8.9026939,19.925 9.7137885,25.516797 10.525025,30.426216 11.336261,35.335635 12,42.591885 12,46.551216 c 0,10.131449 0.746744,13.012363 3.724535,14.369135 2.232827,1.017344 2.449231,1.571821 1.898324,4.863945 -0.341985,2.043637 -0.878322,4.647163 -1.191861,5.785614 -0.486891,1.767884 0.443307,2.537006 6.375034,5.271116 6.54161,3.015224 6.981119,3.426427 7.564996,7.077792 0.917741,5.739239 -0.169723,9.531053 -3.256348,11.354367 -1.484793,0.877089 -5.105105,4.13815 -8.045139,7.246805 l -5.345515,5.65209 -2.76972,-2.04774 c -2.507866,-1.85415 -2.830024,-1.8906 -3.4075682,-0.38554 -0.772048,2.01192 1.7305182,5.55115 6.8611562,9.70332 l 3.778488,3.05788 44.156809,0 44.156809,0 3.78109,-2.35077 C 113.42808,114.19268 118,107.84738 118,105.43625 c 0,-0.35389 -1.54543,0.71347 -3.43429,2.37192 -5.04369,4.42841 -7.54367,4.95651 -9.79385,2.06886 -1.01877,-1.30737 -3.6342,-4.48555 -5.812079,-7.06262 L 95,98.128819 94.994423,82.314409 C 94.991356,73.616484 94.539974,64.884102 93.991353,62.909116 93.025213,59.431099 89.9238,57 86.452947,57 85.653826,57 85,56.325 85,55.5 c 0,-2.348476 3.82238,-1.768529 6.590909,1 1.375,1.375 2.864465,2.5 3.309921,2.5 1.518551,0 13.96522,-12.04957 17.69477,-17.130238 2.66023,-3.623947 4.03191,-6.816778 4.8193,-11.217773 C 119.79048,17.374088 120.5,25.503465 120.5,66 l 0,40.5 -2.5,4.4613 c -2.75553,4.9173 -7.33813,8.48263 -12.88237,10.02267 -2.1508,0.59743 -19.430795,0.98934 -42.61763,0.96656 -30.871353,-0.0303 -39.821655,-0.33102 -42.942175,-1.44265 z M 32,59.07258 C 32,57.608515 37.075572,54 39.134859,54 40.160686,54 41,54.675 41,55.5 c 0,0.825 -0.813992,1.5 -1.80887,1.5 -0.994879,0 -2.682379,0.660688 -3.75,1.468197 C 33.18538,60.174359 32,60.382554 32,59.07258 z M 54,55.5 c 0,-1.222222 1.666667,-1.5 9,-1.5 7.333333,0 9,0.277778 9,1.5 0,1.222222 -1.666667,1.5 -9,1.5 -7.333333,0 -9,-0.277778 -9,-1.5 z M 47.810242,28.768924 C 54.879127,21.31949 69.638835,20.979092 77.303301,28.088735 L 80.5,31.054028 75.5,28.45282 c -4.458268,-2.319377 -5.929123,-2.566083 -13.575487,-2.277014 -7.450118,0.28165 -9.156119,0.701966 -13,3.202879 L 44.5,32.257371 47.810242,28.768924 z"
+ id="path3077"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fda321"
+ d="m 19.557825,120.50788 c -2.168197,-0.77239 -5.093197,-2.25744 -6.5,-3.30013 -3.514772,-2.60505 -7.0980689,-9.19922 -6.4348403,-11.84174 0.2964882,-1.1813 0.052607,-2.44847 -0.5419576,-2.81593 C 5.3354962,102.08931 5,89.476333 5,61.908864 5,29.265079 5.2656783,21.299905 6.4489734,18.467881 7.2459087,16.560547 8.0334087,15 8.1989734,15 8.364538,15 8.5331923,16.4625 8.5737606,18.25 8.614329,20.0375 9.401829,25.496446 10.323761,30.38099 11.245692,35.265535 12,42.521785 12,46.50599 c 0,10.177827 0.743751,13.056225 3.724535,14.414361 2.232827,1.017344 2.449231,1.571821 1.898324,4.863945 -0.341985,2.043637 -0.878322,4.647163 -1.191861,5.785614 -0.486891,1.767884 0.443307,2.537006 6.375034,5.271116 6.54161,3.015224 6.981119,3.426427 7.564996,7.077792 0.917741,5.739239 -0.169723,9.531053 -3.256348,11.354367 -1.484793,0.877089 -5.105105,4.13815 -8.045139,7.246805 l -5.345515,5.65209 -2.76972,-2.04774 c -2.507866,-1.85415 -2.830024,-1.8906 -3.4075682,-0.38554 -0.772048,2.01192 1.7305182,5.55115 6.8611562,9.70332 l 3.778488,3.05788 44.156809,0 44.156809,0 3.78109,-2.35077 C 113.42808,114.19268 118,107.84738 118,105.43625 c 0,-0.35389 -1.54543,0.71347 -3.43429,2.37192 -5.04369,4.42841 -7.54367,4.95651 -9.79385,2.06886 -1.01877,-1.30737 -3.6342,-4.48555 -5.812079,-7.06262 L 95,98.128819 94.943558,81.814409 c -0.06865,-19.84339 -0.858146,-22.92279 -6.216255,-24.246319 -2.074983,-0.51255 -3.612693,-1.41255 -3.417133,-2 0.693908,-2.08446 3.679138,-1.669691 6.211915,0.863086 C 92.934938,57.844029 94.443769,59 94.875041,59 c 1.622631,0 13.661649,-11.726225 17.776899,-17.315027 2.38527,-3.239359 4.54349,-7.447222 4.87256,-9.5 1.19518,-7.455517 1.55724,-8.503232 2.58377,-7.476707 0.64065,0.64065 0.88918,15.450818 0.69464,41.394644 L 120.5,106.5 118,110.9613 c -2.75553,4.9173 -7.33813,8.48263 -12.88237,10.02267 -2.1508,0.59743 -19.430795,0.98934 -42.61763,0.96656 -30.871353,-0.0303 -39.821655,-0.33102 -42.942175,-1.44265 z M 32,59.013277 C 32,57.596283 37.118203,54 39.134859,54 40.160686,54 41,54.675 41,55.5 c 0,0.825 -0.7875,1.502772 -1.75,1.506161 -0.9625,0.0034 -2.9875,0.651702 -4.5,1.440697 C 33.2375,59.235852 32,59.490741 32,59.013277 z M 54,55.5 c 0,-1.222222 1.666667,-1.5 9,-1.5 7.333333,0 9,0.277778 9,1.5 0,1.222222 -1.666667,1.5 -9,1.5 -7.333333,0 -9,-0.277778 -9,-1.5 z M 49.119999,28.35541 c 4.868282,-5.86592 22.848489,-5.923696 27.687169,-0.08897 1.029587,1.241528 0.50689,1.168246 -2.461441,-0.345096 -5.241008,-2.672018 -17.450446,-2.672018 -22.691454,0 -2.718368,1.385903 -3.424623,1.506868 -2.534274,0.434063 z"
+ id="path3075"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#9c978b"
+ d="m 19.557825,120.50788 c -2.168197,-0.77239 -5.093197,-2.25744 -6.5,-3.30013 -3.514772,-2.60505 -7.0980689,-9.19922 -6.4348403,-11.84174 0.2964882,-1.1813 0.052607,-2.44847 -0.5419576,-2.81593 C 5.3354962,102.08931 5,89.476333 5,61.908864 5,29.265079 5.2656783,21.299905 6.4489734,18.467881 7.2459087,16.560547 8.0334087,15 8.1989734,15 8.364538,15 8.5331923,16.4625 8.5737606,18.25 8.614329,20.0375 9.401829,25.496446 10.323761,30.38099 11.245692,35.265535 12,42.521785 12,46.50599 c 0,10.177827 0.743751,13.056225 3.724535,14.414361 2.232827,1.017344 2.449231,1.571821 1.898324,4.863945 -0.341985,2.043637 -0.878322,4.647163 -1.191861,5.785614 -0.48751,1.770133 0.453783,2.541835 6.499465,5.32847 C 27.94411,79.209319 30,80.691506 30,81.995137 c 0,1.011008 -0.5625,2.06517 -1.25,2.342582 -1,0.403509 -1,0.520176 0,0.583334 3.068379,0.193792 0.908841,3.981477 -4.325378,7.586422 -3.066458,2.111951 -7.1804,5.798627 -9.142092,8.192615 -3.257008,3.97475 -3.713568,4.2198 -5.257955,2.82215 -1.2193209,-1.10347 -1.704512,-1.1806 -1.7387989,-0.2764 -0.026156,0.68979 -0.384476,2.06817 -0.7962657,3.06308 -1.0470084,2.52963 8.1404926,11.34762 12.6979976,12.1873 C 22.009379,118.83189 42.175,118.97005 65,118.80326 l 41.5,-0.30326 3.78109,-2.35077 C 113.34412,114.24488 118,107.86371 118,105.56997 c 0,-0.28033 -1.6378,0.60174 -3.63955,1.96017 -4.54245,3.08259 -4.73471,3.07482 -6.92927,-0.28014 -0.98937,-1.5125 -4.04539,-5.1273 -6.79117,-8.03288 l -4.992318,-5.28288 -0.62941,-15.71712 c -0.367438,-9.175364 -1.131614,-16.6357 -1.835999,-17.924087 -0.733875,-1.342327 -2.590097,-2.466514 -4.737951,-2.869454 -1.96223,-0.368117 -3.36412,-1.164837 -3.154981,-1.793033 0.713102,-2.14196 3.669971,-1.762133 6.232734,0.80063 C 92.934938,57.844029 94.443769,59 94.875041,59 c 1.622631,0 13.661649,-11.726225 17.776899,-17.315027 2.38527,-3.239359 4.54349,-7.447222 4.87256,-9.5 1.19518,-7.455517 1.55724,-8.503232 2.58377,-7.476707 0.64065,0.64065 0.88918,15.450818 0.69464,41.394644 L 120.5,106.5 118,110.9613 c -2.75553,4.9173 -7.33813,8.48263 -12.88237,10.02267 -2.1508,0.59743 -19.430795,0.98934 -42.61763,0.96656 -30.871353,-0.0303 -39.821655,-0.33102 -42.942175,-1.44265 z M 32,59.013277 C 32,57.596283 37.118203,54 39.134859,54 40.160686,54 41,54.675 41,55.5 c 0,0.825 -0.7875,1.502772 -1.75,1.506161 -0.9625,0.0034 -2.9875,0.651702 -4.5,1.440697 C 33.2375,59.235852 32,59.490741 32,59.013277 z M 54,55.5 c 0,-1.222222 1.666667,-1.5 9,-1.5 7.333333,0 9,0.277778 9,1.5 0,1.222222 -1.666667,1.5 -9,1.5 -7.333333,0 -9,-0.277778 -9,-1.5 z M 49.119999,28.35541 c 4.868282,-5.86592 22.848489,-5.923696 27.687169,-0.08897 1.029587,1.241528 0.50689,1.168246 -2.461441,-0.345096 -5.241008,-2.672018 -17.450446,-2.672018 -22.691454,0 -2.718368,1.385903 -3.424623,1.506868 -2.534274,0.434063 z"
+ id="path3073"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fc8b37"
+ d="m 17.029753,119.41653 c -1.908635,-0.82786 -4.319019,-2.27275 -5.356409,-3.21086 -2.8390305,-2.56735 -5.6327429,-8.64492 -5.0312199,-10.94515 0.2926616,-1.11914 0.042909,-2.33715 -0.555006,-2.70668 C 5.3336303,102.08816 5,89.614452 5,61.908864 5,29.265079 5.2656783,21.299905 6.4489734,18.467881 7.2459087,16.560547 8.0334087,15 8.1989734,15 8.364538,15 8.5331923,16.4625 8.5737606,18.25 8.614329,20.0375 9.401829,25.496446 10.323761,30.38099 11.245692,35.265535 12,42.521785 12,46.50599 c 0,10.177827 0.743751,13.056225 3.724535,14.414361 2.232827,1.017344 2.449231,1.571821 1.898324,4.863945 -0.341985,2.043637 -0.878322,4.647163 -1.191861,5.785614 -0.48751,1.770133 0.453783,2.541835 6.499465,5.32847 C 27.94411,79.209319 30,80.691506 30,81.995137 c 0,1.011008 -0.5625,2.06517 -1.25,2.342582 -1,0.403509 -1,0.520176 0,0.583334 3.068379,0.193792 0.908841,3.981477 -4.325378,7.586422 -3.066458,2.111951 -7.1804,5.798627 -9.142092,8.192615 -3.257008,3.97475 -3.713568,4.2198 -5.257955,2.82215 -1.2193209,-1.10347 -1.704512,-1.1806 -1.7387989,-0.2764 -0.026156,0.68979 -0.384476,2.06817 -0.7962657,3.06308 -1.0470084,2.52963 8.1404926,11.34762 12.6979976,12.1873 C 22.009379,118.83189 42.175,118.97005 65,118.80326 l 41.5,-0.30326 3.78109,-2.35077 C 113.34412,114.24488 118,107.86371 118,105.56997 c 0,-0.28033 -1.6378,0.60174 -3.63955,1.96017 -4.54245,3.08259 -4.73471,3.07482 -6.92927,-0.28014 -0.98937,-1.5125 -4.04539,-5.1273 -6.79117,-8.03288 l -4.992318,-5.28288 -0.62941,-15.71712 c -0.367438,-9.175364 -1.131614,-16.6357 -1.835999,-17.924087 -0.733875,-1.342327 -2.590097,-2.466514 -4.737951,-2.869454 -1.96223,-0.368117 -3.36412,-1.164837 -3.154981,-1.793033 0.713102,-2.14196 3.669971,-1.762133 6.232734,0.80063 C 92.934938,57.844029 94.443769,59 94.875041,59 c 1.622631,0 13.661649,-11.726225 17.776899,-17.315027 2.38527,-3.239359 4.54349,-7.447222 4.87256,-9.5 1.19518,-7.455517 1.55724,-8.503232 2.58377,-7.476707 0.64065,0.64065 0.88918,15.450818 0.69464,41.394644 -0.29309,39.08747 -0.3724,40.52676 -2.4465,44.39709 -2.63099,4.90951 -4.83829,6.96774 -9.61089,8.96186 -5.41924,2.26431 -86.483232,2.22423 -91.715767,-0.0453 z M 32,59.013277 C 32,57.596283 37.118203,54 39.134859,54 40.160686,54 41,54.675 41,55.5 c 0,0.825 -0.7875,1.502772 -1.75,1.506161 -0.9625,0.0034 -2.9875,0.651702 -4.5,1.440697 C 33.2375,59.235852 32,59.490741 32,59.013277 z M 54,55.5 c 0,-1.222222 1.666667,-1.5 9,-1.5 7.333333,0 9,0.277778 9,1.5 0,1.222222 -1.666667,1.5 -9,1.5 -7.333333,0 -9,-0.277778 -9,-1.5 z M 49.119999,28.35541 c 4.868282,-5.86592 22.848489,-5.923696 27.687169,-0.08897 1.029587,1.241528 0.50689,1.168246 -2.461441,-0.345096 -5.241008,-2.672018 -17.450446,-2.672018 -22.691454,0 -2.718368,1.385903 -3.424623,1.506868 -2.534274,0.434063 z"
+ id="path3071"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fea01f"
+ d="m 17.029753,119.41653 c -1.908635,-0.82786 -4.319019,-2.27275 -5.356409,-3.21086 -2.8390305,-2.56735 -5.6327429,-8.64492 -5.0312199,-10.94515 0.2926616,-1.11914 0.042909,-2.33715 -0.555006,-2.70668 C 5.3336303,102.08816 5,89.614452 5,61.908864 5,29.265079 5.2656783,21.299905 6.4489734,18.467881 7.2459087,16.560547 8.0334087,15 8.1989734,15 8.364538,15 8.5331923,16.4625 8.5737606,18.25 8.614329,20.0375 9.401829,25.496446 10.323761,30.38099 11.379991,35.977072 12,44.345628 12,53.00599 c 0,19.806008 -0.360888,18.908395 9.334418,23.216881 8.033703,3.570088 10.404516,6.060172 7.513975,7.891989 -0.998474,0.632761 -1.024008,0.858488 -0.09839,0.869827 3.121645,0.03824 0.879286,3.938198 -4.325378,7.522788 -3.066458,2.111951 -7.1804,5.798627 -9.142092,8.192615 -3.257008,3.97475 -3.713568,4.2198 -5.257955,2.82215 -1.2193209,-1.10347 -1.704512,-1.1806 -1.7387989,-0.2764 -0.026156,0.68979 -0.384476,2.06817 -0.7962657,3.06308 -1.0470084,2.52963 8.1404926,11.34762 12.6979976,12.1873 C 22.009379,118.83189 42.175,118.97005 65,118.80326 l 41.5,-0.30326 3.78109,-2.35077 C 113.34412,114.24488 118,107.86371 118,105.56997 c 0,-0.28033 -1.6378,0.60174 -3.63955,1.96017 -4.54245,3.08259 -4.73471,3.07482 -6.92927,-0.28014 -0.98937,-1.5125 -4.07671,-5.1604 -6.86075,-8.106455 L 95.508525,93.787091 95.144241,78.643545 C 94.72159,61.073589 93.893014,58.445758 88.453995,57.425392 86.48525,57.056053 85.08009,56.259108 85.289351,55.630546 c 0.771601,-2.317677 3.854643,-1.68791 6.712168,1.37108 l 2.950167,3.158164 5.182854,-4.329895 c 7.04427,-5.884965 16.62788,-18.902996 17.38416,-23.614007 1.20295,-7.493362 1.56222,-8.534967 2.58957,-7.507622 0.64065,0.64065 0.88918,15.450818 0.69464,41.394644 -0.29309,39.08747 -0.3724,40.52676 -2.4465,44.39709 -2.63099,4.90951 -4.83829,6.96774 -9.61089,8.96186 -5.41924,2.26431 -86.483232,2.22423 -91.715767,-0.0453 z M 32,59.013277 C 32,57.596283 37.118203,54 39.134859,54 40.160686,54 41,54.675 41,55.5 c 0,0.825 -0.7875,1.502772 -1.75,1.506161 -0.9625,0.0034 -2.9875,0.651702 -4.5,1.440697 C 33.2375,59.235852 32,59.490741 32,59.013277 z M 54,55.5 c 0,-1.222222 1.666667,-1.5 9,-1.5 7.333333,0 9,0.277778 9,1.5 0,1.222222 -1.666667,1.5 -9,1.5 -7.333333,0 -9,-0.277778 -9,-1.5 z M 49.119999,28.35541 c 4.868282,-5.86592 22.848489,-5.923696 27.687169,-0.08897 1.029587,1.241528 0.50689,1.168246 -2.461441,-0.345096 -5.241008,-2.672018 -17.450446,-2.672018 -22.691454,0 -2.718368,1.385903 -3.424623,1.506868 -2.534274,0.434063 z"
+ id="path3069"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fd9728"
+ d="m 17.029753,119.41653 c -1.908635,-0.82786 -4.319019,-2.27275 -5.356409,-3.21086 -2.8390305,-2.56735 -5.6327429,-8.64492 -5.0312199,-10.94515 0.2926616,-1.11914 0.042909,-2.33715 -0.555006,-2.70668 C 5.3336303,102.08816 5,89.614452 5,61.908864 5,29.265079 5.2656783,21.299905 6.4489734,18.467881 7.2459087,16.560547 8.0334087,15 8.1989734,15 8.364538,15 8.5331923,16.4625 8.5737606,18.25 8.614329,20.0375 9.401829,25.496446 10.323761,30.38099 11.379991,35.977072 12,44.345628 12,53.00599 c 0,19.806674 -0.361008,18.908871 9.334418,23.214054 5.928066,2.632315 8.251875,4.185329 8.480501,5.667566 0.230093,1.491746 -0.383207,2.216917 -2.276876,2.692198 -2.070119,0.519567 -2.36046,0.92924 -1.442474,2.035345 C 26.808192,87.473812 26.856896,88 26.22375,88 c -0.561627,0 -4.329227,3.089389 -8.372445,6.865309 -4.043218,3.775919 -7.758407,6.813421 -8.2559757,6.750001 -0.4975689,-0.0634 -1.01659,0.55969 -1.1533803,1.38469 -0.1367902,0.825 -0.575508,2.31401 -0.9749283,3.30892 -1.0176625,2.53487 8.1848433,11.35165 12.7204873,12.1873 C 22.009379,118.83189 42.175,118.97005 65,118.80326 l 41.5,-0.30326 3.78109,-2.35077 c 2.07959,-1.29293 4.69849,-4.14903 5.81976,-6.34691 2.13088,-4.17687 2.08806,-5.9398 -0.0808,-3.32649 -2.21683,2.67111 -4.74763,1.66325 -8.43415,-3.3588 -1.97144,-2.68563 -5.48703,-6.601851 -7.812424,-8.702706 L 95.545493,90.594586 95.158232,77.047293 C 94.705078,61.194963 93.757038,58.420248 88.453995,57.425392 86.48525,57.056053 85.08009,56.259108 85.289351,55.630546 c 0.771601,-2.317677 3.854643,-1.68791 6.712168,1.37108 l 2.950167,3.158164 5.182854,-4.329895 c 7.04427,-5.884965 16.62788,-18.902996 17.38416,-23.614007 1.20295,-7.493362 1.56222,-8.534967 2.58957,-7.507622 0.64065,0.64065 0.88918,15.450818 0.69464,41.394644 -0.29309,39.08747 -0.3724,40.52676 -2.4465,44.39709 -2.63099,4.90951 -4.83829,6.96774 -9.61089,8.96186 -5.41924,2.26431 -86.483232,2.22423 -91.715767,-0.0453 z M 32,59.013277 C 32,57.596283 37.118203,54 39.134859,54 40.160686,54 41,54.675 41,55.5 c 0,0.825 -0.7875,1.502772 -1.75,1.506161 -0.9625,0.0034 -2.9875,0.651702 -4.5,1.440697 C 33.2375,59.235852 32,59.490741 32,59.013277 z M 54,55.5 c 0,-1.222222 1.666667,-1.5 9,-1.5 7.333333,0 9,0.277778 9,1.5 0,1.222222 -1.666667,1.5 -9,1.5 -7.333333,0 -9,-0.277778 -9,-1.5 z M 49.119999,28.35541 c 4.868282,-5.86592 22.848489,-5.923696 27.687169,-0.08897 1.029587,1.241528 0.50689,1.168246 -2.461441,-0.345096 -5.241008,-2.672018 -17.450446,-2.672018 -22.691454,0 -2.718368,1.385903 -3.424623,1.506868 -2.534274,0.434063 z"
+ id="path3067"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#e98a45"
+ d="m 17.029753,119.41653 c -4.586193,-1.98923 -6.838191,-4.12421 -9.1704907,-8.69398 -1.4696259,-2.8795 -1.6706939,-4.18692 -0.8458411,-5.5 0.9074677,-1.44459 0.9781532,-1.34479 0.4380469,0.61849 -0.5251462,1.90889 0.2851773,3.23667 4.3897589,7.19296 3.147113,3.03341 6.27532,5.08067 8.346281,5.46222 C 22.009379,118.83189 42.175,118.97005 65,118.80326 l 41.5,-0.30326 3.78109,-2.35077 c 4.13982,-2.57381 8.03281,-9.04986 7.49979,-12.476 -0.30522,-1.96189 -0.508,-1.85717 -2.08517,1.07677 -0.96089,1.7875 -2.37219,3.25 -3.13622,3.25 -0.76403,0 -3.00215,-2.19734 -4.97358,-4.88297 -1.97144,-2.68563 -5.48703,-6.601851 -7.812424,-8.702706 L 95.545493,90.594586 95.158232,77.047293 C 94.705078,61.194963 93.757038,58.420248 88.453995,57.425392 86.48525,57.056053 85.08009,56.259108 85.289351,55.630546 c 0.771601,-2.317677 3.854643,-1.68791 6.712168,1.37108 l 2.950167,3.158164 5.182854,-4.329895 c 7.04427,-5.884965 16.62788,-18.902996 17.38416,-23.614007 1.20295,-7.493362 1.56222,-8.534967 2.58957,-7.507622 0.64065,0.64065 0.88918,15.450818 0.69464,41.394644 -0.29309,39.08747 -0.3724,40.52676 -2.4465,44.39709 -2.63099,4.90951 -4.83829,6.96774 -9.61089,8.96186 -5.41924,2.26431 -86.483232,2.22423 -91.715767,-0.0453 z M 5.681695,102.34836 C 5.3067627,101.97343 5,83.727213 5,61.801215 5,29.251433 5.2658997,21.299375 6.4489734,18.467881 7.82109,15.183944 9.5639742,13.366732 8.378475,16.456093 c -0.3073154,0.800851 0.2172536,4.738351 1.1657089,8.75 1.5819201,6.690992 3.6454461,38.236188 3.4375991,52.550685 -0.06939,4.779185 0.161013,5.347015 2.536044,6.25 C 16.954632,84.55305 19.620804,85 21.442655,85 23.264506,85 25.315311,85.675 26,86.5 c 0.725873,0.874623 0.819158,1.5 0.22375,1.5 -0.561627,0 -4.329227,3.055566 -8.372445,6.790147 C 13.808087,98.524728 9.825,101.54717 9,101.50669 c -0.825,-0.0405 -1.7557373,0.28571 -2.068305,0.72488 -0.3125678,0.43917 -0.8750678,0.49172 -1.25,0.11679 z M 32,59.013277 C 32,57.596283 37.118203,54 39.134859,54 40.160686,54 41,54.675 41,55.5 c 0,0.825 -0.7875,1.502772 -1.75,1.506161 -0.9625,0.0034 -2.9875,0.651702 -4.5,1.440697 C 33.2375,59.235852 32,59.490741 32,59.013277 z M 54,55.5 c 0,-1.222222 1.666667,-1.5 9,-1.5 7.333333,0 9,0.277778 9,1.5 0,1.222222 -1.666667,1.5 -9,1.5 -7.333333,0 -9,-0.277778 -9,-1.5 z M 49.119999,28.35541 c 4.868282,-5.86592 22.848489,-5.923696 27.687169,-0.08897 1.029587,1.241528 0.50689,1.168246 -2.461441,-0.345096 -5.241008,-2.672018 -17.450446,-2.672018 -22.691454,0 -2.718368,1.385903 -3.424623,1.506868 -2.534274,0.434063 z"
+ id="path3065"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ca9657"
+ d="m 17.029753,119.41653 c -4.586193,-1.98923 -6.838191,-4.12421 -9.1704907,-8.69398 -1.4696259,-2.8795 -1.6706939,-4.18692 -0.8458411,-5.5 0.9074677,-1.44459 0.9781532,-1.34479 0.4380469,0.61849 -0.5251462,1.90889 0.2851773,3.23667 4.3897589,7.19296 3.147113,3.03341 6.27532,5.08067 8.346281,5.46222 C 22.009379,118.83189 42.175,118.97005 65,118.80326 l 41.5,-0.30326 3.78109,-2.35077 c 4.13982,-2.57381 8.03281,-9.04986 7.49979,-12.476 -0.30522,-1.96189 -0.508,-1.85717 -2.08517,1.07677 -0.96089,1.7875 -2.37219,3.25 -3.13622,3.25 -0.76403,0 -3.00215,-2.19734 -4.97358,-4.88297 -1.97144,-2.68563 -5.46776,-6.584442 -7.769602,-8.66402 L 95.631136,90.671959 95.043702,75.585979 94.456268,60.5 97.478134,58.054829 C 108.06734,49.486471 117.99063,35.99649 118.01531,30.136047 c 0.0186,-4.426003 1.53395,-7.474238 2.48434,-4.997563 0.33398,0.870339 0.47069,19.532728 0.30379,41.471975 -0.29338,38.567651 -0.37448,40.022091 -2.44703,43.889541 -2.63099,4.90951 -4.83829,6.96774 -9.61089,8.96186 -5.41924,2.26431 -86.483232,2.22423 -91.715767,-0.0453 z M 5.681695,102.34836 C 5.3067627,101.97343 5,83.727213 5,61.801215 5,29.251433 5.2658997,21.299375 6.4489734,18.467881 7.82109,15.183944 9.5639742,13.366732 8.378475,16.456093 c -0.3073154,0.800851 0.2172536,4.738351 1.1657089,8.75 1.5819201,6.690992 3.6454461,38.236188 3.4375991,52.550685 -0.06939,4.779185 0.161013,5.347015 2.536044,6.25 C 16.954632,84.55305 19.620804,85 21.442655,85 23.264506,85 25.315311,85.675 26,86.5 c 0.725873,0.874623 0.819158,1.5 0.22375,1.5 -0.561627,0 -4.329227,3.055566 -8.372445,6.790147 C 13.808087,98.524728 9.825,101.54717 9,101.50669 c -0.825,-0.0405 -1.7557373,0.28571 -2.068305,0.72488 -0.3125678,0.43917 -0.8750678,0.49172 -1.25,0.11679 z M 34.872445,56.673415 C 36.352844,54.868371 41,54.357651 41,56 c 0,0.55 -0.5625,1.006145 -1.25,1.013655 -0.6875,0.0075 -2.375,0.310546 -3.75,0.673415 -2.244674,0.592378 -2.359832,0.488853 -1.127555,-1.013655 z M 87.25,57.294267 C 84.791693,56.820776 84.131569,55 86.418213,55 88.586677,55 91,56.109795 91,57.106989 c 0,0.491156 -0.3375,0.831729 -0.75,0.756829 -0.4125,-0.0749 -1.7625,-0.331198 -3,-0.569551 z M 54,56 c 0,-0.592593 3.666667,-1 9,-1 5.333333,0 9,0.407407 9,1 0,0.592593 -3.666667,1 -9,1 -5.333333,0 -9,-0.407407 -9,-1 z M 49.119999,28.35541 c 4.868282,-5.86592 22.848489,-5.923696 27.687169,-0.08897 1.029587,1.241528 0.50689,1.168246 -2.461441,-0.345096 -5.241008,-2.672018 -17.450446,-2.672018 -22.691454,0 -2.718368,1.385903 -3.424623,1.506868 -2.534274,0.434063 z"
+ id="path3063"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fd9b1d"
+ d="m 16.5,119.13652 c -4.173691,-1.89857 -6.7680364,-4.35509 -7.118052,-6.7399 -0.1131425,-0.77089 1.62786,0.16785 3.868894,2.0861 2.241034,1.91824 5.463882,3.74333 7.161883,4.05575 C 22.110726,118.8509 42.175,118.97005 65,118.80326 l 41.5,-0.30326 3.78109,-2.35077 c 4.13982,-2.57381 8.03281,-9.04986 7.49979,-12.476 -0.30522,-1.96189 -0.508,-1.85717 -2.08517,1.07677 -0.96089,1.7875 -2.37219,3.25 -3.13622,3.25 -0.76403,0 -3.00215,-2.19734 -4.97358,-4.88297 -1.97144,-2.68563 -5.46776,-6.584442 -7.769602,-8.66402 L 95.631136,90.671959 95.043702,75.585979 94.456268,60.5 97.478134,58.054829 C 108.06734,49.486471 117.99063,35.99649 118.01531,30.136047 c 0.0196,-4.658427 1.54543,-7.444328 2.58848,-4.726182 0.39125,1.019598 0.43406,19.006986 0.0951,39.971975 -0.75209,46.52107 -1.3096,49.19624 -11.19892,53.73743 -3.68215,1.69085 -7.37711,1.83681 -46.5,1.83681 -38.962912,0 -42.832902,-0.15144 -46.5,-1.81956 z M 5.6615553,77.385401 C 4.6049727,36.323739 4.7905653,22.43701 6.4489734,18.467881 7.82109,15.183944 9.5639742,13.366732 8.378475,16.456093 c -0.3073154,0.800851 0.2172536,4.738351 1.1657089,8.75 1.5819201,6.690992 3.6454461,38.236188 3.4375991,52.550685 -0.06939,4.779185 0.161013,5.347015 2.536044,6.25 C 16.954632,84.55305 19.620804,85 21.442655,85 23.264506,85 25.315311,85.675 26,86.5 c 0.725873,0.874623 0.819158,1.5 0.22375,1.5 -0.561627,0 -4.329227,3.055566 -8.372445,6.790147 C 13.808087,98.524728 9.825,101.54717 9,101.50669 c -0.825,-0.0405 -1.7648001,0.30038 -2.0884447,0.75747 -0.3236446,0.45709 -0.8861446,-10.738353 -1.25,-24.878759 z M 34.872445,56.673415 C 36.352844,54.868371 41,54.357651 41,56 c 0,0.55 -0.5625,1.006145 -1.25,1.013655 -0.6875,0.0075 -2.375,0.310546 -3.75,0.673415 -2.244674,0.592378 -2.359832,0.488853 -1.127555,-1.013655 z M 87.25,57.294267 C 84.791693,56.820776 84.131569,55 86.418213,55 88.586677,55 91,56.109795 91,57.106989 c 0,0.491156 -0.3375,0.831729 -0.75,0.756829 -0.4125,-0.0749 -1.7625,-0.331198 -3,-0.569551 z M 54,56 c 0,-0.592593 3.666667,-1 9,-1 5.333333,0 9,0.407407 9,1 0,0.592593 -3.666667,1 -9,1 -5.333333,0 -9,-0.407407 -9,-1 z M 49.119999,28.35541 c 4.868282,-5.86592 22.848489,-5.923696 27.687169,-0.08897 1.029587,1.241528 0.50689,1.168246 -2.461441,-0.345096 -5.241008,-2.672018 -17.450446,-2.672018 -22.691454,0 -2.718368,1.385903 -3.424623,1.506868 -2.534274,0.434063 z"
+ id="path3061"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#d68a54"
+ d="m 16.5,119.13652 c -4.173691,-1.89857 -6.7680364,-4.35509 -7.118052,-6.7399 -0.1131425,-0.77089 1.62786,0.16785 3.868894,2.0861 2.241034,1.91824 5.463882,3.74333 7.161883,4.05575 C 22.110726,118.8509 42.175,118.97005 65,118.80326 l 41.5,-0.30326 3.78109,-2.35077 C 114.20975,113.7067 118,107.68448 118,103.88485 c 0,-2.07234 -0.10327,-2.10137 -1.85041,-0.52023 -1.75608,1.58923 -1.9959,1.46465 -4.70441,-2.44372 -1.5697,-2.265077 -5.79469,-6.812932 -9.38887,-10.106345 L 95.521442,84.826532 94.983965,72.663266 94.446488,60.5 97.473244,58.054829 c 10.575046,-8.543076 20.517376,-22.055721 20.542066,-27.918782 0.0196,-4.658427 1.54543,-7.444328 2.58848,-4.726182 0.39125,1.019598 0.43406,19.006986 0.0951,39.971975 -0.75209,46.52107 -1.3096,49.19624 -11.19892,53.73743 -3.68215,1.69085 -7.37711,1.83681 -46.5,1.83681 -38.962912,0 -42.832902,-0.15144 -46.5,-1.81956 z M 5.6596307,77.310607 C 4.6050032,36.324925 4.7913263,22.435189 6.4489734,18.467881 7.82109,15.183944 9.5639742,13.366732 8.378475,16.456093 c -0.3073154,0.800851 0.2172536,4.738351 1.1657089,8.75 1.5819201,6.690992 3.6454461,38.236188 3.4375991,52.550685 -0.06813,4.692125 0.186851,5.356838 2.373805,6.188317 4.299036,1.63449 4.093411,3.037368 -1.236207,8.434022 -2.815659,2.851075 -5.1336925,5.619623 -5.1511844,6.152328 -0.017492,0.532705 -0.620658,1.743825 -1.3403692,2.691375 C 6.5340667,102.66284 6.210981,98.737571 5.6596307,77.310607 z M 34.872445,56.673415 C 36.352844,54.868371 41,54.357651 41,56 c 0,0.55 -0.5625,1.006145 -1.25,1.013655 -0.6875,0.0075 -2.375,0.310546 -3.75,0.673415 -2.244674,0.592378 -2.359832,0.488853 -1.127555,-1.013655 z M 87.25,57.294267 C 84.791693,56.820776 84.131569,55 86.418213,55 88.586677,55 91,56.109795 91,57.106989 91,57.598145 92.004219,57.40203 91.591719,57.32713 91.179219,57.25223 88.4875,57.53262 87.25,57.29427 z M 54,56 c 0,-0.592593 3.666667,-1 9,-1 5.333333,0 9,0.407407 9,1 0,0.592593 -3.666667,1 -9,1 -5.333333,0 -9,-0.407407 -9,-1 z M 49.119999,28.35541 c 4.868282,-5.86592 22.848489,-5.923696 27.687169,-0.08897 1.029587,1.241528 0.50689,1.168246 -2.461441,-0.345096 -5.241008,-2.672018 -17.450446,-2.672018 -22.691454,0 -2.718368,1.385903 -3.424623,1.506868 -2.534274,0.434066 z"
+ id="path3059"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="csssscssssscccssssssccsssssssssssscsssssssssssssssss" />
+ <path
+ style="fill:#f37c43"
+ d="m 16.5,119.13652 c -4.173691,-1.89857 -6.7680364,-4.35509 -7.118052,-6.7399 -0.1131425,-0.77089 1.62786,0.16785 3.868894,2.0861 2.241034,1.91824 5.463882,3.74333 7.161883,4.05575 C 22.110726,118.8509 42.175,118.97005 65,118.80326 l 41.5,-0.30326 3.78109,-2.35077 C 114.20975,113.7067 118,107.68448 118,103.88485 c 0,-2.07234 -0.10327,-2.10137 -1.85041,-0.52023 -1.75608,1.58923 -1.9959,1.46465 -4.70441,-2.44372 -1.5697,-2.265077 -5.79469,-6.812932 -9.38887,-10.106345 L 95.521442,84.826532 94.983965,72.663266 94.446488,60.5 97.473244,58.054829 C 107.45739,49.989115 117.94958,36.021916 118.07029,30.636047 118.10894,28.911221 118.51064,26.6 118.96295,25.5 c 0.79267,-1.927755 0.85001,-1.932023 1.58729,-0.11816 0.42071,1.035011 0.48761,19.035011 0.14868,40 -0.75209,46.52107 -1.3096,49.19624 -11.19892,53.73743 -3.68215,1.69085 -7.37711,1.83681 -46.5,1.83681 -38.962912,0 -42.832902,-0.15144 -46.5,-1.81956 z M 5.6596307,77.310607 C 4.6567878,38.337415 4.8559528,21.887417 6.3635591,19.169766 c 1.2062505,-2.174419 1.4127984,-1.806652 3.0889493,5.5 1.6504756,7.194731 3.7393946,38.616036 3.5292746,53.087012 -0.06813,4.692125 0.186851,5.356838 2.373805,6.188317 4.299036,1.63449 4.093411,3.037368 -1.236207,8.434022 -2.815659,2.851075 -5.1336925,5.619623 -5.1511844,6.152328 -0.017492,0.532705 -0.620658,1.743825 -1.3403692,2.691375 C 6.5340667,102.66284 6.210981,98.737571 5.6596307,77.310607 z M 34.947813,56.562882 C 35.661205,55.703297 37.404789,55 38.822445,55 c 3.172448,0 1.812136,1.473333 -2.247077,2.433774 -2.573353,0.608874 -2.768839,0.504271 -1.627555,-0.870892 z M 88.5,57.218866 c -2.884878,-0.595721 -4.324202,-2.222197 -1.95,-2.203553 2.063093,0.0162 5.218443,1.619373 4.42104,2.246245 C 90.711968,57.465225 89.6,57.446014 88.5,57.218866 z M 54.5,56 c -0.394763,-0.638739 2.675955,-1 8.5,-1 5.824045,0 8.894763,0.361261 8.5,1 -0.339919,0.55 -4.164919,1 -8.5,1 -4.335081,0 -8.160081,-0.45 -8.5,-1 z M 50,27.407842 c 0,-0.196065 1.327653,-1.043038 2.95034,-1.882162 3.780484,-1.954964 14.981463,-1.998841 19.581779,-0.07671 4.642213,1.939641 4.434165,2.66019 -0.282119,0.977082 -2.0625,-0.736048 -6.225,-1.338269 -9.25,-1.338269 -3.025,0 -7.1875,0.602221 -9.25,1.338269 -2.0625,0.736051 -3.75,1.177855 -3.75,0.98179 z"
+ id="path3057"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fd931a"
+ d="m 16.5,119.13652 c -4.173691,-1.89857 -6.7680364,-4.35509 -7.118052,-6.7399 -0.1131425,-0.77089 1.62786,0.16785 3.868894,2.0861 2.241034,1.91824 5.463882,3.74333 7.161883,4.05575 C 22.110726,118.8509 42.175,118.97005 65,118.80326 l 41.5,-0.30326 3.78109,-2.35077 C 114.20975,113.7067 118,107.68448 118,103.88485 c 0,-2.07234 -0.10327,-2.10137 -1.85041,-0.52023 -1.75608,1.58923 -1.9959,1.46465 -4.70441,-2.44372 -1.5697,-2.265077 -5.79469,-6.812932 -9.38887,-10.106345 L 95.521442,84.826532 94.957189,72.663266 C 94.646851,65.97347 94.67746,60.275 95.02521,60 c 10.45518,-8.267939 21.41834,-20.891448 22.31602,-25.695744 0.28819,-1.542341 0.80205,-4.504261 1.1419,-6.582046 0.39242,-2.399157 1.02149,-3.528371 1.7238,-3.094322 0.7943,0.490907 0.93376,11.697901 0.49498,39.77779 -0.74389,47.605842 -1.26488,50.150492 -11.20191,54.713592 -3.68215,1.69085 -7.37711,1.83681 -46.5,1.83681 -38.962912,0 -42.832902,-0.15144 -46.5,-1.81956 z M 5.6596307,77.310607 C 4.6681873,38.78043 4.8210686,22.486818 6.2024847,19.45494 7.3673253,16.898393 7.4447103,16.998662 8.6744369,22.657887 9.372644,25.871049 10.419929,37.05 11.001736,47.5 c 0.581807,10.45 1.437673,20.8 1.901924,23 0.464251,2.2 0.629211,5.905906 0.366578,8.235348 -0.429154,3.80641 -0.223667,4.33186 2.028985,5.188317 4.359346,1.65742 4.166111,3.042258 -1.179842,8.455452 -2.815659,2.851075 -5.1336925,5.619623 -5.1511844,6.152328 -0.017492,0.532705 -0.620658,1.743825 -1.3403692,2.691375 C 6.5340667,102.66284 6.210981,98.737571 5.6596307,77.310607 z M 34.947813,56.562882 C 35.661205,55.703297 37.404789,55 38.822445,55 c 3.172448,0 1.812136,1.473333 -2.247077,2.433774 -2.573353,0.608874 -2.768839,0.504271 -1.627555,-0.870892 z M 88.5,57.218866 c -2.884878,-0.595721 -4.324202,-2.222197 -1.95,-2.203553 2.063093,0.0162 5.218443,1.619373 4.42104,2.246245 C 90.711968,57.465225 89.6,57.446014 88.5,57.218866 z M 54.5,56 c -0.394763,-0.638739 2.675955,-1 8.5,-1 5.824045,0 8.894763,0.361261 8.5,1 -0.339919,0.55 -4.164919,1 -8.5,1 -4.335081,0 -8.160081,-0.45 -8.5,-1 z M 50,27.407842 c 0,-0.196065 1.327653,-1.043038 2.95034,-1.882162 3.780484,-1.954964 14.981463,-1.998841 19.581779,-0.07671 4.642213,1.939641 4.434165,2.66019 -0.282119,0.977082 -2.0625,-0.736048 -6.225,-1.338269 -9.25,-1.338269 -3.025,0 -7.1875,0.602221 -9.25,1.338269 -2.0625,0.736051 -3.75,1.177855 -3.75,0.98179 z"
+ id="path3055"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#f98828"
+ d="m 16.5,119.13652 c -4.173691,-1.89857 -6.7680364,-4.35509 -7.118052,-6.7399 -0.1131425,-0.77089 1.62786,0.16785 3.868894,2.0861 2.241034,1.91824 5.463882,3.74333 7.161883,4.05575 C 22.110726,118.8509 42.175,118.97005 65,118.80326 l 41.5,-0.30326 3.78109,-2.35077 C 114.49234,113.53101 118,107.61983 118,103.14114 c 0,-2.25442 -1.61102,-4.663598 -6.91999,-10.348386 -3.80599,-4.075422 -8.73546,-8.667983 -10.95438,-10.205692 C 95.820332,79.603488 95.691252,79.211543 94.66299,66 l -0.428068,-5.5 5.41,-4.38503 c 6.780158,-5.495599 17.001798,-18.09378 17.696308,-21.810714 0.28819,-1.542341 0.80205,-4.504261 1.1419,-6.582046 0.39242,-2.399157 1.02149,-3.528371 1.7238,-3.094322 0.7943,0.490907 0.93376,11.697901 0.49498,39.77779 -0.74389,47.605842 -1.26488,50.150492 -11.20191,54.713592 -3.68215,1.69085 -7.37711,1.83681 -46.5,1.83681 -38.962912,0 -42.832902,-0.15144 -46.5,-1.81956 z M 5.6738155,77.587786 C 4.6671656,38.87611 4.8161135,22.497693 6.2024847,19.45494 7.3673253,16.898393 7.4447103,16.998662 8.6744369,22.657887 9.372644,25.871049 10.419929,37.05 11.001736,47.5 c 0.581807,10.45 1.462934,20.8 1.95806,23 0.930233,4.133318 0.429082,9.163775 -1.10771,11.118993 -0.483738,0.615446 -0.704918,2.190446 -0.491512,3.5 0.213406,1.309554 -0.09282,2.98242 -0.680493,3.717481 -0.587678,0.735061 -1.8028928,4.335061 -2.7004776,8 L 6.347631,103.5 5.6738155,77.587786 z M 34.947813,56.562882 C 35.661205,55.703297 37.404789,55 38.822445,55 c 3.172448,0 1.812136,1.473333 -2.247077,2.433774 -2.573353,0.608874 -2.768839,0.504271 -1.627555,-0.870892 z M 88.5,57.218866 c -2.884878,-0.595721 -4.324202,-2.222197 -1.95,-2.203553 2.063093,0.0162 5.218443,1.619373 4.42104,2.246245 C 90.711968,57.465225 89.6,57.446014 88.5,57.218866 z M 54.5,56 c -0.394763,-0.638739 2.675955,-1 8.5,-1 5.824045,0 8.894763,0.361261 8.5,1 -0.339919,0.55 -4.164919,1 -8.5,1 -4.335081,0 -8.160081,-0.45 -8.5,-1 z M 50,27.407842 c 0,-0.196065 1.327653,-1.043038 2.95034,-1.882162 3.780484,-1.954964 14.981463,-1.998841 19.581779,-0.07671 4.642213,1.939641 4.434165,2.66019 -0.282119,0.977082 -2.0625,-0.736048 -6.225,-1.338269 -9.25,-1.338269 -3.025,0 -7.1875,0.602221 -9.25,1.338269 -2.0625,0.736051 -3.75,1.177855 -3.75,0.98179 z"
+ id="path3053"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#d68448"
+ d="m 16.5,119.13652 c -4.173691,-1.89857 -6.7680364,-4.35509 -7.118052,-6.7399 -0.1131425,-0.77089 1.62786,0.16785 3.868894,2.0861 2.241034,1.91824 5.463882,3.74333 7.161883,4.05575 C 22.110726,118.8509 42.175,118.97005 65,118.80326 l 41.5,-0.30326 3.86741,-2.40412 c 3.58014,-2.22555 8.59372,-10.24108 8.62282,-13.78586 0.0117,-1.42263 -16.24287,-18.164981 -20.426191,-21.039188 -2.812096,-1.932089 -2.954071,-2.395999 -3.365249,-10.996137 l -0.429289,-8.978945 5.232079,-4.894 c 7.4258,-6.945963 16.72226,-18.793288 17.33965,-22.097494 0.28819,-1.542341 0.80205,-4.504261 1.1419,-6.582046 0.39242,-2.399157 1.02149,-3.528371 1.7238,-3.094322 0.7943,0.490907 0.93376,11.697901 0.49498,39.77779 -0.74389,47.605842 -1.26488,50.150492 -11.20191,54.713592 -3.68215,1.69085 -7.37711,1.83681 -46.5,1.83681 -38.962912,0 -42.832902,-0.15144 -46.5,-1.81956 z M 5.6738155,77.587786 C 4.649108,38.181688 4.8477285,21.902505 6.3871039,19.125772 c 1.2951994,-2.336287 1.325683,-2.312317 1.9075925,1.5 0.3252478,2.130825 1.0921908,6.782148 1.7043179,10.336273 1.3400897,7.780812 1.7092777,56.09073 0.4440907,58.111189 C 9.9517218,89.857955 8.8292199,93.425 7.9486561,97 L 6.347631,103.5 5.6738155,77.587786 z M 34.947813,56.562882 C 35.661205,55.703297 37.404789,55 38.822445,55 c 3.172448,0 1.812136,1.473333 -2.247077,2.433774 -2.573353,0.608874 -2.768839,0.504271 -1.627555,-0.870892 z M 88.5,57.218866 c -2.884878,-0.595721 -4.324202,-2.222197 -1.95,-2.203553 2.063093,0.0162 5.218443,1.619373 4.42104,2.246245 C 90.711968,57.465225 89.6,57.446014 88.5,57.218866 z M 54.5,56 c -0.394763,-0.638739 2.675955,-1 8.5,-1 5.824045,0 8.894763,0.361261 8.5,1 -0.339919,0.55 -4.164919,1 -8.5,1 -4.335081,0 -8.160081,-0.45 -8.5,-1 z M 50,27.407842 c 0,-0.196065 1.327653,-1.043038 2.95034,-1.882162 3.780484,-1.954964 14.981463,-1.998841 19.581779,-0.07671 4.642213,1.939641 4.434165,2.66019 -0.282119,0.977082 -2.0625,-0.736048 -6.225,-1.338269 -9.25,-1.338269 -3.025,0 -7.1875,0.602221 -9.25,1.338269 -2.0625,0.736051 -3.75,1.177855 -3.75,0.98179 z"
+ id="path3051"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fd8a16"
+ d="m 16.5,119.13652 c -4.173691,-1.89857 -6.7680364,-4.35509 -7.118052,-6.7399 -0.1131425,-0.77089 1.62786,0.16785 3.868894,2.0861 2.241034,1.91824 5.463882,3.74333 7.161883,4.05575 C 22.110726,118.8509 42.175,118.97005 65,118.80326 l 41.5,-0.30326 3.86741,-2.40412 c 3.58014,-2.22555 8.59372,-10.24108 8.62282,-13.78586 0.0117,-1.42263 -16.24287,-18.164981 -20.426191,-21.039188 -2.815498,-1.934426 -2.951447,-2.381407 -3.313413,-10.894011 L 94.873173,61.5 103.18659,52.927764 c 11.07669,-11.421545 13.62792,-15.307357 14.93979,-22.754983 0.67501,-3.832073 1.48159,-5.915066 2.13426,-5.511696 0.71997,0.444964 0.85898,12.758715 0.44304,39.24367 -0.75024,47.771025 -1.3417,50.685875 -11.20368,55.214515 -3.68215,1.69085 -7.37711,1.83681 -46.5,1.83681 -38.962912,0 -42.832902,-0.15144 -46.5,-1.81956 z M 5.6738155,77.587786 C 4.8369775,45.406386 4.81031,22.657899 5.6069888,20.581787 5.9408326,19.711804 6.5442242,19 6.947859,19 c 0.7273848,0 2.3635948,6.714739 3.554748,14.588107 0.979409,6.473767 0.927184,53.909495 -0.06109,55.487697 C 9.9510071,89.859112 8.8292199,93.425 7.9486561,97 L 6.347631,103.5 5.6738155,77.587786 z M 35.037782,56.454475 C 35.701691,55.654514 37.389789,55 38.789111,55 c 3.160913,0 2.482564,0.7749 -1.737962,1.985331 -2.763534,0.792571 -3.049203,0.71725 -2.013367,-0.530856 z M 87,56 c -1.333333,-0.861666 -1.333333,-0.969374 0,-0.969374 0.825,0 2.175,0.436218 3,0.969374 1.333333,0.861666 1.333333,0.969374 0,0.969374 -0.825,0 -2.175,-0.436218 -3,-0.969374 z M 57.719827,55.269269 c 2.320905,-0.209724 6.370905,-0.212217 9,-0.0055 2.629095,0.206677 0.730173,0.378269 -4.219827,0.381317 -4.95,0.003 -7.101078,-0.166052 -4.780173,-0.375776 z M 59.75,24.276604 c 1.7875,-0.221826 4.7125,-0.221826 6.5,0 1.7875,0.221827 0.325,0.403322 -3.25,0.403322 -3.575,0 -5.0375,-0.181495 -3.25,-0.403322 z"
+ id="path3049"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#c38555"
+ d="m 16.5,119.13652 c -4.173691,-1.89857 -6.7680364,-4.35509 -7.118052,-6.7399 -0.1131425,-0.77089 1.62786,0.16785 3.868894,2.0861 2.241034,1.91824 5.463882,3.74333 7.161883,4.05575 C 22.110726,118.8509 42.175,118.97005 65,118.80326 l 41.5,-0.30326 3.87923,-2.41143 c 2.68949,-1.67185 4.6113,-4.01048 6.26619,-7.62525 2.17047,-4.74091 2.28578,-5.70134 1.27135,-10.588575 -0.61359,-2.95611 -1.7307,-6.348237 -2.48245,-7.53806 -1.9266,-3.049271 -9.75665,-10.240575 -14.7325,-13.530664 C 96.228791,73.848407 95.253161,71.876219 95.108794,65.5 c -0.08367,-3.695505 0.536761,-4.65255 8.150316,-12.572236 11.04244,-11.486427 13.5615,-15.341954 14.86727,-22.754983 0.67501,-3.832073 1.48159,-5.915066 2.13426,-5.511696 0.71997,0.444964 0.85898,12.758715 0.44304,39.24367 -0.75024,47.771025 -1.3417,50.685875 -11.20368,55.214515 -3.68215,1.69085 -7.37711,1.83681 -46.5,1.83681 -38.962912,0 -42.832902,-0.15144 -46.5,-1.81956 z M 5.7032326,77.587786 C 4.7501236,42.468305 4.8426741,21.797194 5.9609398,20.02896 7.1765392,18.10682 7.4691497,18.545891 8.9405785,24.5 11.87729,36.38335 11.974369,72.399149 9.1090434,87 8.5154062,90.025 7.6644745,94.975 7.2180841,98 6.612429,102.10427 6.2280064,96.924279 5.7032326,77.587786 z M 35.037782,56.454475 C 35.701691,55.654514 37.389789,55 38.789111,55 c 3.160913,0 2.482564,0.7749 -1.737962,1.985331 -2.763534,0.792571 -3.049203,0.71725 -2.013367,-0.530856 z M 87,56 c -1.333333,-0.861666 -1.333333,-0.969374 0,-0.969374 0.825,0 2.175,0.436218 3,0.969374 1.333333,0.861666 1.333333,0.969374 0,0.969374 -0.825,0 -2.175,-0.436218 -3,-0.969374 z M 57.719827,55.269269 c 2.320905,-0.209724 6.370905,-0.212217 9,-0.0055 2.629095,0.206677 0.730173,0.378269 -4.219827,0.381317 -4.95,0.003 -7.101078,-0.166052 -4.780173,-0.375776 z M 59.75,24.276604 c 1.7875,-0.221826 4.7125,-0.221826 6.5,0 1.7875,0.221827 0.325,0.403322 -3.25,0.403322 -3.575,0 -5.0375,-0.181495 -3.25,-0.403322 z"
+ id="path3047"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#a38e64"
+ d="m 16.5,119.13652 c -4.173691,-1.89857 -6.7680364,-4.35509 -7.118052,-6.7399 -0.1131425,-0.77089 1.62786,0.16785 3.868894,2.0861 2.241034,1.91824 5.463882,3.74333 7.161883,4.05575 C 22.110726,118.8509 42.175,118.97005 65,118.80326 l 41.5,-0.30326 3.87923,-2.41143 c 2.68949,-1.67185 4.6113,-4.01048 6.26619,-7.62525 2.17047,-4.74091 2.28578,-5.70134 1.27135,-10.588575 -0.61359,-2.95611 -1.7307,-6.348237 -2.48245,-7.53806 -1.9266,-3.049271 -9.75665,-10.240575 -14.7325,-13.530664 -4.505153,-2.978855 -5.445787,-4.912454 -5.60214,-11.515948 -0.09061,-3.827022 0.365712,-4.645247 5.01715,-8.996125 8.42409,-7.879746 16.71763,-18.848951 17.42591,-23.047858 1.12045,-6.642406 1.56108,-7.683071 2.59474,-6.128218 0.54475,0.819432 0.67131,16.445678 0.31087,38.382128 -0.76046,46.2805 -1.3599,49.21624 -10.94835,53.61927 -3.68215,1.69085 -7.37711,1.83681 -46.5,1.83681 -38.962912,0 -42.832902,-0.15144 -46.5,-1.81956 z M 5.8781355,65.5 C 5.6050974,44.6 5.5680855,25.5875 5.7958868,23.25 6.8612215,12.318455 9.8283506,24.011828 10.934213,43.5 11.765185,58.1439 10.947519,77.631671 9.1090434,87 8.5154062,90.025 7.6572977,94.975 7.2021357,98 6.6447108,101.70464 6.2125181,91.095679 5.8781355,65.5 z M 35.037782,56.454475 C 35.701691,55.654514 37.389789,55 38.789111,55 c 3.160913,0 2.482564,0.7749 -1.737962,1.985331 -2.763534,0.792571 -3.049203,0.71725 -2.013367,-0.530856 z M 87,56 c -1.333333,-0.861666 -1.333333,-0.969374 0,-0.969374 0.825,0 2.175,0.436218 3,0.969374 1.333333,0.861666 1.333333,0.969374 0,0.969374 -0.825,0 -2.175,-0.436218 -3,-0.969374 z M 57.719827,55.269269 c 2.320905,-0.209724 6.370905,-0.212217 9,-0.0055 2.629095,0.206677 0.730173,0.378269 -4.219827,0.381317 -4.95,0.003 -7.101078,-0.166052 -4.780173,-0.375776 z M 59.75,24.276604 c 1.7875,-0.221826 4.7125,-0.221826 6.5,0 1.7875,0.221827 0.325,0.403322 -3.25,0.403322 -3.575,0 -5.0375,-0.181495 -3.25,-0.403322 z"
+ id="path3045"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#d38f33"
+ d="m 20.00032,119.64301 c -1.76e-4,-0.47134 -0.646247,-0.60912 -1.435712,-0.30618 -0.789466,0.30295 -1.576966,0.15985 -1.75,-0.31801 C 16.641573,118.54097 15.825,118.00375 15,117.825 c -1.281838,-0.27773 -6,-5.46551 -6,-6.5972 0,-0.21101 1.873226,1.21977 4.162725,3.17949 2.289499,1.95973 5.551999,3.81876 7.25,4.13118 C 22.110726,118.8509 42.175,118.97005 65,118.80326 l 41.5,-0.30326 3.87923,-2.41143 c 2.68949,-1.67185 4.6113,-4.01048 6.26619,-7.62525 2.17047,-4.74091 2.28578,-5.70134 1.27135,-10.588575 -0.61359,-2.95611 -1.7307,-6.348237 -2.48245,-7.53806 -1.9266,-3.049271 -9.75665,-10.240575 -14.7325,-13.530664 -4.505153,-2.978855 -5.445787,-4.912454 -5.60214,-11.515948 -0.09061,-3.827022 0.365712,-4.645247 5.01715,-8.996125 8.42409,-7.879746 16.71763,-18.848951 17.42591,-23.047858 1.12085,-6.644756 1.56084,-7.683007 2.59701,-6.128218 1.22561,1.839047 0.0637,72.927638 -1.29314,79.114948 -1.02683,4.68259 -5.9863,12.29416 -7.21192,11.06853 -0.34908,-0.34907 -0.63469,-0.0831 -0.63469,0.591 0,0.67413 -0.45,0.94757 -1,0.60765 -0.55,-0.33992 -1,-0.1556 -1,0.4096 0,0.5652 -0.675,0.76861 -1.5,0.45203 -0.825,-0.31659 -1.49989,-0.18996 -1.49976,0.28138 1.3e-4,0.47135 -19.349725,0.85699 -42.999681,0.85699 -23.649956,0 -43.000064,-0.38564 -43.000239,-0.85699 z M 5.8781355,65.5 C 5.6050974,44.6 5.5680855,25.5875 5.7958868,23.25 6.8612215,12.318455 9.8283506,24.011828 10.934213,43.5 11.765185,58.1439 10.947519,77.631671 9.1090434,87 8.5154062,90.025 7.6572977,94.975 7.2021357,98 6.6447108,101.70464 6.2125181,91.095679 5.8781355,65.5 z M 35.037782,56.454475 C 35.701691,55.654514 37.389789,55 38.789111,55 c 3.160913,0 2.482564,0.7749 -1.737962,1.985331 -2.763534,0.792571 -3.049203,0.71725 -2.013367,-0.530856 z M 87,56 c -1.333333,-0.861666 -1.333333,-0.969374 0,-0.969374 0.825,0 2.175,0.436218 3,0.969374 1.333333,0.861666 1.333333,0.969374 0,0.969374 -0.825,0 -2.175,-0.436218 -3,-0.969374 z M 57.719827,55.269269 c 2.320905,-0.209724 6.370905,-0.212217 9,-0.0055 2.629095,0.206677 0.730173,0.378269 -4.219827,0.381317 -4.95,0.003 -7.101078,-0.166052 -4.780173,-0.375776 z M 59.75,24.276604 c 1.7875,-0.221826 4.7125,-0.221826 6.5,0 1.7875,0.221827 0.325,0.403322 -3.25,0.403322 -3.575,0 -5.0375,-0.181495 -3.25,-0.403322 z"
+ id="path3043"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fd8313"
+ d="m 20.00032,119.66667 c -1.76e-4,-0.45834 -0.558802,-0.64718 -1.241391,-0.41965 -0.68259,0.22753 -1.843869,-0.1891 -2.58062,-0.92585 -0.736752,-0.73676 -1.64077,-1.15678 -2.008929,-0.93339 -0.368159,0.22338 -1.478962,-0.6739 -2.468452,-1.99398 l -1.7990714,-2.40013 3.6496504,2.47672 c 2.007308,1.3622 5.06689,2.7352 6.799072,3.05112 1.732182,0.31592 22.12579,0.44032 45.31913,0.27645 L 107.83942,118.5 l 4.72201,-3.32929 4.72201,-3.32928 -2.39172,2.9493 c -1.31545,1.62212 -2.72922,2.75624 -3.14172,2.52027 -0.4125,-0.23597 -0.75,0.0741 -0.75,0.689 0,0.61492 -0.45,0.83992 -1,0.5 -0.55,-0.33992 -1,-0.1556 -1,0.4096 0,0.5652 -0.675,0.76861 -1.5,0.45203 -0.825,-0.31659 -1.49989,-0.18996 -1.49976,0.28138 1.3e-4,0.47135 -19.349725,0.85699 -42.999681,0.85699 -23.649956,0 -43.000064,-0.375 -43.000239,-0.83333 z M 118.09678,99.5 c -0.40319,-7.470772 -6.5356,-15.513131 -17.21223,-22.573003 -4.685454,-3.098235 -5.627569,-4.993406 -5.78487,-11.636924 -0.09061,-3.827022 0.365712,-4.645247 5.01715,-8.996125 8.42409,-7.879746 16.71763,-18.848951 17.42591,-23.047858 1.1232,-6.658657 1.5594,-7.682635 2.61055,-6.128218 1.0829,1.601357 0.0116,66.130247 -1.18129,71.152011 -0.45118,1.899407 -0.81174,2.406177 -0.87522,1.230117 z M 7.1011474,97 C 6.4953712,95.474244 5.1986581,28.648231 5.6894834,24.25 7.890699,4.5251527 12.55167,44.453859 10.971621,69.5 10.555256,76.1 9.7305839,83.75 9.1390151,86.5 8.5474464,89.25 7.8915871,92.85 7.6815499,94.5 7.4715128,96.15 7.2103317,97.275 7.1011474,97 z M 35.037782,56.454475 C 35.701691,55.654514 37.389789,55 38.789111,55 c 3.160913,0 2.482564,0.7749 -1.737962,1.985331 -2.763534,0.792571 -3.049203,0.71725 -2.013367,-0.530856 z M 87,56 c -1.333333,-0.861666 -1.333333,-0.969374 0,-0.969374 0.825,0 2.175,0.436218 3,0.969374 1.333333,0.861666 1.333333,0.969374 0,0.969374 -0.825,0 -2.175,-0.436218 -3,-0.969374 z M 57.719827,55.269269 c 2.320905,-0.209724 6.370905,-0.212217 9,-0.0055 2.629095,0.206677 0.730173,0.378269 -4.219827,0.381317 -4.95,0.003 -7.101078,-0.166052 -4.780173,-0.375776 z M 59.75,24.276604 c 1.7875,-0.221826 4.7125,-0.221826 6.5,0 1.7875,0.221827 0.325,0.403322 -3.25,0.403322 -3.575,0 -5.0375,-0.181495 -3.25,-0.403322 z"
+ id="path3041"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#9e8c68"
+ d="m 20.00032,119.66667 c -1.76e-4,-0.45834 -0.558802,-0.64718 -1.241391,-0.41965 -0.68259,0.22753 -1.843869,-0.1891 -2.58062,-0.92585 -0.736752,-0.73676 -1.64077,-1.15678 -2.008929,-0.93339 -0.368159,0.22338 -1.478962,-0.6739 -2.468452,-1.99398 l -1.7990714,-2.40013 3.6496504,2.47672 c 2.007308,1.3622 5.06689,2.7352 6.799072,3.05112 1.732182,0.31592 22.12579,0.44032 45.31913,0.27645 L 107.83942,118.5 l 4.72201,-3.32929 4.72201,-3.32928 -2.39172,2.9493 c -1.31545,1.62212 -2.72922,2.75624 -3.14172,2.52027 -0.4125,-0.23597 -0.75,0.0741 -0.75,0.689 0,0.61492 -0.45,0.83992 -1,0.5 -0.55,-0.33992 -1,-0.1556 -1,0.4096 0,0.5652 -0.675,0.76861 -1.5,0.45203 -0.825,-0.31659 -1.49989,-0.18996 -1.49976,0.28138 1.3e-4,0.47135 -19.349725,0.85699 -42.999681,0.85699 -23.649956,0 -43.000064,-0.375 -43.000239,-0.83333 z m 97.67345,-25.490158 c -1.08005,-11.277205 -4.03208,-15.366845 -16.85368,-23.348491 -3.391633,-2.111344 -4.86589,-3.76006 -5.355503,-5.989258 -0.614551,-2.79803 -0.09039,-3.67508 5.801513,-9.707351 10.17882,-10.421313 15.56163,-17.652621 16.27183,-21.85969 1.12881,-6.686864 1.56341,-7.709449 2.61536,-6.15385 1.03233,1.526587 0.0429,65.758153 -1.09608,71.152011 -0.56641,2.682457 -0.80097,1.988447 -1.38344,-4.093371 z M 7.1194185,97 C 7.0001852,96.725 6.4978497,81.425 6.0031174,63 5.1493679,31.204353 5.4164257,19 6.9659332,19 8.3964258,19 10.167797,29.991295 10.951248,43.728731 11.766419,58.022375 11.047395,73.767147 9.1121598,84 8.5400724,87.025 7.9064471,91.3 7.7041036,93.5 7.50176,95.7 7.2386517,97.275 7.1194185,97 z M 35.037782,56.454475 C 35.701691,55.654514 37.389789,55 38.789111,55 c 3.160913,0 2.482564,0.7749 -1.737962,1.985331 -2.763534,0.792571 -3.049203,0.71725 -2.013367,-0.530856 z M 87,56 c -1.333333,-0.861666 -1.333333,-0.969374 0,-0.969374 0.825,0 2.175,0.436218 3,0.969374 1.333333,0.861666 1.333333,0.969374 0,0.969374 -0.825,0 -2.175,-0.436218 -3,-0.969374 z M 57.719827,55.269269 c 2.320905,-0.209724 6.370905,-0.212217 9,-0.0055 2.629095,0.206677 0.730173,0.378269 -4.219827,0.381317 -4.95,0.003 -7.101078,-0.166052 -4.780173,-0.375776 z M 59.75,24.276604 c 1.7875,-0.221826 4.7125,-0.221826 6.5,0 1.7875,0.221827 0.325,0.403322 -3.25,0.403322 -3.575,0 -5.0375,-0.181495 -3.25,-0.403322 z"
+ id="path3039"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#b79149"
+ d="m 16.5,118.13652 c -2.2,-1.00076 -4.662879,-2.62044 -5.473063,-3.59928 -0.921806,-1.1137 -0.04216,-0.80868 2.350579,0.81508 2.103003,1.42713 5.240881,2.85327 6.973063,3.16919 1.732182,0.31592 22.12579,0.44032 45.31913,0.27645 L 107.83942,118.5 l 4.83029,-3.38523 c 3.43849,-2.4098 4.25401,-2.72929 2.83029,-1.10877 -1.1,1.25206 -3.8,3.10302 -6,4.11327 -3.68215,1.69085 -7.37711,1.83681 -46.5,1.83681 -38.962912,0 -42.832902,-0.15144 -46.5,-1.81956 z M 117.67377,94.176512 c -1.08005,-11.277205 -4.03208,-15.366845 -16.85368,-23.348491 -3.391633,-2.111344 -4.86589,-3.76006 -5.355503,-5.989258 -0.614551,-2.79803 -0.09039,-3.67508 5.801513,-9.707351 10.17882,-10.421313 15.56163,-17.652621 16.27183,-21.85969 1.12881,-6.686864 1.56341,-7.709449 2.61536,-6.15385 1.03233,1.526587 0.0429,65.758153 -1.09608,71.152011 -0.56641,2.682457 -0.80097,1.988447 -1.38344,-4.093371 z M 7.1194185,97 C 7.0001852,96.725 6.4978497,81.425 6.0031174,63 5.1493679,31.204353 5.4164257,19 6.9659332,19 8.3964258,19 10.167797,29.991295 10.951248,43.728731 11.766419,58.022375 11.047395,73.767147 9.1121598,84 8.5400724,87.025 7.9064471,91.3 7.7041036,93.5 7.50176,95.7 7.2386517,97.275 7.1194185,97 z M 35.037782,56.454475 C 35.701691,55.654514 37.389789,55 38.789111,55 c 3.160913,0 2.482564,0.7749 -1.737962,1.985331 -2.763534,0.792571 -3.049203,0.71725 -2.013367,-0.530856 z M 87,56 c -1.333333,-0.861666 -1.333333,-0.969374 0,-0.969374 0.825,0 2.175,0.436218 3,0.969374 1.333333,0.861666 1.333333,0.969374 0,0.969374 -0.825,0 -2.175,-0.436218 -3,-0.969374 z M 57.719827,55.269269 c 2.320905,-0.209724 6.370905,-0.212217 9,-0.0055 2.629095,0.206677 0.730173,0.378269 -4.219827,0.381317 -4.95,0.003 -7.101078,-0.166052 -4.780173,-0.375776 z M 59.75,24.276604 c 1.7875,-0.221826 4.7125,-0.221826 6.5,0 1.7875,0.221827 0.325,0.403322 -3.25,0.403322 -3.575,0 -5.0375,-0.181495 -3.25,-0.403322 z"
+ id="path3037"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#d27b44"
+ d="m 117.67377,94.176512 c -1.08005,-11.277205 -4.03208,-15.366845 -16.85368,-23.348491 -3.391633,-2.111344 -4.86589,-3.76006 -5.355503,-5.989258 -0.614551,-2.79803 -0.09039,-3.67508 5.801513,-9.707351 10.17882,-10.421313 15.56163,-17.652621 16.27183,-21.85969 1.12881,-6.686864 1.56341,-7.709449 2.61536,-6.15385 1.03233,1.526587 0.0429,65.758153 -1.09608,71.152011 -0.56641,2.682457 -0.80097,1.988447 -1.38344,-4.093371 z M 7.1194185,97 C 7.0001852,96.725 6.4978497,81.425 6.0031174,63 5.1493679,31.204353 5.4164257,19 6.9659332,19 8.3964258,19 10.167797,29.991295 10.951248,43.728731 11.766419,58.022375 11.047395,73.767147 9.1121598,84 8.5400724,87.025 7.9064471,91.3 7.7041036,93.5 7.50176,95.7 7.2386517,97.275 7.1194185,97 z M 35.037782,56.454475 C 35.701691,55.654514 37.389789,55 38.789111,55 c 3.160913,0 2.482564,0.7749 -1.737962,1.985331 -2.763534,0.792571 -3.049203,0.71725 -2.013367,-0.530856 z M 87,56 c -1.333333,-0.861666 -1.333333,-0.969374 0,-0.969374 0.825,0 2.175,0.436218 3,0.969374 1.333333,0.861666 1.333333,0.969374 0,0.969374 -0.825,0 -2.175,-0.436218 -3,-0.969374 z M 57.719827,55.269269 c 2.320905,-0.209724 6.370905,-0.212217 9,-0.0055 2.629095,0.206677 0.730173,0.378269 -4.219827,0.381317 -4.95,0.003 -7.101078,-0.166052 -4.780173,-0.375776 z M 59.75,24.276604 c 1.7875,-0.221826 4.7125,-0.221826 6.5,0 1.7875,0.221827 0.325,0.403322 -3.25,0.403322 -3.575,0 -5.0375,-0.181495 -3.25,-0.403322 z"
+ id="path3035"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#f2722d"
+ d="M 117.67377,94.176512 C 116.59372,82.899307 113.64169,78.809667 100.82009,70.828021 97.428457,68.716677 95.9542,67.067961 95.464587,64.838763 94.850036,62.040733 95.374197,61.163683 101.2661,55.131412 111.46727,44.687221 116.56643,37.778946 117.85674,32.654644 118.50137,30.09459 119.52079,28 120.12211,28 c 0.78402,0 0.88451,9.482665 0.35523,33.519883 -0.79392,36.056033 -1.58996,45.328477 -2.80357,32.656629 z M 6.730183,86.5 C 5.4510492,67.286507 5.3717957,22.236227 6.6149344,20.988859 11.050722,16.53798 12.925275,63.837567 9.1121598,84 8.5400724,87.025 7.9348645,91.3 7.7672532,93.5 7.5996419,95.7 7.1329603,92.55 6.730183,86.5 z M 35.197908,56.37352 c 0.850389,-0.850388 2.616245,-1.394816 3.924126,-1.20984 2.002498,0.283217 1.758367,0.527347 -1.54616,1.54616 -3.54018,1.091467 -3.772846,1.05856 -2.377966,-0.33632 z M 87.5,56 C 86.18126,55.433318 86.010945,55.121845 87,55.085598 87.825,55.055363 89.175,55.466844 90,56 c 1.827966,1.181322 0.249085,1.181322 -2.5,0 z M 57.719827,55.269269 c 2.320905,-0.209724 6.370905,-0.212217 9,-0.0055 2.629095,0.206677 0.730173,0.378269 -4.219827,0.381317 -4.95,0.003 -7.101078,-0.166052 -4.780173,-0.375776 z m 3.011141,-30.925206 c 0.677033,-0.273923 2.027033,-0.290597 3,-0.03705 C 64.703936,24.560557 64.15,24.784676 62.5,24.805055 60.85,24.825435 60.053936,24.61799 60.730968,24.344067 z"
+ id="path3033"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#bc7e54"
+ d="M 117.67377,94.176512 C 116.59372,82.899307 113.64169,78.809667 100.82009,70.828021 97.429178,68.717126 95.954167,67.067808 95.464842,64.839926 94.836317,61.978273 95.420878,61.132142 103.89844,52.632575 112.5982,43.910226 118.39692,36.730252 117.48114,35.814471 116.68547,35.0188 119.08682,28 120.15471,28 c 0.7412,0 0.83838,10.097131 0.32263,33.519883 -0.79392,36.056033 -1.58996,45.328477 -2.80357,32.656629 z M 6.6936091,86.5 C 5.5504397,68.426137 5.3974909,22.657751 6.4747212,21 c 1.6472178,-2.534906 2.4884349,4.748316 3.4650207,30 0.5978241,15.45801 0.5643261,25.124829 -0.097889,28.248015 -0.5537014,2.611408 -1.3320271,7.786408 -1.7296126,11.5 L 7.3893576,97.5 6.6936091,86.5 z M 35.197908,56.37352 c 0.850389,-0.850388 2.616245,-1.394816 3.924126,-1.20984 2.002498,0.283217 1.758367,0.527347 -1.54616,1.54616 -3.54018,1.091467 -3.772846,1.05856 -2.377966,-0.33632 z M 87.5,56 C 86.18126,55.433318 86.010945,55.121845 87,55.085598 87.825,55.055363 89.175,55.466844 90,56 c 1.827966,1.181322 0.249085,1.181322 -2.5,0 z M 57.719827,55.269269 c 2.320905,-0.209724 6.370905,-0.212217 9,-0.0055 2.629095,0.206677 0.730173,0.378269 -4.219827,0.381317 -4.95,0.003 -7.101078,-0.166052 -4.780173,-0.375776 z m 3.011141,-30.925206 c 0.677033,-0.273923 2.027033,-0.290597 3,-0.03705 C 64.703936,24.560557 64.15,24.784676 62.5,24.805055 60.85,24.825435 60.053936,24.61799 60.730968,24.344067 z"
+ id="path3031"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#d87b37"
+ d="m 117.68931,94.176512 c -1.10505,-11.288109 -4.05545,-15.371715 -16.86922,-23.348491 -3.390912,-2.110895 -4.865923,-3.760213 -5.355248,-5.988095 -0.62891,-2.863409 -0.04485,-3.705403 8.496478,-12.248596 10.15165,-10.153878 13.2321,-14.377396 13.71703,-18.807049 0.17869,-1.632207 0.76048,-3.713892 1.29286,-4.625965 0.63632,-1.090142 0.93785,9.990799 0.88007,32.341684 -0.0912,35.265323 -0.8241,46.34285 -2.16197,32.676512 z M 6.7217005,89 C 5.6977459,76.736431 5.8355217,21.219687 6.8915304,20.567038 8.2999591,19.696581 8.9078946,25.822533 9.9116776,51 c 0.6199094,15.548916 0.5962844,25.106462 -0.069825,28.248015 -0.5537014,2.611408 -1.3225645,7.786408 -1.7085847,11.5 L 7.4314135,97.5 z M 35.197908,56.37352 c 0.850389,-0.850388 2.616245,-1.394816 3.924126,-1.20984 2.002498,0.283217 -0.388384,-1.619404 -3.692911,-0.600591 -3.54018,1.091467 -1.626095,3.205311 -0.231215,1.810431 z M 87.5,56 C 86.18126,55.433318 86.010945,55.121845 87,55.085598 87.825,55.055363 89.175,55.466844 90,56 c 1.827966,1.181322 0.249085,1.181322 -2.5,0 z M 57.719827,55.269269 c 2.320905,-0.209724 6.370905,-0.212217 9,-0.0055 2.629095,0.206677 0.730173,0.378269 -4.219827,0.381317 -4.95,0.003 -7.101078,-0.166052 -4.780173,-0.375776 z m 3.011141,-30.925206 c 0.677033,-0.273923 2.027033,-0.290597 3,-0.03705 C 64.703936,24.560557 64.15,24.784676 62.5,24.805055 60.85,24.825435 60.053936,24.61799 60.730968,24.344063 z"
+ id="path3029"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ssssssssssssscsssssssssccsccssss" />
+ <path
+ style="fill:#fb7b12"
+ d="M 117.68931,94.176512 C 116.58426,82.888403 113.63386,78.804797 100.82009,70.828021 97.429178,68.717126 95.954167,67.067808 95.464842,64.839926 94.836317,61.978273 95.420878,61.132142 103.89844,52.632575 114.02573,42.478992 117.96525,37.244719 118.07029,33.803054 118.10894,32.536374 118.52731,30.6 119,29.5 c 0.50042,-1.164548 0.83937,12.202692 0.8114,32 -0.0497,35.198703 -0.77775,46.40899 -2.12209,32.676512 z M 6.7217005,89 C 5.6967174,76.724113 5.8317665,21 6.8865006,21 c 1.5148179,0 2.0929495,5.699302 3.0431706,30 0.6057278,15.49073 0.5757978,25.118218 -0.087818,28.248015 -0.5537014,2.611408 -1.3225645,7.786408 -1.7085847,11.5 L 7.4314135,97.5 6.7217005,89 z"
+ id="path3027"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fd740d"
+ d="m 118.11831,96.396691 c -0.30868,-13.314444 -1.23792,-17.316304 -4.86256,-20.940938 -1.89718,-1.897182 -6.55199,-5.363347 -10.34402,-7.702588 -3.792034,-2.339241 -6.898458,-4.634046 -6.903168,-5.099566 -0.0047,-0.465521 3.64176,-4.740521 8.103268,-9.5 9.5882,-10.228581 13.86194,-16.148106 13.95846,-19.333774 C 118.10894,32.543921 118.52731,30.6 119,29.5 c 1.07026,-2.490637 1.07026,64.793928 0,69 -0.66045,2.59551 -0.77932,2.31193 -0.88169,-2.103309 z M 6.7272271,89 C 5.6992393,76.78326 5.8286334,21 6.884959,21 9.8487542,21 11.080215,63.836362 8.7392065,85.5 L 7.4424667,97.5 6.7272271,89 z"
+ id="path3025"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#e77812"
+ d="M 117.60854,88.5 C 116.63116,71.45134 114.6985,66.759458 106.64469,61.883254 103.57131,60.022464 101.05683,58.275 101.05697,58 c 1.3e-4,-0.275 3.26778,-4.402841 7.26144,-9.172981 8.02629,-9.586837 9.15807,-11.479793 10.35962,-17.327019 0.51063,-2.484903 0.9217,8.541496 1.08528,29.110738 0.28742,36.142658 -0.8429,50.772362 -2.15477,27.889262 z M 6.7272271,89 C 5.6992393,76.78326 5.8286334,21 6.884959,21 9.8487542,21 11.080215,63.836362 8.7392065,85.5 L 7.4424667,97.5 6.7272271,89 z"
+ id="path3023"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#fb6809"
+ d="m 119.21899,92 c -0.41777,-8.15345 -2.10056,-16.061558 -4.56175,-21.437514 -1.97147,-4.306245 -3.46888,-5.928253 -8.01255,-8.679232 C 103.57131,60.022464 101.05683,58.275 101.05697,58 c 1.3e-4,-0.275 3.26778,-4.402841 7.26144,-9.172981 8.02629,-9.586837 9.15807,-11.479793 10.35962,-17.327019 0.58127,-2.828656 0.90209,1.051421 1.09558,13.25 0.28475,17.951608 -0.15151,55.117438 -0.55462,47.25 z M 6.1311173,53.75 C 6.0580728,35.505199 6.3890665,21 6.8784386,21 9.5927278,21 11.013917,54.641813 8.8850636,68.5 8.293638,72.35 7.4615546,77.975 7.0359895,81 6.5615847,84.372162 6.211508,73.82969 6.1311173,53.75 z"
+ id="path3021"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#cd7424"
+ d="m 118.96511,91.25 c -0.0192,-2.6125 -0.68533,-8.35 -1.48032,-12.75 -0.79499,-4.4 -1.4568,-9.35 -1.47069,-11 -0.0446,-5.294024 -2.10099,-10.6921 -5.12563,-13.454684 l -2.94419,-2.689103 5.00434,-7.428106 C 115.70101,39.842648 117.99518,35.375 118.04677,34 c 0.0516,-1.375 0.48054,-3.4 0.95323,-4.5 0.50314,-1.170874 0.88857,12.198789 0.92971,32.25 C 119.96837,80.5875 119.775,96 119.5,96 c -0.275,0 -0.5157,-2.1375 -0.53489,-4.75 z M 6.1311173,53.75 C 6.0580728,35.505199 6.3890665,21 6.8784386,21 9.5927278,21 11.013917,54.641813 8.8850636,68.5 8.293638,72.35 7.4615546,77.975 7.0359895,81 6.5615847,84.372162 6.211508,73.82969 6.1311173,53.75 z"
+ id="path3019"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#e8660a"
+ d="m 117.25,77.491674 c -0.6875,-4.40458 -1.25251,-9.12958 -1.25558,-10.5 -0.0107,-4.769142 -2.18057,-10.274436 -5.10098,-12.941822 l -2.93923,-2.684567 4.87922,-7.432642 C 115.51699,39.844689 118.17325,34.475 118.73623,32 c 0.80503,-3.539146 1.02132,0.09075 1.01298,17 -0.006,11.825 -0.2893,24.875 -0.62991,29 L 118.5,85.5 117.25,77.491674 z M 6.6858035,65.092998 C 5.6873479,47.029748 5.8342538,22 6.9387271,22 c 0.5162999,0 1.3037999,2.1375 1.75,4.75 1.115282,6.529972 0.8571856,41.832831 -0.3417856,46.75 -0.8594294,3.524655 -1.0568329,2.525597 -1.661138,-8.407002 z"
+ id="path3017"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#f95803"
+ d="m 118.16169,75.492043 c -0.14018,-8.676797 -0.51028,-10.671948 -2.78243,-15 -1.44141,-2.745623 -3.74114,-5.911839 -5.11052,-7.036034 l -2.48978,-2.04399 4.73214,-6.769388 c 2.76058,-3.949046 5.26035,-8.9303 5.99994,-11.95601 1.14378,-4.679242 1.26583,-3.083394 1.24768,16.313379 -0.0111,11.825 -0.33855,24.875 -0.72773,29 l -0.7076,7.5 -0.1617,-10.007957 z M 6.7319605,65.092998 C 5.7024712,47.642772 5.8146069,22 6.920406,22 9.2955875,22 9.9157317,39.722789 8.3725468,63.5 L 7.463921,77.5 6.7319605,65.092998 z"
+ id="path3015"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#db6a0d"
+ d="M 117.72724,74.5 C 117.34692,68.45 116.6902,59.374028 116.26787,54.331174 115.48884,45.029144 115.70052,42.823545 118.31503,33 c 1.40895,-5.29387 1.46306,-4.694218 1.44369,16 -0.0111,11.825 -0.3171,24.875 -0.68006,29 l -0.65994,7.5 -0.69148,-11 z M 6.7319605,65.092998 C 5.7024712,47.642772 5.8146069,22 6.920406,22 9.2955875,22 9.9157317,39.722789 8.3725468,63.5 L 7.463921,77.5 6.7319605,65.092998 z"
+ id="path3013"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#c76621"
+ d="m 117.71698,65.75 c -1.79534,-6.382601 -2.59039,-24.527782 -1.17505,-26.817846 0.40018,-0.647499 1.29219,-3.48462 1.98225,-6.304713 1.12997,-4.617846 1.26565,-2.916107 1.36524,17.122559 0.0608,12.2375 -0.008,22.25 -0.15191,22.25 -0.14437,0 -1.05361,-2.8125 -2.02053,-6.25 z M 6,41.5 C 6,30.775 6.375,22 6.8333333,22 7.2916667,22 7.7031398,22.5625 7.7477181,23.25 7.7922964,23.9375 8.3515643,28.325 8.9905357,33 10.397771,43.29596 9.0688128,61 6.8887091,61 6.3999191,61 6,52.225 6,41.5 z"
+ id="path3011"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#bf6229"
+ d="m 117.26126,64.421563 c -1.70053,-5.598827 -1.80689,-23.54735 -0.15744,-26.566513 0.70765,-1.295278 1.59246,-4.15505 1.96624,-6.35505 0.87728,-5.163455 0.95267,24.137228 0.081,31.5 L 118.5,68.5 117.26126,64.421563 z M 6.6726016,52.096375 C 5.1607761,30.959584 6.4735816,15.692797 8.6801786,28.75 9.6971475,34.767759 9.3978091,54.538434 8.2297481,58.5 7.50455,60.959563 7.224037,59.805979 6.6726016,52.096375 z"
+ id="path3009"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#c45e20"
+ d="M 117.26126,64.421563 C 114.60467,55.67497 115.9393,35 119.16052,35 c 0.96573,0 0.95907,19.818999 -0.009,28 L 118.5,68.5 117.26126,64.421563 z M 6.6726016,52.096375 C 5.1607761,30.959584 6.4735816,15.692797 8.6801786,28.75 9.6971475,34.767759 9.3978091,54.538434 8.2297481,58.5 7.50455,60.959563 7.224037,59.805979 6.6726016,52.096375 z"
+ id="path3007"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#e55705"
+ d="m 117.26126,64.421563 c -0.68131,-2.243141 -1.28558,-8.67088 -1.34282,-14.283864 -0.0855,-8.382206 0.22514,-10.690671 1.73874,-12.921563 L 119.5,34.5 l 0.25888,4 c 0.14238,2.2 -0.0826,9.85 -0.5,17 -0.7241,12.404192 -0.81565,12.813079 -1.99762,8.921563 z M 6.710951,44.09043 C 6.0706086,26.443555 7.0177362,18.842866 8.6486952,28.540054 9.6914721,34.740089 9.4145643,54.483056 8.2284877,58.5 7.5905632,60.66049 7.1659008,56.628163 6.710951,44.09043 z"
+ id="path3005"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#c25c1f"
+ d="m 118.14513,61.184259 c -0.0798,-4.023658 -0.62366,-8.20989 -1.20854,-9.302737 -1.6727,-3.125477 -1.34646,-9.514618 0.69564,-13.623449 L 119.5,34.5 l 0.25888,4 c 0.14238,2.2 -0.12981,9.85 -0.60488,17 -0.68197,10.264135 -0.89429,11.460394 -1.00887,5.684259 z M 6.7677945,44.09043 C 6.3890783,34.515166 6.4578188,26.004341 6.9205512,25.177484 8.2370569,22.825019 9.0925831,40.128731 8.2219831,51.5 L 7.4563693,61.5 6.7677945,44.09043 z"
+ id="path3003"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#d55607"
+ d="m 118,60.934259 c 0,-3.886158 -0.4875,-7.976644 -1.08333,-9.089969 -1.5756,-2.944021 -1.31601,-9.87834 0.49954,-13.34429 1.48742,-2.839547 1.5718,-2.13088 1.57763,13.25 C 118.99723,60.6875 118.775,68 118.5,68 118.225,68 118,64.820416 118,60.934259 z M 7.2710416,42.5 C 7.2602023,26.610119 7.4057886,24.67475 8.160441,30.676651 c 0.5323866,4.234177 0.5377006,12.024304 0.012961,19 L 7.2840024,61.5 7.2710416,42.5 z"
+ id="path3001"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#e54a00"
+ d="m 116.45161,50.84753 c -1.15492,-3.638827 -0.65848,-9.714094 0.98559,-12.061333 1.47126,-2.100518 1.5628,-1.749582 1.5628,5.991297 0,7.912039 -1.11832,10.575783 -2.54839,6.070036 z M 7.1183148,37.309017 C 7.1987216,30.642806 7.4812132,28.461199 8,30.5 9.1428722,34.991419 9.1428722,45.793666 8,46.5 7.356394,46.89777 7.0421667,43.62216 7.1183148,37.309017 z"
+ id="path2999"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#d54c04"
+ d="m 118.34941,45 c 0,-4.675 0.17226,-6.5875 0.3828,-4.25 0.21053,2.3375 0.21053,6.1625 0,8.5 -0.21054,2.3375 -0.3828,0.425 -0.3828,-4.25 z M 7,37.5 C 7,32.091667 7.2546825,27.921349 7.5659612,28.232628 8.2820951,28.948762 8.2521862,46.081147 7.5335474,46.799786 7.2400963,47.093237 7,42.908333 7,37.5 z"
+ id="path2997"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>