first commit

This commit is contained in:
Yura 2024-09-15 15:12:16 +03:00
commit 417e54da96
5696 changed files with 900003 additions and 0 deletions

View file

@ -0,0 +1,19 @@
from kivy.core.window import Window
from kivy.graphics.svg import Svg
from time import time
import sys
import os
filename = sys.argv[1]
if "PROFILE" in os.environ:
import pstats
import cProfile
cProfile.runctx("Svg(filename)", globals(), locals(), "Profile.prof")
s = pstats.Stats("Profile.prof")
s.sort_stats("time").print_callers()
else:
print("Loading {}".format(filename))
start = time()
svg = Svg(filename)
end = time()
print("Loaded in {:.2f}s".format((end - start)))

View file

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="128px" height="128px" viewBox="0 0 128 128" enable-background="new 0 0 128 128" xml:space="preserve">
<polygon fill="#DBDBDB" points="-0.946,69.217 17.35,54.248 43.068,54.162 48.25,29.734 75.084,22.792 94.805,51.419
113.099,56.417 128.142,77.678 116.961,96.551 86.061,100.891 79.149,88.741 68.579,102.625 40.525,105.445 32.1,95.478
5.966,94.815 "/>
<polygon fill="#FFFFFF" points="51.502,31.904 74.066,26.264 92.246,50.688 72.44,30.385 "/>
<polygon fill="#FFFFFF" points="95.719,53.796 112.348,58.488 126.172,77.578 122.715,83.219 122.715,77.795 110.722,61.308
96.999,56.721 89.504,59.28 "/>
<polygon fill="#FFFFFF" points="12.333,61.406 18.025,56.417 43.415,55.878 52.373,68.858 41.971,58.549 18.431,59.237 "/>
<polygon fill="#B6B6B6" points="0.681,70.952 7.592,92.646 31.551,93.467 9.219,88.741 "/>
<polygon fill="#B6B6B6" points="34.659,95.478 41.614,103.823 67.025,101.438 42.833,100.569 "/>
<polygon fill="#B6B6B6" points="77.93,84.837 86.467,99.587 116.147,95.467 88.297,96.116 "/>
<polygon points="93.343,71.529 90.418,79.207 93.343,81.584 96.268,79.207 "/>
<polygon fill="#404040" points="93.343,73.905 95.536,79.024 92.794,77.562 "/>
<polygon points="107.938,71.498 105.014,79.176 107.938,81.553 110.863,79.176 "/>
<polygon fill="#404040" points="107.938,73.874 110.132,78.993 107.39,77.53 "/>
<polygon points="92.665,89.044 102.217,91.24 111.062,88.625 112.062,87.125 113.871,88.861 112.625,90.75 111.188,89.75
102.217,92.923 92.848,90.141 91.751,91.238 90.472,89.775 91.568,87.765 "/>
<polygon fill="#404040" points="112.562,87.812 112.688,88.562 113.5,88.875 "/>
<polygon fill="#404040" points="91.688,88.188 92.611,89.079 91.625,89.062 "/>
<polygon fill="#404040" points="92.938,89.375 101.875,91.5 104.938,90.625 101.812,92.125 "/>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

@ -0,0 +1,155 @@
import sys
from glob import glob
from os.path import join, dirname
from kivy.uix.scatter import Scatter
from kivy.uix.widget import Widget
from kivy.uix.label import Label
from kivy.app import App
from kivy.graphics.svg import Svg
from kivy.core.window import Window
from kivy.uix.floatlayout import FloatLayout
from kivy.lang import Builder
smaa_ui = '''
#:kivy 1.8.0
BoxLayout:
orientation: 'horizontal'
pos_hint: {'top': 1}
size_hint_y: None
height: '48dp'
padding: '2dp'
spacing: '2dp'
Label:
text: 'Quality:'
ToggleButton:
text: 'Low'
group: 'smaa-quality'
on_release: app.smaa.quality = 'low'
ToggleButton:
text: 'Medium'
group: 'smaa-quality'
on_release: app.smaa.quality = 'medium'
ToggleButton:
text: 'High'
group: 'smaa-quality'
on_release: app.smaa.quality = 'high'
ToggleButton:
text: 'Ultra'
group: 'smaa-quality'
state: 'down'
on_release: app.smaa.quality = 'ultra'
Label:
text: 'Debug:'
ToggleButton:
text: 'None'
group: 'smaa-debug'
state: 'down'
on_release: app.smaa.debug = ''
ToggleButton:
text: 'Source'
group: 'smaa-debug'
on_release: app.smaa.debug = 'source'
ToggleButton:
text: 'Edges'
group: 'smaa-debug'
on_release: app.smaa.debug = 'edges'
ToggleButton:
text: 'Blend'
group: 'smaa-debug'
on_release: app.smaa.debug = 'blend'
'''
class SvgWidget(Scatter):
def __init__(self, filename):
super(SvgWidget, self).__init__()
with self.canvas:
svg = Svg(filename)
self.size = svg.width, svg.height
class SvgApp(App):
def build(self):
from kivy.garden.smaa import SMAA
Window.bind(on_keyboard=self._on_keyboard_handler)
self.smaa = SMAA()
self.effects = [self.smaa, Widget()]
self.effect_index = 0
self.label = Label(text='SMAA', top=Window.height)
self.effect = effect = self.effects[0]
self.root = FloatLayout()
self.root.add_widget(effect)
if 0:
from kivy.graphics import Color, Rectangle
wid = Widget(size=Window.size)
with wid.canvas:
Color(1, 1, 1, 1)
Rectangle(size=Window.size)
effect.add_widget(wid)
if 1:
# from kivy.uix.image import Image
# root.add_widget(Image(source='data/logo/kivy-icon-512.png',
# size=(800, 600)))
filenames = sys.argv[1:]
if not filenames:
filenames = glob(join(dirname(__file__), '*.svg'))
for filename in filenames:
svg = SvgWidget(filename)
effect.add_widget(svg)
effect.add_widget(self.label)
svg.scale = 5.
svg.center = Window.center
if 0:
wid = Scatter(size=Window.size)
from kivy.graphics import Color, Triangle, Rectangle
with wid.canvas:
Color(0, 0, 0, 1)
Rectangle(size=Window.size)
Color(1, 1, 1, 1)
w, h = Window.size
cx, cy = w / 2., h / 2.
Triangle(points=[cx - w * 0.25, cy - h * 0.25,
cx, cy + h * 0.25,
cx + w * 0.25, cy - h * 0.25])
effect.add_widget(wid)
if 0:
from kivy.uix.button import Button
from kivy.uix.slider import Slider
effect.add_widget(Button(text='Hello World'))
effect.add_widget(Slider(pos=(200, 200)))
control_ui = Builder.load_string(smaa_ui)
self.root.add_widget(control_ui)
def _on_keyboard_handler(self, instance, key, *args):
if key == 32:
self.effect_index = (self.effect_index + 1) % 2
childrens = self.effect.children[:]
self.effect.clear_widgets()
self.root.remove_widget(self.effect)
self.effect = self.effects[self.effect_index]
self.root.add_widget(self.effect)
for child in reversed(childrens):
self.effect.add_widget(child)
self.label.text = self.effect.__class__.__name__
Window.title = self.label.text
if __name__ == '__main__':
SvgApp().run()

View file

@ -0,0 +1,50 @@
import sys
from glob import glob
from os.path import join, dirname
from kivy.uix.scatter import Scatter
from kivy.app import App
from kivy.graphics.svg import Svg
from kivy.core.window import Window
from kivy.uix.floatlayout import FloatLayout
from kivy.lang import Builder
Builder.load_string("""
<SvgWidget>:
do_rotation: False
<FloatLayout>:
canvas.before:
Color:
rgb: (1, 1, 1)
Rectangle:
pos: self.pos
size: self.size
""")
class SvgWidget(Scatter):
def __init__(self, filename, **kwargs):
super(SvgWidget, self).__init__(**kwargs)
with self.canvas:
svg = Svg(filename)
self.size = svg.width, svg.height
class SvgApp(App):
def build(self):
self.root = FloatLayout()
filenames = sys.argv[1:]
if not filenames:
filenames = glob(join(dirname(__file__), '*.svg'))
for filename in filenames:
svg = SvgWidget(filename, size_hint=(None, None))
self.root.add_widget(svg)
svg.scale = 5.
svg.center = Window.center
if __name__ == '__main__':
SvgApp().run()

View file

@ -0,0 +1,68 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" width="337" height="55" viewBox="8.5358 -0.0240 54.0895 8.8000">
<line transform="translate(8.5358, 5.7760)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0500" y1="-0.0000" x2="54.0395" y2="-0.0000"/>
<line transform="translate(8.5358, 4.7760)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0500" y1="-0.0000" x2="54.0395" y2="-0.0000"/>
<line transform="translate(8.5358, 3.7760)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0500" y1="-0.0000" x2="54.0395" y2="-0.0000"/>
<line transform="translate(8.5358, 2.7760)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0500" y1="-0.0000" x2="54.0395" y2="-0.0000"/>
<line transform="translate(8.5358, 1.7760)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.1000" stroke="currentColor" x1="0.0500" y1="-0.0000" x2="54.0395" y2="-0.0000"/>
<rect transform="translate(51.4434, 3.7760)" x="0.0000" y="-2.0000" width="0.1900" height="4.0000" ry="0.0000" fill="currentColor"/>
<rect transform="translate(34.0904, 3.7760)" x="0.0000" y="-2.0000" width="0.1900" height="4.0000" ry="0.0000" fill="currentColor"/>
<rect transform="translate(62.4353, 3.7760)" x="0.0000" y="-2.0000" width="0.1900" height="4.0000" ry="0.0000" fill="currentColor"/>
<rect transform="translate(48.9427, 3.7760)" x="-0.0650" y="-3.3333" width="0.1300" height="3.1455" ry="0.0400" fill="currentColor"/>
<path transform="translate(45.1753, 4.2760) scale(0.0040, -0.0040)" d="M220 138c56 0 109 -29 109 -91c0 -72 -56 -121 -103 -149c-36 -21 -76 -36 -117 -36c-56 0 -109 29 -109 91c0 72 56 121 103 149c36 21 76 36 117 36z" fill="currentColor"/>
<rect transform="translate(45.2403, 3.7760)" x="-0.0650" y="0.6878" width="0.1300" height="2.5098" ry="0.0400" fill="currentColor"/>
<path transform="translate(47.6915, 3.7760) scale(0.0040, -0.0040)" d="M220 138c56 0 109 -29 109 -91c0 -72 -56 -121 -103 -149c-36 -21 -76 -36 -117 -36c-56 0 -109 29 -109 91c0 72 56 121 103 149c36 21 76 36 117 36z" fill="currentColor"/>
<path transform="translate(47.6915, 4.7760) scale(0.0040, -0.0040)" d="M220 138c56 0 109 -29 109 -91c0 -72 -56 -121 -103 -149c-36 -21 -76 -36 -117 -36c-56 0 -109 29 -109 91c0 72 56 121 103 149c36 21 76 36 117 36z" fill="currentColor"/>
<rect transform="translate(47.7565, 3.7760)" x="-0.0650" y="1.1878" width="0.1300" height="2.8122" ry="0.0400" fill="currentColor"/>
<path transform="translate(53.5834, 4.2760) scale(0.0040, -0.0040)" d="M315 65c0 24 -21 41 -42 41c-4 0 -8 0 -12 -1c-31 -9 -77 -40 -114 -64s-84 -53 -104 -78c-7 -8 -11 -18 -11 -28c0 -24 21 -41 42 -41c4 0 8 0 12 1c31 9 78 40 115 64s84 53 104 78c7 8 10 18 10 28zM264 137c47 0 83 -21 83 -72c0 -19 -4 -37 -10 -56
c-12 -38 -32 -74 -65 -96c-54 -36 -113 -51 -188 -51c-47 0 -84 22 -84 73c0 19 5 37 11 56c12 38 31 74 64 96c54 36 114 50 189 50z" fill="currentColor"/>
<path transform="translate(42.6591, 3.2760) scale(0.0040, -0.0040)" d="M220 138c56 0 109 -29 109 -91c0 -72 -56 -121 -103 -149c-36 -21 -76 -36 -117 -36c-56 0 -109 29 -109 91c0 72 56 121 103 149c36 21 76 36 117 36z" fill="currentColor"/>
<path transform="translate(38.9430, 4.7760) scale(0.0040, -0.0040)" d="M220 138c56 0 109 -29 109 -91c0 -72 -56 -121 -103 -149c-36 -21 -76 -36 -117 -36c-56 0 -109 29 -109 91c0 72 56 121 103 149c36 21 76 36 117 36z" fill="currentColor"/>
<rect transform="translate(40.1941, 3.7760)" x="-0.0650" y="-3.3333" width="0.1300" height="3.1455" ry="0.0400" fill="currentColor"/>
<rect transform="translate(39.0080, 3.7760)" x="-0.0650" y="1.1878" width="0.1300" height="2.8122" ry="0.0400" fill="currentColor"/>
<path transform="translate(42.6591, 4.7760) scale(0.0040, -0.0040)" d="M220 138c56 0 109 -29 109 -91c0 -72 -56 -121 -103 -149c-36 -21 -76 -36 -117 -36c-56 0 -109 29 -109 91c0 72 56 121 103 149c36 21 76 36 117 36z" fill="currentColor"/>
<rect transform="translate(43.9103, 3.7760)" x="-0.0650" y="-3.6667" width="0.1300" height="2.9789" ry="0.0400" fill="currentColor"/>
<rect transform="translate(42.7241, 3.7760)" x="-0.0650" y="1.1878" width="0.1300" height="2.3046" ry="0.0400" fill="currentColor"/>
<path transform="translate(55.4234, 4.2760) scale(0.0040, -0.0040)" d="M0 0c0 31 25 56 56 56s56 -25 56 -56s-25 -56 -56 -56s-56 25 -56 56z" fill="currentColor"/>
<path transform="translate(59.0853, 3.7760) scale(0.0040, -0.0040)" d="M-23 -116c0 28 11 42 40 42c33 0 78 -13 119 -31l-132 158c-7 9 -10 17 -10 25c0 34 50 66 87 99c25 22 37 52 37 83c0 24 -8 49 -25 69l-35 42c-3 3 -4 7 -4 10c0 9 9 15 17 15c4 0 8 -1 11 -5l151 -180c7 -9 10 -17 10 -25c0 -34 -50 -66 -87 -99
c-25 -22 -37 -52 -37 -83c0 -24 7 -49 24 -69l84 -99c3 -3 4 -7 4 -10c0 -9 -8 -16 -16 -16c-4 0 -9 2 -12 6c-18 21 -63 38 -97 38c-41 0 -53 -26 -53 -67c0 -35 11 -74 28 -94c5 -6 0 -13 -6 -13c-2 0 -4 0 -6 2c-45 54 -92 148 -92 202z" fill="currentColor"/>
<polygon transform="translate(42.6591, 7.2760)" stroke-linejoin="round" stroke-linecap="round" stroke-width="0.0800" fill="currentColor" stroke="currentColor" points="2.6062 -0.5100 2.6062 -0.1100 0.0400 0.2000 0.0400 -0.2000"/>
<path transform="translate(42.6591, 3.7760)" stroke-width="0.0800" stroke-linejoin="round" stroke-linecap="round" stroke="currentColor" fill="currentColor" d="M0.116047692639455 4.23238524392539C0.865385844303992 4.79674274902589 2.0336160402072 4.65988447239824 2.63222569263945 3.93761475607461C2.01965351435568 4.54069954100234 0.85142331845247 4.67755781762999 0.116047692639455 4.23238524392539z"/>
<rect transform="translate(54.9084, 3.7760)" x="-0.0650" y="-3.0000" width="0.1300" height="3.2386" ry="0.0400" fill="currentColor"/>
<path transform="translate(55.4234, 5.2760) scale(0.0040, -0.0040)" d="M0 0c0 31 25 56 56 56s56 -25 56 -56s-25 -56 -56 -56s-56 25 -56 56z" fill="currentColor"/>
<rect transform="translate(53.6484, 3.7760)" x="-0.0650" y="1.7614" width="0.1300" height="2.5719" ry="0.0400" fill="currentColor"/>
<path transform="translate(53.5834, 5.2760) scale(0.0040, -0.0040)" d="M315 65c0 24 -21 41 -42 41c-4 0 -8 0 -12 -1c-31 -9 -77 -40 -114 -64s-84 -53 -104 -78c-7 -8 -11 -18 -11 -28c0 -24 21 -41 42 -41c4 0 8 0 12 1c31 9 78 40 115 64s84 53 104 78c7 8 10 18 10 28zM264 137c47 0 83 -21 83 -72c0 -19 -4 -37 -10 -56
c-12 -38 -32 -74 -65 -96c-54 -36 -113 -51 -188 -51c-47 0 -84 22 -84 73c0 19 5 37 11 56c12 38 31 74 64 96c54 36 114 50 189 50z" fill="currentColor"/>
<path transform="translate(52.1334, 5.2760) scale(0.0040, -0.0040)" d="M216 -312c0 -10 -8 -19 -18 -19s-19 9 -19 19v145l-83 -31v-158c0 -10 -9 -19 -19 -19s-18 9 -18 19v145l-32 -12c-2 -1 -5 -1 -7 -1c-11 0 -20 9 -20 20v60c0 8 5 16 13 19l46 16v160l-32 -11c-2 -1 -5 -1 -7 -1c-11 0 -20 9 -20 20v60c0 8 5 15 13 18l46 17v158
c0 10 8 19 18 19s19 -9 19 -19v-145l83 31v158c0 10 9 19 19 19s18 -9 18 -19v-145l32 12c2 1 5 1 7 1c11 0 20 -9 20 -20v-60c0 -8 -5 -16 -13 -19l-46 -16v-160l32 11c2 1 5 1 7 1c11 0 20 -9 20 -20v-60c0 -8 -5 -15 -13 -18l-46 -17v-158zM96 65v-160l83 30v160z" fill="currentColor"/>
<path transform="translate(25.6720, 6.2760) scale(0.0040, -0.0040)" d="M220 138c56 0 109 -29 109 -91c0 -72 -56 -121 -103 -149c-36 -21 -76 -36 -117 -36c-56 0 -109 29 -109 91c0 72 56 121 103 149c36 21 76 36 117 36z" fill="currentColor"/>
<path transform="translate(21.9558, 4.7760) scale(0.0040, -0.0040)" d="M220 138c56 0 109 -29 109 -91c0 -72 -56 -121 -103 -149c-36 -21 -76 -36 -117 -36c-56 0 -109 29 -109 91c0 72 56 121 103 149c36 21 76 36 117 36z" fill="currentColor"/>
<rect transform="translate(23.2070, 3.7760)" x="-0.0650" y="-2.5000" width="0.1300" height="3.3122" ry="0.0400" fill="currentColor"/>
<path transform="translate(25.6720, 4.7760) scale(0.0040, -0.0040)" d="M220 138c56 0 109 -29 109 -91c0 -72 -56 -121 -103 -149c-36 -21 -76 -36 -117 -36c-56 0 -109 29 -109 91c0 72 56 121 103 149c36 21 76 36 117 36z" fill="currentColor"/>
<path transform="translate(27.4382, 4.2760) scale(0.0040, -0.0040)" d="M0 0c0 31 25 56 56 56s56 -25 56 -56s-25 -56 -56 -56s-56 25 -56 56z" fill="currentColor"/>
<rect transform="translate(26.9232, 3.7760)" x="-0.0650" y="-2.5000" width="0.1300" height="3.3122" ry="0.0400" fill="currentColor"/>
<rect transform="translate(25.7370, 3.7760)" x="-0.0650" y="2.6878" width="0.1300" height="2.3122" ry="0.0400" fill="currentColor"/>
<path transform="translate(38.9430, 3.7760) scale(0.0040, -0.0040)" d="M220 138c56 0 109 -29 109 -91c0 -72 -56 -121 -103 -149c-36 -21 -76 -36 -117 -36c-56 0 -109 29 -109 91c0 72 56 121 103 149c36 21 76 36 117 36z" fill="currentColor"/>
<path transform="translate(18.6058, 1.7760) scale(0.0040, -0.0040)" d="M-23 -116c0 28 11 42 40 42c33 0 78 -13 119 -31l-132 158c-7 9 -10 17 -10 25c0 34 50 66 87 99c25 22 37 52 37 83c0 24 -8 49 -25 69l-35 42c-3 3 -4 7 -4 10c0 9 9 15 17 15c4 0 8 -1 11 -5l151 -180c7 -9 10 -17 10 -25c0 -34 -50 -66 -87 -99
c-25 -22 -37 -52 -37 -83c0 -24 7 -49 24 -69l84 -99c3 -3 4 -7 4 -10c0 -9 -8 -16 -16 -16c-4 0 -9 2 -12 6c-18 21 -63 38 -97 38c-41 0 -53 -26 -53 -67c0 -35 11 -74 28 -94c5 -6 0 -13 -6 -13c-2 0 -4 0 -6 2c-45 54 -92 148 -92 202z" fill="currentColor"/>
<path transform="translate(18.6058, 6.2760) scale(0.0040, -0.0040)" d="M315 65c0 24 -21 41 -42 41c-4 0 -8 0 -12 -1c-31 -9 -77 -40 -114 -64s-84 -53 -104 -78c-7 -8 -11 -18 -11 -28c0 -24 21 -41 42 -41c4 0 8 0 12 1c31 9 78 40 115 64s84 53 104 78c7 8 10 18 10 28zM264 137c47 0 83 -21 83 -72c0 -19 -4 -37 -10 -56
c-12 -38 -32 -74 -65 -96c-54 -36 -113 -51 -188 -51c-47 0 -84 22 -84 73c0 19 5 37 11 56c12 38 31 74 64 96c54 36 114 50 189 50z" fill="currentColor"/>
<path transform="translate(9.3358, 4.7760) scale(0.0040, -0.0040)" d="M376 262c4 0 9 1 13 1c155 0 256 -128 256 -261c0 -76 -33 -154 -107 -210c-22 -17 -47 -28 -73 -36c3 -35 5 -70 5 -105c0 -19 -1 -39 -2 -58c-7 -120 -90 -228 -208 -228c-108 0 -195 88 -195 197c0 58 53 103 112 103c54 0 95 -47 95 -103c0 -52 -43 -95 -95 -95
c-11 0 -21 2 -31 6c26 -39 68 -65 117 -65c96 0 157 92 163 191c1 18 2 37 2 55c0 31 -1 61 -4 92c-29 -5 -58 -8 -89 -8c-188 0 -333 172 -333 374c0 177 131 306 248 441c-19 62 -37 125 -45 190c-6 52 -7 104 -7 156c0 115 55 224 149 292c3 2 7 3 10 3c4 0 7 0 10 -3
c71 -84 133 -245 133 -358c0 -143 -86 -255 -180 -364c21 -68 39 -138 56 -207zM461 -203c68 24 113 95 113 164c0 90 -66 179 -173 190c24 -116 46 -231 60 -354zM74 28c0 -135 129 -247 264 -247c28 0 55 2 82 6c-14 127 -37 245 -63 364c-79 -8 -124 -61 -124 -119
c0 -44 25 -91 81 -123c5 -5 7 -10 7 -15c0 -11 -10 -22 -22 -22c-3 0 -6 1 -9 2c-80 43 -117 115 -117 185c0 88 58 174 160 197c-14 58 -29 117 -46 175c-107 -121 -213 -243 -213 -403zM408 1045c-99 -48 -162 -149 -162 -259c0 -74 18 -133 36 -194
c80 97 146 198 146 324c0 55 -4 79 -20 129z" fill="currentColor"/>
<path transform="translate(12.9558, 3.7760) scale(0.0040, -0.0040)" d="M27 41l-1 -66v-11c0 -22 1 -44 4 -66c45 38 93 80 93 139c0 33 -14 67 -43 67c-31 0 -52 -30 -53 -63zM-15 -138l-12 595c8 5 18 8 27 8s19 -3 27 -8l-7 -345c25 21 58 34 91 34c52 0 89 -48 89 -102c0 -80 -86 -117 -147 -169c-15 -13 -24 -38 -45 -38
c-13 0 -23 11 -23 25z" fill="currentColor"/>
<path transform="translate(14.9058, 3.7760) scale(0.0040, -0.0040)" d="M359 27c-49 0 -75 42 -75 75c0 38 27 77 72 77c4 0 9 0 14 -1c-28 37 -72 59 -120 59c-106 0 -113 -73 -113 -186v-51v-51c0 -113 7 -187 113 -187c80 0 139 70 158 151c2 7 7 10 12 10c6 0 13 -4 13 -12c0 -94 -105 -174 -183 -174c-68 0 -137 21 -184 70
c-49 51 -66 122 -66 193s17 142 66 193c47 49 116 69 184 69c87 0 160 -64 175 -150c1 -5 1 -9 1 -13c0 -40 -30 -72 -67 -72z" fill="currentColor"/>
<rect transform="translate(18.6708, 3.7760)" x="-0.0650" y="2.7614" width="0.1300" height="2.2386" ry="0.0400" fill="currentColor"/>
<path transform="translate(35.2268, 3.7760) scale(0.0040, -0.0040)" d="M220 138c56 0 109 -29 109 -91c0 -72 -56 -121 -103 -149c-36 -21 -76 -36 -117 -36c-56 0 -109 29 -109 91c0 72 56 121 103 149c36 21 76 36 117 36z" fill="currentColor"/>
<path transform="translate(35.2268, 4.7760) scale(0.0040, -0.0040)" d="M220 138c56 0 109 -29 109 -91c0 -72 -56 -121 -103 -149c-36 -21 -76 -36 -117 -36c-56 0 -109 29 -109 91c0 72 56 121 103 149c36 21 76 36 117 36z" fill="currentColor"/>
<rect transform="translate(36.4780, 3.7760)" x="-0.0650" y="-3.3333" width="0.1300" height="3.1455" ry="0.0400" fill="currentColor"/>
<rect transform="translate(35.2918, 3.7760)" x="-0.0650" y="1.1878" width="0.1300" height="2.8122" ry="0.0400" fill="currentColor"/>
<path transform="translate(32.7544, 0.8160) scale(0.0040, -0.0040)" d="M0 0c0 -198 209 -335 209 -533c0 -71 -16 -141 -42 -207c-5 -8 -12 -12 -19 -12c-13 0 -26 11 -23 27c26 61 42 126 42 192c0 104 -95 208 -167 283h-16v250h16z" fill="currentColor"/>
<rect transform="translate(29.7032, 3.7760)" x="-0.0650" y="1.1878" width="0.1300" height="2.8122" ry="0.0400" fill="currentColor"/>
<path transform="translate(29.6382, 4.7760) scale(0.0040, -0.0040)" d="M220 138c56 0 109 -29 109 -91c0 -72 -56 -121 -103 -149c-36 -21 -76 -36 -117 -36c-56 0 -109 29 -109 91c0 72 56 121 103 149c36 21 76 36 117 36z" fill="currentColor"/>
<rect transform="translate(32.6894, 3.7760)" x="-0.0650" y="-3.0000" width="0.1300" height="3.3122" ry="0.0400" fill="currentColor"/>
<path transform="translate(31.4382, 4.2760) scale(0.0040, -0.0040)" d="M220 138c56 0 109 -29 109 -91c0 -72 -56 -121 -103 -149c-36 -21 -76 -36 -117 -36c-56 0 -109 29 -109 91c0 72 56 121 103 149c36 21 76 36 117 36z" fill="currentColor"/>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View file

@ -0,0 +1,23 @@
<?xml version="1.0" standalone="no"?><svg width="256" height="256"
viewBox="0 0 256 256" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="M102,42 Q 165,22 59 48 T 197 164" stroke="green" stroke-width="5.0"
fill="none" stroke-opacity="0.375" transform="" />
<path d="M102,42 Q 165,22 59 48 T 197 164" stroke="green" stroke-width="5.0"
fill="none" stroke-opacity="0.375" transform=" rotate(120.0 128 128)" />
<path d="M102,42 Q 165,22 59 48 T 197 164" stroke="green" stroke-width="5.0"
fill="none" stroke-opacity="0.375" transform=" rotate(240.0 128 128)" />
<rect stroke="blue" stroke-width="3.75" x="24" y="98" width="59" height="132"
fill="none" stroke-opacity="0.75" transform="" />
<rect stroke="blue" stroke-width="3.75" x="24" y="98" width="59" height="132"
fill="none" stroke-opacity="0.75" transform=" rotate(-120.0 128 128)" />
<rect stroke="blue" stroke-width="3.75" x="24" y="98" width="59" height="132"
fill="none" stroke-opacity="0.75" transform=" rotate(-240.0 128 128)" />
<path d="M6,39 Q 230,177 256 149 T 37 164" stroke="red" stroke-width="1.75"
fill="none" stroke-opacity="0.625" transform="" />
<path d="M6,39 Q 230,177 256 149 T 37 164" stroke="red" stroke-width="1.75"
fill="none" stroke-opacity="0.625" transform=" rotate(120.0 128 128)" />
<path d="M6,39 Q 230,177 256 149 T 37 164" stroke="red" stroke-width="1.75"
fill="none" stroke-opacity="0.625" transform=" rotate(240.0 128 128)" />
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,181 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="90"
height="70"
id="svg2"
sodipodi:version="0.32"
inkscape:version="0.46"
version="1.0"
sodipodi:docname="ship.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs4">
<linearGradient
id="linearGradient3214">
<stop
style="stop-color:#c6c600;stop-opacity:1;"
offset="0"
id="stop3216" />
<stop
style="stop-color:#ffff00;stop-opacity:1;"
offset="1"
id="stop3218" />
</linearGradient>
<linearGradient
id="linearGradient3202">
<stop
style="stop-color:#ff0000;stop-opacity:1;"
offset="0"
id="stop3204" />
<stop
style="stop-color:#bd0000;stop-opacity:1;"
offset="1"
id="stop3206" />
</linearGradient>
<linearGradient
id="linearGradient3194">
<stop
style="stop-color:#dedede;stop-opacity:1;"
offset="0"
id="stop3196" />
<stop
style="stop-color:#989898;stop-opacity:1;"
offset="1"
id="stop3198" />
</linearGradient>
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 526.18109 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="744.09448 : 526.18109 : 1"
inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
id="perspective10" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient3194"
id="radialGradient3200"
cx="96.31839"
cy="50.202221"
fx="96.31839"
fy="50.202221"
r="17.310345"
gradientTransform="matrix(0.9858342,-8.3672021e-2,4.7596473e-2,0.83613,-1.0250201,16.006099)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3202"
id="linearGradient3208"
x1="42.241379"
y1="32.741379"
x2="115.51724"
y2="62.051723"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-32.758621,-3.8793108)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3214"
id="linearGradient3220"
x1="81.896553"
y1="91.362068"
x2="32.327587"
y2="56.858353"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.8787552,0.1419091,-0.1597537,0.9892554,-13.144554,-28.899574)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3214"
id="linearGradient3226"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.8685077,-0.1132563,-0.1394085,-1.0690568,-14.356174,105.14147)"
x1="85.341438"
y1="66.425507"
x2="37.248852"
y2="95.639565" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3202"
id="linearGradient3250"
x1="15.448277"
y1="24.051723"
x2="75.06897"
y2="54.224136"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
gridtolerance="10000"
guidetolerance="10"
objecttolerance="10"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.32"
inkscape:cx="68.190824"
inkscape:cy="80"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1280"
inkscape:window-height="949"
inkscape:window-x="0"
inkscape:window-y="49" />
<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" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<path
style="fill:url(#linearGradient3220);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.93835992px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 59.619254,50.730952 C 49.661045,70.037736 19.788566,69.897875 3.9900832,67.864348 C -7.7548013,66.515538 20.17388,59.495471 10.326386,42.733478 C 23.739518,53.606512 40.559383,49.266185 56.167631,51.777525 L 57.886308,51.427784 L 59.619254,50.730952 L 59.619254,50.730952 z"
id="path3190"
sodipodi:nodetypes="ccccccc"
inkscape:transform-center-x="-3.4482759"
inkscape:transform-center-y="4.3103448" />
<path
style="fill:url(#linearGradient3226);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.96547216px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 58.79508,22.895256 C 49.333819,1.7268144 19.894984,0.54842438 4.2901585,2.0287804 C -7.3077901,2.9543654 20.801912,10.400856 10.793004,27.956675 C 24.208257,16.881149 39.986846,23.620004 55.412911,21.618269 L 57.100128,22.070145 L 58.79508,22.895256 L 58.79508,22.895256 z"
id="path3224"
sodipodi:nodetypes="ccccccc" />
<path
sodipodi:type="arc"
style="opacity:1;fill:url(#linearGradient3250);stroke:#000000;stroke-opacity:1"
id="path3248"
sodipodi:cx="44.827587"
sodipodi:cy="45.172413"
sodipodi:rx="42.241379"
sodipodi:ry="16.379311"
d="M 87.068966,45.172413 A 42.241379,16.379311 0 1 1 2.5862083,45.172413 A 42.241379,16.379311 0 1 1 87.068966,45.172413 z"
transform="matrix(1.0050725,0,0,0.9999239,1.7122668,-9.4793183)" />
<path
sodipodi:type="arc"
style="opacity:1;fill:url(#radialGradient3200);fill-opacity:1;stroke:#000000;stroke-opacity:1"
id="path3192"
sodipodi:cx="96.120689"
sodipodi:cy="48.474136"
sodipodi:rx="16.810345"
sodipodi:ry="14.00862"
d="M 112.93103,48.474136 A 16.810345,14.00862 0 1 1 79.310345,48.474136 A 16.810345,14.00862 0 1 1 112.93103,48.474136 z"
transform="matrix(1.1420454,0,0,0.8166083,-53.524193,-4.0412826)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.6 KiB

View file

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="128px" height="128px" viewBox="0 0 128 128" enable-background="new 0 0 128 128" xml:space="preserve">
<polygon fill="#F1E323" points="26.318,46.295 64.821,19.125 110.014,42.609 112.881,96.541 67.961,111.15 26.045,92.309 "/>
<polygon fill="#F8F191" points="64.957,22.128 108.238,43.974 110.969,95.312 99.637,50.392 "/>
<polyline points="82.844,51.822 77.109,44.931 73.285,53.273 78.809,57.082 "/>
<polyline points="59.072,54.47 52.683,47.113 48.422,56.019 54.576,60.084 "/>
<polygon points="45.979,75.24 44.887,70.871 39.016,79.201 44.477,78.518 59.223,89.441 77.246,90.807 92.674,77.973 96.77,77.152
90.898,70.734 90.217,75.787 76.836,87.529 59.769,86.164 "/>
<polygon fill="#404040" points="52.942,48.89 57.584,54.215 53.352,51.757 "/>
<polygon fill="#404040" points="77.109,46.159 81.479,51.757 77.518,49.846 "/>
<polygon fill="#404040" points="44.478,72.783 45.569,75.924 58.95,86.301 44.341,76.469 "/>
<polygon fill="#404040" points="91.172,71.691 95.814,76.742 92.4,74.967 "/>
<polyline fill="#CFC31E" points="27.547,47.115 27.273,91.354 68.098,109.785 30.687,89.168 "/>
<polygon fill="#F1E323" points="116.173,58.063 145.789,54.59 147.251,77.99 119.646,77.259 "/>
<polygon fill="#F1E323" points="103.376,31.92 80.341,19.854 96.063,-3.363 114.893,5.778 "/>
<polygon fill="#F1E323" points="53.833,21.134 33.723,-6.288 10.688,7.24 27.507,33.383 "/>
<polygon fill="#F1E323" points="21.292,58.611 -11.25,57.697 -11.25,80.549 19.281,79.817 "/>
<polygon fill="#F1E323" points="28.604,98.647 13.065,124.059 34.637,133.383 52.736,110.348 "/>
<polygon fill="#F1E323" points="84.18,110.348 104.473,103.035 113.979,130.092 92.955,133.748 "/>
<polygon fill="#F8F191" points="96.978,-1.352 112.882,6.875 102.827,29.727 108.86,7.789 "/>
<polygon fill="#F8F191" points="118.55,59.342 144.326,56.6 145.789,76.161 141.401,60.622 "/>
<polygon fill="#F8F191" points="33.906,-3.729 51.09,20.585 38.111,11.262 "/>
<polygon fill="#F8F191" points="-9.056,59.891 19.098,60.622 18.001,77.989 15.807,63.364 "/>
<polygon fill="#F8F191" points="103.741,105.778 112.15,128.63 104.29,117.844 "/>
<polygon fill="#F8F191" points="29.518,101.757 48.714,111.812 35.368,130.458 44.326,113.64 "/>
<polygon fill="#CFC31E" points="95.5,1 83.75,18.5 101.5,28.75 87.75,18.25 "/>
<polygon fill="#CFC31E" points="118.75,62.25 121,76 143.5,76.25 123.25,74 "/>
<polygon fill="#CFC31E" points="85.75,111.25 93.5,132.75 91.5,120 "/>
<polygon fill="#CFC31E" points="27.75,103 14.75,123.5 32.5,131.5 18.25,122.75 "/>
<polygon fill="#CFC31E" points="16.25,78.5 -10.5,79.25 -10,60.5 -8.75,77 "/>
<polygon fill="#CFC31E" points="28.25,31.25 13,8 23.75,17.5 "/>
</svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,813 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.2" baseProfile="tiny" id="svg2" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="900px" height="900px"
viewBox="0 0 900 900" overflow="inherit" xml:space="preserve">
<path id="path6" fill="#FFFFFF" stroke="#000000" stroke-width="0.172" d="M58.599,224.09c0,0,0.086,1.619-0.618,1.603
c-0.704-0.017-14.764-41.095-32.304-39.179C25.677,186.514,40.872,180.231,58.599,224.09z"/>
<path id="path10" fill="#FFFFFF" stroke="#000000" stroke-width="0.172" d="M61.616,221.508c0,0-0.471,1.551-1.126,1.296
c-0.656-0.255,0.099-43.667-17.049-47.833C43.442,174.972,59.867,174.233,61.616,221.508z"/>
<path id="path14" fill="#FFFFFF" stroke="#000000" stroke-width="0.172" d="M85.105,257.676c0,0,1.398,0.82,0.997,1.399
c-0.402,0.578-42.421-10.36-50.5,5.324C35.602,264.399,38.745,248.262,85.105,257.676z"/>
<path id="path18" fill="#FFFFFF" stroke="#000000" stroke-width="0.172" d="M82.705,266.401c0,0,1.585,0.338,1.386,1.015
c-0.199,0.676-43.524,3.531-46.249,20.964C37.842,288.38,35.741,272.071,82.705,266.401z"/>
<path id="path22" fill="#FFFFFF" stroke="#000000" stroke-width="0.172" d="M79.107,261.681c0,0,1.521,0.566,1.225,1.205
c-0.295,0.64-43.573-2.854-48.813,13.993C31.517,276.879,31.819,260.44,79.107,261.681z"/>
<path id="path26" fill="#FFFFFF" stroke="#000000" stroke-width="0.172" d="M69.959,246.125c0,0,1.118,1.175,0.571,1.62
c-0.545,0.444-37.923-21.647-50.012-8.794C20.519,238.951,27.988,224.303,69.959,246.125z"/>
<path id="path30" fill="#FFFFFF" stroke="#000000" stroke-width="0.172" d="M63.512,249.707c0,0,1.244,1.039,0.752,1.545
c-0.492,0.504-40.13-17.218-50.687-3.079C13.578,248.173,19.342,232.774,63.512,249.707z"/>
<path id="path34" fill="#FFFFFF" stroke="#000000" stroke-width="0.172" d="M61.291,253.187c0,0,1.374,0.86,0.956,1.427
c-0.419,0.566-42.103-11.586-50.632,3.859C11.614,258.473,15.224,242.432,61.291,253.187z"/>
<path id="path38" fill="#FFFFFF" stroke="#000000" stroke-width="0.172" d="M70.463,253.71c0,0,0.958,1.309,0.358,1.68
c-0.599,0.372-34.836-26.328-48.473-15.131C22.35,240.258,31.634,226.689,70.463,253.71z"/>
<path id="path42" fill="#FFFFFF" stroke="#000000" stroke-width="0.172" d="M53.562,228.974c0,0,0.513,1.538-0.171,1.709
c-0.683,0.171-25.122-35.717-41.528-29.224C11.862,201.459,24.851,191.377,53.562,228.974z"/>
<path id="path46" fill="#FFFFFF" stroke="#000000" stroke-width="0.172" d="M54.155,234.938c0,0,0.833,1.392,0.202,1.706
s-32.233-29.459-46.853-19.579C7.504,217.064,18.012,204.417,54.155,234.938z"/>
<path id="path50" fill="#FFFFFF" stroke="#000000" stroke-width="0.172" d="M54.057,238.671c0,0,0.959,1.309,0.36,1.68
c-0.6,0.371-34.837-26.329-48.474-15.131C5.944,225.22,15.227,211.65,54.057,238.671z"/>
<path id="path54" fill="#FFFFFF" stroke="#000000" d="M52.169,240.138c0.43,5.168,1.272,10.78,2.76,13.446
c0,0-3.076,10.596,4.442,21.875c0,0-0.342,6.151,1.025,8.887c0,0,3.417,7.178,7.52,7.861c3.318,0.553,10.772,3.176,19.199,4.375
c0,0,14.639,12.03,11.904,22.968c0,0-0.342,14.014-3.418,15.38c0,0,9.912-9.569,1.709,4.786l-3.76,16.064
c0,0,21.875-18.457,8.545-2.734l-8.545,22.216c0,0,16.748-15.723,10.595-8.545l-2.733,7.52c0,0,36.913-23.241,10.595,2.051
c0,0,6.836-3.075,10.596-0.684c0,0,5.811-1.025,5.127,0.342c0,0-17.772,8.887-20.85,24.609c0,0,7.177-8.545,4.442,0.685l0.342,9.912
c0,0,3.418-18.458,3.077,13.671c0,0,16.405-15.38,6.493,2.393v14.354c0,0,12.988-14.014,7.521-3.075c0,0,8.544-7.52,5.126,5.469
c0,0-0.683,8.887,3.076-0.684c0,0,13.672-26.146,8.545-3.761c0,0-0.685,16.407,3.418,3.761c0,0,0.342,8.887,8.203,15.039
c0,0-1.025-43.408,9.912-12.646l3.417,14.014c0,0,2.393-7.86,2.051-12.305c0,0,12.646-14.014,6.836,6.836
c0,0,12.988-19.481,10.253-8.203c0,0-6.494,13.672-5.127,17.774c0,0,14.354-29.736,15.381-31.104c0,0-1.709,36.231,7.52,5.47
c0,0,4.784,10.254,2.393,14.014c0,0,6.836-6.835,6.152-9.57c0,0,3.931-7.007,6.322,4.615c0,0,1.538,8.031,2.905,5.297
c0,0,3.418,20.508,4.444,1.025c0,0,1.367-11.62-4.785-21.532c0,0,0.684-2.734-1.709-6.153c0,0,11.621,18.457,5.469-6.151
c0,0,9.571,6.836,10.597,6.836c0,0-11.621-19.823-4.103-15.723c0,0-4.443-8.888,10.938,1.367c0,0-13.673-13.672,1.367-5.469
c0,0,6.836,5.469,0.343-3.077c0,0-12.306-13.671,6.493,1.71c0,0,9.912,14.013,10.597,16.406c0,0-8.545-24.951-12.306-27.344
c0,0,7.178-31.104,42.383-17.773c0,0,5.81,14.696,9.569-1.025c0,0,10.938-5.469,20.508,18.115c0,0,3.417-11.621,2.733-14.014
c0,0,5.812,1.026,5.128,0c0,0,11.278,3.759,12.304,3.077c0,0,5.812,5.81,6.152,2.733c0,0,7.86,2.393,6.151-0.684
c0,0,7.521,13.33,7.861,16.406l2.052-11.963l1.708,2.394c0,0,1.367-6.496,0.685-7.521c-0.685-1.025,17.09,5.811,21.189,23.583
l1.709,7.178c0,0,5.128-12.646,3.762-16.063c0,0,4.442,0.686,4.784,4.443c0,0,3.418-19.825-0.685-24.951
c0,0,3.761-0.683,4.787,2.394v-6.153c0,0,6.149,0.684,6.149-1.366c0,0,3.762-3.418,5.471,0.683c0,0-10.597-30.078,5.127-13.672
c0,0,6.15,9.229,3.075-6.836c-3.075-16.062-6.493-17.432-2.393-17.772c0,0,0.684-3.076-1.025-4.443c-1.709-1.367,1.025,0,1.025,0
s4.102,3.418-0.343-15.381c0,0,5.469,1.367-4.785-23.583c0,0,2.394-2.051-1.024-9.229c0,0,6.836,3.761,9.229,2.394
c0,0-0.343-1.367-3.076-4.785c0,0-18.457-46.827-1.025-28.026c0,0,10.127,11.577,4.656-7.905c0,0-7.784-20.516-7.119-24.188
L52.169,240.138z"/>
<path id="path58" fill="#CC7226" stroke="#000000" d="M419.209,220.639c0.535,0.155,2.421,1.115,3.488,2.525
c0,0,5.811,9.229,1.367-6.494c0,0-7.861-24.609-0.342-15.04c0,0,5.127,6.152,2.392-5.468c-3.303-14.037-5.469-19.482-5.469-19.482
s9.913,4.102-12.988-29.735l7.521,3.076c0,0-16.748-33.837-35.205-38.281l-6.836-5.127c0,0,32.812-32.47,21.875-63.915
c0,0-5.812-4.443-14.015,3.418c0,0-5.468,4.101-10.596,2.734c0,0-26.317,1.025-28.027,1.025c-1.709,0-31.444-31.787-87.497-16.748
c0,0-4.443,1.708-8.203,0.684c0,0-15.724-13.672-57.422,5.81c0,0-8.545,1.709-9.912,1.709s-3.76,0-10.596,5.469
c-6.836,5.468-7.178,6.152-8.887,7.519c0,0-14.013,9.57-18.114,10.253c0,0-9.912,5.469-13.673,14.014l-3.075,1.026
c0,0-1.367,6.152-1.709,7.177c0,0-4.103,3.077-4.785,7.861c0,0-7.52,5.126-7.177,8.886c0,0-1.367,4.444-2.052,8.545
c0,0-6.151,4.102-5.468,6.494c0,0-6.494,11.963-5.469,17.773c0,0-5.469-0.341-7.861,1.709c0,0-0.684,4.102-2.051,4.444
c0,0-2.394,1.025-0.341,4.443c0,0-1.368,2.393-1.709,3.759c0,0,0.684,2.393-3.076,7.177c0,0-5.469,16.065-3.76,20.508
c0,0,0.342,4.101-2.052,5.469c0,0-3.075-0.342,4.103,9.912c0,0,0.684,1.025-2.051,3.076c0,0-14.697,3.076-16.748,17.089
c0,0-11.621,12.646-11.621,17.09c0,1.969,0.23,4.658,0.829,8.601c0,0-0.487,7.123,23.096,7.806S419.209,220.639,419.209,220.639z"/>
<path id="path62" fill="#CC7226" d="M64.328,239.741c-21.363-33.667-9.059,14.526-9.059,14.526
c7.521,29.395,118.26-2.734,118.26-2.734s144.237-25.977,153.809-29.395c9.57-3.418,90.916,2.051,90.916,2.051l-4.784-14.355
c-55.371-39.648-71.776-19.824-83.397-23.242c-11.621-3.417-9.57,4.785-12.305,5.469s-36.229-20.507-41.699-19.824
c-5.468,0.684-27.123-19.611-14.354,7.519c13.671,29.053-49.903,33.496-64.258,23.926c-14.355-9.57,6.151,15.722,6.151,15.722
c15.724,17.09-13.672,2.734-13.672,2.734c-29.394-10.937-49.901,10.938-52.636,11.621c-2.734,0.683-6.835,3.418-7.519-2.051
c-0.685-5.469-7.102-19.739-34.18,2.734c-17.089,14.186-28.881-4.614-28.881-4.614L64.328,239.741z"/>
<path id="path66" fill="#E87F3A" d="M277.187,173.729c-5.469,0.684-27.144-19.601-14.354,7.519
c14.184,30.078-49.901,33.496-64.257,23.926c-14.356-9.57,6.151,15.723,6.151,15.723c15.723,17.089-13.673,2.734-13.673,2.734
c-29.394-10.937-49.901,10.938-52.636,11.621c-2.734,0.684-6.835,3.418-7.52-2.051c-0.684-5.468-6.988-19.597-34.179,2.734
c-18.146,14.822-29.674-3.511-29.674-3.511l-2.734,8.638c-21.361-34.009-8.482,15.815-8.482,15.815
c7.52,29.396,118.819-3.853,118.819-3.853s144.236-25.976,153.807-29.395c9.57-3.417,90.172,1.989,90.172,1.989l-4.724-14.791
c-55.37-39.648-71.092-19.327-82.714-22.744c-11.62-3.418-9.569,4.785-12.305,5.468
C316.151,194.236,282.656,173.045,277.187,173.729z"/>
<path id="path70" fill="#EA8C4D" d="M278.306,175.22c-5.469,0.684-26.604-19.849-14.354,7.52
c13.842,30.934-49.902,33.497-64.258,23.927c-14.354-9.571,6.152,15.722,6.152,15.722c15.722,17.09-13.672,2.734-13.672,2.734
c-29.395-10.938-49.902,10.938-52.636,11.621c-2.735,0.684-6.836,3.418-7.521-2.05c-0.684-5.469-6.877-19.454-34.179,2.734
c-19.203,15.458-30.466-2.408-30.466-2.408l-3.075,7.363c-20.337-33.324-7.909,17.105-7.909,17.105
c7.521,29.395,119.379-4.971,119.379-4.971s144.237-25.976,153.807-29.395c9.569-3.418,89.426,1.926,89.426,1.926l-4.66-15.226
c-55.371-39.647-70.41-18.83-82.03-22.248c-11.621-3.417-9.57,4.785-12.305,5.47C317.27,195.728,283.775,174.536,278.306,175.22z"/>
<path id="path74" fill="#EC9961" d="M279.424,176.712c-5.469,0.683-26.599-19.852-14.355,7.519
c14.355,32.091-50.357,33.192-64.257,23.926c-14.354-9.571,6.152,15.722,6.152,15.722c15.723,17.09-13.671,2.734-13.671,2.734
c-29.395-10.937-49.901,10.938-52.637,11.621c-2.733,0.684-6.836,3.418-7.519-2.051c-0.684-5.469-6.765-19.309-34.18,2.735
c-20.259,16.095-31.259-1.305-31.259-1.305l-3.418,6.09c-18.628-31.445-7.332,18.396-7.332,18.396
c7.52,29.394,119.938-6.091,119.938-6.091s144.235-25.977,153.808-29.395c9.569-3.417,88.681,1.865,88.681,1.865l-4.6-15.66
c-55.371-39.649-69.726-18.333-81.346-21.751c-11.623-3.418-9.572,4.785-12.308,5.469
C318.388,197.22,284.893,176.028,279.424,176.712z"/>
<path id="path78" fill="#EEA575" d="M280.544,178.203c-5.469,0.684-26.167-20.041-14.356,7.52
c14.356,33.496-49.9,33.496-64.257,23.925c-14.354-9.57,6.152,15.723,6.152,15.723c15.723,17.089-13.671,2.734-13.671,2.734
c-29.396-10.937-49.901,10.938-52.637,11.621c-2.733,0.684-6.835,3.418-7.52-2.051c-0.685-5.469-6.652-19.167-34.179,2.735
c-21.316,16.732-32.053-0.203-32.053-0.203l-3.759,4.816c-16.919-29.737-6.758,19.683-6.758,19.683
c7.519,29.396,120.498-7.208,120.498-7.208s144.235-25.976,153.808-29.394c9.57-3.417,87.934,1.802,87.934,1.802l-4.536-16.095
c-55.37-39.648-69.042-17.835-80.663-21.252c-11.621-3.418-9.57,4.785-12.306,5.469C319.509,198.711,286.012,177.52,280.544,178.203
z"/>
<path id="path82" fill="#F1B288" d="M281.662,179.694c-5.47,0.684-27.654-19.355-14.355,7.52
c16.406,33.154-49.902,33.496-64.258,23.925c-14.355-9.57,6.153,15.723,6.153,15.723c15.722,17.089-13.673,2.734-13.673,2.734
c-29.394-10.938-49.901,10.937-52.636,11.621c-2.733,0.683-6.836,3.418-7.52-2.051c-0.685-5.469-6.54-19.023-34.18,2.734
c-22.372,17.37-32.843,0.902-32.843,0.902l-4.102,3.542c-15.38-28.37-6.184,20.973-6.184,20.973
c7.52,29.396,121.058-8.327,121.058-8.327s144.235-25.977,153.807-29.394c9.569-3.418,87.188,1.74,87.188,1.74l-4.475-16.53
c-55.37-39.647-68.358-17.338-79.979-20.756c-11.619-3.418-9.569,4.785-12.305,5.469S287.131,179.011,281.662,179.694z"/>
<path id="path86" fill="#F3BF9C" d="M282.781,181.186c-5.47,0.684-27.979-19.192-14.355,7.52
c17.433,34.18-49.902,33.497-64.257,23.926c-14.355-9.57,6.151,15.723,6.151,15.723c15.724,17.09-13.671,2.735-13.671,2.735
c-29.394-10.938-49.9,10.937-52.636,11.62c-2.734,0.684-6.835,3.418-7.519-2.05c-0.685-5.468-6.43-18.881-34.18,2.734
c-23.429,18.007-33.636,2.003-33.636,2.003l-4.443,2.269c-13.672-25.806-5.608,22.264-5.608,22.264
c7.52,29.395,121.617-9.446,121.617-9.446s144.236-25.977,153.807-29.394c9.568-3.418,86.441,1.677,86.441,1.677l-4.413-16.967
c-55.369-39.647-67.675-16.84-79.296-20.258c-11.622-3.419-9.568,4.785-12.305,5.469
C321.744,201.694,288.25,180.502,282.781,181.186z"/>
<path id="path90" fill="#F5CCB0" d="M283.899,182.677c-5.468,0.684-28.917-18.692-14.354,7.521
c18.799,33.837-49.903,33.495-64.258,23.925c-14.355-9.57,6.151,15.723,6.151,15.723c15.724,17.089-13.671,2.734-13.671,2.734
c-29.394-10.938-49.902,10.938-52.636,11.621c-2.735,0.684-6.836,3.418-7.521-2.05c-0.684-5.469-6.314-18.736-34.179,2.734
c-24.485,18.645-34.428,3.107-34.428,3.107l-4.786,0.994c-12.305-24.268-5.034,23.552-5.034,23.552
c7.521,29.396,122.175-10.563,122.175-10.563s144.238-25.977,153.808-29.395c9.57-3.418,85.696,1.616,85.696,1.616l-4.351-17.401
c-55.371-39.648-66.991-16.344-78.612-19.762c-11.62-3.417-9.57,4.786-12.304,5.469
C322.864,203.185,289.368,181.994,283.899,182.677z"/>
<path id="path94" fill="#F8D8C4" d="M285.018,184.169c-5.469,0.684-28.917-18.693-14.354,7.52
c18.798,33.837-49.901,33.495-64.258,23.925c-14.354-9.57,6.152,15.723,6.152,15.723c15.722,17.09-13.672,2.734-13.672,2.734
c-29.394-10.938-49.902,10.938-52.636,11.622c-2.734,0.683-6.835,3.417-7.52-2.052c-0.684-5.468-6.203-18.593-34.179,2.735
c-25.542,19.28-35.22,4.211-35.22,4.211l-5.127-0.28c-11.622-22.56-4.458,24.842-4.458,24.842
c7.519,29.394,122.733-11.683,122.733-11.683s144.236-25.977,153.807-29.395c9.571-3.418,84.952,1.554,84.952,1.554l-4.288-17.836
c-55.37-39.648-66.309-15.846-77.93-19.265c-11.62-3.417-9.57,4.785-12.305,5.469C323.982,204.677,290.486,183.486,285.018,184.169z
"/>
<path id="path98" fill="#FAE5D7" d="M286.136,185.661c-5.468,0.684-28.585-18.873-14.354,7.519
c18.799,34.863-49.901,33.496-64.257,23.926c-14.354-9.57,6.152,15.722,6.152,15.722c15.723,17.09-13.671,2.735-13.671,2.735
c-29.396-10.938-49.901,10.938-52.636,11.621c-2.735,0.684-6.838,3.417-7.521-2.052c-0.684-5.468-6.091-18.449-34.18,2.735
c-26.598,19.917-36.013,5.313-36.013,5.313l-5.47-1.555c-11.107-20.507-3.883,26.134-3.883,26.134
c7.52,29.394,123.294-12.803,123.294-12.803s144.236-25.977,153.806-29.395c9.57-3.418,84.207,1.492,84.207,1.492l-4.228-18.271
c-55.37-39.649-65.623-15.35-77.244-18.768s-9.57,4.785-12.304,5.469C325.1,206.168,291.605,184.977,286.136,185.661z"/>
<path id="path102" fill="#FCF2EB" d="M287.255,187.152c-5.469,0.684-27.664-19.349-14.355,7.519
c18.115,36.573-49.9,33.497-64.257,23.926c-14.354-9.57,6.153,15.723,6.153,15.723c15.722,17.089-13.672,2.734-13.672,2.734
c-29.395-10.937-49.902,10.938-52.637,11.621c-2.733,0.685-6.836,3.418-7.52-2.051c-0.683-5.468-5.979-18.306-34.179,2.735
c-27.655,20.554-36.807,6.415-36.807,6.415l-5.811-2.827c-10.938-19.823-3.31,27.421-3.31,27.421
c7.521,29.394,123.854-13.92,123.854-13.92s144.236-25.978,153.807-29.395c9.57-3.418,83.459,1.428,83.459,1.428l-4.163-18.705
c-55.371-39.648-64.939-14.852-76.561-18.27c-11.622-3.419-9.57,4.785-12.307,5.468C326.219,207.66,292.723,186.468,287.255,187.152
z"/>
<path id="path106" fill="#FFFFFF" d="M64.156,254.268c-10.938-18.799-2.733,28.71-2.733,28.71
c7.52,29.395,124.413-15.038,124.413-15.038s144.236-25.978,153.807-29.395c9.57-3.419,82.713,1.367,82.713,1.367l-4.102-19.14
c-55.37-39.648-64.258-14.355-75.878-17.773s-9.569,4.785-12.305,5.469c-2.733,0.684-36.229-20.508-41.698-19.824
c-5.47,0.684-27.02-19.659-14.355,7.52c18.993,40.765-51.918,32.151-64.258,23.925c-14.355-9.57,6.152,15.723,6.152,15.723
c15.722,17.09-13.672,2.735-13.672,2.735c-29.395-10.938-49.901,10.938-52.636,11.621c-2.734,0.685-6.836,3.418-7.52-2.051
c-0.684-5.469-5.866-18.164-34.18,2.735c-28.71,21.19-37.597,7.518-37.597,7.518L64.156,254.268z"/>
<path id="path110" d="M99.703,279.901c0,0-6.152,9.912,11.621,21.192c0,0,1.195,1.195-14.186-2.394c0,0-5.298-1.709-6.665-10.596
c0,0-4.101-3.759-8.203-8.545C78.171,274.775,99.703,279.901,99.703,279.901z"/>
<path id="path114" fill="#CCCCCC" d="M219.331,239.228c0,0,15.122,22.918,14.61,27.002c-1.11,8.888-1.281,17.091,1.453,20.509
c2.735,3.418,10.254,31.787,10.254,31.787s-0.341,1.024,10.254-31.445c0,0,9.912-13.672-7.178-29.395
C248.725,257.686,218.647,233.076,219.331,239.228z"/>
<path id="path118" d="M116.793,302.803c0,0,9.569,6.152-2.735,32.812l5.469-2.051c0,0-0.684,9.571-3.417,11.621l6.152-2.734
c0,0,4.102,6.836,0.684,10.937c0,0,14.355,6.836,13.673,12.305c0,0,5.468-6.835,2.051-12.305c-3.418-5.468-9.571-2.05-8.887-17.772
l-7.521,2.733c0,0,4.785-7.519,4.785-12.987l-6.836,2.051c0,0,13.218-22.71,4.102-23.926
C119.185,302.803,116.793,302.803,116.793,302.803z"/>
<path id="path122" fill="#CCCCCC" d="M144.478,317.157c0,0,2.393-3.759,0-3.076c-2.393,0.684-29.053,13.33-34.18,21.533
C110.299,335.614,139.693,314.765,144.478,317.157z"/>
<path id="path126" fill="#CCCCCC" d="M153.365,323.993c0,0,2.392-3.76,0-3.077c-2.394,0.685-29.053,13.331-34.18,21.534
C119.185,342.45,148.579,321.601,153.365,323.993z"/>
<path id="path130" fill="#CCCCCC" d="M164.644,311.005c0,0,2.394-3.759,0-3.076c-2.393,0.684-29.052,13.331-34.179,21.533
C130.465,329.462,159.859,308.612,164.644,311.005z"/>
<path id="path134" fill="#CCCCCC" d="M144.82,348.261c0,0,0-5.126-2.392-4.444c-2.393,0.684-33.154,15.723-38.281,23.926
C104.146,367.742,140.034,345.867,144.82,348.261z"/>
<path id="path138" fill="#CCCCCC" d="M145.845,339.032c0,0,1.025-4.103-1.367-3.418c-1.709,0-24.268,9.911-29.395,18.114
C115.084,353.729,140.377,335.273,145.845,339.032z"/>
<path id="path142" fill="#CCCCCC" d="M133.541,379.705l-8.545,6.494c0,0,8.886-6.494,11.962-5.468c0,0-5.811,9.569-6.494,14.013
c0,0,8.887-10.937,13.672-10.596c0,0,6.494,0.342,6.494,9.57c0,0,4.785-8.887,7.52-8.546c0,0,1.026,5.471,0,11.28
c0,0,3.418-6.494,6.836-5.128c0,0,5.469-1.708,4.785,8.205c0,0,0,8.886-0.684,11.277c0,0,4.786-22.559,6.836-22.899
c0,0,6.836-1.025,10.937,6.494c0,0-3.418-6.494,0.685-4.785c0,0,9.229,1.367,11.962,7.178c0,0-5.811-10.254-1.025-7.52
c0,0,5.812,0,6.836,5.469c0,0,7.179,18.115,8.888,19.481c0,0-6.494-18.457-5.126-18.457c0,0-1.709-10.254,2.733,2.393
c0,0-2.733-11.963,2.051-11.279c4.785,0.684,8.546,9.229,15.723,7.178c0,0,8.204,4.785,9.913-54.345L133.541,379.705z"/>
<path id="path146" d="M137.642,300.409c0,0,12.646-5.127,46.825,0c0,0,6.152,0.342,11.962-7.177
c5.812-7.521,28.71-13.673,34.18-11.964l8.204,5.47l0.685,1.023c0,0,10.596,8.888,10.938,15.381
c0.342,6.494-12.304,47.509-20.509,61.182c-8.203,13.671-16.406,24.267-32.812,22.216c0,0-17.772-3.418-39.647,0
c0,0-24.95-1.368-27.343-8.203s9.569-19.824,9.569-19.824s3.761-7.177,2.734-19.481
C141.401,326.729,141.744,302.803,137.642,300.409z"/>
<path id="path150" fill="#E5668C" d="M156.441,302.118c7.178,15.723-18.114,71.435-18.114,71.435
c-1.708,1.368,10.817,6.533,19.481,4.443c9.354-2.254,43.75,1.368,43.75,1.368c20.166-13.33,31.104-51.27,31.104-51.27
s8.887-20.508-6.152-23.242C211.469,302.118,156.441,302.118,156.441,302.118z"/>
<path id="path154" fill="#B23259" d="M154.705,328.519c2.841-10.93,4.194-21.014,1.734-26.4c0,0,53.319,5.469,62.891-12.305
c3.624-6.729,16.234,19.482,15.893,27.686c0,0-53.833,12.305-66.479,2.734L154.705,328.519z"/>
<path id="path158" fill="#A5264C" d="M158.491,342.45c0,0,1.709,6.152-0.343,9.57c0,0-1.366,0.684-2.393,1.025
c0,0,1.026,3.076,6.152,4.443c0,0,1.709,3.759,3.76,4.101c2.051,0.343,6.151,5.127,9.569,4.102s12.988-4.443,12.988-4.443
s4.785-2.734,12.305,0.342c0,0,2.029-0.685,2.393-4.101c0.427-4.017,3.076-7.178,4.785-8.887s9.912-12.647,8.886-12.988
C215.571,335.273,158.491,342.45,158.491,342.45z"/>
<path id="path162" fill="#FF727F" stroke="#000000" d="M154.732,301.094c0,0-2.393,19.14,0.343,26.317
c2.734,7.177,2.051,8.887,1.366,12.305c-0.684,3.419,3.076,11.962,7.861,17.089l10.253,1.368c0,0,12.988-3.077,20.849-0.684
c0,0,7.687,1.147,10.597-11.622c0,0,4.101-5.468,10.253-7.86c6.152-2.393,12.305-37.938,8.886-44.774
c-3.417-6.837-15.722-10.596-29.394,2.733C182.075,309.296,180.366,294.941,154.732,301.094z"/>
<path id="path166" fill="#FFFFCC" stroke="#000000" stroke-width="0.5" d="M156.099,365.009c0,0-0.684-1.71-4.443-2.052
c0,0-19.14-3.075-26.317-13.671c0,0-5.812-4.786-2.051,5.127c0,0,8.886,17.431,14.696,19.823
C137.984,374.236,151.997,377.655,156.099,365.009z"/>
<path id="path170" fill="#CC3F4C" d="M224.407,310.346c0.562-6.756,2.231-14.116,0.732-17.113
c-5.507-11.019-20.011-6.414-29.394,2.733c-13.672,13.33-15.381-1.024-41.016,5.128c0,0-1.49,11.931-0.772,20.485
c0,0,31.876-9.891,32.56-5.104c0,0,1.367-2.735,9.229-2.735C203.609,313.74,223.041,312.738,224.407,310.346z"/>
<path id="path174" stroke="#A51926" stroke-width="2" d="M187.544,301.777c0,0,4.102,4.101,1.024,12.304
c0,0-12.304,13.672-10.595,25.635"/>
<path id="path178" fill="#FFFFCC" stroke="#000000" stroke-width="0.5" d="M146.529,374.236c0,0-3.76-10.938,3.76-5.127
c0,0,4.102,1.709,3.075,3.076C152.339,373.553,147.554,376.971,146.529,374.236z"/>
<path id="path182" fill="#FFFFCC" stroke="#000000" stroke-width="0.5" d="M150.835,375.262c0,0-3.007-8.75,3.007-4.102
c0,0,3.778,2.092,2.462,2.461C152.407,374.715,156.304,376.902,150.835,375.262z"/>
<path id="path186" fill="#FFFFCC" stroke="#000000" stroke-width="0.5" d="M154.937,375.262c0,0-3.007-8.75,3.008-4.102
c0,0,3.738,1.974,2.461,2.461C157.534,374.715,160.406,376.902,154.937,375.262z"/>
<path id="path190" fill="#FFFFCC" stroke="#000000" stroke-width="0.5" d="M160.576,375.433c0,0-3.009-8.749,3.008-4.102
c0,0,3.745,1.993,2.461,2.46C163.516,374.715,166.046,377.073,160.576,375.433z"/>
<path id="path194" fill="#FFFFCC" stroke="#000000" stroke-width="0.5" d="M166.114,375.364c0,0-3.008-8.75,3.009-4.102
c0,0,3.28,1.367,2.461,2.462C170.763,374.817,171.583,377.005,166.114,375.364z"/>
<path id="path198" fill="#FFFFCC" stroke="#000000" stroke-width="0.5" d="M171.821,375.945c0,0-4.101-10.595,3.761-5.127
c0,0,4.102,1.709,3.076,3.076C177.631,375.261,178.657,377.996,171.821,375.945z"/>
<path id="path202" stroke="#A5264C" stroke-width="2" d="M147.554,361.248c0,0,11.278-2.392,16.405,0.342
c0,0,5.127,1.026,6.152,0.684c1.025-0.341,3.761-0.684,3.761-0.684"/>
<path id="path206" stroke="#A5264C" stroke-width="2" d="M176.606,368.769c0,0,10.254-11.622,20.508-7.861
c5.995,2.198,5.128-0.685,5.812-3.077s0.854-5.98,5.126-8.544"/>
<path id="path210" fill="#FFFFCC" stroke="#000000" stroke-width="0.5" d="M191.303,355.096c0,0-3.418-9.229-5.811,1.709
s-5.126,14.014-6.493,16.407c0,0,0,4.443,7.177,4.101c0,0,9.228-0.342,9.57-2.734C196.089,372.186,194.721,362.273,191.303,355.096z
"/>
<path id="path214" stroke="#A5264C" stroke-width="2" d="M203.266,361.248c0,0,3.076-2.05,5.127-1.025"/>
<path id="path218" stroke="#A5264C" stroke-width="2" d="M208.82,347.234c0,0,2.479-4.187,6.58-4.869"/>
<path id="path222" fill="#B2B2B2" d="M141.06,378.68c0,0,15.38,2.734,19.141,1.367c0,0,7.52,0,0.342,1.709
c0,0-10.938,0-17.773-1.024C142.769,380.731,132.857,375.945,141.06,378.68z"/>
<path id="path226" fill="#FFFFCC" stroke="#000000" stroke-width="0.5" d="M153.023,299.042c0,0,15.039,0,16.748,0.684
c0,0,6.153,26.318,3.076,32.813c0,0-1.025,2.392-3.417-2.393c0,0-15.723-28.027-18.457-29.736
C148.238,298.7,151.997,299.042,153.023,299.042z"/>
<path id="path230" fill="#FFFFCC" stroke="#000000" stroke-width="0.5" d="M87.142,296.735c0,0,7.604,1.452,18.371,3.674
c0,0,4.103,19.141,6.836,23.242c2.734,4.101-0.342,4.102-3.417,1.709c-3.076-2.392-15.723-14.355-17.432-18.114
C89.791,303.485,87.142,296.735,87.142,296.735z"/>
<path id="path234" fill="#FFFFCC" stroke="#000000" stroke-width="0.5" d="M105.823,300.595c0,0,4.956,1.323,5.818,3.216
c0.86,1.892-1.028,4.708-1.028,4.708s-0.854,2.824-1.881,0.978C107.705,307.647,105.251,301.103,105.823,300.595z"/>
<path id="path238" d="M105.856,300.409c0,0,3.076,4.443,6.152,4.443s3.403-0.353,5.811,0.171c3.932,0.854,3.589-0.854,9.229,0.171
c2.255,0.41,4.442-0.342,6.835,0.684c2.393,1.025,5.127,0.342,6.152-1.367c1.025-1.708,5.127-5.297,5.127-5.297
s-10.938,1.537-13.33,2.221C131.832,301.435,112.692,302.46,105.856,300.409z"/>
<path id="path242" fill="#FFFFCC" stroke="#000000" stroke-width="0.5" d="M143.965,300.58c0,0-5.511,2.992-5.854,5.042
c-0.342,2.05,4.486,5.212,4.486,5.212s2.349,3.931,2.862,1.88C145.973,310.664,144.649,300.923,143.965,300.58z"/>
<path id="path246" fill="#FFFFCC" stroke="#000000" stroke-width="0.5" d="M111.935,305.25c0,0,5.987,9.56,6.173-0.021
c0,0,0.477-1.075-1.027-1.093C111.889,304.071,113.189,300.565,111.935,305.25z"/>
<path id="path250" fill="#FFFFCC" stroke="#000000" stroke-width="0.5" d="M118.069,305.463c0,0,6.77,9.559,6.226-0.08
c0,0,0.006-0.284-1.491-0.415C118.745,304.614,119.04,300.754,118.069,305.463z"/>
<path id="path254" fill="#FFFFCC" stroke="#000000" stroke-width="0.5" d="M124.232,305.469c0,0,6.802,9.081,6.23,0.822
c0,0,0.102-1.054-1.312-1.312C125.825,304.377,125.644,301.601,124.232,305.469z"/>
<path id="path258" fill="#FFFFCC" stroke="#000000" stroke-width="0.5" d="M130.108,305.537c0,0,6.75,9.879,7.047,1.521
c0,0,1.404-1.177-0.087-1.367C132.097,305.06,132.778,301.253,130.108,305.537z"/>
<path id="path262" fill="#E5E5B2" d="M99.198,308.553l-6.543-1.307c-2.222-4.273-4.016-9.528-4.016-9.528s5.426,0.854,16.107,3.247
c0,0,0.748,2.835,2.006,7.787L99.198,308.553z"/>
<path id="path266" fill="#E5E5B2" d="M154.797,304.57c-1.423-2.142-2.549-3.644-3.104-3.99c-2.574-1.609,0.966-1.287,1.931-1.287
c0,0,14.16,0,15.769,0.643c0,0,0.448,1.916,1.032,4.813C170.423,304.749,161.803,303.032,154.797,304.57z"/>
<path id="path270" fill="#CC7226" d="M200.6,186.524c23.688,3.384,45.494-27.07,46.998-35.342
c1.504-8.271-7.144-18.423-7.144-18.423c1.128-2.632-3.008-14.663-7.521-22.558c-4.511-7.896-18.099-7.063-33.086-7.896
c-13.535-0.752-29.326,19.174-30.454,20.678c-1.127,1.504,4.136,34.214,5.265,39.102c1.127,4.888-1.129,27.446-1.129,27.446
C202.788,181.756,176.914,183.141,200.6,186.524z"/>
<path id="path274" fill="#EA8E51" d="M170.017,123.538c-1.106,1.477,4.062,33.592,5.168,38.391
c1.107,4.799-1.106,26.947-1.106,26.947c27.917-7.588,3.321-6.275,26.577-2.953c23.257,3.322,44.666-26.578,46.144-34.699
c1.477-8.122-7.014-18.088-7.014-18.088c1.106-2.584-2.953-14.396-7.384-22.148c-4.43-7.751-17.769-6.934-32.484-7.751
C186.628,102.498,171.124,122.062,170.017,123.538z"/>
<path id="path278" fill="#EFAA7C" d="M170.639,124.092c-1.087,1.449,3.985,32.97,5.072,37.68c1.086,4.71-1.087,26.448-1.087,26.448
c26.834-7.827,3.261-6.159,26.086-2.897c22.825,3.261,43.839-26.085,45.288-34.057c1.449-7.971-6.885-17.752-6.885-17.752
c1.088-2.536-2.897-14.13-7.245-21.738c-4.349-7.608-17.44-6.806-31.885-7.608C186.942,103.44,171.726,122.643,170.639,124.092z"/>
<path id="path282" fill="#F4C6A8" d="M171.26,124.646c-1.066,1.422,3.911,32.348,4.977,36.969
c1.066,4.621-1.065,25.949-1.065,25.949c25.151-7.725,3.199-6.043,25.593-2.844c22.396,3.199,43.012-25.593,44.434-33.413
c1.423-7.821-6.753-17.418-6.753-17.418c1.066-2.489-2.844-13.863-7.109-21.328c-4.267-7.465-17.111-6.678-31.281-7.465
C187.257,104.384,172.327,123.224,171.26,124.646z"/>
<path id="path286" fill="#F9E2D3" d="M171.883,125.199c-1.046,1.394,3.835,31.726,4.881,36.258
c1.045,4.532-1.046,25.449-1.046,25.449c23.812-7.622,3.137-5.926,25.101-2.789c21.965,3.138,42.186-25.101,43.579-32.772
c1.396-7.669-6.624-17.083-6.624-17.083c1.046-2.439-2.789-13.597-6.972-20.918c-4.183-7.321-16.782-6.549-30.68-7.321
C187.571,105.328,172.928,123.805,171.883,125.199z"/>
<path id="path290" fill="#FFFFFF" d="M200.874,183.516c21.533,3.076,41.357-24.609,42.725-32.128s-6.494-16.748-6.494-16.748
c1.025-2.393-2.734-13.33-6.836-20.507c-4.103-7.178-16.453-6.421-30.079-7.178c-12.304-0.683-26.66,17.432-27.685,18.798
c-1.026,1.368,3.76,31.104,4.785,35.547c1.024,4.443-1.025,24.951-1.025,24.951C198.054,178.901,179.341,180.439,200.874,183.516z"
/>
<path id="path294" fill="#CCCCCC" d="M240.523,154.463c0,0-23.756,6.494-33.667,5.127c0,0-13.501-5.64-21.02,12.988
c0,0-3.076,6.153-4.785,7.861C179.341,182.148,240.523,154.463,240.523,154.463z"/>
<path id="path298" d="M243.769,152.583c0,0-24.781,10.425-33.325,10.083c0,0-14.014-3.931-21.19,8.544c0,0-7.178,7.862-9.912,9.229
c0,0-0.342,1.367,5.126-2.05l8.886,4.443c0,0,12.647,8.204,20.851-5.469c0,0,3.418-9.57,3.418-11.279s18.114-6.494,19.482-6.836
C238.471,158.907,244.111,155.318,243.769,152.583z"/>
<path id="path302" fill="#99CC32" d="M203.266,183.271c-5.871,0-13.025-3.303-13.025-8.642s7.154-10.692,13.025-10.692
c5.875,0,10.635,4.328,10.635,9.667S209.14,183.271,203.266,183.271z"/>
<path id="path306" fill="#659900" d="M200.17,169.015c-4.142,0.617-8.489,1.901-8.428,1.717c1.315-3.947,6.751-6.795,11.522-6.795
c3.671,0,6.908,1.69,8.819,4.262C212.085,168.199,207.542,167.917,200.17,169.015z"/>
<path id="path310" fill="#FFFFFF" d="M210.444,168.818c0,0-3.76-2.734-3.76-0.854C206.684,167.964,209.76,171.724,210.444,168.818z"
/>
<path id="path314" d="M201.899,175.762c-2.135,0-3.865-1.729-3.865-3.867c0-2.135,1.73-3.866,3.865-3.866
c2.138,0,3.868,1.731,3.868,3.866C205.766,174.031,204.035,175.762,201.899,175.762z"/>
<path id="path318" fill="#CC7226" d="M113.033,164.375c0,0-2.735-18.115-0.685-21.875c0,0,9.229-8.545,8.887-11.621
c0,0-0.341-15.381-1.366-16.064c-1.026-0.683-7.521-5.811-12.647-0.342c0,0-8.886,15.381-8.203,20.85v1.709
c0,0-6.494-0.342-7.86,1.367c0,0-1.025,4.443-2.052,4.785c0,0-2.393,2.05-0.684,4.443c0,0-1.709,2.051-1.367,5.469l6.494,3.418
c0,0,1.709,12.304,10.938,16.748C108.62,175.252,111.324,169.502,113.033,164.375z"/>
<path id="path322" fill="#FFFFFF" d="M112.179,162.803c0,0-2.461-16.303-0.615-19.688c0,0,8.307-7.69,7.998-10.458
c0,0-0.308-13.843-1.229-14.458c-0.922-0.615-6.768-5.229-11.381-0.308c0,0-7.998,13.843-7.384,18.765v1.538
c0,0-5.844-0.308-7.074,1.23c0,0-0.924,3.999-1.847,4.306c0,0-2.152,1.846-0.614,3.999c0,0-1.538,1.845-1.23,4.922l5.845,3.076
c0,0,1.538,11.074,9.845,15.073C108.207,172.591,110.64,167.417,112.179,162.803z"/>
<path id="path326" fill="#EB955C" d="M119.485,115.662c-0.931-0.735-7.332-5.666-12.33-0.333c0,0-8.664,14.996-7.997,20.328v1.666
c0,0-6.332-0.333-7.665,1.333c0,0-1,4.333-2,4.666c0,0-2.333,2-0.667,4.333c0,0-1.667,2-1.333,5.332l6.332,3.333
c0,0,1.667,11.997,10.663,16.329c4.028,1.94,6.665-3.666,8.331-8.664c0,0-2.666-17.662-0.667-21.328c0,0,8.999-8.332,8.665-11.331
C120.818,131.324,120.485,116.328,119.485,115.662z"/>
<path id="path330" fill="#F2B892" d="M119.1,116.507c-0.837-0.786-7.144-5.52-12.014-0.325c0,0-8.442,14.611-7.793,19.807v1.623
c0,0-6.169-0.324-7.468,1.299c0,0-0.975,4.221-1.948,4.546c0,0-2.273,1.949-0.649,4.221c0,0-1.624,1.948-1.299,5.195l6.169,3.247
c0,0,1.624,11.689,10.391,15.911c3.926,1.89,6.494-3.572,8.118-8.443c0,0-2.598-17.209-0.648-20.781c0,0,8.767-8.117,8.441-11.04
C120.399,131.769,120.074,117.157,119.1,116.507z"/>
<path id="path334" fill="#F8DCC8" d="M118.715,117.353c-0.743-0.837-6.955-5.375-11.698-0.316c0,0-8.22,14.228-7.587,19.286v1.581
c0,0-6.007-0.316-7.271,1.264c0,0-0.949,4.11-1.897,4.427c0,0-2.213,1.896-0.632,4.109c0,0-1.581,1.897-1.266,5.059l6.008,3.162
c0,0,1.581,11.381,10.116,15.492c3.822,1.84,6.323-3.478,7.904-8.22c0,0-2.529-16.756-0.632-20.234c0,0,8.537-7.904,8.22-10.749
C119.98,132.213,119.664,117.985,118.715,117.353z"/>
<path id="path338" fill="#FFFFFF" d="M112.179,162.717c0,0-2.461-16.217-0.615-19.602c0,0,8.307-7.69,7.998-10.458
c0,0-0.308-13.843-1.229-14.458c-0.649-0.889-6.768-5.229-11.381-0.308c0,0-7.998,13.843-7.384,18.765v1.538
c0,0-5.844-0.308-7.074,1.23c0,0-0.924,3.999-1.847,4.306c0,0-2.152,1.846-0.614,3.999c0,0-1.538,1.845-1.23,4.922l5.845,3.076
c0,0,1.538,11.074,9.845,15.073C108.207,172.591,110.64,167.332,112.179,162.717z"/>
<path id="path342" fill="#CCCCCC" d="M109.53,157.369c0,0-18.457-8.716-19.226-9.399c0,0,7.775,7.007,8.459,7.007
C99.447,154.976,109.53,157.369,109.53,157.369z"/>
<path id="path346" d="M94.919,152.071c0,0,15.722,3.076,15.722,6.836c0,2.488-0.208,13.954-4.785,12.646
C98.677,169.502,101.754,157.198,94.919,152.071z"/>
<path id="path350" fill="#99CC32" d="M102.096,155.318c0,0,7.672,1.26,8.544,3.589c0.513,1.367,1.08,8.466-3.588,9.399
C103.163,169.084,101.257,160.351,102.096,155.318z"/>
<path id="path354" d="M175.576,191.675c-0.425-1.488,0.695-1.376,2.226-1.836c1.709-0.513,12.134-3.76,12.817-5.981
c0.684-2.222,11.963,1.538,11.963,1.538c1.538,0.683,5.298,2.905,5.298,2.905c4.101,1.025,9.741,1.367,9.741,1.367
c2.051,0.854,4.956,3.247,4.956,3.247c12.476,8.715,23.071,2.563,23.071,2.563c17.09-5.64,11.963-20.337,11.963-20.337
c-2.562-7.69,0.172-10.595,0.172-10.595c0.17-3.247,6.322,2.222,6.322,2.222c2.223,3.588,2.905,7.861,2.905,7.861
c6.835,9.57,3.931-5.64,3.931-5.64c0.171-0.854-2.222-3.931-2.222-4.956c0-1.025-1.538-3.931-1.538-3.931
c-2.563-2.905-0.513-8.887-0.513-8.887c1.538-11.792-0.342-10.253-0.342-10.253c-1.026-1.538-8.888,7.006-8.888,7.006
c-1.879,2.906-7.006,4.272-7.006,4.272c-2.393,1.538-5.298,0.342-5.298,0.342c-2.222-0.342-7.006,5.64-7.006,5.64
c2.393-0.171,4.442,3.588,6.494,3.76c2.051,0.171,3.589-2.051,4.956-2.564c1.366-0.512,3.76,4.444,3.76,4.444
c0.341,2.222-4.443,6.323-4.443,6.323c-0.342,3.931-1.709,2.563-1.709,2.563c-2.562-0.512-3.588,2.735-4.442,6.665
c-0.855,3.931-4.443,4.272-4.443,4.272c-1.368,6.323-2.394,3.76-2.394,3.76c-0.172-4.785-5.299,0.171-5.299,0.171
c-1.024,1.709-4.956-0.171-4.956-0.171c-5.811-1.709-3.76-3.418-3.76-3.418c1.538-1.88,11.108,0,11.108,0
c1.88-1.367-4.956-4.785-4.956-4.785c-0.513-1.539,0.342-5.298,0.342-5.298c1.025-2.735,6.836-7.52,6.836-7.52
c8.033-1.026,5.641-2.393,5.641-2.393c-5.299-4.443-10.255,2.051-10.255,2.051c-1.88,5.298-16.748,18.115-16.748,18.115
c-4.102,2.906-1.88-2.905-5.298,0c-3.418,2.906-21.021-4.785-21.021-4.785c-9.88-1.019-12.214,12.432-15.229,9.766
C172.314,189.18,176.944,196.46,175.576,191.675z"/>
<path id="path358" d="M342.034,49.533c0,0-21.875,6.836-24.268,22.9c0,0-2.051,19.482,15.381,34.521c0,0,0.342,5.469,2.051,8.204
c0,0-1.367,4.101,14.697-2.393l23.241-7.178c0,0,5.469-2.051,9.911-9.571c4.443-7.519,17.432-23.583,14.356-45.116
c0,0,1.024-9.57-4.103-9.912c0,0-7.179-1.367-13.33,5.127c0,0-5.812,2.734-7.861,2.393L342.034,49.533z"/>
<path id="path362" d="M388.706,48.687c0,0,1.795-7.63-2.341-3.495c0,0-6.015,4.888-12.408,4.888c0,0-12.405,1.88-16.166,13.159
c0,0-3.384,22.935,3.384,27.822c0,0,4.136,6.392,10.15,0.752C377.341,86.173,390.588,60.342,388.706,48.687z"/>
<path id="path366" fill="#323232" d="M388.388,48.993c0,0,1.785-7.472-2.275-3.411c0,0-5.906,4.799-12.182,4.799
c0,0-12.183,1.845-15.874,12.919c0,0-3.321,22.517,3.323,27.316c0,0,4.061,6.275,9.967,0.738
C377.253,85.818,390.234,60.436,388.388,48.993z"/>
<path id="path370" fill="#666666" d="M388.068,49.299c0,0,1.777-7.313-2.207-3.328c0,0-5.798,4.71-11.958,4.71
c0,0-11.956,1.812-15.579,12.681c0,0-3.261,22.1,3.261,26.81c0,0,3.985,6.159,9.783,0.724
C377.164,85.462,389.88,60.53,388.068,49.299z"/>
<path id="path374" fill="#999999" d="M387.747,49.605c0,0,1.771-7.154-2.141-3.244c0,0-5.688,4.622-11.729,4.622
c0,0-11.73,1.777-15.285,12.441c0,0-3.2,21.684,3.197,26.304c0,0,3.911,6.043,9.599,0.711S389.525,60.624,387.747,49.605z"/>
<path id="path378" fill="#CCCCCC" d="M387.428,49.911c0,0,1.762-6.995-2.074-3.16c0,0-5.579,4.533-11.506,4.533
c0,0-11.505,1.743-14.991,12.202c0,0-3.138,21.266,3.138,25.798c0,0,3.836,5.927,9.414,0.697
C376.986,84.751,389.173,60.718,387.428,49.911z"/>
<path id="path382" fill="#FFFFFF" d="M387.108,50.217c0,0,1.752-6.836-2.007-3.076c0,0-5.47,4.443-11.28,4.443
c0,0-11.278,1.709-14.697,11.963c0,0-3.074,20.849,3.076,25.292c0,0,3.761,5.811,9.229,0.684
C376.896,84.396,388.817,60.813,387.108,50.217z"/>
<path id="path386" fill="#992600" d="M206.342,223.847c0,0-17.431-16.406-24.267-17.089c0,0-29.395-3.418-42.041,11.962
c0,0,15.038-17.431,38.623-12.646c0,0-18.457-3.76-29.053-1.025c0,0-14.355,0-22.559,11.962l-2.393,4.103
c0,0,3.417-12.646,19.141-17.773c0,0,19.481-4.102,28.711,0c0,0-18.458-5.811-27.002-4.102c0,0-25.977-2.05-36.914,20.508
c0,0,3.418-12.305,16.064-18.457c0,0,11.621-7.52,29.053-5.127c0,0,12.305,2.734,16.748,4.785c4.443,2.051,3.418-0.342-3.761-4.443
c0,0-4.784-8.545-16.748-8.203c0,0-36.571,3.076-45.458,13.33c0,0,11.621-9.57,20.508-11.962c0,0,19.141-6.836,26.317-6.152
c0,0,21.191,0.854,27.686-2.563c0,0-9.57,4.272-6.836,7.007c2.734,2.734,8.545,9.229,8.545,10.254
c0,1.025,20.679,19.909,23.754,23.669L206.342,223.847z"/>
<path id="path390" fill="#CCCCCC" d="M324.602,389.616c0,0-13.244-31.188-23.925-39.307c0,0,22.217,13.673,25.208,29.053
C325.885,379.362,325.885,387.907,324.602,389.616z"/>
<path id="path394" fill="#CCCCCC" d="M364.762,396.024c0,0-22.645-46.995-38.451-67.504c0,0,37.171,32.044,41.442,54.688
l0.427,4.699l-2.563-2.136C365.616,385.771,365.191,393.461,364.762,396.024z"/>
<path id="path398" fill="#CCCCCC" d="M413.04,354.582c0,0-53.403-50.842-54.687-52.977c0,0,51.697,56.396,54.26,62.804
C412.614,364.409,410.906,356.719,413.04,354.582z"/>
<path id="path402" fill="#CCCCCC" d="M251.971,391.752c0,0,16.663-44.433,32.897-25.206c0,0,12.816,8.544,12.39,11.108
c0,0-3.418-5.555-18.799-5.128C278.46,372.526,262.225,369.964,251.971,391.752z"/>
<path id="path406" fill="#CCCCCC" d="M414.75,282.807c0,0-38.452-24.353-44.86-25.635c-10.088-2.017,42.297,24.78,46.569,33.752
C416.459,290.924,418.169,288.788,414.75,282.807z"/>
<path id="path410" d="M285.981,373.895c0,0,17.433-1.709,23.242-7.52l3.761,3.076l15.038-32.813l3.076,4.444
c0,0,12.304-12.646,11.622-19.482c-0.686-6.836,10.937,5.127,10.937,5.127s-0.685-9.911,5.468-4.103c0,0-2.05-13.329,5.128-6.493
c0,0-9.005-25.769,10.255-3.76c4.783,5.469,1.024-0.342,1.024-0.342s-22.218-41.016-3.761-28.71c0,0,1.709-19.482,0.685-23.242
c-1.025-3.76-2.734-22.901-6.837-27.344c-4.101-4.443,0.343-5.811,5.128-1.368c0,0-9.57-20.507,1.709-10.253
c0,0-3.075-12.988-6.837-15.38c0,0-4.784-14.697,8.203-5.469c0,0-3.76-10.596-6.493-13.33c0,0-9.913-23.584-3.761-19.482
l3.761,3.076c0,0-5.811-11.963-0.343-8.203c5.47,3.76,5.47,3.417,5.47,3.417s-18.114-28.369-0.685-13.329
c0,0-6.972-11.893-9.912-17.773c0,0-16.062-17.432-3.76-11.963l4.102,1.367c0,0-7.52-8.545-14.354-9.912
c-6.836-1.367,2.051-6.836,7.52-5.127c5.468,1.709,18.798,8.203,18.798,8.203s10.938,16.064,14.355,16.406
c0,0-17.09-6.494-11.963,0.342c0,0,12.305,11.962,6.152,11.621c0,0-5.128,6.153-1.025,13.672c0,0-15.773-15.715-3.076,6.152
l5.812,14.014c0,0-20.851-21.191-11.279-2.393c0,0,14.697,20.166,16.407,20.507c1.709,0.342,5.468,7.861,5.468,7.861l-3.759-1.708
l4.441,7.52c0,0-9.569-10.254-4.441,1.025l4.783,12.305c0,0-17.432-18.798-5.811,6.494c0,0-14.013-4.443-6.494,10.253
c0,0-1.366,13.672-1.024,18.117c0.341,4.443,1.367,28.71-2.394,35.547c-3.76,6.836,5.127,23.241,6.836,26.659
s4.784,12.646-2.733,4.786c-7.521-7.861-3.76-3.077-2.051,4.442s6.835,20.849,6.151,25.635c0,0-1.025,1.025-3.761-2.051
c0,0-12.646-19.483-11.278-7.179c0,0-1.023,6.837-3.76,14.355c0,0-2.734,9.229-2.734,1.709c0,0-2.733-14.355-5.127-7.861
c-2.392,6.495-5.469,11.622-7.861,13.672c-2.392,2.051-6.836-17.432-7.859-8.545c0,0-10.254-10.595-14.355,3.418l-9.912,14.014
c0,0-0.342-10.596-1.367-5.469C320.501,372.527,294.867,377.655,285.981,373.895z"/>
<path id="path414" d="M256.586,69.016c0,0-9.912-6.836-13.33-6.494c-3.418,0.342,23.584-7.52,58.788,16.064
c0,0,4.102,2.393,7.178,2.051c0,0,2.733,2.05,0.342,5.126c0,0-7.521,8.203,2.05,17.773c0,0,15.724,5.811,10.938-1.708
c0,0,9.229,3.417,11.278,6.836c2.052,3.417,1.026,0,1.026,0s-5.471-6.152-10.597-10.596c0,0-4.443-1.709-6.836-8.887
c-2.394-7.177-4.442-15.722-0.685-18.457c0,0-3.418,3.76-2.733,0.342s3.76-6.495,5.127-6.836c1.365-0.342,15.38-13.843,21.19-14.184
c0,0-7.86,1.196-10.425,0.341c-2.563-0.855-25.293-10.595-30.419-11.621c0,0-14.354-5.639-4.102-3.931
c0,0,30.59,3.247,46.141,14.526c0,0-6.152-7.177-21.875-13.159c0,0-18.969-10.767-49.046-6.494c0,0-15.21,2.734-21.875,4.272
c0,0-2.222-0.512-2.733-0.854c-0.514-0.342-10.598-8.032-34.182-2.051c0,0-14.525,3.931-21.875,8.032c0,0-12.988,1.026-16.063,3.76
c0,0-15.895,12.475-17.604,13.159s-11.45,7.178-12.133,7.52c0,0,21.02-5.64,23.071-7.691c2.051-2.05,16.919-4.272,18.969-3.076
c2.051,1.196,9.228,0.684,1.025,1.196c0,0,64.599,12.646,65.282,14.355C253.169,70.041,256.586,69.016,256.586,69.016z"/>
<path id="path418" fill="#CC7226" d="M317.596,61.154c0,0-8.716-6.323-10.425-6.323s-12.304-8.715-15.895-8.374
c-3.588,0.342-14.013-8.203-37.425-1.196c0,0-0.513-1.709,2.563-2.393c0,0,5.469-1.88,5.81-2.393c0,0,17.261-3.589,23.413-0.513
c0,0,7.861,2.222,13.159,7.519c0,0,9.569,2.735,12.306,1.88c0,0,7.519,1.88,7.861,3.418c0,0,4.955,2.563,3.417,4.785
C322.382,57.565,322.723,58.933,317.596,61.154z"/>
<path id="path422" fill="#CC7226" d="M306.94,59.353c0.69,0.54,1.562,0.624,2.077,1.315c0.201,0.268-0.046,0.546-0.316,0.629
c-0.89,0.271-1.792-0.216-2.768,0.286c-0.344,0.177-0.893,0.021-1.365-0.105c-1.394-0.377-2.957-0.398-4.401,0.189
c-1.696-0.965-3.713-0.466-5.491-1.321c-0.05-0.023-0.239,0.273-0.302,0.25c-2.604-0.978-5.802-0.736-7.878-2.688
c-2.075-0.352-4.09-0.747-6.164-1.328c-1.554-0.435-2.757-1.28-4.143-1.991c-1.176-0.605-2.422-1.051-3.731-1.369
c-1.593-0.386-3.157-0.291-4.774-0.735c-0.08-0.022-0.244,0.272-0.312,0.25c-0.277-0.093-0.524-0.591-0.671-0.546
c-1.438,0.446-2.708-0.384-4.13-0.092c-1.007-1.046-2.482-0.836-3.804-1.214c-2.533-0.724-5.228,0.361-7.816-0.495
c3.515-1.574,7.52-0.521,10.989-2.289c1.989-1.014,4.265-0.072,6.46-0.721c0.416-0.123,1.008-0.295,1.35,0.276
c0.113-0.116,0.27-0.32,0.318-0.296c2.095,0.988,4.071,2.077,6.192,2.988c0.292,0.125,0.746-0.074,0.961,0.099
c1.299,1.039,2.959,0.951,4.148,1.993c1.45-0.429,2.982-0.104,4.46-0.637c0.065-0.023,0.266,0.268,0.294,0.249
c0.966-0.639,1.953-0.407,2.715-0.147c0.289,0.098,0.854,0.309,1.116,0.373c0.962,0.236,1.693,0.646,2.7,0.802
c0.098,0.016,0.257-0.274,0.317-0.251c0.959,0.375,1.85,0.327,2.411,1.321c0.115-0.116,0.256-0.319,0.326-0.295
c0.878,0.289,1.432,0.934,2.373,1.14c0.415,0.09,0.937,0.625,1.43,0.776c2.043,0.625,3.619,1.931,5.493,2.696
C305.651,58.729,306.399,58.928,306.94,59.353z"/>
<path id="path426" fill="#CC7226" d="M241.458,47.193c-2.152-1.474-4.175-2.419-6.263-3.945c-0.154-0.114-0.462,0.032-0.635-0.073
c-0.86-0.52-1.619-1.017-2.458-1.611c-0.46-0.327-1.163-0.317-1.597-0.537c-2.173-1.104-4.42-1.581-6.562-2.602
c0.583-0.545,1.542-0.336,2.051-1.025c0.167,0.239,0.371,0.481,0.672,0.318c1.433-0.772,3.014-0.903,4.446-0.826
c1.456,0.079,2.926,0.339,4.442,0.572c0.263,0.04,0.433,0.487,0.708,0.57c1.904,0.567,3.945,0.118,5.756,0.834
c1.359,0.538,2.701,1.241,3.76,2.33c0.216,0.222-0.062,0.479-0.302,0.645c0.332-0.093,0.564,0.083,0.66,0.351
c0.072,0.204,0.072,0.462,0,0.667c-0.096,0.267-0.334,0.353-0.653,0.396c-1.203,0.163,0.312-1.017-0.287-0.634
c-1.088,0.696-0.449,1.897-1.087,2.98c-0.238-0.166-0.436-0.352-0.342-0.684c0.2,0.446-0.313,0.694-0.458,0.964
C242.982,46.502,242.214,47.711,241.458,47.193z"/>
<path id="path430" fill="#CC7226" d="M213.689,53.472c-2.694-0.679-5.301-0.581-7.878-1.67c-0.058-0.024-0.249,0.272-0.303,0.249
c-1.167-0.507-1.951-1.333-2.871-2.227c-0.78-0.759-2.197-0.428-3.286-0.844c-0.276-0.106-0.451-0.543-0.707-0.577
c-1.042-0.134-1.834-0.945-2.727-1.433c1.996-0.679,4.056-0.653,6.16-0.98c0.097-0.015,0.221,0.259,0.334,0.259
c0.116,0,0.228-0.189,0.342-0.303c0.167,0.239,0.425,0.518,0.645,0.301c0.467-0.461,0.943-0.299,1.404-0.265
c0.123,0.009,0.23,0.268,0.344,0.268c0.116,0,0.229-0.266,0.342-0.266c0.116,0.001,0.229,0.266,0.342,0.266
c0.115,0,0.228-0.189,0.342-0.303c0.591,0.668,1.348,0.195,2.05,0.348c0.887,0.194,1.115,1.175,2.033,1.43
c4.029,1.114,7.563,2.947,11.292,4.73c0.262,0.125,0.441,0.338,0.348,0.67c0.229,0,0.496-0.075,0.658,0.038
c0.904,0.625,1.793,1.094,2.389,2.032c0.186,0.29-0.096,0.638-0.295,0.593C220.861,54.934,217.438,54.415,213.689,53.472z"/>
<path id="path434" fill="#CC7226" d="M201.846,91.25c-1.36-1.042-1.859-2.777-2.823-4.308c-0.183-0.291,0.052-0.559,0.321-0.635
c0.479-0.136,0.943,0.272,1.292,0.445c1.491,0.736,2.802,1.798,4.509,1.917c1.7,1.909,5.34,2.238,5.347,5.127
c0,0.734-1.22-0.05-1.588,0.683c-2.094-0.856-4.136-0.769-6.169-2.022C202.209,92.131,202.491,91.744,201.846,91.25z"/>
<path id="path438" fill="#CC7226" d="M178.315,46.324c0.115,0,6.123,0.2,6.109,0.297c-0.039,0.264-6.645,1.161-6.955,1.015
c-0.14-0.063-6.559,2.012-6.673,1.897C171.025,49.418,178.088,46.324,178.315,46.324z"/>
<path id="path442" d="M191.474,54.66c0,0-12.646,1.538-16.406,2.563c-3.76,1.025-19.652,7.52-22.217,9.229
c0,0-11.45,4.614-25.976,21.704c0,0,6.494-2.905,8.374-5.298c0,0,11.621-10.767,11.451-8.544c0,0,10.424-7.349,9.91-5.469
c0,0,20.851-9.57,19.142-6.836c0,0,18.457-3.931,17.602-2.222c0,0,16.065,3.76,13.672,3.931c0,0-4.956,1.026,0.514,4.102
c0,0-2.905,3.76-7.521,0.342s-2.051-1.538-6.323-0.684c0,0-2.222,0.684-6.151-2.734c0,0-4.785-3.931-12.306-0.855
c0,0-26.146,10.767-27.854,11.28c0,0-3.076,2.393-5.127,5.469c0,0-4.956,3.759-7.52,4.956c0,0-10.937,9.912-11.963,11.108
c0,0-2.904,4.443-3.589,4.785c0,0,5.469-3.247,7.179-4.956c0,0,11.962-8.545,16.576-9.229c0,0,3.761-2.562,4.444-3.76
c0,0,12.304-7.861,15.893-7.861c0,0,7.861,4.443,9.912-1.538c0,0,4.956-1.538,9.741-0.513c0,0,2.734-2.222,2.051-4.102
c0,0,1.367-1.538,2.222,1.709c0,0,2.904,3.076,7.007,1.367c0,0,3.418-0.171,1.709,1.879c0,0-3.76,3.247-13.843,3.418
c0,0-10.597,0.513-24.609,7.007c0,0-25.463,8.887-33.325,17.773c0,0-5.468,7.52-10.083,8.545c0,0-4.956,0.684-10.083,7.006
c0,0,8.374-4.956,16.064-4.956c0,0,3.418-2.05,0.171,1.025c0,0-3.076,6.494-1.709,11.108c0,0-0.513,4.443-1.196,5.81
c0,0-6.665,10.938-6.665,12.988c0,2.051,1.025,10.425,1.367,10.938s-0.854-1.367,2.393,0.684c3.247,2.05,5.64,3.418,6.323,5.811
s-1.709-4.615-1.88-6.152c-0.17-1.538-3.76-7.69-3.076-9.741c0,0,0.854,0.854,1.538,2.051c0,0-0.512-0.513,0-3.589
c0,0,0.685-4.443,1.88-7.177c1.196-2.734,2.905-5.981,3.247-6.665c0.342-0.684,0.342-5.64,1.538-3.418l2.905,2.222
c0,0-2.394-2.222-0.514-4.101c0,0-0.854-4.786,0.685-7.007c0,0,5.98-7.178,7.349-8.033c1.367-0.854,0.171-0.512,0.171-0.512
s5.127-3.589,0.171-2.222c0,0-3.418,1.367-5.98,1.367c0,0-6.494,1.709-3.076-1.88c3.417-3.588,11.963-8.203,15.209-8.032
l0.685,1.367l9.569-2.051l-1.024,0.684c0,0-0.171-0.171,3.418-0.513c3.588-0.342,8.544,0.854,9.74-0.684
c1.197-1.538,4.102-2.393,3.761-1.196c-0.343,1.196-0.514,2.905-0.514,2.905s4.273-4.956,3.761-3.076
c-0.514,1.88-7.521,6.323-8.717,11.621l8.887-7.006l3.076-2.563c0,0,3.075,1.88,3.246,0.513c0.172-1.367,4.103-6.323,5.127-6.152
c1.025,0.17,2.733-2.222,2.563,0c-0.171,2.222,6.323,6.836,6.323,6.836s2.733-1.538,3.931-0.342
c1.196,1.196,4.785-16.918,4.785-16.918l21.362-9.058l37.256-2.905l-14.526-5.811L191.474,54.66z"/>
<path id="path446" fill="none" stroke="#4C0000" d="M207.026,224.702c0,0-12.816-14.355-19.995-16.577c0,0-11.449-5.811-32.47,0.854
"/>
<path id="path450" fill="none" stroke="#4C0000" d="M184.297,206.929c0,0-21.533-6.836-34.691-3.247c0,0-15.723,1.708-22.899,13.5"
/>
<path id="path454" fill="none" stroke="#4C0000" d="M181.22,205.903c0,0-14.526-6.152-27.173-8.032c0,0-14.185-2.222-28.368,3.931
c0,0-10.424,5.127-15.039,13.842"/>
<path id="path458" fill="none" stroke="#4C0000" d="M182.075,206.245c0,0-13.159-9.399-14.014-10.595c0,0-5.98-9.399-17.09-9.741
c0,0-18.286,0.684-32.983,7.52"/>
<path id="path462" d="M180.96,198.561c1.317,1.25,24.356,25.97,24.356,25.97c30.078,31.274,6.153,2.051,6.153,2.051
c-6.495-4.102-14.354-20.166-14.354-20.166c-1.025-2.393,11.963,6.152,11.963,6.152c3.418,0.684,15.039,17.09,15.039,17.09
c-5.812-2.05-1.708,4.102-1.708,4.102c2.392,1.709,19.824,15.04,19.824,15.04c3.076,3.417,6.494,4.785,6.494,4.785
c11.962-4.443,6.494,6.837,6.494,6.837c2.051,5.809,6.836-4.103,6.836-4.103c9.57-14.356-4.442-12.305-4.442-12.305
c-25.636,2.394-31.446-11.28-31.446-11.28c-2.05-2.051,5.469,0,5.469,0c7.179,1.708-6.152-10.596-6.152-10.596
c2.052,0,9.912,5.811,9.912,5.811c8.888,7.861,10.598,6.152,10.598,6.152c15.38-7.52,24.267-1.025,24.267-1.025
c1.709,1.367-3.076,7.177-1.709,11.622c1.367,4.443,5.469,15.039,5.469,15.039c-2.05,1.366-1.709,10.596-1.709,10.596
c14.356,19.824,6.152,18.115,6.152,18.115c-13.33-0.343-0.685,6.151-0.685,6.151c2.735,1.709,10.254,7.861,10.254,7.861
c-2.393-1.025-3.76,3.418-3.76,3.418c4.103,3.418,1.709,7.521,1.709,7.521c-5.127,1.024-6.151,4.442-6.151,4.442
c5.811,6.837-2.734,7.178-2.734,7.178c3.076,3.759-1.025,14.014-1.025,14.014c-4.101,0-9.569,4.784-9.569,4.784
c2.051,4.103-6.836,8.888-6.836,8.888c-7.178,1.367-4.785,7.178-4.785,7.178c-6.836,5.127-8.886,18.798-8.886,18.798
c-0.685,8.887-2.735,11.621,1.708,9.912c4.442-1.709,3.76-12.305,3.76-12.305c-4.103-13.33,32.47-27.001,32.47-27.001
c3.417-1.367,4.102-5.811,4.102-5.811c1.709,0.341,9.229,6.836,9.229,6.836c6.493,9.57,6.835,1.709,6.835,1.709
c1.026-3.077-0.342-8.204-0.342-8.204c5.127-18.456-6.835-23.925-6.835-23.925c-8.545-28.711,3.418-21.532,3.418-21.532
c2.392,4.784,11.621,9.228,11.621,9.228l3.075-2.05c-1.366-4.103,5.812-9.229,5.812-9.229c2.393,5.47,7.519-1.366,7.519-1.366
c3.077-20.851,13.673-8.546,13.673-8.546c3.417,1.025,4.443-4.785,4.443-4.785c3.075-8.886,0-20.508,0-20.508
c3.075-0.341,11.279,4.786,11.279,4.786c2.392-3.077-5.471-17.432-2.051-15.381c3.417,2.052,7.177,3.418,7.177,3.418
c0.684-1.71-7.861-12.305-7.861-12.305c-3.76-2.393-8.203-19.824-8.203-19.824c6.152,3.076-2.392-9.912-2.392-9.912
c0-2.734,5.126-12.304,5.126-12.304c-0.684-5.811,0-5.469,0-5.469c2.394,1.025,9.229,2.393,3.418-3.076
c-5.812-5.469,0.685-9.57,0.685-9.57c3.76-2.393-7.86-2.051-7.86-2.051c-4.443-3.76-4.103-7.177-4.103-7.177
c6.835,1.709-5.47-10.596-7.52-13.672c-2.051-3.076,6.151-7.519,6.151-7.519c11.279-3.077,1.367-5.811,1.367-5.811
c-16.748,0.342-7.52-8.887-7.52-8.887c5.127,0.342,3.76-1.708,3.76-1.708c-4.443-1.025-12.646-6.494-12.646-6.494
c-3.418-3.076-0.343-2.393-0.343-2.393c14.355,1.026-10.253-8.544-10.253-8.544c6.835,0-8.546-8.887-8.546-8.887
c-1.709-1.367-4.442-7.861-4.442-7.861c-5.127-4.444-9.229-10.254-9.229-10.254c-0.342-3.76-4.443-7.861-4.443-7.861
c-9.912-11.621-14.696-11.279-14.696-11.279c-12.647-3.076-17.09-2.393-17.09-2.393l-45.118,3.759
c-22.56,10.938-15.894,28.882-15.894,28.882c5.47,7.177,13.33,3.93,13.33,3.93c3.932-5.298,13.844-3.417,13.844-3.417
c17.432,2.734,15.21-0.342,15.21-0.342c-2.052-3.931-15.895-9.229-16.065-9.741c-0.171-0.513-7.689-3.418-7.689-3.418
c-2.564-1.025-6.323-8.887-6.323-8.887c-2.734-2.905,10.766,2.051,10.766,2.051c-1.024,0.854,5.298,4.272,5.298,4.272
c14.869-0.854,23.927,8.374,23.927,8.374c9.228,14.184,9.399,7.178,9.399,7.178c2.393-8.032-7.69-26.147-7.69-26.147
c0.342-1.709,7.348,3.93,7.348,3.93c1.197-1.708,1.88,3.247,1.88,3.247c0.171,2.051,3.418,8.886,3.418,8.886
c2.394,11.108,5.468,4.785,5.468,4.785l3.932,8.033c1.195,2.222-3.932,8.716-3.932,8.716c-0.17,2.393,0.514,2.221-4.271,8.715
c-4.785,6.494-1.879,10.254-1.879,10.254c-1.196,5.639,6.322,5.298,6.322,5.298c2.223,1.879,5.128,1.879,5.128,1.879
c1.537,1.709,3.588,1.197,3.588,1.197c1.367-3.247,6.665-1.538,6.665-1.538c1.195-2.051,8.202-2.393,8.202-2.393
c0.854-2.222,1.197-3.589,4.103-4.102c2.905-0.513-18.115-37.255-18.115-37.255c5.469-0.684-1.538-11.28-1.538-11.28
c-1.879-5.639,7.861,6.836,9.741,8.033c1.879,1.196,2.734,3.076,1.368,2.905c-1.368-0.17-2.906,1.709-1.709,1.88
c1.197,0.171,12.305,12.988,15.209,21.704c2.906,8.715,8.032,12.133,13.329,17.26c5.298,5.126,4.615,25.805,4.615,25.805
c-0.343,7.519,4.784,16.577,4.784,16.577c1.709,3.247-1.88,18.799-1.88,18.799c-1.709,1.879-0.514,2.563-0.514,2.563
c0.854,1.025,6.666,12.305,6.666,12.305c-1.538-0.171,1.538,2.905,1.538,2.905c4.442,5.126-1.026,2.563-1.026,2.563
c-5.126-1.368,0.854,7.006,0.854,7.006c1.026,1.538-6.664-2.393-6.664-2.393c-7.86-0.513,2.052,5.64,2.052,5.64
c7.349,6.152-2.394,2.393-2.394,2.393c-3.931-1.538-1.195,4.272-1.195,4.272c2.733,1.367,17.432,7.348,17.432,7.348
c0.341,3.249-2.223,7.521-2.223,7.521c0.343,3.418-1.536,6.322-1.536,6.322c-1.026,7.007-1.539,7.691-1.539,7.691
c-3.589,0.17-9.912,11.963-9.912,11.963c-1.538,2.221-10.254,12.476-10.254,12.476c-1.709,5.981-17.09-0.171-17.09-0.171
c-5.639,2.904-3.931,0-3.931,0c-0.342-1.88,3.76-7.008,3.76-7.008c5.98-2.222,3.76-11.449,3.76-11.449
c3.419-1.196-6.152-3.589-5.981-4.614c0.172-1.026,5.128-2.222,5.128-2.222c6.836-1.709,3.075-3.759,3.075-3.759
c-0.512-3.419,2.052-8.204,2.052-8.204c9.912-0.684,0-14.527,0-14.527c-9.229-6.494-10.083-11.449-10.083-11.449
c10.766-7.007,3.759-17.603,3.931-20.679c0.17-3.076,1.196-21.533,1.196-21.533c-1.708-5.298-4.272-16.919-4.272-16.919
c1.88-4.443,8.202-15.209,8.202-15.209c2.393-3.589,9.913-7.69,8.031-10.254c-1.879-2.563-8.543-1.025-8.543-1.025
c-6.665-1.196-6.152,3.247-6.152,3.247c-1.367,0.854-2.051,5.127-2.051,5.127c-0.616,6.778-8.203,12.134-8.203,12.134
c-9.57,5.298-1.709,8.715-1.709,8.715c5.127,5.64-3.247,5.811-3.247,5.811c-9.399-1.538-2.393,7.177-2.393,7.177
c9.229,10.938,6.665,13.33,6.665,13.33c-8.716,0.854,2.051,8.715,2.051,8.715s-0.684-1.708-0.514-0.17
c0.171,1.538,2.734,5.127,3.418,6.836c0.685,1.708-2.733,1.88-2.733,1.88c0.512,8.203-12.647,4.614-12.647,4.614s0,0-1.367,0.171
s-10.937-0.512-15.894-2.393c-4.956-1.879-10.766-1.879-10.766-1.879s-3.418,1.538-9.913,1.367
c-6.494-0.171-13.33,2.221-13.33,2.221c-3.76-0.342,3.589-4.101,3.76-3.931c0.171,0.171,4.956-4.614-1.88-4.101
c-18.625,1.397-27.856-7.349-27.856-7.349c-1.709-1.197-3.931-3.589-3.931-3.589c-8.545-1.709,1.196,10.596,1.196,10.596
c1.024,1.196-0.171,2.05-0.171,2.05c-0.685-1.367-7.35-5.981-7.35-5.981C184.116,201.825,182.952,200.685,180.96,198.561z"/>
<path id="path466" fill="#4C0000" d="M160.542,188.643c0,0,9.912,4.785,12.133,7.178c2.222,2.393,14.185,12.133,14.185,12.133
s-4.613-1.709-6.836-3.247c-2.222-1.538-11.449-8.544-11.449-8.544S165.327,191.036,160.542,188.643z"/>
<path id="path470" fill="#99CC32" d="M110.975,161.985c0.288-0.126-0.16-2.444-0.334-2.908c-0.873-2.33-8.544-3.589-8.544-3.589
c-0.194,1.167-0.241,2.53-0.15,3.93C101.946,159.419,106.105,164.134,110.975,161.985z"/>
<path id="path474" fill="#659900" d="M110.975,161.814c-0.384,0.135-0.013-2.336-0.163-2.737c-0.874-2.33-8.716-3.674-8.716-3.674
c-0.194,1.167-0.241,2.53-0.15,3.93C101.946,159.333,105.593,163.707,110.975,161.814z"/>
<path id="path478" d="M107.222,161.937c-0.534,0-0.966-0.974-0.966-2.176c0-1.2,0.433-2.175,0.966-2.175
c0.534,0,0.967,0.975,0.967,2.175C108.19,160.963,107.757,161.937,107.222,161.937z"/>
<path id="path486" d="M68.259,245.723c0,0-4.785,8.544,16.406,3.417c0,0,11.962-1.025,14.013-3.076
c1.026,0.684,8.175,3.19,10.596,3.76c5.812,1.367,12.988-7.178,12.988-7.178s3.931-8.972,6.324-8.972
c2.392,0-0.343,1.368-0.343,1.368s-5.64,8.63-5.298,9.998c0,0-4.442,17.09-18.114,17.772c0,0-13.801,0.813-12.646,5.812
c0,0,7.521-2.051,9.57,0c0,0,9.229-0.342,2.393,5.127l-5.81,9.912c0,0,0.12,3.348-8.545,0.342
c-8.374-2.906-17.175-13.929-17.175-13.929S58.988,257.643,68.259,245.723z"/>
<path id="path490" fill="#E59999" d="M67.233,249.141c0,0-1.708,8.203,29.736-0.684c0,0,3.759,0,5.811,0.684
s12.305,3.075,14.015,2.051c0,0-6.153,11.62-16.065,10.254c0,0-11.278,1.366-10.937,5.469c0,0,3.418,6.152,7.52,8.203
c0,0,2.394,2.051,2.05,4.784c-0.341,2.735-2.733,4.103-4.441,4.785c-1.709,0.685-4.444-2.05-5.812-2.05
c-1.366,0-8.545-5.469-12.304-9.57c-3.76-4.103-10.938-14.354-10.596-16.748C66.55,253.926,67.233,249.141,67.233,249.141z"/>
<path id="path494" fill="#B26565" d="M69.968,264.051c2.221,3.376,4.956,6.964,6.836,9.016c3.759,4.102,10.938,9.57,12.304,9.57
c1.367,0,4.103,2.734,5.812,2.05c1.708-0.683,4.101-2.05,4.441-4.785c0.343-2.733-2.05-4.784-2.05-4.784
c-2.62-1.311-4.961-4.294-6.311-6.279c0,0,0.158,2.177-4.285,1.494c-4.443-0.684-8.887-3.076-10.253-5.812
c-1.368-2.733-3.418-4.784-2.051-1.709c1.366,3.077,3.418,6.152,4.785,6.495c1.367,0.342,1.025,1.366-1.024,1.025
c-2.051-0.343-4.443-0.684-8.203-5.127L69.968,264.051L69.968,264.051z"/>
<path id="path498" fill="#992600" d="M67.746,246.064c0,0,1.538-11.622,2.562-15.04c0,0-0.684-5.81,1.367-9.399
s3.76-8.886,6.323-13.5c2.562-4.614,2.734-8.032,6.152-9.399c3.417-1.367,8.544-8.716,10.938-9.571
c2.393-0.854,2.222-0.17,2.222-0.17s5.812-12.646,17.433-9.229c0,0-13.844-2.393-0.343-10.425c0,0-4.102,0.94-1.281-5.041
c1.881-3.989,1.452,1.794-7.946,11.877c0,0-4.272,7.349-8.716,9.912s-14.697,8.545-15.723,11.792s-3.76,8.203-5.469,9.57
c-1.709,1.367-4.102,4.956-4.443,7.861c0,0-1.024,3.417-2.222,4.443c-1.196,1.025-1.368,3.759-1.368,5.469
c0,1.708-1.708,4.101-1.538,6.151c0,0,0.685,16.236,0.343,17.945L67.746,246.064z"/>
<path id="path502" fill="#FFFFFF" d="M60.398,249.996c0,0-1.709-1.197-5.469,3.93c0,0,6.237,28.197,6.237,29.395
c0,0,0.939-1.794-0.171-7.947c-1.111-6.152-1.88-17.005-1.88-17.005L60.398,249.996z"/>
<path id="path506" fill="#992600" d="M78.854,198.213c0,0-15.039,2.734-14.696,27.685l-0.684,21.192c0,0-1.024-21.875-2.051-23.243
c-1.025-1.367,2.393-10.937-0.342-5.811c0,0-11.962,11.963-5.126,30.079c0,0,1.281,2.82-1.282-1.11c0,0-3.931-10.768-2.991-16.236
c0,0,0.171-1.88,1.794-4.272c0,0,7.35-9.998,9.655-11.963c0,0,1.539-12.304,14.697-16.748
C77.828,197.786,82.699,195.82,78.854,198.213z"/>
<path id="path510" d="M197.969,141.646c0.564-0.303,0.556-1.132,1.052-1.28c0.982-0.293,1.122-1.206,1.564-1.875
c0.746-1.127,0.911-2.437,1.408-3.711c0.232-0.598,0.256-1.415-0.013-1.979c-1.003-2.121-1.603-4.213-2.835-6.286
c-0.229-0.384-0.453-1.063-0.625-1.574c-0.396-1.183-1.469-2.029-2.204-3.157c-0.247-0.377,0.202-1.167-0.409-1.239
c-0.767-0.09-2.005-0.585-2.204,0.291c-0.502,2.21,0.36,4.366,1.188,6.453c-0.668,0.592-0.382,1.378-0.253,2.034
c0.607,3.082-0.417,5.946-1.067,8.915c-0.02,0.088,0.272,0.258,0.249,0.311c-1.044,2.295-2.284,4.384-3.839,6.419
c-0.646,0.848-1.393,1.63-1.817,2.539c-0.314,0.672-0.663,1.498-0.449,2.342c-2.936,2.375-4.857,5.661-7.089,8.947
c-0.396,0.581-0.146,1.614,0.325,1.844c0.694,0.34,1.512-0.535,1.912-1.258c0.332-0.597,0.635-1.152,1.055-1.702
c0.113-0.149-0.04-0.507,0.076-0.61c2.25-2.006,3.676-4.515,5.771-6.538c1.666-0.281,2.979-1.134,4.473-2
c0.264-0.153,0.712,0.06,0.958-0.106c1.499-1.006,1.497-2.746,1.588-4.378C196.826,143.293,196.994,142.168,197.969,141.646z"/>
<path id="path514" d="M190.414,137.83c0.105-0.065-0.026-0.428,0.066-0.612c0.139-0.276,0.482-0.437,0.621-0.714
c0.093-0.185-0.046-0.509,0.07-0.63c1.993-2.091,2.212-4.675,1.327-7.215c0.875-0.53,0.928-1.608,0.564-2.332
c-0.729-1.453-0.895-3.098-1.727-4.417c-0.687-1.084-2.034-2.147-3.205-1.034c-0.36,0.342-0.634,1.014-0.397,1.623
c0.056,0.139,0.299,0.264,0.275,0.334c-0.092,0.276-0.558,0.468-0.563,0.701c-0.024,1.278-0.841,2.569-0.303,3.705
c0.66,1.392,1.36,2.979,1.938,4.496c-1.056,1.808-0.171,3.9-1.67,5.504c-0.116,0.125-0.108,0.455-0.004,0.627
c0.25,0.416,0.596,0.763,1.012,1.012c0.172,0.104,0.47,0.105,0.641-0.001C189.554,138.567,189.895,138.151,190.414,137.83z"/>
<path id="path518" d="M244.086,129.019c1.187,1.532,1.435,3.92-0.316,5.108c0.471,2.828,3.333,1.136,5.127,0.684
c-0.093-0.332,0.102-0.626,0.344-0.63c0.902-0.013,1.483-0.895,2.392-0.737c0.371-1.331,1.771-1.931,2.32-3.11
c1.475-3.157,0.97-6.808-1.237-9.582c-0.173-0.217,0.013-0.659-0.094-0.968c-0.646-1.89-2.413-2.159-4.065-2.747
c-1.006-3.311-1.57-6.756-3.076-9.912c-1.379-0.214-1.975-1.7-3.118-2.315c-1.139-0.615-1.625,0.735-1.589,1.628
c0.006,0.175,0.393,0.367,0.247,0.679c-0.064,0.14-0.287,0.235-0.287,0.349c0.001,0.116,0.19,0.228,0.305,0.342
c-0.784,0.701-2,1.109-2.252,2.087c-0.815,3.17,1.384,5.84,2.809,8.576c0.505,0.97-0.124,2.056-0.773,3.088
c-0.375,0.594-0.281,1.557-0.046,2.289C241.414,125.839,242.774,127.325,244.086,129.019z"/>
<path id="path522" d="M212.333,144.73c-1.271,1.582-4.187,3.777-1.693,5.424c0.165,0.11,0.481,0.114,0.629-0.001
c1.728-1.337,3.438-2.109,5.521-2.606c0.104-0.024,0.339,0.375,0.655,0.237c1.379-0.601,3.096-0.552,4.107-1.695
c3.219,0.191,6.265-0.762,9.162-1.88c0.993-0.383,2.078-0.86,3.104-1.29c1.177-0.492,2.205-1.285,3.155-2.26
c0.114-0.116,0.416-0.04,0.645-0.04c-0.034-0.737,0.787-0.846,0.999-1.377c0.078-0.198-0.05-0.537,0.063-0.623
c1.827-1.393,2.612-3.118,1.614-5.148c-0.244-0.494-0.457-1.022-0.94-1.429c-0.927-0.778-1.869-0.049-2.763-0.309
c-0.136,0.536-0.759,0.39-1.089,0.559c-0.734,0.375-1.873-0.125-2.607,0.249c-1.164,0.594-2.224,0.739-3.438,1.061
c-0.268,0.07-0.933-0.012-1.068,0.524c-0.115-0.115-0.241-0.314-0.332-0.296c-1.63,0.338-2.707,0.521-3.818,1.967
c-0.088,0.114-0.466-0.04-0.601,0.076c-0.818,0.69-1.165,1.745-2.104,2.319c-0.172,0.105-0.473-0.039-0.639,0.072
c-0.552,0.368-0.866,0.916-1.414,1.298c-0.28,0.196-0.623-0.082-0.596-0.301c0.209-1.664,0.767-3.191,0.275-4.793
c1.774-2.153,3.926-3.819,5.469-6.152c0.013-1.851,0.604-3.685,0.507-5.459c-0.008-0.165-0.254-0.791-0.362-1.087
c-0.266-0.73,0.508-1.641-0.213-2.259c-1.2-1.028-2.304-0.28-3.008,0.945c-1.57,0.333-3.336,0.925-4.685-0.129
c-0.86-0.673-1.354-1.447-2.037-2.349c-0.843-1.113-0.556-2.339-0.496-3.676c0.005-0.109-0.265-0.226-0.265-0.34
c0-0.115,0.188-0.227,0.304-0.341c-0.604-0.535-0.838-1.439-1.709-1.709c0.261-0.933-0.317-1.689-1.062-1.947
c-1.705-0.59-3.138,1.043-4.754,1.105c-0.438,0.017-0.838-0.87-1.393-1.148c-0.37-0.185-0.972-0.212-1.28,0.015
c-0.588,0.431-1.092,0.528-1.74,0.704c-1.381,0.372-2.474,1.307-3.738,2.038c-1.269,0.732-2.084,1.96-3.007,3.088
c-0.804,0.984-0.92,3.046,0.293,3.474c1.575,0.556,2.689-1.754,4.369-1.475c0.268,0.043,0.442,0.309,0.35,0.641
c0.332,0.093,0.519-0.103,0.684-0.341c0.733,0.871,1.728,1.158,2.529,1.904c0.829,0.773,2.32,0.416,3.188,1.268
c1.308,1.283,0.829,3.574,2.486,4.689c-0.501,1.122-1.021,2.212-1.306,3.432c-0.241,1.031,0.607,2.054,1.643,1.976
c1.075-0.08,1.299-0.729,1.713-1.648c0.229,0.229,0.628,0.482,0.593,0.667c-0.39,2.04-1.268,3.742-1.659,5.819
c-0.05,0.271-0.311,0.444-0.643,0.35c-0.4,3.545-3.862,5.591-6.038,8.296c-0.344,0.429-0.348,1.496,0.002,1.84
c1.199,1.185,2.874-0.136,4.326-0.566c0.182-1.031,0.917-1.835,2.054-1.788c0.22,0.009,0.419-0.454,0.697-0.565
c0.297-0.118,0.726,0.073,0.971-0.096c1.478-1.021,2.681-1.966,4.166-2.982c0.164-0.112,0.458,0.024,0.643-0.068
c0.277-0.138,0.438-0.469,0.714-0.627c0.297-0.171,0.504,0.077,0.669,0.316c-0.552,0.298-0.555,1.117-1.053,1.289
c-0.662,0.229-1.142,0.667-1.718,1.049c-0.25,0.165-0.812-0.047-0.9,0.106C213.951,143.601,212.94,143.976,212.333,144.73z"/>
<path id="path526" d="M164.986,102.511c0,0-7.894-2.454-17.431,19.482c0,0-2.051,4.443-4.102,6.152
c-2.052,1.709-11.621,4.785-13.33,8.203l-8.888,13.672c0,0,12.646-13.672,15.382-15.722c0,0,6.836-7.178,4.102-1.367
c0,0-11.963,9.228-10.938,17.089c0,0-4.784,12.305-5.469,14.014c0,0,13.672-27.344,15.723-28.369s3.075-1.025,2.051,2.051
c-1.025,3.076-1.367,17.09-3.76,18.798c0,0,6.836-17.432,6.152-20.166c0,0,2.733-3.076,4.785,1.368l-1.025,13.671l3.76,10.254
c0,0-2.052-9.57-0.684-22.9c0,0-1.709-8.887,1.708-4.102c3.418,4.785,11.621,9.912,11.621,14.013c0,0-4.442-15.039-12.305-19.14
l-3.417,5.127l-1.026-1.709c0,0-3.076-0.684,0.685-6.494c3.76-5.81,3.418-6.494,3.418-6.494s5.469,6.152,6.835,6.152
c0,0,11.279-6.494,12.305,14.355c0,0,5.81-12.304-2.051-18.115c0,0-12.646-1.709-11.621-6.152l6.152-10.595
c3.075-4.444,1.709-2.051,1.709-2.051L164.986,102.511z"/>
<path id="path530" d="M147.896,116.524c0,0-10.938,0-13.671,4.443l-6.152,8.204c0,0,14.697-8.545,18.115-9.57
C149.605,118.575,147.896,116.524,147.896,116.524z"/>
<path id="path534" d="M113.717,121.994c0,0-1.709,1.025-2.051,3.417c-0.341,2.393-2.394,2.734-1.708,5.127
c0.683,2.393,2.392,4.443,2.392,1.025s1.368-5.127,2.051-6.152C115.084,124.386,116.451,120.626,113.717,121.994z"/>
<path id="path538" d="M106.198,174.287c0,0-7.178-3.417-9.911-6.494c-2.734-3.076-2.349,1.338-6.494,1.025
c-4.997-0.376-4.103-14.013-4.103-14.013l-3.417,6.494c0,0-1.025,12.305,5.812,10.254c3.338-1.001,4.442,0.341,3.076,1.025
c-1.367,0.684,4.784,1.026,2.393,2.393c-2.393,1.368,9.912-3.076,7.861,5.811L106.198,174.287z"/>
<path id="path542" d="M95.431,186.592c0,0-13.159,3.76-16.235-4.443c0,0-4.102,2.051-2.222,4.614s2.905,2.905,2.905,2.905
s4.614,1.025,4.102,1.709c-0.512,0.684-2.562,3.589-2.562,3.589S90.134,189.839,95.431,186.592z"/>
<path id="path546" fill="#FFFFFF" d="M290.595,253.414c-0.365,1.822-1.793,2.507-3.418,3.075c-1.638-0.818-3.857-3.473-5.468-1.709
c-0.405-0.409-1.07-0.462-1.365-1.027c-0.397-0.768-0.165-1.661-0.457-2.343c-0.465-1.087-1.071-2.254-0.913-3.466
c1.543-0.609,2.051-2.236,1.647-3.743c-0.06-0.22-0.427-0.389-0.255-0.686c0.158-0.277,0.431-0.471,0.658-0.699
c-0.114,0.116-0.239,0.314-0.334,0.297c-0.521-0.091-0.415-0.635-0.304-0.965c0.5-1.492,2.221-1.718,3.373-0.698
c0.219-0.483,0.654-0.318,1.025-0.343c-0.042-0.495,0.306-0.945,0.475-1.304c0.442-0.938,1.834,0.007,2.516-0.516
c0.92-0.706,1.828-1.303,2.749-0.788c1.546,0.866,3.006,1.902,4.031,3.389c0.491,0.713,0.696,1.808,0.646,2.626
c-0.032,0.552-1.213,0.251-1.506,1.046c-0.551,1.493,1.014,1.936,1.659,3.08c0.169,0.299-0.056,0.559-0.326,0.642
c-0.351,0.11-1.021-0.052-0.902,0.335C294.957,252.347,292.602,252.926,290.595,253.414z"/>
<path id="path550" fill="#FFFFFF" d="M282.391,270.161c-0.006-1.485-1.374-2.985-0.341-4.443c0.115,0.114,0.227,0.304,0.342,0.304
c0.116,0,0.228-0.189,0.342-0.304c1.277,1.895,4.398,2.688,4.276,5.118c-0.019,0.382-0.947,1.166-0.175,1.718
c-1.549,1.152-1.597,3.177-2.393,4.785c-1.059-0.244-2.094-0.555-3.076-1.025c0.301-1.271,0.2-2.709,0.9-3.837
C282.639,271.88,282.393,270.958,282.391,270.161z"/>
<path id="path554" fill="#CCCCCC" d="M140.377,262.471c0,0-14.405,8.661-2.394-4.443c7.52-8.203,16.063-12.988,16.063-12.988
s8.887-3.761,11.963-4.786s16.064-5.468,18.798-5.811c2.734-0.341,10.938-3.759,16.748-0.341c5.811,3.418,12.646,7.177,12.646,7.177
s-14.015-7.177-17.09-5.126c-3.075,2.051-9.229,1.709-14.354,4.444c0,0-12.646,3.76-15.381,5.469s-11.621,11.621-12.987,10.938
c-1.368-0.684,0.341-1.025,1.366-3.418c1.026-2.393-0.684-3.76-7.52,1.709C141.402,260.762,140.377,262.471,140.377,262.471z"/>
<path id="path558" d="M146.704,257.372c0,0,1.205-11.144,8.448-9.721c0,0,7.029-3.562,9.354-5.244c0,0,6.955-1.454,8.074-1.981
c15.79-7.435,28.367-3.573,28.834-4.53c0.466-0.957,17.234,5.125,20.319,8.617c0.333,0.378-8.742-4.783-17.028-6.398
c-7.069-1.379-25.527,0.211-34.847,4.941c-2.541,1.29-10.184,6.232-12.346,6.136C155.351,249.098,146.704,257.372,146.704,257.372z"
/>
<path id="path562" fill="#CCCCCC" d="M143.453,279.219c0,0-12.988-2.051,1.366-3.418c0,0,15.382-1.71,18.799-6.152
c0,0,11.62-7.861,14.014-8.203c2.393-0.343,28.027-6.495,28.369-8.545c0.341-2.05,5.126-2.05,6.494-1.367
c1.366,0.683,0.683,1.709-1.709,2.393c-2.394,0.684-29.054,14.697-34.521,15.723c-5.469,1.024-15.381,7.52-19.481,8.545
C152.682,279.22,143.453,279.219,143.453,279.219z"/>
<path id="path566" d="M160.132,272.896c0,0-7.333-0.708,0.017-1.407c0,0,7.533-2.927,9.283-5.202c0,0,5.95-4.024,7.175-4.199
c1.227-0.175,13.154-3.325,13.329-4.375s29.284-11.801,33.062-9.074c2.487,1.795-5.974,0.362-14.204,4.131
c-1.158,0.528-30.085,12.993-32.885,13.518c-2.801,0.526-7.875,3.851-9.976,4.375C163.832,271.188,160.132,272.896,160.132,272.896z
"/>
<path id="path570" d="M153.365,274.775c0,0,4.442-0.342,3.418,1.025c-1.026,1.367-3.076,0.684-3.076,0.684L153.365,274.775z"/>
<path id="path574" d="M147.212,276.143c0,0,4.443-0.342,3.418,1.025c-1.025,1.366-3.076,0.683-3.076,0.683L147.212,276.143z"/>
<path id="path578" d="M138.325,277.51c0,0,4.443-0.342,3.418,1.024c-1.025,1.367-3.076,0.685-3.076,0.685L138.325,277.51z"/>
<path id="path582" d="M131.832,278.193c0,0,4.442-0.343,3.417,1.025c-1.025,1.367-3.076,0.683-3.076,0.683L131.832,278.193z"/>
<path id="path586" d="M164.644,244.356c0,0,3.76,0,2.734,1.367c-1.025,1.367-3.76,1.025-3.76,1.025L164.644,244.356z"/>
<path id="path590" d="M156.099,249.141c0,0,5.561-1.83,3.418,1.025c-1.024,1.367-3.076,0.685-3.076,0.685L156.099,249.141z"/>
<path id="path594" d="M146.529,253.242c0,0,4.443-0.342,3.417,1.025c-1.024,1.367-3.075,0.683-3.075,0.683L146.529,253.242z"/>
<path id="path598" d="M140.034,258.368c0,0,4.443-0.341,3.418,1.026c-1.026,1.367-3.076,0.684-3.076,0.684L140.034,258.368z"/>
<path id="path602" d="M134.224,262.471c0,0,4.443-0.342,3.418,1.025c-1.024,1.367-3.076,0.684-3.076,0.684L134.224,262.471z"/>
<path id="path606" d="M167.619,267.938c0,0,5.914-0.455,4.549,1.364c-1.365,1.819-4.096,0.909-4.096,0.909L167.619,267.938z"/>
<path id="path610" d="M176.506,263.835c0,0,5.914-0.455,4.549,1.365c-1.365,1.819-4.094,0.909-4.094,0.909L176.506,263.835z"/>
<path id="path614" d="M185.734,260.076c0,0,5.914-0.455,4.55,1.364s-4.096,0.909-4.096,0.909L185.734,260.076z"/>
<path id="path618" d="M194.621,255.974c0,0,5.913-0.455,4.549,1.365c-1.365,1.819-4.095,0.909-4.095,0.909L194.621,255.974z"/>
<path id="path622" d="M171.036,240.594c0,0,5.915-0.455,4.549,1.364c-1.364,1.82-4.778,1.594-4.778,1.594L171.036,240.594z"/>
<path id="path626" d="M179.582,237.859c0,0,5.914-0.455,4.549,1.364c-1.365,1.82-5.12,1.594-5.12,1.594L179.582,237.859z"/>
<path id="path630" d="M160.2,272.041c0,0,4.442-0.343,3.417,1.025c-1.025,1.367-3.076,0.684-3.076,0.684L160.2,272.041z"/>
<path id="path634" fill="#992600" d="M97.652,187.275c0,0-3.76,7.52-4.101,10.253c0,0,0.684-7.519,1.709-9.228
S97.652,187.275,97.652,187.275z"/>
<path id="path638" fill="#992600" d="M81.93,199.238c0,0-2.734,12.305-2.393,14.697c0,0-1.025-9.912-0.685-10.937
C79.196,201.973,81.93,199.238,81.93,199.238z"/>
<path id="path642" fill="#CCCCCC" d="M99.703,135.494l-0.171,2.734l-1.881,0.171c0,0,12.135,10.766,12.646,17.261
C110.299,155.66,110.983,148.653,99.703,135.494z"/>
<path id="path646" d="M103.108,136.575c-0.367-0.355-0.181-0.992-0.529-1.214c-0.691-0.441,1.108-0.489,0.915-1.101
c-0.327-1.03-0.167-1.048-0.272-2.139c-0.048-0.511,0.454-1.827,0.784-2.203c1.235-1.412,0.104-3.917,1.505-5.243
c0.26-0.247,0.581-0.719,0.825-1.076c0.562-0.823,1.575-1.24,2.387-1.947c0.271-0.236,0.1-0.942,0.586-0.864
c0.61,0.098,1.671-0.013,1.632,0.706c-0.097,1.812-1.231,3.281-2.326,4.707c0.386,0.602-0.006,1.144-0.249,1.62
c-1.141,2.239-0.979,4.667-1.127,7.093c-0.004,0.072-0.267,0.139-0.26,0.185c0.302,1.995,0.8,3.874,1.552,5.778
c0.313,0.795,0.716,1.56,0.845,2.352c0.094,0.586,0.182,1.298-0.167,1.9c1.738,2.469,0.62,4.734,1.62,7.751
c0.177,0.534,1.623,2.169,1.227,2.032c-2.146-0.744-2.244-1.085-2.395-1.728c-0.125-0.533-0.407-1.709-0.609-2.224
c-0.055-0.14-0.201-1.75-0.268-1.854c-1.292-2.036-0.133-1.885-1.304-3.9c-1.22-0.581-2.045-1.524-3.005-2.517
c-0.169-0.174,0.809-0.793,0.653-0.975c-0.934-1.102-1.918-1.757-1.631-3.032C103.626,138.093,103.743,137.19,103.108,136.575z"/>
<path id="path650" d="M100.045,138.057c0,0,0.342,5.811,2.392,7.178c2.051,1.368,1.026,0.684-1.709-0.341
c-2.732-1.025-1.708-1.709-1.708-1.709s-2.393,0.341-0.342,2.05s5.127,3.76,3.76,3.76s-7.86-3.418-7.86-5.81
c0-2.393-0.854-5.896-0.854-5.896s0.94-0.684,5.042-0.599C98.763,136.69,99.96,137.289,100.045,138.057z"/>
<path id="path654" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M99.361,153.951c0,0-7.279-2.385-23.069,0.513
c0,0,7.716-1.776,23.754,0.171C108.846,155.702,99.361,153.951,99.361,153.951z"/>
<path id="path658" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M101.154,153.89c0,0-7.046-3.006-23.028-1.484
c0,0,7.842-1.102,23.65,2.225C110.453,156.455,101.154,153.89,101.154,153.89z"/>
<path id="path662" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M102.682,153.969c0,0-6.803-3.521-22.854-3.192
c0,0,7.901-0.516,23.42,3.977C111.763,157.219,102.682,153.969,102.682,153.969z"/>
<path id="path666" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M103.767,154.16c0,0-5.831-3.68-20.25-4.618
c0,0,7.125,0.145,20.695,5.365C111.66,157.771,103.767,154.16,103.767,154.16z"/>
<path id="path670" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M202.275,163.146c0,0-0.795,0.551-0.611-0.458
c0.184-1.009,24.288-12.263,27.375-12.049C229.038,150.638,203.192,161.922,202.275,163.146z"/>
<path id="path674" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M199.375,163.692c0,0-0.749,0.611-0.646-0.409
c0.104-1.021,23.25-14.132,26.344-14.162C225.073,149.121,200.194,162.4,199.375,163.692z"/>
<path id="path678" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M196.567,164.867c0,0-0.708,0.66-0.672-0.366
c0.036-1.024,16.971-14.267,25.354-15.868C221.249,148.633,205.843,155.578,196.567,164.867z"/>
<path id="path682" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M194.11,166.458c0,0-0.636,0.593-0.604-0.329
c0.032-0.923,15.271-12.84,22.816-14.281C216.323,151.849,202.458,158.099,194.11,166.458z"/>
<path id="path686" fill="#CCCCCC" d="M167.036,292.89c0,0-12.989-2.051,1.366-3.418c0,0,15.381-1.709,18.799-6.151
c0,0,11.62-7.861,14.013-8.203c2.393-0.342,16.406-3.419,16.748-5.469c0.342-2.051,5.469-4.102,6.836-3.419
c1.367,0.685,1.367,8.546-1.025,9.229c-2.393,0.684-18.457,6.836-23.925,7.861c-5.469,1.025-15.381,7.519-19.481,8.545
C176.265,292.89,167.036,292.89,167.036,292.89z"/>
<path id="path690" d="M229.413,260.933c0,0-2.563,1.367-3.589,3.588c0,0-5.469,9.059-17.604,11.793c0,0-19.653,7.69-26.317,9.398
c0,0-11.45,4.272-17.772,3.59c0,0-5.981,0.17-0.685,1.537c0,0,17.261-1.709,20.166-3.246c0,0,13.33-4.443,15.894-6.665
c2.563-2.223,18.115-6.494,19.996-8.203C221.381,271.015,229.755,263.838,229.413,260.933z"/>
<path id="path694" d="M179.24,287.856c0,0,4.468-0.193,3.482,1.132c-0.986,1.324-3.077,0.577-3.077,0.577L179.24,287.856z"/>
<path id="path698" d="M173.086,289.013c0,0,4.467-0.193,3.482,1.131c-0.984,1.324-3.076,0.578-3.076,0.578L173.086,289.013z"/>
<path id="path702" d="M164.174,290.079c0,0,4.468-0.194,3.484,1.13c-0.986,1.324-3.078,0.577-3.078,0.577L164.174,290.079z"/>
<path id="path706" d="M157.652,290.543c0,0,4.469-0.192,3.482,1.132c-0.985,1.324-3.077,0.578-3.077,0.578L157.652,290.543z"/>
<path id="path710" d="M193.367,281.536c0,0,5.946-0.258,4.636,1.504c-1.312,1.763-4.095,0.77-4.095,0.77L193.367,281.536z"/>
<path id="path714" d="M202.181,277.755c0,0,5.091-2.82,4.635,1.505c-0.23,2.184-4.096,0.77-4.096,0.77L202.181,277.755z"/>
<path id="path718" d="M209.984,275.351c0,0,6.117-3.163,4.636,1.504c-0.664,2.094-4.097,0.77-4.097,0.77L209.984,275.351z"/>
<path id="path722" d="M218.113,271.227c0,0,3.726-4.188,4.637,1.505c0.347,2.169-4.097,0.77-4.097,0.77L218.113,271.227z"/>
<path id="path726" d="M186.035,285.367c0,0,4.467-0.193,3.481,1.131c-0.983,1.322-3.077,0.578-3.077,0.578L186.035,285.367z"/>
<path id="path730" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M216.454,181.639c0,0-0.62,0.568-0.621-0.347
c0-0.915,14.939-12.249,22.496-13.431C238.329,167.861,224.573,173.61,216.454,181.639z"/>
<path id="path734" d="M218.989,236.151c0,0,18.8,19.142,26.661,22.217c0,0,7.861,9.571,4.443,31.788c0,0-2.734,6.494-5.469-11.279
c0,0,2.733-21.533-6.836-7.862c0,0-7.179-8.459-1.709-8.203c0,0,2.734,1.709,3.076,0.342c0.342-1.366-6.494-12.987-21.191-25.292
C203.266,225.556,218.989,236.151,218.989,236.151z"/>
<path id="path738" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M169.087,269.307c0,0-0.171-1.538,1.367-0.854
c1.539,0.684,82.03,5.981,109.032,26.489C279.487,294.941,240.864,275.117,169.087,269.307z"/>
<path id="path742" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M177.974,265.547c0,0-0.171-1.539,1.367-0.854
c1.538,0.683,118.261-0.172,138.426,27.515C317.767,292.207,298.969,270.673,177.974,265.547z"/>
<path id="path746" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M187.885,262.129c0,0-0.171-1.538,1.367-0.854
c1.538,0.682,149.704-10.425,169.87,17.259C359.123,278.534,350.922,256.659,187.885,262.129z"/>
<path id="path750" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M196.43,258.027c0,0-0.171-1.538,1.368-0.854
c1.538,0.685,105.956-32.3,126.122-4.613C323.92,252.56,312.469,231.538,196.43,258.027z"/>
<path id="path754" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M146.87,277.51c0,0-0.17-1.538,1.367-0.854
c1.538,0.684,16.748,2.562,18.456,35.717C166.694,312.372,160.542,276.484,146.87,277.51z"/>
<path id="path758" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M139.351,278.877c0,0-0.171-1.538,1.367-0.854
c1.538,0.683,13.672-3.247,11.279,29.906C151.997,307.929,153.023,277.851,139.351,278.877z"/>
<path id="path762" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M132.516,279.219c0,0-0.171-1.539,1.366-0.854
c1.539,0.684,14.697,1.195,4.102,20.336C137.984,298.7,146.187,278.193,132.516,279.219z"/>
<path id="path766" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M172.954,241.334c0,0-0.379,1.708,0.943,0.668
c13.73-10.788,41.451-61.119,89.033-65.933C262.931,176.07,230.198,165.722,172.954,241.334z"/>
<path id="path770" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M182.525,239.796c0,0-1.165-1.02,0.432-1.554
c1.597-0.534,97.676-62.485,131.243-55.679C314.199,182.564,291.038,176.146,182.525,239.796z"/>
<path id="path774" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M164.716,245.011c0,0-0.436,1.366,1.027,0.532
c7.669-4.375,10.758-53.261,47.993-54.333C213.737,191.209,186.043,178.637,164.716,245.011z"/>
<path id="path778" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M147.693,254.432c0,0-0.92,1.099,0.749,0.882
c8.755-1.138,27.045-36.403,65.018-32.063C213.458,223.25,186.144,210.992,147.693,254.432z"/>
<path id="path782" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M157.295,249.197c0,0-0.693,1.255,0.904,0.721
c8.373-2.797,19.554-40.917,57.652-43.948C215.852,205.97,186.692,199.183,157.295,249.197z"/>
<path id="path786" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M141.677,258.807c0,0-0.746,0.89,0.606,0.714
c7.091-0.923,21.905-29.487,52.663-25.971C194.947,233.549,172.822,223.62,141.677,258.807z"/>
<path id="path790" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M135.184,263.854c0,0-0.857,0.894,0.5,0.792
c3.562-0.264,29.741-28.529,45.522-15.283C181.206,249.363,170.94,233.365,135.184,263.854z"/>
<path id="path794" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M194.597,236.578c0,0-1.026-1.158,0.625-1.487
c1.65-0.328,104.789-49.643,137.227-38.649C332.448,196.441,310.283,187.15,194.597,236.578z"/>
<path id="path798" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M166.011,291.523c0,0-0.171-1.539,1.367-0.854
c1.538,0.684,14.697,1.196,4.102,20.336C171.479,311.005,179.682,290.498,166.011,291.523z"/>
<path id="path802" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M174.898,290.156c0,0-0.171-1.539,1.367-0.854
c1.538,0.683,16.748,2.563,18.457,35.717C194.721,325.019,188.569,289.13,174.898,290.156z"/>
<path id="path806" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M180.708,288.789c0,0-0.171-1.539,1.367-0.854
c1.537,0.683,22.559,3.589,42.724,31.272C224.799,319.207,194.38,287.763,180.708,288.789z"/>
<path id="path810" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M187.223,287.055c0,0-0.373-1.502,1.242-1.028
s19.075-1.15,51.628,28.054C240.094,314.08,200.638,284.222,187.223,287.055z"/>
<path id="path814" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M196.11,283.295c0,0-0.374-1.502,1.241-1.028
s31.38,4.318,75.554,34.206C272.906,316.473,209.524,280.461,196.11,283.295z"/>
<path id="path818" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M161.568,273.408c0,0-0.171-1.538,1.367-0.854
c1.538,0.683,47.167,2.905,73.145,25.806C236.078,298.359,206.256,277.189,161.568,273.408z"/>
<path id="path822" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M153.023,276.825c0,0-0.171-1.537,1.368-0.854
c1.538,0.684,22.559,3.588,42.724,31.274C197.114,307.246,166.694,275.801,153.023,276.825z"/>
<path id="path826" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M205.405,279.355c0,0-0.482-1.47,1.163-1.116
c1.646,0.353,31.612,2.007,77.858,28.576C284.426,306.815,218.064,277.427,205.405,279.355z"/>
<path id="path830" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M212.582,277.305c0,0-0.482-1.471,1.164-1.116
c1.646,0.353,31.611,2.007,77.856,28.576C291.603,304.765,225.753,275.034,212.582,277.305z"/>
<path id="path834" fill="#FFFFFF" stroke="#000000" stroke-width="0.1" d="M220.786,273.033c0,0-0.483-1.472,1.163-1.117
c1.646,0.353,38.447,4.058,115.113,33.361C337.062,305.277,233.957,270.762,220.786,273.033z"/>
<path id="path838" d="M125.679,278.877c0,0,4.443-0.343,3.417,1.024c-1.025,1.367-3.076,0.685-3.076,0.685L125.679,278.877z"/>
<path id="path842" d="M151.997,290.839c0,0,4.442-0.341,3.418,1.026c-1.025,1.367-3.076,0.683-3.076,0.683L151.997,290.839z"/>
<path id="path846" d="M144.478,290.498c0,0,4.443-0.342,3.417,1.025c-1.024,1.366-3.076,0.684-3.076,0.684L144.478,290.498z"/>
<path id="path850" d="M62.987,280.398c0,0,4.312,1.131,2.896,2.087c-1.416,0.956-3.131-0.36-3.131-0.36L62.987,280.398z"/>
<path id="path854" d="M64.696,272.195c0,0,4.312,1.131,2.896,2.087c-1.416,0.957-3.131-0.361-3.131-0.361L64.696,272.195z"/>
<path id="path858" d="M58.544,268.436c0,0,4.312,1.131,2.895,2.087c-1.417,0.957-3.131-0.361-3.131-0.361L58.544,268.436z"/>
<path id="path862" fill="#CCCCCC" d="M126.705,332.538c0,0-1.367,0-4.785,1.709c-1.709,0-11.279,3.076-16.064,11.62
C105.856,345.867,116.451,337.664,126.705,332.538z"/>
<path id="path866" fill="#CCCCCC" d="M201.656,411.702c0.121,0.222,0.168,0.579,0.418,0.595c0.562,0.034,1.615,0.291,1.509-0.253
c-0.726-3.679-1.472-7.897-5.003-9.441c-0.546-0.238-1.778,0.114-1.842,0.869c-0.108,1.304-0.208,2.455,0.057,3.707
c0.256,1.215,2.1,1.225,2.884,0.041C200.477,408.648,200.846,410.223,201.656,411.702z"/>
<path id="path870" fill="#CCCCCC" d="M192.191,415.747c0.64,1.207,0.53,2.797,1.739,3.277c0.632,0.251,2.213-0.582,1.856-1.5
c-0.686-1.762-1.018-3.675-2.204-5.223c-0.171-0.224,0.034-0.679-0.103-0.959c-0.508-1.042-1.485-1.671-2.688-1.39
c-0.953,1.882,0.027,3.701,1.329,5.162C192.236,415.246,192.094,415.567,192.191,415.747z"/>
<path id="path874" fill="#CCCCCC" d="M158.352,411.312c-0.093-0.322-0.125-0.719,0.017-0.992c0.452-0.884,1.131-1.843,0.843-2.715
c-0.297-0.902-1.251-0.747-1.808-0.261c-0.969,0.85-1.011,2.409-1.602,3.57c-0.167,0.33-0.124,0.82-0.501,1.153
c-0.405,0.359-0.781,1.662-0.699,2.149c0.045,0.269-0.11,8.733,0.078,8.509c0.529-0.626,3.135-8.943,3.195-9.705
C157.925,412.397,158.55,412,158.352,411.312z"/>
<path id="path878" fill="#CCCCCC" d="M136.445,405.51c2.25-2.137,4.635-4.667,4.257-7.839c-0.1-0.834-1.616-0.383-1.775,0.339
c-0.685,3.1-2.428,5.372-4.622,7.417c-1.877,1.748-3.467,7.169-3.668,7.604C133.794,408.539,135.723,406.191,136.445,405.51z"/>
<path id="path882" fill="#CCCCCC" d="M124.846,400.413c0.446-0.316,0.188-0.735,0.374-1.021c0.814-1.246,1.926-2.31,1.941-3.794
c0.002-0.237-0.32-0.502-0.607-0.311c-0.236,0.156-0.529,0.269-0.622,0.38c-1.734,2.092-2.93,4.375-4.163,6.778
c-0.157,0.305-1.134,4.142-0.867,4.235c0.204,0.073,1.675-3.5,1.854-3.598C123.836,402.499,123.846,401.119,124.846,400.413z"/>
<path id="path886" fill="#CCCCCC" d="M139.144,417.113c0.379-0.743,1.727-1.771,1.629-2.529c-0.101-0.793,0.299-2.025-0.479-1.438
c-1.074,0.81-4.021,1.963-4.252,6.926C136.019,420.559,138.559,418.258,139.144,417.113z"/>
<path id="path890" fill="#CCCCCC" d="M151.485,402.435c0.343-0.569,0.947-0.167,1.338-0.392c0.556-0.317,1.077-0.795,1.326-1.35
c0.829-1.836,2.34-3.392,2.462-5.438c-1.272-1.201-1.854,0.542-2.392,1.367c-1.13-1.406-1.984,0.194-3.095,0.638
c-0.061,0.023-0.242-0.271-0.307-0.25c-1.006,0.376-1.586,1.3-2.438,1.967c-0.146,0.115-0.492-0.038-0.618,0.077
c-0.557,0.517-1.389,0.792-1.627,1.376c-0.949,2.313-3.632,4.104-5.245,10.547c0.326,0.778,3.855-5.675,4.271-6.271
c0.715-1.023,0.814,1.419,1.905,0.85c0.044-0.022,0.203,0.182,0.317,0.295c0.166-0.238,0.352-0.436,0.683-0.342
c0-0.342-0.113-0.815,0.059-0.953c1.057-0.835,0.984-1.747,1.651-2.808C150.167,402.425,151.074,401.812,151.485,402.435z"/>
<path id="path894" fill="#CCCCCC" d="M202.583,448.919c0,0,6.322-17.433,2.562-27.003c0,0,9.741,18.457,5.811,28.027
c0,0-0.343-8.887-3.761-13.159C207.197,436.784,203.779,447.722,202.583,448.919z"/>
<path id="path898" fill="#CCCCCC" d="M189.936,446.697c0,0,4.614-7.521-2.222-23.242c0,0-0.685,17.432-6.494,26.83
C181.22,450.285,193.354,433.025,189.936,446.697z"/>
<path id="path902" fill="#CCCCCC" d="M181.391,444.988c0,0-0.171-17.09,0.171-19.653c0,0-3.247,14.184-11.963,22.387
C169.599,447.722,181.905,437.469,181.391,444.988z"/>
<path id="path906" fill="#CCCCCC" d="M173.189,417.644c0,0,5.126,11.622-3.418,27.346c0,0,5.469-10.426,1.368-16.406
C171.138,428.582,173.36,425.676,173.189,417.644z"/>
<path id="path910" fill="#CCCCCC" d="M156.782,444.646c0,0-0.854-13.329,0.684-15.209c0,0,0.171-5.471-0.171-6.323
c0,0,3.418-5.298,3.589,1.024c0,0,1.196,6.664,3.589,10.596c0,0,3.076,4.613,2.905,10.083
C167.378,444.816,158.833,419.012,156.782,444.646z"/>
<path id="path914" fill="#CCCCCC" d="M153.706,421.062c0,0-5.641,9.229-7.178,25.464c0,0-1.195-5.299,2.051-17.604
C148.579,428.923,152.169,415.764,153.706,421.062z"/>
<path id="path918" fill="#CCCCCC" d="M135.079,437.981c0,0,4.271-4.615,5.469-8.889c0,0,3.076-13.5-2.394-6.151
c0,0,0.172,6.836-6.836,13.158C131.319,436.101,135.421,434.051,135.079,437.981z"/>
<path id="path922" fill="#CCCCCC" d="M130.123,433.708c0,0,2.904-14.868,3.589-15.551c0,0,1.538-2.904-0.854-0.172
c0,0-7.52,16.405-10.938,22.047C121.92,440.032,128.756,432.171,130.123,433.708z"/>
<path id="path926" fill="#CCCCCC" d="M125.167,419.524c0,0,9.912-19.141-8.716,2.904C116.451,422.43,125.85,414.055,125.167,419.524
z"/>
<path id="path930" fill="#CCCCCC" d="M112.008,407.048c0,0,4.102-16.063,6.323-15.893c0,0,7.007-7.691,1.366,1.368
c0,0-5.127,8.202-4.613,16.576C115.084,409.1,114.571,400.896,112.008,407.048z"/>
<path id="path934" fill="#CCCCCC" d="M394.241,397.307c0,0-10.253-8.544-12.39-11.535c0,0,11.535,15.808,11.535,21.789
C393.387,407.561,395.524,401.151,394.241,397.307z"/>
<path id="path938" fill="#CCCCCC" d="M398.942,378.508c0,0-17.944-12.816-20.936-19.226c0,0,22.645,25.207,22.645,29.053
C400.651,388.335,401.077,380.645,398.942,378.508z"/>
<path id="path942" fill="#CCCCCC" d="M413.469,246.919c0,0-10.254-6.837-11.536-5.127c0,0,8.974,5.553,11.107,12.817
C413.04,254.608,411.76,246.919,413.469,246.919z"/>
<path id="path946" fill="#CCCCCC" d="M420.732,315.704l-14.954-10.255c0,0,16.234,14.527,16.663,17.945L420.732,315.704z"/>
<path id="path950" stroke="#000000" d="M86.844,296.478l18.798,4.059"/>
<path id="path954" stroke="#000000" d="M129.781,434.904c0,0-0.427-2.991-8.117,5.979"/>
<path id="path958" stroke="#000000" d="M134.481,439.176c0,0,1.709-5.554-3.845-1.709"/>
<path id="path962" stroke="#000000" d="M180.623,446.439c0,0,1.281-9.399-8.545,1.709"/>
</svg>

After

Width:  |  Height:  |  Size: 83 KiB