Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormrahing <matthew.rahing@gmail.com>2013-11-20 00:03:47 (GMT)
committer mrahing <matthew.rahing@gmail.com>2013-11-20 00:03:47 (GMT)
commita89fd9b381d10b9539d433075dc98a4cd5728a7e (patch)
tree51dd758658211159626e718bc9893266960b1440
Create repository and loadHEADmaster
-rw-r--r--activity/activity-weather.svg19
-rwxr-xr-xactivity/activity.info8
-rw-r--r--forecastscreen.py303
-rw-r--r--icons/01d.svg10
-rw-r--r--icons/01n.svg9
-rw-r--r--icons/02d.svg22
-rw-r--r--icons/02n.svg14
-rw-r--r--icons/03d.svg9
-rw-r--r--icons/03n.svg9
-rw-r--r--icons/04d.svg12
-rw-r--r--icons/04n.svg12
-rw-r--r--icons/09d.svg19
-rw-r--r--icons/09n.svg19
-rw-r--r--icons/10d.svg22
-rw-r--r--icons/10n.svg21
-rw-r--r--icons/11d.svg16
-rw-r--r--icons/11n.svg16
-rw-r--r--icons/13d.svg36
-rw-r--r--icons/13n.svg36
-rw-r--r--icons/50d.svg14
-rw-r--r--icons/50n.svg14
-rw-r--r--icons/refresh.svg14
-rw-r--r--locale/es/LC_MESSAGES/net.mattr.Weather.mobin0 -> 4123 bytes
-rw-r--r--locale/es/activity.linfo2
-rw-r--r--openweathermap.py136
-rw-r--r--po/POTFILES.in5
-rw-r--r--po/Weather.pot342
-rw-r--r--po/es.po342
-rw-r--r--searchscreen.py203
-rwxr-xr-xsetup.py25
-rw-r--r--weather.py343
-rw-r--r--world.svg3393
32 files changed, 5445 insertions, 0 deletions
diff --git a/activity/activity-weather.svg b/activity/activity-weather.svg
new file mode 100644
index 0000000..81ebad2
--- /dev/null
+++ b/activity/activity-weather.svg
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
+ <!ENTITY stroke_color "#000000">
+ <!ENTITY fill_color "#FFFFFF">
+ ]>
+<svg version="1.1" id="Weather" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="55px" height="55px" viewBox="0 0 55 55" enable-background="new 0 0 55 55" xml:space="preserve">
+<g id="Rain">
+ <path id="drop1" fill="&fill_color;" stroke="&stroke_color;" stroke-width="3.5" stroke-linecap="round" d="M50.834,52.411L50.834,52.411
+ L41.262,38.05"/>
+ <path id="drop2" fill="&fill_color;" stroke="&stroke_color;" stroke-width="3.5" stroke-linecap="round" d="M42.281,52.411L32.707,38.05"/>
+ <path id="drop3" fill="&fill_color;" stroke="&stroke_color;" stroke-width="3.5" stroke-linecap="round" d="M33.729,52.411L24.156,38.05"/>
+ <path id="drop4" fill="&fill_color;" stroke="&stroke_color;" stroke-width="3.5" stroke-linecap="round" d="M24.729,52.411L15.156,38.05"/>
+</g>
+<path id="Cloud" fill="&fill_color;" stroke="&stroke_color;" stroke-width="3.5" stroke-miterlimit="10" d="M11.979,16.925
+ c-0.308-8.77,11.942-18.731,20.052-4.819c0.277-0.137,10.363-7.089,13.453,7.574c8.121-0.344,10.152,17.558-3.047,17.214
+ c-9.504-0.346-24.847,0.821-34.892,0.109C1.291,36.777,0.808,20.669,11.979,16.925z"/>
+</svg>
diff --git a/activity/activity.info b/activity/activity.info
new file mode 100755
index 0000000..27fd8f3
--- /dev/null
+++ b/activity/activity.info
@@ -0,0 +1,8 @@
+[Activity]
+name = Weather
+activity_version = 1
+bundle_id = net.mattr.Weather
+exec = sugar-activity weather.WeatherActivity
+icon = activity-weather
+license = GPLv2+
+summary = Weather forecast
diff --git a/forecastscreen.py b/forecastscreen.py
new file mode 100644
index 0000000..3f6f3ae
--- /dev/null
+++ b/forecastscreen.py
@@ -0,0 +1,303 @@
+# forecastscreen.py
+#
+# Copyright (C) 2013 Matthew Rahing
+#
+# This program is free software; you can redistribute it
+# and/or modify it under the terms of the GNU General
+# Public License as published by the Free Software
+# Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will
+# be useful, but WITHOUT ANY WARRANTY; without even
+# the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE. See the GNU General Public
+# License for more details.
+#
+# You should have received a copy of the GNU General
+# Public License along with this program; if not, write
+# to the Free Software Foundation, Inc., 51 Franklin
+# St, Fifth Floor, Boston, MA 02110-1301 USA
+
+from gi.repository import Gtk
+from gi.repository import Gdk
+from gi.repository import GdkPixbuf
+
+import os
+import logging
+
+from datetime import datetime
+from gettext import gettext as _
+
+from sugar3.graphics import style
+from sugar3.graphics.icon import Icon
+
+SCREEN_WIDTH = Gdk.Screen.width()
+SCREEN_HEIGHT = Gdk.Screen.height()
+
+GREY = style.COLOR_PANEL_GREY.get_html()
+
+_logger = logging.getLogger('weather-activity')
+
+calendar = [_('Jan'), _('Feb'), _('Mar'), _('Apr'), _('May'), _('Jun'),
+ _('Jul'), _('Aug'), _('Sep'), _('Oct'), _('Nov'), _('Dec')]
+
+week = [_('Monday'), _('Tuesday'), _('Wednesday'), _('Thursday'),
+ _('Friday'), _('Saturday'), _('Sunday')]
+
+class ForecastDailyTreeView(Gtk.TreeView):
+ def __init__(self, activity):
+ Gtk.TreeView.__init__(self)
+
+ self.activity = activity
+
+ self.liststore = Gtk.ListStore(object)
+
+ self.set_grid_lines(Gtk.TreeViewGridLines.HORIZONTAL)
+
+ renderer_text = Gtk.CellRendererText()
+ renderer_text.set_property('height', SCREEN_HEIGHT / 10)
+
+ renderer_pixbuf = Gtk.CellRendererPixbuf()
+
+ column = Gtk.TreeViewColumn(_('Next days'), renderer_text)
+ column.set_cell_data_func(renderer_text, self.load_date)
+ column.set_min_width(SCREEN_WIDTH / 7)
+ column.set_max_width(SCREEN_WIDTH / 7)
+ self.append_column(column)
+
+ column = Gtk.TreeViewColumn('', renderer_pixbuf)
+ column.set_cell_data_func(renderer_pixbuf, self.load_pixbuf)
+ column.set_min_width(SCREEN_WIDTH / 9)
+ column.set_max_width(SCREEN_WIDTH / 9)
+ self.append_column(column)
+
+ column = Gtk.TreeViewColumn('', renderer_text)
+ column.set_cell_data_func(renderer_text, self.load_info)
+ column.set_min_width(SCREEN_WIDTH / 4)
+ column.set_max_width(SCREEN_WIDTH / 4)
+ self.append_column(column)
+
+ column = Gtk.TreeViewColumn(_('Wind'), renderer_text)
+ column.set_cell_data_func(renderer_text, self.load_wind)
+ column.set_min_width(SCREEN_WIDTH / 9)
+ column.set_max_width(SCREEN_WIDTH / 9)
+ self.append_column(column)
+
+ column = Gtk.TreeViewColumn(_('Clouds'), renderer_text)
+ column.set_cell_data_func(renderer_text, self.load_clouds)
+ column.set_min_width(SCREEN_WIDTH / 10)
+ column.set_max_width(SCREEN_WIDTH / 10)
+ self.append_column(column)
+
+ column = Gtk.TreeViewColumn(_('Pressure'), renderer_text)
+ column.set_cell_data_func(renderer_text, self.load_pressure)
+ column.set_min_width(SCREEN_WIDTH / 8)
+ column.set_max_width(SCREEN_WIDTH / 8)
+ self.append_column(column)
+
+ column = Gtk.TreeViewColumn(_('Humidity'), renderer_text)
+ column.set_cell_data_func(renderer_text, self.load_humidity)
+ self.append_column(column)
+
+ self.show()
+
+ def load_date(self, column, cell_renderer, model, iter, data):
+ forecast = model.get_value(iter, 0)
+ timestamp = datetime.fromtimestamp(forecast['date'])
+ date = ' %s %d' %(calendar[timestamp.month - 1], timestamp.day)
+ cell_renderer.set_property('text', date)
+
+ def load_pixbuf(self, column, cell_renderer, model, iter, data):
+ cell_renderer.set_property('pixbuf', None)
+ forecast = model.get_value(iter, 0)
+ file_name = 'icons/%s.svg' % (forecast['icon'][:3])
+ icon = GdkPixbuf.Pixbuf.new_from_file(file_name)
+ cell_renderer.set_property('pixbuf', icon)
+
+ def load_info(self, column, cell_renderer, model, iter, data):
+ forecast = model.get_value(iter, 0)
+ temp_day = self.activity.convert(forecast['temp_day'])
+ temp_night = self.activity.convert(forecast['temp_night'])
+
+ info = '<span foreground="black" background="#FFE578" \
+ > %s%s </span> <span foreground="white" background="#4264BA" \
+ > %s%s </span>\n%s' % (temp_day, self.activity.temp_scale,
+ temp_night, self.activity.temp_scale, forecast['weather'])
+
+ cell_renderer.set_property('markup', info)
+
+ def load_wind(self, column, cell_renderer, model, iter, data):
+ cell_renderer.set_property('text', '')
+ forecast = model.get_value(iter, 0)
+ if forecast['wind_speed'] != None:
+ clouds = '\n%s %s' % (forecast['wind_speed'],
+ self.activity.wind_scale)
+ cell_renderer.set_property('text', clouds)
+
+ def load_clouds(self, column, cell_renderer, model, iter, data):
+ cell_renderer.set_property('text', '')
+ forecast = model.get_value(iter, 0)
+ if forecast['clouds'] != None:
+ clouds = '\n %s %s' % (int(forecast['clouds']),
+ self.activity.cloud_scale)
+ cell_renderer.set_property('text', clouds)
+
+ def load_pressure(self, column, cell_renderer, model, iter, data):
+ cell_renderer.set_property('text', '')
+ forecast = model.get_value(iter, 0)
+ if forecast['pressure'] != None:
+ pressure = '\n%s %s' % (forecast['pressure'],
+ self.activity.pressure_scale)
+ cell_renderer.set_property('text', pressure)
+
+ def load_humidity(self, column, cell_renderer, model, iter, data):
+ cell_renderer.set_property('text', '')
+ forecast = model.get_value(iter, 0)
+ if forecast['humidity'] != None:
+ humidity = '\n %s %s' % (int(forecast['humidity']),
+ self.activity.humidity_scale)
+ cell_renderer.set_property('text', humidity)
+
+ def update(self, city):
+ self.set_model(None)
+ self.liststore.clear()
+
+ for forecast in city.forecast_daily:
+ self.liststore.append([forecast])
+
+ self.set_model(self.liststore)
+
+class ForecastScreen(Gtk.Box):
+ def __init__(self, activity):
+ Gtk.Box.__init__(self)
+
+ self.activity = activity
+
+ self.name_label = Gtk.Label()
+ self.name_label.set_alignment(0, 0)
+ self.name_label.show()
+
+ self.icon = Icon(pixel_size=SCREEN_HEIGHT / 4,
+ fill_color=style.COLOR_TOOLBAR_GREY.get_svg())
+ self.icon.show()
+
+ self.temp_label = Gtk.Label()
+ self.temp_label.show()
+
+ self.temp_scale_label = Gtk.Label()
+ self.temp_scale_label.set_alignment(0.33, 0.41)
+ self.temp_scale_label.show()
+
+ separator = Gtk.Separator()
+ separator.set_property('expand', True)
+ separator.modify_fg(Gtk.StateType.NORMAL,
+ Gdk.Color.parse(GREY)[1])
+ separator.show()
+
+ self.info_label = Gtk.Label()
+ self.info_label.set_alignment(0, 0)
+ self.info_label.set_margin_right(20)
+ self.info_label.show()
+
+ grid = Gtk.Grid()
+ grid.attach(self.name_label, left=0, top=0, width=5, height=1)
+ grid.attach(self.icon, left=0, top=1, width=1, height=2)
+ grid.attach(self.temp_label, left=1, top=1, width=1, height=2)
+ grid.attach(self.temp_scale_label, left=2, top=1, width=1, height=1)
+ grid.attach(separator, left=3, top=1, width=1, height=1)
+ grid.attach(self.info_label, left=4, top=1, width=1, height=2)
+ grid.show()
+
+ self.forecast_daily_treeview = ForecastDailyTreeView(self.activity)
+
+ self.scroll = Gtk.ScrolledWindow()
+ self.scroll.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC)
+ self.scroll.add(self.forecast_daily_treeview)
+ self.scroll.set_size_request(-1, SCREEN_HEIGHT / 2.2)
+ self.scroll.show()
+
+ self.set_orientation(Gtk.Orientation.VERTICAL)
+ self.pack_start(grid, expand=True, fill=False, padding=0)
+ self.pack_start(self.scroll, expand=False, fill=False, padding=0)
+
+ self.show()
+
+ def get_daily_forecast(self):
+ city = self.activity.selected_city
+ source = 'forecast/daily?id=%s&mode=json&cnt=7' % (city.id)
+ dest = os.path.join(self.activity.get_activity_root(), 'tmp',
+ '', str(city.id) + '.json')
+ self.activity.add_download(source, dest)
+
+ def download_complete(self, downloader, file_path, file_name):
+ forecast = self.activity.read_file(file_path)['list']
+ self.activity.selected_city.load_forecast_daily(forecast)
+ self.activity.set_canvas(self)
+
+ def refresh(self):
+ self.activity.search_entry.set_text(self.activity.input)
+ self.get_daily_forecast()
+
+ def update_current(self, city):
+ font_size = 28
+ if len(city.name + city.country) > 20:
+ font_size = 28 - (len(city.name + city.country) - 20)
+
+ name = '<span font="Sans Bold %d">%s, %s\n</span>' % (
+ font_size,
+ city.name,
+ city.country)
+
+ timestamp = datetime.fromtimestamp(city.date)
+ day = timestamp.weekday()
+ time = '%02d:%02d' % (timestamp.hour, timestamp.minute)
+ desc = '<span font="Sans 16">%s %s\n%s</span>' % (week[day], time,
+ city.weather)
+
+ file_name = 'icons/%s.svg' % (city.icon[:3])
+ self.icon.hide()
+ self.icon.set_file(file_name)
+ self.icon.show()
+
+ temp = self.activity.convert(city.temp)
+ degree = '<span stretch="ultracondensed" font="Sans 40"> %s</span>'\
+ % (temp)
+ scale = '<span font="Sans 16">%s</span>' % (self.activity.temp_scale)
+
+ wind = _('Wind') + ': '
+ if city.wind_speed != None:
+ wind = wind + '%s %s' % (city.wind_speed,
+ self.activity.wind_scale)
+
+ clouds = _('Clouds') + ': '
+ if city.clouds != None:
+ clouds = clouds + '%s %s' % (int(city.clouds),
+ self.activity.cloud_scale)
+
+ pressure = _('Pressure') + ': '
+ if city.pressure != None:
+ pressure = pressure + '%s %s' % (city.pressure,
+ self.activity.pressure_scale)
+
+ humidity = _('Humidity') + ': '
+ if city.humidity != None:
+ humidity = humidity + '%s %s' % (int(city.humidity),
+ self.activity.humidity_scale)
+
+ info = '<span font="Sans 16">%s\n%s\n%s\n%s</span>' % (wind, clouds,
+ pressure,
+ humidity)
+
+ self.name_label.set_markup(name + desc)
+ self.temp_label.set_markup(degree)
+ self.temp_scale_label.set_markup(scale)
+ self.info_label.set_markup(info)
+
+ def display_results(self):
+ city = self.activity.selected_city
+ if city:
+ self.update_current(city)
+ self.forecast_daily_treeview.update(city)
+
+ \ No newline at end of file
diff --git a/icons/01d.svg b/icons/01d.svg
new file mode 100644
index 0000000..47d01b4
--- /dev/null
+++ b/icons/01d.svg
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Weather" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="75px" height="75px" viewBox="0 0 75 75" enable-background="new 0 0 75 75" xml:space="preserve">
+<polygon fill="#FFCE00" stroke="#FFE578" stroke-width="3.5" stroke-miterlimit="10" points="44.726,56.283 56.729,60.229
+ 56.729,46.453 66.921,37.535 56.729,30.467 58.048,17.95 48.469,17.95 39.192,8.651 32.115,17.078 17.645,17.95 19.016,30.467
+ 8.078,37.535 18.37,46.453 17.082,60.229 29.298,56.063 35.73,66.35 "/>
+<circle fill="#FFCE00" stroke="#FFE578" stroke-width="3.5" stroke-miterlimit="10" cx="37.81" cy="37.132" r="17.031"/>
+</svg>
diff --git a/icons/01n.svg b/icons/01n.svg
new file mode 100644
index 0000000..24782c1
--- /dev/null
+++ b/icons/01n.svg
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Weather" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="75px" height="75px" viewBox="0 0 75 75" enable-background="new 0 0 75 75" xml:space="preserve">
+<circle id="Moon" fill="#FFFFFF" stroke="#1F3784" stroke-width="3.5" stroke-miterlimit="10" cx="37.5" cy="37.5" r="17.029"/>
+<path id="dark" fill="#1F3784" stroke="#1F3784" stroke-width="3.5" stroke-miterlimit="10" d="M37.861,24.016
+ c5.522,12.575,1.583,18.384-9.642,23.79c-5.415-1.573-6.662-7.386-4.17-16.226C26.543,22.738,32.849,21.912,37.861,24.016z"/>
+</svg>
diff --git a/icons/02d.svg b/icons/02d.svg
new file mode 100644
index 0000000..b751c86
--- /dev/null
+++ b/icons/02d.svg
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Weather" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="75px" height="75px" viewBox="0 0 75 75" enable-background="new 0 0 75 75" xml:space="preserve">
+<g id="Sun" display="none">
+ <polygon display="inline" fill="#FFFFFF" stroke="#000000" stroke-width="3.5" stroke-miterlimit="10" points="51.561,48.975
+ 60.259,51.834 60.259,41.854 67.642,35.391 60.259,30.269 61.217,21.196 54.271,21.196 47.549,14.46 42.422,20.567 31.938,21.196
+ 32.928,30.269 25.005,35.391 32.46,41.854 31.53,51.834 40.381,48.813 45.043,56.269 "/>
+
+ <circle display="inline" fill="#FFFFFF" stroke="#000000" stroke-width="3.5" stroke-miterlimit="10" cx="46.548" cy="35.096" r="12.341"/>
+</g>
+<g id="Sun_1_">
+ <polygon fill="#FFCE00" stroke="#FFE578" stroke-width="3.5" stroke-miterlimit="10" points="50.732,54.409 61.541,57.961
+ 61.541,45.561 70.713,37.531 61.541,31.17 62.729,19.899 54.102,19.899 45.752,11.531 39.382,19.119 26.359,19.899 27.591,31.17
+ 17.748,37.531 27.008,45.561 25.852,57.961 36.846,54.209 42.635,63.469 "/>
+ <circle fill="#FFCE00" stroke="#FFE578" stroke-width="3.5" stroke-miterlimit="10" cx="44.51" cy="37.169" r="15.33"/>
+</g>
+<path id="Cloud_2_" fill="#E3FAFF" stroke="#5FACE0" stroke-width="3.5" stroke-miterlimit="10" d="M13.286,37.091
+ c-0.313-8.932,12.164-19.079,20.425-4.909c0.282-0.138,10.557-7.221,13.703,7.715c8.271-0.351,10.344,17.882-3.105,17.535
+ c-9.677-0.356-25.304,0.834-35.535,0.108C2.4,57.312,1.909,40.905,13.286,37.091z"/>
+</svg>
diff --git a/icons/02n.svg b/icons/02n.svg
new file mode 100644
index 0000000..53a74dc
--- /dev/null
+++ b/icons/02n.svg
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Weather" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="75px" height="75px" viewBox="0 0 75 75" enable-background="new 0 0 75 75" xml:space="preserve">
+<g id="Moon">
+ <circle fill="#FFFFFF" stroke="#1F3784" stroke-width="3.5" stroke-miterlimit="10" cx="50.854" cy="33.933" r="15.55"/>
+ <path fill="#1F3784" stroke="#1F3784" stroke-width="3.5" stroke-miterlimit="10" d="M50.25,21.012
+ c5.192,11.83,1.483,17.292-9.072,22.38c-5.092-1.479-6.267-6.95-3.92-15.265C39.603,19.811,45.534,19.036,50.25,21.012z"/>
+</g>
+<path id="Cloud_2_" fill="#CADCE0" stroke="#4264BA" stroke-width="3.5" stroke-miterlimit="10" d="M17.595,35.928
+ C17.282,26.996,29.76,16.85,38.02,31.021c0.283-0.14,10.555-7.22,13.705,7.715c8.271-0.352,10.345,17.881-3.105,17.533
+ c-9.676-0.355-25.303,0.834-35.535,0.108C6.707,56.148,6.217,39.744,17.595,35.928z"/>
+</svg>
diff --git a/icons/03d.svg b/icons/03d.svg
new file mode 100644
index 0000000..f7006e3
--- /dev/null
+++ b/icons/03d.svg
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Weather" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="75px" height="75px" viewBox="0 0 75 75" enable-background="new 0 0 75 75" xml:space="preserve">
+<path id="Cloud_2_" fill="#E3FAFF" stroke="#5FACE0" stroke-width="3.5" stroke-miterlimit="10" d="M21.635,33.13
+ c-0.312-8.931,12.166-19.079,20.426-4.908c0.283-0.138,10.557-7.219,13.707,7.714c8.271-0.351,10.339,17.883-3.108,17.533
+ c-9.677-0.354-25.305,0.835-35.538,0.11C10.751,53.353,10.261,36.948,21.635,33.13z"/>
+</svg>
diff --git a/icons/03n.svg b/icons/03n.svg
new file mode 100644
index 0000000..c7006c7
--- /dev/null
+++ b/icons/03n.svg
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Weather" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="75px" height="75px" viewBox="0 0 75 75" enable-background="new 0 0 75 75" xml:space="preserve">
+<path id="Cloud_2_" fill="#CADCE0" stroke="#4264BA" stroke-width="3.5" stroke-miterlimit="10" d="M21.635,33.13
+ c-0.312-8.931,12.166-19.079,20.426-4.908c0.283-0.138,10.557-7.219,13.707,7.714c8.271-0.351,10.339,17.883-3.108,17.533
+ c-9.677-0.354-25.305,0.835-35.538,0.11C10.751,53.353,10.261,36.948,21.635,33.13z"/>
+</svg>
diff --git a/icons/04d.svg b/icons/04d.svg
new file mode 100644
index 0000000..a669234
--- /dev/null
+++ b/icons/04d.svg
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Weather" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="75px" height="75px" viewBox="0 0 75 75" enable-background="new 0 0 75 75" xml:space="preserve">
+<path id="Cloud_1_" fill="#707A7C" stroke="#315B72" stroke-width="3.5" stroke-miterlimit="10" d="M32.438,31.487
+ c-0.305-8.781,11.959-18.758,20.08-4.826c0.275-0.136,10.375-7.096,13.473,7.584c8.127-0.347,10.171,17.58-3.051,17.233
+ c-9.513-0.348-24.875,0.824-34.935,0.112C21.74,51.365,21.253,35.235,32.438,31.487z"/>
+<path id="Cloud_2_" fill="#E3FAFF" stroke="#5FACE0" stroke-width="3.5" stroke-miterlimit="10" d="M11.523,34.571
+ c-0.313-8.931,12.165-19.079,20.426-4.908c0.282-0.139,10.556-7.219,13.704,7.714c8.271-0.351,10.345,17.883-3.105,17.534
+ c-9.675-0.354-25.302,0.836-35.534,0.111C0.637,54.791,0.147,38.386,11.523,34.571z"/>
+</svg>
diff --git a/icons/04n.svg b/icons/04n.svg
new file mode 100644
index 0000000..0899ecd
--- /dev/null
+++ b/icons/04n.svg
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Weather" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="75px" height="75px" viewBox="0 0 75 75" enable-background="new 0 0 75 75" xml:space="preserve">
+<path id="Cloud_1_" fill="#707A7C" stroke="#294172" stroke-width="3.5" stroke-miterlimit="10" d="M32.438,31.487
+ c-0.306-8.781,11.959-18.758,20.08-4.826c0.274-0.136,10.374-7.096,13.472,7.584c8.129-0.347,10.171,17.58-3.051,17.233
+ c-9.512-0.348-24.875,0.824-34.932,0.112C21.741,51.365,21.254,35.235,32.438,31.487z"/>
+<path id="Cloud_2_" fill="#CADCE0" stroke="#4264BA" stroke-width="3.5" stroke-miterlimit="10" d="M11.523,34.571
+ c-0.312-8.931,12.166-19.079,20.425-4.908c0.281-0.139,10.555-7.219,13.703,7.714c8.271-0.351,10.343,17.883-3.104,17.534
+ c-9.675-0.354-25.303,0.836-35.534,0.111C0.638,54.791,0.147,38.386,11.523,34.571z"/>
+</svg>
diff --git a/icons/09d.svg b/icons/09d.svg
new file mode 100644
index 0000000..f6fed4c
--- /dev/null
+++ b/icons/09d.svg
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Weather" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="75px" height="75px" viewBox="0 0 75 75" enable-background="new 0 0 75 75" xml:space="preserve">
+<path id="Cloud_1_" fill="#707A7C" stroke="#315B72" stroke-width="3.5" stroke-miterlimit="10" d="M32.438,23.76
+ c-0.305-8.78,11.959-18.756,20.08-4.825c0.275-0.138,10.375-7.098,13.474,7.584c8.127-0.347,10.168,17.579-3.052,17.233
+ c-9.515-0.346-24.879,0.824-34.936,0.111C21.739,43.64,21.253,27.509,32.438,23.76z"/>
+<g id="Rain_1_">
+ <path id="drop1_1_" fill="#FFFFFF" stroke="#5FACE0" stroke-width="3.5" stroke-linecap="round" d="M51.1,62.987L51.1,62.987
+ l-9.749-14.626"/>
+ <path id="drop2_1_" fill="#FFFFFF" stroke="#5FACE0" stroke-width="3.5" stroke-linecap="round" d="M42.387,62.987l-9.75-14.626"/>
+ <path id="drop3_1_" fill="#FFFFFF" stroke="#5FACE0" stroke-width="3.5" stroke-linecap="round" d="M33.677,62.987l-9.75-14.626"/>
+ <path id="drop4_1_" fill="#FFFFFF" stroke="#5FACE0" stroke-width="3.5" stroke-linecap="round" d="M24.51,62.987l-9.75-14.626"/>
+</g>
+<path id="Cloud_2_" fill="#E3FAFF" stroke="#5FACE0" stroke-width="3.5" stroke-miterlimit="10" d="M11.523,26.844
+ c-0.312-8.933,12.165-19.079,20.425-4.908c0.282-0.141,10.556-7.221,13.703,7.712c8.273-0.351,10.34,17.883-3.104,17.533
+ c-9.679-0.354-25.308,0.835-35.539,0.111C0.638,47.064,0.146,30.659,11.523,26.844z"/>
+</svg>
diff --git a/icons/09n.svg b/icons/09n.svg
new file mode 100644
index 0000000..c86b7a6
--- /dev/null
+++ b/icons/09n.svg
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Weather" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="75px" height="75px" viewBox="0 0 75 75" enable-background="new 0 0 75 75" xml:space="preserve">
+<path id="Cloud_1_" fill="#707A7C" stroke="#294172" stroke-width="3.5" stroke-miterlimit="10" d="M32.438,23.76
+ c-0.305-8.78,11.959-18.756,20.08-4.825c0.274-0.138,10.374-7.098,13.472,7.584c8.129-0.347,10.169,17.579-3.051,17.233
+ c-9.514-0.346-24.877,0.824-34.934,0.111C21.742,43.64,21.254,27.509,32.438,23.76z"/>
+<g id="Rain_1_">
+ <path id="drop1_1_" fill="#FFFFFF" stroke="#4264BA" stroke-width="3.5" stroke-linecap="round" d="M51.099,62.987L51.099,62.987
+ l-9.748-14.626"/>
+ <path id="drop2_1_" fill="#FFFFFF" stroke="#4264BA" stroke-width="3.5" stroke-linecap="round" d="M42.388,62.987l-9.75-14.626"/>
+ <path id="drop3_1_" fill="#FFFFFF" stroke="#4264BA" stroke-width="3.5" stroke-linecap="round" d="M33.678,62.987l-9.75-14.626"/>
+ <path id="drop4_1_" fill="#FFFFFF" stroke="#4264BA" stroke-width="3.5" stroke-linecap="round" d="M24.51,62.987l-9.75-14.626"/>
+</g>
+<path id="Cloud_2_" fill="#CADCE0" stroke="#4264BA" stroke-width="3.5" stroke-miterlimit="10" d="M11.525,26.844
+ c-0.313-8.933,12.165-19.079,20.425-4.908c0.282-0.141,10.555-7.221,13.702,7.712c8.272-0.351,10.342,17.883-3.105,17.533
+ c-9.675-0.354-25.304,0.835-35.536,0.111C0.638,47.064,0.149,30.659,11.525,26.844z"/>
+</svg>
diff --git a/icons/10d.svg b/icons/10d.svg
new file mode 100644
index 0000000..039c72c
--- /dev/null
+++ b/icons/10d.svg
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Weather" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="75px" height="75px" viewBox="0 0 75 75" enable-background="new 0 0 75 75" xml:space="preserve">
+<g id="Sun">
+ <polygon fill="#FFCE00" stroke="#FFE578" stroke-width="3.5" stroke-miterlimit="10" points="53.097,42.626 61.796,45.487
+ 61.796,35.505 69.176,29.042 61.796,23.92 62.752,14.849 55.809,14.849 49.085,8.112 43.956,14.22 33.475,14.849 34.467,23.92
+ 26.543,29.042 33.996,35.505 33.066,45.487 41.918,42.467 46.577,49.924 "/>
+ <circle fill="#FFCE00" stroke="#FFE578" stroke-width="3.5" stroke-miterlimit="10" cx="48.082" cy="28.751" r="12.342"/>
+</g>
+<g id="Rain_1_">
+ <path id="drop1_1_" fill="#FFFFFF" stroke="#5FACE0" stroke-width="3.5" stroke-linecap="round" d="M54.398,66.889L54.398,66.889
+ L44.649,52.26"/>
+ <path id="drop2_1_" fill="#FFFFFF" stroke="#5FACE0" stroke-width="3.5" stroke-linecap="round" d="M45.687,66.889L35.938,52.26"/>
+ <path id="drop3_1_" fill="#FFFFFF" stroke="#5FACE0" stroke-width="3.5" stroke-linecap="round" d="M36.977,66.889l-9.75-14.629"/>
+ <path id="drop4_1_" fill="#FFFFFF" stroke="#5FACE0" stroke-width="3.5" stroke-linecap="round" d="M27.81,66.889L18.06,52.26"/>
+</g>
+<path id="Cloud_2_" fill="#E3FAFF" stroke="#5FACE0" stroke-width="3.5" stroke-miterlimit="10" d="M14.823,30.744
+ c-0.313-8.933,12.164-19.079,20.425-4.91c0.282-0.139,10.556-7.219,13.703,7.714c8.275-0.349,10.342,17.883-3.104,17.536
+ c-9.677-0.354-25.305,0.835-35.537,0.108C3.936,50.964,3.447,34.56,14.823,30.744z"/>
+</svg>
diff --git a/icons/10n.svg b/icons/10n.svg
new file mode 100644
index 0000000..424249e
--- /dev/null
+++ b/icons/10n.svg
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Weather" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="75px" height="75px" viewBox="0 0 75 75" enable-background="new 0 0 75 75" xml:space="preserve">
+<g id="Moon">
+ <circle fill="#FFFFFF" stroke="#1F3784" stroke-width="3.5" stroke-miterlimit="10" cx="50.854" cy="26.205" r="15.551"/>
+ <path fill="#1F3784" stroke="#1F3784" stroke-width="3.5" stroke-miterlimit="10" d="M50.25,13.285
+ c5.192,11.83,1.483,17.292-9.072,22.378c-5.092-1.478-6.267-6.95-3.92-15.264C39.603,12.084,45.534,11.309,50.25,13.285z"/>
+</g>
+<g id="Rain_1_">
+ <path id="drop1_1_" fill="#FFFFFF" stroke="#4264BA" stroke-width="3.5" stroke-linecap="round" d="M57.171,64.346L57.171,64.346
+ l-9.75-14.628"/>
+ <path id="drop2_1_" fill="#FFFFFF" stroke="#4264BA" stroke-width="3.5" stroke-linecap="round" d="M48.458,64.346l-9.75-14.628"/>
+ <path id="drop3_1_" fill="#FFFFFF" stroke="#4264BA" stroke-width="3.5" stroke-linecap="round" d="M39.749,64.346l-9.75-14.628"/>
+ <path id="drop4_1_" fill="#FFFFFF" stroke="#4264BA" stroke-width="3.5" stroke-linecap="round" d="M30.578,64.346l-9.75-14.628"/>
+</g>
+<path id="Cloud_2_" fill="#CADCE0" stroke="#4264BA" stroke-width="3.5" stroke-miterlimit="10" d="M17.595,28.2
+ c-0.313-8.933,12.164-19.079,20.425-4.909c0.283-0.138,10.555-7.218,13.705,7.714c8.271-0.35,10.345,17.884-3.105,17.535
+ c-9.676-0.354-25.303,0.836-35.535,0.11C6.707,48.422,6.217,32.015,17.595,28.2z"/>
+</svg>
diff --git a/icons/11d.svg b/icons/11d.svg
new file mode 100644
index 0000000..86c7d83
--- /dev/null
+++ b/icons/11d.svg
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Weather" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="75px" height="75px" viewBox="0 0 75 75" enable-background="new 0 0 75 75" xml:space="preserve">
+<path id="Cloud_1_" fill="#707A7C" stroke="#315B72" stroke-width="3.5" stroke-miterlimit="10" d="M32.438,21.135
+ c-0.305-8.779,11.959-18.756,20.08-4.825c0.274-0.139,10.374-7.098,13.472,7.584c8.129-0.347,10.169,17.578-3.051,17.233
+ c-9.514-0.347-24.877,0.824-34.934,0.112C21.742,41.014,21.254,24.884,32.438,21.135z"/>
+<polygon id="Lightning" fill="#FFCE00" stroke="#FFE578" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" points="
+ 48.628,40.771 42.988,50.878 49.1,50.407 46.514,57.931 56.151,47.121 50.034,46.882 54.035,40.771 "/>
+<path id="Cloud_2_" fill="#E3FAFF" stroke="#5FACE0" stroke-width="3.5" stroke-miterlimit="10" d="M11.525,24.219
+ C11.212,15.287,23.689,5.14,31.95,19.312c0.282-0.139,10.555-7.22,13.702,7.712c8.272-0.35,10.342,17.884-3.105,17.536
+ c-9.675-0.354-25.304,0.835-35.536,0.112C0.638,44.438,0.149,28.034,11.525,24.219z"/>
+<polygon id="Ligtning" fill="#FFCE00" stroke="#FFE578" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" points="
+ 21.386,39.33 12.747,54.811 22.106,54.092 18.146,65.611 35.786,49.051 26.426,48.691 32.546,39.33 "/>
+</svg>
diff --git a/icons/11n.svg b/icons/11n.svg
new file mode 100644
index 0000000..bd82589
--- /dev/null
+++ b/icons/11n.svg
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Weather" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="75px" height="75px" viewBox="0 0 75 75" enable-background="new 0 0 75 75" xml:space="preserve">
+<path id="Cloud_1_" fill="#707A7C" stroke="#294172" stroke-width="3.5" stroke-miterlimit="10" d="M32.438,21.135
+ c-0.306-8.779,11.959-18.756,20.08-4.825c0.274-0.136,10.374-7.097,13.472,7.584c8.129-0.347,10.171,17.578-3.051,17.233
+ c-9.512-0.347-24.875,0.823-34.932,0.112C21.741,41.018,21.254,24.885,32.438,21.135z"/>
+<polygon id="Lightning" fill="#FFCE00" stroke="#FFE578" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" points="
+ 48.628,40.771 42.984,50.878 49.1,50.407 46.514,57.931 56.151,47.121 50.034,46.882 54.035,40.771 "/>
+<path id="Cloud_2_" fill="#CADCE0" stroke="#4264BA" stroke-width="3.5" stroke-miterlimit="10" d="M11.523,24.221
+ c-0.312-8.933,12.166-19.079,20.425-4.909c0.281-0.138,10.555-7.219,13.703,7.715c8.271-0.351,10.343,17.882-3.104,17.533
+ c-9.675-0.354-25.303,0.835-35.534,0.112C0.638,44.441,0.147,28.034,11.523,24.221z"/>
+<polygon id="Ligtning" fill="#FFCE00" stroke="#FFE578" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" points="
+ 21.385,39.33 12.747,54.811 22.106,54.092 18.146,65.611 35.785,49.051 26.425,48.691 32.546,39.33 "/>
+</svg>
diff --git a/icons/13d.svg b/icons/13d.svg
new file mode 100644
index 0000000..6b18ff2
--- /dev/null
+++ b/icons/13d.svg
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Weather" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="75px" height="75px" viewBox="0 0 75 75" enable-background="new 0 0 75 75" xml:space="preserve">
+<path id="Cloud_1_" fill="#707A7C" stroke="#315B72" stroke-width="3.5" stroke-miterlimit="10" d="M32.438,21.692
+ c-0.308-8.779,11.959-18.756,20.08-4.825c0.274-0.138,10.374-7.098,13.472,7.584c8.129-0.347,10.171,17.579-3.051,17.234
+ c-9.512-0.346-24.875,0.824-34.932,0.111C21.741,41.573,21.254,25.442,32.438,21.692z"/>
+<path id="Cloud_2_" fill="#E3FAFF" stroke="#5FACE0" stroke-width="3.5" stroke-miterlimit="10" d="M11.523,24.775
+ c-0.312-8.933,12.167-19.079,20.425-4.908c0.28-0.139,10.555-7.22,13.703,7.712c8.271-0.351,10.343,17.882-3.104,17.533
+ c-9.675-0.354-25.303,0.836-35.534,0.11C0.638,44.996,0.147,28.593,11.523,24.775z"/>
+<g id="Snow">
+
+ <line fill="none" stroke="#5FACE0" stroke-width="3.5" stroke-linecap="round" stroke-miterlimit="10" x1="14.567" y1="65.055" x2="14.567" y2="47.777"/>
+
+ <line fill="none" stroke="#5FACE0" stroke-width="3.5" stroke-linecap="round" stroke-miterlimit="10" x1="21.642" y1="61.373" x2="7.494" y2="51.461"/>
+
+ <line fill="none" stroke="#5FACE0" stroke-width="3.5" stroke-linecap="round" stroke-miterlimit="10" x1="7.492" y1="61.373" x2="21.64" y2="51.461"/>
+</g>
+<g id="Snow_1_">
+
+ <line fill="none" stroke="#5FACE0" stroke-width="3.5" stroke-linecap="round" stroke-miterlimit="10" x1="39.509" y1="58.609" x2="39.509" y2="43.728"/>
+
+ <line fill="none" stroke="#5FACE0" stroke-width="3.5" stroke-linecap="round" stroke-miterlimit="10" x1="45.602" y1="55.435" x2="33.414" y2="46.902"/>
+
+ <line fill="none" stroke="#5FACE0" stroke-width="3.5" stroke-linecap="round" stroke-miterlimit="10" x1="33.414" y1="55.435" x2="45.599" y2="46.902"/>
+</g>
+<g id="Snow_2_">
+
+ <line fill="none" stroke="#5FACE0" stroke-width="3.5" stroke-linecap="round" stroke-miterlimit="10" x1="28.119" y1="38.925" x2="28.119" y2="27.891"/>
+
+ <line fill="none" stroke="#5FACE0" stroke-width="3.5" stroke-linecap="round" stroke-miterlimit="10" x1="32.64" y1="36.575" x2="23.599" y2="30.244"/>
+
+ <line fill="none" stroke="#5FACE0" stroke-width="3.5" stroke-linecap="round" stroke-miterlimit="10" x1="23.599" y1="36.575" x2="32.64" y2="30.244"/>
+</g>
+</svg>
diff --git a/icons/13n.svg b/icons/13n.svg
new file mode 100644
index 0000000..1a6ab65
--- /dev/null
+++ b/icons/13n.svg
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Weather" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="75px" height="75px" viewBox="0 0 75 75" enable-background="new 0 0 75 75" xml:space="preserve">
+<path id="Cloud_1_" fill="#707A7C" stroke="#294172" stroke-width="3.5" stroke-miterlimit="10" d="M32.438,21.692
+ c-0.306-8.78,11.959-18.756,20.08-4.825c0.274-0.138,10.374-7.098,13.472,7.584c8.129-0.347,10.171,17.579-3.051,17.234
+ c-9.512-0.346-24.875,0.824-34.932,0.111C21.741,41.573,21.254,25.442,32.438,21.692z"/>
+<path id="Cloud_2_" fill="#CADCE0" stroke="#4264BA" stroke-width="3.5" stroke-miterlimit="10" d="M11.523,24.776
+ c-0.312-8.933,12.166-19.079,20.425-4.908c0.281-0.139,10.555-7.22,13.703,7.712c8.271-0.351,10.343,17.883-3.104,17.534
+ c-9.675-0.354-25.303,0.836-35.534,0.11C0.638,44.997,0.147,28.592,11.523,24.776z"/>
+<g id="Snow">
+
+ <line fill="none" stroke="#4264BA" stroke-width="3.5" stroke-linecap="round" stroke-miterlimit="10" x1="14.567" y1="65.056" x2="14.567" y2="47.779"/>
+
+ <line fill="none" stroke="#4264BA" stroke-width="3.5" stroke-linecap="round" stroke-miterlimit="10" x1="21.642" y1="61.373" x2="7.494" y2="51.462"/>
+
+ <line fill="none" stroke="#4264BA" stroke-width="3.5" stroke-linecap="round" stroke-miterlimit="10" x1="7.492" y1="61.373" x2="21.64" y2="51.462"/>
+</g>
+<g id="Snow_1_">
+
+ <line fill="none" stroke="#4264BA" stroke-width="3.5" stroke-linecap="round" stroke-miterlimit="10" x1="39.509" y1="58.61" x2="39.509" y2="43.729"/>
+
+ <line fill="none" stroke="#4264BA" stroke-width="3.5" stroke-linecap="round" stroke-miterlimit="10" x1="45.602" y1="55.437" x2="33.414" y2="46.903"/>
+
+ <line fill="none" stroke="#4264BA" stroke-width="3.5" stroke-linecap="round" stroke-miterlimit="10" x1="33.414" y1="55.437" x2="45.599" y2="46.903"/>
+</g>
+<g id="Snow_2_">
+
+ <line fill="none" stroke="#4264BA" stroke-width="3.5" stroke-linecap="round" stroke-miterlimit="10" x1="28.119" y1="38.927" x2="28.119" y2="27.891"/>
+
+ <line fill="none" stroke="#4264BA" stroke-width="3.5" stroke-linecap="round" stroke-miterlimit="10" x1="32.64" y1="36.575" x2="23.599" y2="30.244"/>
+
+ <line fill="none" stroke="#4264BA" stroke-width="3.5" stroke-linecap="round" stroke-miterlimit="10" x1="23.599" y1="36.575" x2="32.64" y2="30.244"/>
+</g>
+</svg>
diff --git a/icons/50d.svg b/icons/50d.svg
new file mode 100644
index 0000000..d2d8012
--- /dev/null
+++ b/icons/50d.svg
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Weather" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="75px" height="75px" viewBox="0 0 75 75" enable-background="new 0 0 75 75" xml:space="preserve">
+<path id="mist" fill="none" stroke="#E3FAFF" stroke-width="3.5" stroke-linecap="round" d="M60.504,23.4l-11.232-2.88L37.75,23.4
+ l-12.482-2.88l-10.77,2.88"/>
+<path id="fog" fill="none" stroke="#5FACE0" stroke-width="3.5" stroke-linecap="round" d="M60.504,33.583l-11.232-2.879
+ L37.75,33.583l-12.48-2.879L14.5,33.583"/>
+<path id="smoke" fill="none" stroke="#707A7C" stroke-width="3.5" stroke-linecap="round" d="M60.504,43.768l-11.232-2.879
+ L37.75,43.768l-12.48-2.879L14.5,43.768"/>
+<path id="dust" fill="none" stroke="#315B72" stroke-width="3.5" stroke-linecap="round" d="M60.504,54.479l-11.232-2.881
+ L37.75,54.479l-12.48-2.881L14.498,54.48"/>
+</svg>
diff --git a/icons/50n.svg b/icons/50n.svg
new file mode 100644
index 0000000..2ed8a9d
--- /dev/null
+++ b/icons/50n.svg
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Weather" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="75px" height="75px" viewBox="0 0 75 75" enable-background="new 0 0 75 75" xml:space="preserve">
+<path id="mist" fill="none" stroke="#CADCE0" stroke-width="3.5" stroke-linecap="round" d="M60.504,23.4l-11.232-2.88L37.75,23.4
+ l-12.482-2.88l-10.77,2.88"/>
+<path id="fog" fill="none" stroke="#4264BA" stroke-width="3.5" stroke-linecap="round" d="M60.504,33.583l-11.232-2.879
+ L37.75,33.583l-12.48-2.879L14.5,33.583"/>
+<path id="smoke" fill="none" stroke="#707A7C" stroke-width="3.5" stroke-linecap="round" d="M60.504,43.768l-11.232-2.879
+ L37.75,43.768l-12.48-2.879L14.5,43.768"/>
+<path id="dust" fill="none" stroke="#294172" stroke-width="3.5" stroke-linecap="round" d="M60.504,54.479l-11.232-2.881
+ L37.75,54.479l-12.48-2.881L14.498,54.48"/>
+</svg>
diff --git a/icons/refresh.svg b/icons/refresh.svg
new file mode 100644
index 0000000..0682978
--- /dev/null
+++ b/icons/refresh.svg
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
+ <!ENTITY fill_color "#FFFFFF">
+ <!ENTITY stroke_color "#010101">
+]>
+<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="22.16" height="22.16" viewBox="0 0 22.16 22.16" id="browse-view-refresh" xml:space="preserve">
+ <path
+ d="m 9.769744,17.559712 c -3.044496,-0.6084 -5.33832,-3.295344 -5.33832,-6.51768 0,-3.67224 2.97648,-6.649344 6.646848,-6.649344 3.672864,0 6.649344,2.977104 6.649344,6.649344 0,3.166176 -2.215824,5.816928 -5.18232,6.48648" id="path3220" style="fill:none;stroke:&stroke_color;;stroke-width:2.18400002;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+ <polyline
+ points=" 22.936,31.578 25.5,37.994 18.746,39.439 "
+ id="polyline3222"
+ style="fill:none;stroke:&stroke_color;;stroke-width:3.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ transform="matrix(0.624,0,0,0.624,-6.142256,-6.148544)" />
+</svg>
diff --git a/locale/es/LC_MESSAGES/net.mattr.Weather.mo b/locale/es/LC_MESSAGES/net.mattr.Weather.mo
new file mode 100644
index 0000000..0fcee5b
--- /dev/null
+++ b/locale/es/LC_MESSAGES/net.mattr.Weather.mo
Binary files differ
diff --git a/locale/es/activity.linfo b/locale/es/activity.linfo
new file mode 100644
index 0000000..2e9d6b0
--- /dev/null
+++ b/locale/es/activity.linfo
@@ -0,0 +1,2 @@
+[Activity]
+name = Tiempo
diff --git a/openweathermap.py b/openweathermap.py
new file mode 100644
index 0000000..37ef9f7
--- /dev/null
+++ b/openweathermap.py
@@ -0,0 +1,136 @@
+# openweathermap.py
+#
+# Copyright (C) 2013 Matthew Rahing
+#
+# This program is free software; you can redistribute it
+# and/or modify it under the terms of the GNU General
+# Public License as published by the Free Software
+# Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will
+# be useful, but WITHOUT ANY WARRANTY; without even
+# the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE. See the GNU General Public
+# License for more details.
+#
+# You should have received a copy of the GNU General
+# Public License along with this program; if not, write
+# to the Free Software Foundation, Inc., 51 Franklin
+# St, Fifth Floor, Boston, MA 02110-1301 USA
+
+from gettext import gettext as _
+
+class City(object):
+ def __init__(self, info):
+
+ self.clouds = get_value(info['clouds'], 'all')
+ self.name = get_value(info, 'name')
+ self.url = get_value(info, 'url')
+ self.country = get_value(info['sys'], 'country')
+ self.icon = get_value(info['weather'][0], 'icon')
+ self.weather_code = get_value(info['weather'][0], 'id')
+ self.weather = condition_codes[self.weather_code]
+ self.date = get_value(info, 'dt')
+ self.pressure = get_value(info['main'], 'pressure')
+ self.temp = get_value(info['main'], 'temp')
+ self.temp_max = get_value(info['main'], 'temp_max')
+ self.temp_min = get_value(info['main'], 'temp_min')
+ self.id = get_value(info, 'id')
+ self.humidity = get_value(info['main'], 'humidity')
+ self.wind_speed = get_value(info['wind'], 'speed')
+
+ self.forecast_daily = []
+ self.forecast_hourly = []
+
+ def load_forecast_daily(self, dict):
+ self.forecast_daily = []
+ for key in dict:
+ self.forecast_daily.append({
+ 'clouds' : get_value(key, 'clouds'),
+ 'icon' : get_value(key['weather'][0], 'icon'),
+ 'weather_code' : get_value(key['weather'][0], 'id'),
+ 'weather' : condition_codes[get_value(key['weather'][0], 'id')],
+ 'date' : get_value(key, 'dt'),
+ 'temp_day' : get_value(key['temp'], 'day'),
+ 'temp_night' : get_value(key['temp'], 'night'),
+ 'wind_speed' : get_value(key, 'speed'),
+ 'pressure' : get_value(key, 'pressure'),
+ 'humidity' : get_value(key, 'humidity')})
+
+ def load_forecast_hourly(self, dict):
+ self.forecast_hourly = []
+ for key in dict:
+ self.forecast_hourly.append({
+ 'clouds' : get_value(key['clouds'], 'all'),
+ 'icon' : get_value(key['weather'][0], 'icon'),
+ 'weather_code' : get_value(key['weather'][0], 'id'),
+ 'weather' : condition_codes[get_value(key['weather'][0], 'id')],
+ 'date' : get_value(key, 'dt'),
+ 'temp' : get_value(key['main'], 'temp'),
+ 'temp_max' : get_value(key['main'], 'temp_max'),
+ 'temp_min' : get_value(key['main'], 'temp_min'),
+ 'wind_speed' : get_value(key['wind'], 'speed'),
+ 'wind_deg' : get_value(key['wind'], 'deg'),
+ 'pressure' : get_value(key['main'], 'pressure'),
+ 'humidity' : get_value(key['main'], 'humidity')})
+
+def get_value(dict, key):
+ if key in dict:
+ value = dict[key]
+ if type(value) == unicode:
+ return value.encode('utf-8')
+ return value
+ else:
+ return None
+
+condition_codes = {
+ 200 : _('thunderstorm with light rain'),
+ 201 : _('thunderstorm with rain'),
+ 202 : _('thunderstorm with heavy rain'),
+ 210 : _('light thunderstorm'),
+ 211 : _('thunderstorm'),
+ 212 : _('heavy thunderstorm'),
+ 221 : _('ragged thunderstorm'),
+ 230 : _('thunderstorm with light drizzle'),
+ 231 : _('thunderstorm with drizzle'),
+ 232 : _('thunderstorm with heavy drizzle'),
+ 300 : _('light intensity drizzle'),
+ 301 : _('drizzle'),
+ 302 : _('heavy intensity drizzle'),
+ 310 : _('light intensity drizzle rain'),
+ 311 : _('drizzle rain'),
+ 312 : _('heavy intensity drizzle rain'),
+ 321 : _('shower drizzle'),
+ 500 : _('light rain'),
+ 501 : _('moderate rain'),
+ 502 : _('heavy intensity rain'),
+ 503 : _('very heavy rain'),
+ 504 : _('extreme rain'),
+ 511 : _('freezing rain'),
+ 520 : _('light intensity shower rain'),
+ 521 : _('shower rain'),
+ 522 : _('heavy intensity shower rain'),
+ 600 : _('light snow'),
+ 601 : _('snow'),
+ 602 : _('heavy snow'),
+ 611 : _('sleet'),
+ 621 : _('shower snow'),
+ 701 : _('mist'),
+ 711 : _('smoke'),
+ 721 : _('haze'),
+ 731 : _('sand/dust whirls'),
+ 741 : _('fog'),
+ 761 : _('dust'),
+ 800 : _('sky is clear'),
+ 801 : _('few clouds'),
+ 802 : _('scattered clouds'),
+ 803 : _('broken clouds'),
+ 804 : _('overcast clouds'),
+ 900 : _('tornado'),
+ 901 : _('tropical storm'),
+ 902 : _('hurricane'),
+ 903 : _('cold'),
+ 904 : _('hot'),
+ 905 : _('windy'),
+ 906 : _('hail')} \ No newline at end of file
diff --git a/po/POTFILES.in b/po/POTFILES.in
new file mode 100644
index 0000000..193156a
--- /dev/null
+++ b/po/POTFILES.in
@@ -0,0 +1,5 @@
+encoding: UTF-8
+weather.py
+forecastscreen.py
+openweathermap.py
+searchscreen.py
diff --git a/po/Weather.pot b/po/Weather.pot
new file mode 100644
index 0000000..6eafa12
--- /dev/null
+++ b/po/Weather.pot
@@ -0,0 +1,342 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-09-28 19:18-0400\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: activity/activity.info:2
+msgid "Weather"
+msgstr ""
+
+#: searchscreen.py:63 forecastscreen.py:81 forecastscreen.py:268
+msgid "Wind"
+msgstr ""
+
+#: searchscreen.py:69 forecastscreen.py:87 forecastscreen.py:273
+msgid "Clouds"
+msgstr ""
+
+#: searchscreen.py:75 forecastscreen.py:93 forecastscreen.py:278
+msgid "Pressure"
+msgstr ""
+
+#: searchscreen.py:81 forecastscreen.py:99 forecastscreen.py:283
+msgid "Humidity"
+msgstr ""
+
+#: openweathermap.py:88
+msgid "thunderstorm with light rain"
+msgstr ""
+
+#: openweathermap.py:89
+msgid "thunderstorm with rain"
+msgstr ""
+
+#: openweathermap.py:90
+msgid "thunderstorm with heavy rain"
+msgstr ""
+
+#: openweathermap.py:91
+msgid "light thunderstorm"
+msgstr ""
+
+#: openweathermap.py:92
+msgid "thunderstorm"
+msgstr ""
+
+#: openweathermap.py:93
+msgid "heavy thunderstorm"
+msgstr ""
+
+#: openweathermap.py:94
+msgid "ragged thunderstorm"
+msgstr ""
+
+#: openweathermap.py:95
+msgid "thunderstorm with light drizzle"
+msgstr ""
+
+#: openweathermap.py:96
+msgid "thunderstorm with drizzle"
+msgstr ""
+
+#: openweathermap.py:97
+msgid "thunderstorm with heavy drizzle"
+msgstr ""
+
+#: openweathermap.py:98
+msgid "light intensity drizzle"
+msgstr ""
+
+#: openweathermap.py:99
+msgid "drizzle"
+msgstr ""
+
+#: openweathermap.py:100
+msgid "heavy intensity drizzle"
+msgstr ""
+
+#: openweathermap.py:101
+msgid "light intensity drizzle rain"
+msgstr ""
+
+#: openweathermap.py:102
+msgid "drizzle rain"
+msgstr ""
+
+#: openweathermap.py:103
+msgid "heavy intensity drizzle rain"
+msgstr ""
+
+#: openweathermap.py:104
+msgid "shower drizzle"
+msgstr ""
+
+#: openweathermap.py:105
+msgid "light rain"
+msgstr ""
+
+#: openweathermap.py:106
+msgid "moderate rain"
+msgstr ""
+
+#: openweathermap.py:107
+msgid "heavy intensity rain"
+msgstr ""
+
+#: openweathermap.py:108
+msgid "very heavy rain"
+msgstr ""
+
+#: openweathermap.py:109
+msgid "extreme rain"
+msgstr ""
+
+#: openweathermap.py:110
+msgid "freezing rain"
+msgstr ""
+
+#: openweathermap.py:111
+msgid "light intensity shower rain"
+msgstr ""
+
+#: openweathermap.py:112
+msgid "shower rain"
+msgstr ""
+
+#: openweathermap.py:113
+msgid "heavy intensity shower rain"
+msgstr ""
+
+#: openweathermap.py:114
+msgid "light snow"
+msgstr ""
+
+#: openweathermap.py:115
+msgid "snow"
+msgstr ""
+
+#: openweathermap.py:116
+msgid "heavy snow"
+msgstr ""
+
+#: openweathermap.py:117
+msgid "sleet"
+msgstr ""
+
+#: openweathermap.py:118
+msgid "shower snow"
+msgstr ""
+
+#: openweathermap.py:119
+msgid "mist"
+msgstr ""
+
+#: openweathermap.py:120
+msgid "smoke"
+msgstr ""
+
+#: openweathermap.py:121
+msgid "haze"
+msgstr ""
+
+#: openweathermap.py:122
+msgid "sand/dust whirls"
+msgstr ""
+
+#: openweathermap.py:123
+msgid "fog"
+msgstr ""
+
+#: openweathermap.py:124
+msgid "dust"
+msgstr ""
+
+#: openweathermap.py:125
+msgid "sky is clear"
+msgstr ""
+
+#: openweathermap.py:126
+msgid "few clouds"
+msgstr ""
+
+#: openweathermap.py:127
+msgid "scattered clouds"
+msgstr ""
+
+#: openweathermap.py:128
+msgid "broken clouds"
+msgstr ""
+
+#: openweathermap.py:129
+msgid "overcast clouds"
+msgstr ""
+
+#: openweathermap.py:130
+msgid "tornado"
+msgstr ""
+
+#: openweathermap.py:131
+msgid "tropical storm"
+msgstr ""
+
+#: openweathermap.py:132
+msgid "hurricane"
+msgstr ""
+
+#: openweathermap.py:133
+msgid "cold"
+msgstr ""
+
+#: openweathermap.py:134
+msgid "hot"
+msgstr ""
+
+#: openweathermap.py:135
+msgid "windy"
+msgstr ""
+
+#: openweathermap.py:136
+msgid "hail"
+msgstr ""
+
+#: weather.py:55
+msgid ""
+"Enter the city's name to get a list of the most proper cities in the "
+"world. \n"
+"The more precise city name you put the more precise list you will get. \n"
+"Example - <b>Lon</b> or <b>Lond</b> or <b>London</b>."
+msgstr ""
+
+#: weather.py:110
+msgid "Temperature:"
+msgstr ""
+
+#: weather.py:161
+msgid "Back"
+msgstr ""
+
+#: weather.py:168
+msgid "Forecast"
+msgstr ""
+
+#: weather.py:219
+msgid "Download Error"
+msgstr ""
+
+#: weather.py:220
+msgid "There was a problem with the download"
+msgstr ""
+
+#: forecastscreen.py:42
+msgid "Jan"
+msgstr ""
+
+#: forecastscreen.py:42
+msgid "Feb"
+msgstr ""
+
+#: forecastscreen.py:42
+msgid "Mar"
+msgstr ""
+
+#: forecastscreen.py:42
+msgid "Apr"
+msgstr ""
+
+#: forecastscreen.py:42
+msgid "May"
+msgstr ""
+
+#: forecastscreen.py:42
+msgid "Jun"
+msgstr ""
+
+#: forecastscreen.py:43
+msgid "Jul"
+msgstr ""
+
+#: forecastscreen.py:43
+msgid "Aug"
+msgstr ""
+
+#: forecastscreen.py:43
+msgid "Sep"
+msgstr ""
+
+#: forecastscreen.py:43
+msgid "Oct"
+msgstr ""
+
+#: forecastscreen.py:43
+msgid "Nov"
+msgstr ""
+
+#: forecastscreen.py:43
+msgid "Dec"
+msgstr ""
+
+#: forecastscreen.py:45
+msgid "Monday"
+msgstr ""
+
+#: forecastscreen.py:45
+msgid "Tuesday"
+msgstr ""
+
+#: forecastscreen.py:45
+msgid "Wednesday"
+msgstr ""
+
+#: forecastscreen.py:45
+msgid "Thursday"
+msgstr ""
+
+#: forecastscreen.py:46
+msgid "Friday"
+msgstr ""
+
+#: forecastscreen.py:46
+msgid "Saturday"
+msgstr ""
+
+#: forecastscreen.py:46
+msgid "Sunday"
+msgstr ""
+
+#: forecastscreen.py:63
+msgid "Next days"
+msgstr ""
diff --git a/po/es.po b/po/es.po
new file mode 100644
index 0000000..dbaab07
--- /dev/null
+++ b/po/es.po
@@ -0,0 +1,342 @@
+# Spanish translations for Weather package.
+# Copyright (C) 2013 THE Weather'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the Weather package.
+#
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Weather.activity\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-09-28 19:18-0400\n"
+"PO-Revision-Date: 2013-08-15 20:01-0400\n"
+"Last-Translator: \n"
+"Language-Team: Spanish\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: activity/activity.info:2
+msgid "Weather"
+msgstr ""
+
+#: searchscreen.py:63 forecastscreen.py:81 forecastscreen.py:268
+msgid "Wind"
+msgstr "Viento"
+
+#: searchscreen.py:69 forecastscreen.py:87 forecastscreen.py:273
+msgid "Clouds"
+msgstr "Nubes"
+
+#: searchscreen.py:75 forecastscreen.py:93 forecastscreen.py:278
+msgid "Pressure"
+msgstr "Presión"
+
+#: searchscreen.py:81 forecastscreen.py:99 forecastscreen.py:283
+msgid "Humidity"
+msgstr "Humedad"
+
+#: openweathermap.py:88
+msgid "thunderstorm with light rain"
+msgstr "tormenta eléctrica con lluvia ligera"
+
+#: openweathermap.py:89
+msgid "thunderstorm with rain"
+msgstr "tormenta eléctrica con lluvia"
+
+#: openweathermap.py:90
+msgid "thunderstorm with heavy rain"
+msgstr "tormenta eléctrica con lluvia intensa"
+
+#: openweathermap.py:91
+msgid "light thunderstorm"
+msgstr "tormenta eléctrica ligera"
+
+#: openweathermap.py:92
+msgid "thunderstorm"
+msgstr "tormenta eléctrica"
+
+#: openweathermap.py:93
+msgid "heavy thunderstorm"
+msgstr "fuerte tormenta eléctrica"
+
+#: openweathermap.py:94
+msgid "ragged thunderstorm"
+msgstr "tormenta eléctrica desigual"
+
+#: openweathermap.py:95
+msgid "thunderstorm with light drizzle"
+msgstr "tormenta eléctrica con llovizna ligera"
+
+#: openweathermap.py:96
+msgid "thunderstorm with drizzle"
+msgstr "tormenta eléctrica con llovizna"
+
+#: openweathermap.py:97
+msgid "thunderstorm with heavy drizzle"
+msgstr "tormenta eléctrica con llovizna intensa"
+
+#: openweathermap.py:98
+msgid "light intensity drizzle"
+msgstr "llovizna ligera"
+
+#: openweathermap.py:99
+msgid "drizzle"
+msgstr "llovizna"
+
+#: openweathermap.py:100
+msgid "heavy intensity drizzle"
+msgstr "llovizna de gran intensidad"
+
+#: openweathermap.py:101
+msgid "light intensity drizzle rain"
+msgstr "lluvia y llovizna ligera"
+
+#: openweathermap.py:102
+msgid "drizzle rain"
+msgstr "lluvia y llovizna"
+
+#: openweathermap.py:103
+msgid "heavy intensity drizzle rain"
+msgstr "lluvia y llovizna de gran intensidad"
+
+#: openweathermap.py:104
+msgid "shower drizzle"
+msgstr "llovizna de ducha"
+
+#: openweathermap.py:105
+msgid "light rain"
+msgstr "lluvia ligera"
+
+#: openweathermap.py:106
+msgid "moderate rain"
+msgstr "lluvia moderada"
+
+#: openweathermap.py:107
+msgid "heavy intensity rain"
+msgstr "lluvia de gran intensidad"
+
+#: openweathermap.py:108
+msgid "very heavy rain"
+msgstr "lluvia muy fuerte"
+
+#: openweathermap.py:109
+msgid "extreme rain"
+msgstr "lluvia muy fuerte"
+
+#: openweathermap.py:110
+msgid "freezing rain"
+msgstr "lluvia helada"
+
+#: openweathermap.py:111
+msgid "light intensity shower rain"
+msgstr "lluvia de ducha de intensidad de luz"
+
+#: openweathermap.py:112
+msgid "shower rain"
+msgstr "lluvia de ducha"
+
+#: openweathermap.py:113
+msgid "heavy intensity shower rain"
+msgstr "lluvia de ducha de gran intensidad"
+
+#: openweathermap.py:114
+msgid "light snow"
+msgstr "nevada ligera"
+
+#: openweathermap.py:115
+msgid "snow"
+msgstr "nieve"
+
+#: openweathermap.py:116
+msgid "heavy snow"
+msgstr "nevada intensa"
+
+#: openweathermap.py:117
+msgid "sleet"
+msgstr "aguanieve"
+
+#: openweathermap.py:118
+msgid "shower snow"
+msgstr "nieve de ducha"
+
+#: openweathermap.py:119
+msgid "mist"
+msgstr "niebla"
+
+#: openweathermap.py:120
+msgid "smoke"
+msgstr "humo"
+
+#: openweathermap.py:121
+msgid "haze"
+msgstr "niebla"
+
+#: openweathermap.py:122
+msgid "sand/dust whirls"
+msgstr "torbellinos de arena/polvo"
+
+#: openweathermap.py:123
+msgid "fog"
+msgstr "bruma"
+
+#: openweathermap.py:124
+msgid "dust"
+msgstr ""
+
+#: openweathermap.py:125
+msgid "sky is clear"
+msgstr "cielo claro"
+
+#: openweathermap.py:126
+msgid "few clouds"
+msgstr "algo de nubes"
+
+#: openweathermap.py:127
+msgid "scattered clouds"
+msgstr "nubes dispersas"
+
+#: openweathermap.py:128
+msgid "broken clouds"
+msgstr "nubes rotas"
+
+#: openweathermap.py:129
+msgid "overcast clouds"
+msgstr "nubes"
+
+#: openweathermap.py:130
+msgid "tornado"
+msgstr "tornado"
+
+#: openweathermap.py:131
+msgid "tropical storm"
+msgstr "tormenta tropical"
+
+#: openweathermap.py:132
+msgid "hurricane"
+msgstr "huracán"
+
+#: openweathermap.py:133
+msgid "cold"
+msgstr "frío"
+
+#: openweathermap.py:134
+msgid "hot"
+msgstr "calor"
+
+#: openweathermap.py:135
+msgid "windy"
+msgstr "ventoso"
+
+#: openweathermap.py:136
+msgid "hail"
+msgstr "granizo"
+
+#: weather.py:55
+msgid ""
+"Enter the city's name to get a list of the most proper cities in the "
+"world. \n"
+"The more precise city name you put the more precise list you will get. \n"
+"Example - <b>Lon</b> or <b>Lond</b> or <b>London</b>."
+msgstr ""
+
+#: weather.py:110
+msgid "Temperature:"
+msgstr "Temperatura:"
+
+#: weather.py:161
+msgid "Back"
+msgstr "Volver"
+
+#: weather.py:168
+msgid "Forecast"
+msgstr "Pronóstico"
+
+#: weather.py:219
+msgid "Download Error"
+msgstr "Error"
+
+#: weather.py:220
+msgid "There was a problem with the download"
+msgstr "Problema con la descarga"
+
+#: forecastscreen.py:42
+msgid "Jan"
+msgstr "ene"
+
+#: forecastscreen.py:42
+msgid "Feb"
+msgstr "feb"
+
+#: forecastscreen.py:42
+msgid "Mar"
+msgstr "mar"
+
+#: forecastscreen.py:42
+msgid "Apr"
+msgstr "abr"
+
+#: forecastscreen.py:42
+msgid "May"
+msgstr "may"
+
+#: forecastscreen.py:42
+msgid "Jun"
+msgstr "jun"
+
+#: forecastscreen.py:43
+msgid "Jul"
+msgstr "jul"
+
+#: forecastscreen.py:43
+msgid "Aug"
+msgstr "ago"
+
+#: forecastscreen.py:43
+msgid "Sep"
+msgstr "sep"
+
+#: forecastscreen.py:43
+msgid "Oct"
+msgstr "oct"
+
+#: forecastscreen.py:43
+msgid "Nov"
+msgstr "nov"
+
+#: forecastscreen.py:43
+msgid "Dec"
+msgstr "dic"
+
+#: forecastscreen.py:45
+msgid "Monday"
+msgstr "lunes"
+
+#: forecastscreen.py:45
+msgid "Tuesday"
+msgstr "martes"
+
+#: forecastscreen.py:45
+msgid "Wednesday"
+msgstr "miércoles"
+
+#: forecastscreen.py:45
+msgid "Thursday"
+msgstr "jueves"
+
+#: forecastscreen.py:46
+msgid "Friday"
+msgstr "viernes"
+
+#: forecastscreen.py:46
+msgid "Saturday"
+msgstr "sábado"
+
+#: forecastscreen.py:46
+msgid "Sunday"
+msgstr "domingo"
+
+#: forecastscreen.py:63
+msgid "Next days"
+msgstr "próximos días"
diff --git a/searchscreen.py b/searchscreen.py
new file mode 100644
index 0000000..f617abd
--- /dev/null
+++ b/searchscreen.py
@@ -0,0 +1,203 @@
+# searchscreen.py
+#
+# Copyright (C) 2013 Matthew Rahing
+#
+# This program is free software; you can redistribute it
+# and/or modify it under the terms of the GNU General
+# Public License as published by the Free Software
+# Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will
+# be useful, but WITHOUT ANY WARRANTY; without even
+# the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE. See the GNU General Public
+# License for more details.
+#
+# You should have received a copy of the GNU General
+# Public License along with this program; if not, write
+# to the Free Software Foundation, Inc., 51 Franklin
+# St, Fifth Floor, Boston, MA 02110-1301 USA
+
+from gi.repository import Gtk
+from gi.repository import Gdk
+from gi.repository import GdkPixbuf
+
+import os
+import openweathermap
+import logging
+
+from gettext import gettext as _
+
+SCREEN_WIDTH = Gdk.Screen.width()
+SCREEN_HEIGHT = Gdk.Screen.height()
+
+_logger = logging.getLogger('weather-activity')
+
+class SearchTreeView(Gtk.TreeView):
+ def __init__(self, activity):
+ Gtk.TreeView.__init__(self)
+
+ self.activity = activity
+
+ self.liststore = Gtk.ListStore(object)
+
+ self.set_grid_lines(Gtk.TreeViewGridLines.HORIZONTAL)
+
+ renderer_pixbuf = Gtk.CellRendererPixbuf()
+ renderer_text = Gtk.CellRendererText()
+ renderer_text.set_property('height', SCREEN_HEIGHT / 10)
+
+ column = Gtk.TreeViewColumn('', renderer_pixbuf)
+ column.set_cell_data_func(renderer_pixbuf, self.load_pixbuf)
+ column.set_min_width(SCREEN_WIDTH / 9)
+ column.set_max_width(SCREEN_WIDTH / 9)
+ self.append_column(column)
+
+ column = Gtk.TreeViewColumn('', renderer_text)
+ column.set_cell_data_func(renderer_text, self.load_info)
+ column.set_min_width(SCREEN_WIDTH / 2.6)
+ column.set_max_width(SCREEN_WIDTH / 2.6)
+ self.append_column(column)
+
+ column = Gtk.TreeViewColumn(_('Wind'), renderer_text)
+ column.set_cell_data_func(renderer_text, self.load_wind)
+ column.set_min_width(SCREEN_WIDTH / 8)
+ column.set_max_width(SCREEN_WIDTH / 8)
+ self.append_column(column)
+
+ column = Gtk.TreeViewColumn(_('Clouds'), renderer_text)
+ column.set_cell_data_func(renderer_text, self.load_clouds)
+ column.set_min_width(SCREEN_WIDTH / 9)
+ column.set_max_width(SCREEN_WIDTH / 9)
+ self.append_column(column)
+
+ column = Gtk.TreeViewColumn(_('Pressure'), renderer_text)
+ column.set_cell_data_func(renderer_text, self.load_pressure)
+ column.set_min_width(SCREEN_WIDTH / 7)
+ column.set_max_width(SCREEN_WIDTH / 7)
+ self.append_column(column)
+
+ column = Gtk.TreeViewColumn(_('Humidity'), renderer_text)
+ column.set_cell_data_func(renderer_text, self.load_humidity)
+ self.append_column(column)
+
+ self.set_model(self.liststore)
+
+ selection = self.get_selection()
+ selection.connect('changed', self.treeview_changed)
+
+ self.show()
+
+ def load_pixbuf(self, column, cell_renderer, model, iter, data):
+ city = model.get_value(iter, 0)
+
+ file_name = 'icons/%s.svg' % (city.icon[:3])
+ pixbuf = GdkPixbuf.Pixbuf.new_from_file(file_name)
+
+ cell_renderer.set_property('pixbuf', pixbuf)
+
+ def load_info(self, column, cell_renderer, model, iter, data):
+ city = model.get_value(iter, 0)
+
+ name = '%s, %s' % (city.name, city.country)
+ temp = self.activity.convert(city.temp)
+ temp_max = self.activity.convert(city.temp_max)
+ temp_min = self.activity.convert(city.temp_min)
+
+ info = '<b>%s</b> %s\n<span foreground="white" background="#5FACE0" \
+ > %s%s </span> Temp from %s%s to %s%s' % (name, city.weather,
+ temp, self.activity.temp_scale,
+ temp_min, self.activity.temp_scale,
+ temp_max, self.activity.temp_scale)
+
+ cell_renderer.set_property('markup', info)
+
+ def load_wind(self, column, cell_renderer, model, iter, data):
+ cell_renderer.set_property('text', '')
+ city = model.get_value(iter, 0)
+ if city.wind_speed != None:
+ wind = '\n%s %s' % (city.wind_speed, self.activity.wind_scale)
+ cell_renderer.set_property('text', wind)
+
+ def load_clouds(self, column, cell_renderer, model, iter, data):
+ cell_renderer.set_property('text', '')
+ city = model.get_value(iter, 0)
+ if city.clouds != None:
+ clouds = '\n %s %s' % (int(city.clouds),
+ self.activity.cloud_scale)
+ cell_renderer.set_property('text', clouds)
+
+ def load_pressure(self, column, cell_renderer, model, iter, data):
+ cell_renderer.set_property('text', '')
+ city = model.get_value(iter, 0)
+ if city.pressure != None:
+ pressure = '\n%s %s' % (city.pressure,
+ self.activity.pressure_scale)
+ cell_renderer.set_property('text', pressure)
+
+ def load_humidity(self, column, cell_renderer, model, iter, data):
+ cell_renderer.set_property('text', '')
+ city = model.get_value(iter, 0)
+ if city.humidity != None:
+ humidity = '\n %s %s' % (int(city.humidity),
+ self.activity.humidity_scale)
+ cell_renderer.set_property('text', humidity)
+
+ def treeview_changed(self, selection):
+ model, treeiter = selection.get_selected()
+ if treeiter != None:
+ self.activity.select_city(model[treeiter][0])
+
+ def update(self, results):
+ self.set_model(None)
+ self.liststore.clear()
+
+ for city in results:
+ self.liststore.append([city])
+
+ self.set_model(self.liststore)
+
+class SearchScreen(Gtk.Box):
+ def __init__(self, activity):
+ Gtk.Box.__init__(self)
+
+ self.activity = activity
+ self.search_results = []
+
+ self.search_treeview = SearchTreeView(self.activity)
+
+ self.scroll = Gtk.ScrolledWindow()
+ self.scroll.set_policy(Gtk.PolicyType.NEVER, Gtk.PolicyType.AUTOMATIC)
+ self.scroll.add(self.search_treeview)
+ self.scroll.show()
+
+ self.set_orientation(Gtk.Orientation.VERTICAL)
+ self.pack_start(self.scroll, expand=True, fill=True, padding=0)
+
+ self.show()
+
+ def search(self):
+ _logger.debug('searching: %s' % (self.activity.input))
+ source = 'find?q=%s&type=like&mode=json' % (self.activity.input)
+ dest = os.path.join(self.activity.get_activity_root(),
+ 'tmp', '', 'search.json')
+ self.activity.add_download(source, dest)
+
+ def download_complete(self, downloader, file_path, file_name):
+ self.search_results = []
+ for result in self.activity.read_file(file_path)['list']:
+ self.search_results.append(openweathermap.City(result))
+
+ self.activity.back_button.set_sensitive(False)
+ self.activity.forecast_button.set_sensitive(False)
+
+ self.activity.set_canvas(self)
+
+ def refresh(self):
+ self.activity.search_entry.set_text(self.activity.input)
+ self.search()
+
+ def display_results(self):
+ self.search_treeview.update(self.search_results)
+
diff --git a/setup.py b/setup.py
new file mode 100755
index 0000000..4f6a62f
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,25 @@
+#!/usr/bin/env python
+
+# Copyright (C) 2006, Red Hat, Inc.
+#
+# This program is free software; you can redistribute it
+# and/or modify it under the terms of the GNU General
+# Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at
+# your option) any later version.
+#
+# This program is distributed in the hope that it will
+# be useful, but WITHOUT ANY WARRANTY; without even
+# the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU General
+# Public License for more details.
+#
+# You should have received a copy of the GNU General
+# Public License along with this program; if not,
+# write to the Free Software Foundation, Inc.,
+# 51 Franklin St, Fifth Floor, Boston, MA
+# 02110-1301 USA
+
+from sugar3.activity import bundlebuilder
+
+bundlebuilder.start() \ No newline at end of file
diff --git a/weather.py b/weather.py
new file mode 100644
index 0000000..9d219b2
--- /dev/null
+++ b/weather.py
@@ -0,0 +1,343 @@
+# weather.py Weather Forecast
+#
+# Copyright (C) 2013 Matthew Rahing
+#
+# This program is free software; you can redistribute it
+# and/or modify it under the terms of the GNU General
+# Public License as published by the Free Software
+# Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will
+# be useful, but WITHOUT ANY WARRANTY; without even
+# the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE. See the GNU General Public
+# License for more details.
+#
+# You should have received a copy of the GNU General
+# Public License along with this program; if not, write
+# to the Free Software Foundation, Inc., 51 Franklin
+# St, Fifth Floor, Boston, MA 02110-1301 USA
+
+from gi.repository import Gtk
+from gi.repository import Gdk
+from gi.repository import GdkPixbuf
+
+import json
+import gobject
+import logging
+import searchscreen
+import forecastscreen
+
+from fractions import Fraction
+from gettext import gettext as _
+
+from sugar3 import network
+
+from sugar3.activity import activity
+from sugar3.activity.widgets import StopButton
+from sugar3.activity.widgets import ActivityToolbarButton
+
+from sugar3.graphics import style
+from sugar3.graphics import iconentry
+from sugar3.graphics.alert import ConfirmationAlert
+from sugar3.graphics.toolbarbox import ToolbarBox
+from sugar3.graphics.toolbutton import ToolButton
+from sugar3.graphics.toolcombobox import ToolComboBox
+from sugar3.graphics.toolbarbox import ToolbarButton
+
+_logger = logging.getLogger('weather-activity')
+
+SCREEN_WIDTH = Gdk.Screen.width()
+SCREEN_HEIGHT = Gdk.Screen.height()
+
+GREY = style.COLOR_PANEL_GREY.get_html()
+
+howto = _('Enter the city\'s name to get a list of the most proper cities in \
+the world. \nIf you put a more precise name, you will get a more precise list.\
+\nExample - <b>Lon</b> or <b>Lond</b> or <b>London</b>.')
+
+class ReadURLDownloader(network.GlibURLDownloader):
+ """URLDownloader that provides content-length and content-type."""
+
+ CHUNK_SIZE = 32
+
+ def get_content_length(self):
+ """Return the content-length of the download."""
+ if self._info is not None:
+ try:
+ return int(self._info.headers.get('Content-Length'))
+ except TypeError:
+ return 50
+
+ def get_content_type(self):
+ """Return the content-type of the download."""
+ if self._info is not None:
+ return self._info.headers.get('Content-Type')
+ return None
+
+
+class WeatherActivity(activity.Activity):
+ """WeatherActivity class as specified in activity.info"""
+
+ def __init__(self, handle):
+ """Set up the Weather activity."""
+ activity.Activity.__init__(self, handle)
+
+ # we do not have collaboration features
+ # make the share option insensitive
+ self.max_participants = 1
+
+ self.wind_scale = 'm/s'
+ self.pressure_scale = 'hPa'
+ self.humidity_scale = '%'
+ self.cloud_scale = '%'
+ self.temp_scale = 'K'
+ self.input = ''
+ self.selected_city = None
+
+ self.temp_scales = {'Kelvin' : 'K',
+ 'Celcius' : u'\u00b0C'.encode('utf-8'),
+ 'Farenheit' : u'\u00b0F'.encode('utf-8')}
+
+ # view toolbar
+ view_toolbar = Gtk.Toolbar()
+ toolbar_box = ToolbarBox()
+
+ activity_button = ActivityToolbarButton(self)
+ toolbar_box.toolbar.insert(activity_button, 0)
+ activity_button.show()
+
+ temp_label = Gtk.Label(_('Temperature:'))
+ temp_label.show()
+
+ temp_label_item = Gtk.ToolItem()
+ temp_label_item.add(temp_label)
+ temp_label_item.show()
+
+ temp_scale_store = Gtk.ListStore(str)
+ for key in self.temp_scales.keys():
+ temp_scale_store.append([key])
+
+ self.temp_scale_combo = Gtk.ComboBox.new_with_model(temp_scale_store)
+ renderer_text = Gtk.CellRendererText()
+ self.temp_scale_combo.pack_start(renderer_text, True)
+ self.temp_scale_combo.add_attribute(renderer_text, 'text', 0)
+ self.temp_scale_combo.connect('changed', self.temp_scale_combo_toggled)
+ self.temp_scale_combo.show()
+
+ temp_scale_combo_item = ToolComboBox(self.temp_scale_combo)
+ temp_scale_combo_item.show()
+
+ view_toolbar.insert(temp_label_item, -1)
+ view_toolbar.insert(temp_scale_combo_item, -1)
+ view_toolbar.show()
+
+ view_toolbar_button = ToolbarButton(icon_name='toolbar-view',
+ page=view_toolbar)
+ toolbar_box.toolbar.insert(view_toolbar_button, -1)
+ view_toolbar_button.show()
+
+ # toolbar
+ separator = Gtk.SeparatorToolItem()
+ toolbar_box.toolbar.insert(separator, -1)
+ separator.set_draw(False)
+ separator.set_expand(True)
+ separator.show()
+
+ self.search_entry = iconentry.IconEntry()
+ self.search_entry.connect('key-press-event', self.entry_key_press_cb)
+ self.search_entry.connect('icon-press', self.refresh)
+ self.search_entry.show()
+
+ self.search_entry_item = Gtk.ToolItem()
+ self.search_entry_item.set_size_request(SCREEN_WIDTH / 3, -1)
+ self.search_entry_item.add(self.search_entry)
+ toolbar_box.toolbar.insert(self.search_entry_item, -1)
+ self.search_entry_item.show()
+
+ self.back_button = ToolButton('go-previous-paired')
+ self.back_button.connect('clicked', self.back_button_clicked)
+ self.back_button.set_sensitive(False)
+ self.back_button.set_tooltip(_('Back'))
+ toolbar_box.toolbar.insert(self.back_button, -1)
+ self.back_button.show()
+
+ self.forecast_button = ToolButton('go-next-paired')
+ self.forecast_button.connect('clicked', self.forecast_button_clicked)
+ self.forecast_button.set_sensitive(False)
+ self.forecast_button.set_tooltip(_('Forecast'))
+ toolbar_box.toolbar.insert(self.forecast_button, -1)
+ self.forecast_button.show()
+
+ separator = Gtk.SeparatorToolItem()
+ toolbar_box.toolbar.insert(separator, -1)
+ separator.set_draw(False)
+ separator.set_expand(True)
+ separator.show()
+
+ stop_button = StopButton(self)
+ toolbar_box.toolbar.insert(stop_button, -1)
+ stop_button.show()
+
+ self.set_toolbar_box(toolbar_box)
+ toolbar_box.show()
+
+ # set up screen
+ self.search_screen = searchscreen.SearchScreen(self)
+ self.forecast_screen = forecastscreen.ForecastScreen(self)
+
+ self.screen = self.search_screen
+
+ howto_label = Gtk.Label()
+ howto_label.set_justify(Gtk.Justification.CENTER)
+ howto_label.set_markup(howto)
+ howto_label.show()
+
+ world_image = Gtk.Image()
+ world_image.modify_bg(Gtk.StateType.NORMAL,
+ Gdk.Color.parse(GREY)[1])
+ pixbuf = GdkPixbuf.Pixbuf.new_from_file('world.svg')
+ scaled_pixbuf = pixbuf.scale_simple(SCREEN_WIDTH, SCREEN_HEIGHT - 170,
+ GdkPixbuf.InterpType.BILINEAR)
+ world_image.set_from_pixbuf(scaled_pixbuf)
+ world_image.show()
+
+ box = Gtk.Box()
+ box.set_orientation(Gtk.Orientation.VERTICAL)
+ box.pack_start(howto_label, expand=True, fill=False, padding=0)
+ box.pack_start(world_image, expand=True, fill=True, padding=0)
+ box.show()
+
+ self.set_canvas(box)
+
+ self.temp_scale_combo.set_active(1)
+ self.search_entry.grab_focus()
+
+ def _alert_confirmation(self):
+ alert = ConfirmationAlert()
+ alert.remove_button(Gtk.ResponseType.CANCEL)
+ alert.props.title = (_('Download Error'))
+ alert.props.msg = (_('There was a problem with the download'))
+ alert.connect('response', self._alert_response)
+ self.add_alert(alert)
+
+ def _alert_response(self, alert, response_id):
+ self.remove_alert(alert)
+
+ def entry_key_press_cb(self, widget, event):
+ keyname = Gdk.keyval_name(event.keyval)
+ if keyname == 'Return':
+ self.set_focus(None)
+ self.input = widget.get_text()
+
+ self.search_screen.search()
+
+ self.screen = self.search_screen
+
+ def read_file(self, file):
+ data = open(file, 'r')
+ try:
+ text = data.read()
+ dict = json.loads(text)
+ return dict
+ finally:
+ data.close()
+
+ def add_download(self, source, dest):
+ self.search_entry.set_progress_fraction(0.2)
+ gobject.idle_add(self.download, source, dest)
+
+ def download(self, source, dest):
+ id = '43ae262450afb936759b9e905323c7e5'
+ url = 'http://api.openweathermap.org/data/2.5/%s&APPID=%s' % (source,
+ id)
+ _logger.debug(url)
+ downloader = ReadURLDownloader(url)
+
+ downloader.connect("error", self._alert_confirmation)
+ downloader.connect("progress", self.get_download_progress)
+ downloader.connect("finished", self.download_complete)
+
+ try:
+ downloader.start(dest)
+
+ except:
+ _logger.debug('download error')
+ self._alert_confirmation()
+
+ self.download_size = downloader.get_content_length()
+ self.download_type = downloader.get_content_type()
+ _logger.debug('size ' + str(self.download_size))
+ _logger.debug('type ' + str(self.download_type) + '\n')
+
+ def download_complete(self, downloader, file_path, file_name):
+ self.search_entry.set_progress_fraction(0)
+ file_type = self.download_type
+
+ if file_type.startswith('text/html') or self.download_size < 1:
+ _logger.debug('corrupt download')
+ self._alert_confirmation()
+ else:
+ if self.read_file(file_path)['cod'] == '200':
+ self.screen.download_complete(downloader, file_path, file_name)
+
+ self.screen.display_results()
+ self.show_refresh_button()
+
+ def get_download_progress(self, downloader, bytes_downloaded):
+ if self.download_size:
+ self.update_progressbar(bytes_downloaded, self.download_size)
+ while Gtk.events_pending():
+ Gtk.main_iteration()
+
+ def update_progressbar(self, bytes, total):
+ fraction = self.search_entry.get_progress_fraction() + \
+ (float(bytes) / float(total))
+ self.search_entry.set_progress_fraction(fraction)
+
+ def back_button_clicked(self, widget):
+ self.search_screen.display_results()
+ widget.set_sensitive(False)
+ self.forecast_button.set_sensitive(False)
+
+ self.screen = self.search_screen
+ self.set_canvas(self.screen)
+
+ def forecast_button_clicked(self, widget):
+ self.forecast_screen.get_daily_forecast()
+ widget.set_sensitive(False)
+ self.back_button.set_sensitive(True)
+
+ self.screen = self.forecast_screen
+
+ def show_refresh_button(self):
+ self.search_entry.set_icon_from_name(iconentry.ICON_ENTRY_SECONDARY,
+ 'refresh')
+
+ def refresh(self, entry, icon_pos, button):
+ self.set_focus(None)
+ screen = self.get_canvas()
+ screen.refresh()
+
+ def temp_scale_combo_toggled(self, combo):
+ tree_iter = combo.get_active_iter()
+ if tree_iter != None:
+ model = combo.get_model()
+ scale = model[tree_iter][0]
+ self.temp_scale = self.temp_scales[scale]
+
+ self.screen.display_results()
+
+ def convert(self, kelvin):
+ if self.temp_scale == self.temp_scales['Celcius']:
+ temp = kelvin - 273.15
+ elif self.temp_scale == self.temp_scales['Farenheit']:
+ temp = (kelvin * Fraction(9,5)) - 459.67
+ else:
+ temp = kelvin
+ return round(temp, 1)
+
+ def select_city(self, city):
+ self.selected_city = city
+ self.forecast_button.set_sensitive(True)
diff --git a/world.svg b/world.svg
new file mode 100644
index 0000000..8ad5348
--- /dev/null
+++ b/world.svg
@@ -0,0 +1,3393 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ width="1260.998px" height="632.667px" viewBox="9.5 8.881 1260.998 632.667" enable-background="new 9.5 8.881 1260.998 632.667"
+ xml:space="preserve">
+<g id="Layer_2_1_">
+ <rect x="-1.5" y="-1.79" fill="#A6A6A6" width="1284" height="662"/>
+</g>
+<g id="Layer_2">
+ <path id="path53" fill="#C0C0C0" d="M441.046,37.278L441.046,37.278l-0.878-0.35l-2.636-0.352l-2.636-0.353l-3.045-0.937
+ l0.645-0.059l4.979-0.059L441.046,37.278z"/>
+ <path id="path55" fill="#C0C0C0" d="M417.975,37.63L417.975,37.63l-4.802-0.468l-0.527-0.06l0.646-0.761l1.521,0.176l0.293,0.233
+ l3.865,0.587L417.975,37.63z"/>
+ <path id="path57" fill="#C0C0C0" d="M803.097,38.45L803.097,38.45l0.819-0.116l4.509-0.178l-0.351,0.119L803.097,38.45z"/>
+ <path id="path59" fill="#C0C0C0" d="M818.087,38.627L818.087,38.627l1.992-0.118l3.514,0.118l-0.994,0.35L818.087,38.627z"/>
+ <path id="path61" fill="#C0C0C0" d="M816.625,38.918L816.625,38.918h0.059H816.625z"/>
+ <path id="path63" fill="#C0C0C0" d="M816.625,38.918L816.625,38.918l1.345,0.059L816.625,38.918z"/>
+ <path id="path65" fill="#C0C0C0" d="M799.35,39.387L799.35,39.387l3.047-0.352L799.35,39.387z"/>
+ <path id="path67" fill="#C0C0C0" d="M794.784,40.265L794.784,40.265l-0.233-0.352l3.922,0.234l4.566-0.117l-4.858,0.41
+ L794.784,40.265z"/>
+ <path id="path69" fill="#C0C0C0" d="M915.993,40.323L915.993,40.323h0.059H915.993z"/>
+ <path id="path71" fill="#C0C0C0" d="M916.052,40.323L916.052,40.323v-0.059V40.323z"/>
+ <path id="path73" fill="#C0C0C0" d="M810.71,41.026L810.71,41.026l4.86-0.41L810.71,41.026z"/>
+ <path id="path75" fill="#C0C0C0" d="M796.715,40.675L796.715,40.675H799l1.461,0.177l3.867,0.468l-1.758,0.233l-1.873-0.175
+ L796.715,40.675z"/>
+ <path id="path77" fill="#C0C0C0" d="M877.875,41.203L877.875,41.203h0.059H877.875z"/>
+ <path id="path79" fill="#C0C0C0" d="M819.377,41.611L819.377,41.611l1.989-0.468l3.455-0.058l1.581-0.763l3.223,0.997l-1.641,0.41
+ l-1.466,0.175l-4.8,0.235L819.377,41.611l1.989-0.468l3.455-0.058l1.581-0.763l3.223,0.997l-1.641,0.41l-1.466,0.175l-4.8,0.235
+ L819.377,41.611z"/>
+ <path id="path81" fill="#C0C0C0" d="M790.858,40.968L790.858,40.968l0.878-0.353l2.931,0.41l2.519-0.058l5.212,0.762l-2.052,0.351
+ l-1.757-0.351l-2.225-0.119l-1.64-0.232L790.858,40.968z"/>
+ <path id="path83" fill="#C0C0C0" d="M877.875,41.203L877.875,41.203h0.059H877.875z"/>
+ <path id="path85" fill="#C0C0C0" d="M803.155,41.611L803.155,41.611h3.809H803.155z"/>
+ <path id="path87" fill="#C0C0C0" d="M789.338,41.611L789.338,41.611l0.292-0.058l2.048-0.058l4.629,0.234l-3.867,0.292
+ L789.338,41.611z"/>
+ <path id="path89" fill="#C0C0C0" d="M794.55,42.022L794.55,42.022h4.8H794.55z"/>
+ <path id="path91" fill="#C0C0C0" d="M935.491,40.032L935.491,40.032l1.466,0.176l-0.175,0.116h0.642l1.407,0.41l4.979,1.288
+ l-1.936,1.465l-0.758,0.233l-4.334,0.059l-3.163,0.293l-4.861,0.47l-3.747-0.527l-1.932-0.058l4.158-0.469l-1.406-0.06h-5.037
+ l4.217-0.233l-2.577-0.234l3.164-0.233l1.933-0.995l-0.938-0.704l2.048-0.115l0.117-0.06l3.75-0.234L935.491,40.032z"/>
+ <path id="path93" fill="#C0C0C0" d="M757.543,42.315L757.543,42.315l4.975-0.234l3.983-0.527l4.274,0.82l-3.396-0.526l-0.471,0.175
+ l-0.468-0.058l-4.92,1.055L757.543,42.315z"/>
+ <path id="path95" fill="#C0C0C0" d="M807.958,42.667L807.958,42.667l2.165-1.113L807.958,42.667z"/>
+ <path id="path97" fill="#C0C0C0" d="M766.909,44.248L766.909,44.248l-3.455-0.761L766.909,44.248z"/>
+ <path id="path99" fill="#C0C0C0" d="M802.102,44.189L802.102,44.189l-2.34-1.347L802.102,44.189z"/>
+ <path id="path101" fill="#C0C0C0" d="M783.423,43.837L783.423,43.837l2.165-0.76L783.423,43.837z"/>
+ <path id="path103" fill="#C0C0C0" d="M802.102,44.189L802.102,44.189l-0.467-1.289L802.102,44.189z"/>
+ <path id="path105" fill="#C0C0C0" d="M795.603,44.13L795.603,44.13L799,43.252L795.603,44.13z"/>
+ <path id="path107" fill="#C0C0C0" d="M715.907,43.778L715.907,43.778l0.763-0.116L715.907,43.778z"/>
+ <path id="path109" fill="#C0C0C0" d="M532.568,44.013L532.568,44.013l-3.277,0.175L532.568,44.013z"/>
+ <path id="path111" fill="#C0C0C0" d="M806.2,44.541L806.2,44.541l2.285-0.41L806.2,44.541z"/>
+ <path id="path113" fill="#C0C0C0" d="M775.46,44.598L775.46,44.598l4.625,0.059L775.46,44.598z"/>
+ <path id="path115" fill="#C0C0C0" d="M804.62,44.775L804.62,44.775l1.11-0.177L804.62,44.775z"/>
+ <path id="path117" fill="#C0C0C0" d="M249.217,44.013L249.217,44.013l2.812,1.522L249.217,44.013z"/>
+ <path id="path119" fill="#C0C0C0" d="M919.741,44.365L919.741,44.365l3.746,1.348h1.29l4.218-0.646l0.115-0.175l-2.635-0.41
+ l-3.428-0.058l-3.424-0.059H919.741z"/>
+ <path id="path121" fill="#C0C0C0" d="M686.922,43.31L686.922,43.31l-3.28,4.101l-3.805-0.178l0.232-0.644l-2.635,0.059
+ l-4.625-0.059l-4.042-0.468l2.813-0.469l2.457-0.117l3.982-0.292l-1.814,0.116l-0.116-0.116l0.407-0.061l-0.762-0.058l-4.684,0.177
+ l-2.868,0.233l-3.688-0.233l-2.4-1.23l0.878-0.175l0.059,0.06l1.933-0.06l3.396,0.175l0.351-1.287l4.101,0.994l4.92,0.82
+ l1.873-1.873l1.345,1.405l3.631-0.878L686.922,43.31z"/>
+ <path id="path123" fill="#C0C0C0" d="M268.188,40.617L268.188,40.617h4.275l-1.405-0.937l4.918,0.527l1.113,0.468l3.63,1.874
+ l2.519,0.118l2.751,0.059l2.577,1.463l2.987-1.111l0.817,3.103l3.104-0.41l1.64,0.762L301.272,47v0.116l-1.347,0.294l-4.92,0.817
+ l-3.221,1.055l-4.217,1.758l-4.098-1.641l1.756,1.641l-3.336,0.058l-3.69-0.175l-2.107-0.119l-3.162-0.938l-4.508-1.697
+ l3.277-0.702l1.641,0.117l0.41-0.117l1.521,0.058l1.698-0.058l4.685-0.177l0.353-0.117l-0.938,0.059l-5.211,0.117l-1.874-0.175
+ L274.335,47l5.095-0.293l-2.693,0.175l-4.159-0.527l-1.288,0.353l-1.814,0.468l0.41-0.526l-4.099,0.468l-2.635-0.526l0.353-0.059
+ l4.859-1.172L268.188,40.617z"/>
+ <path id="path125" fill="#C0C0C0" d="M331.722,35.874L331.722,35.874l-3.396-1.99L330.492,34l1.171-0.117l0.82-0.06l2.752,0.117
+ h3.104l1.932,0.585l4.158,0.527l-1.288-1.289l4.566,0.06l2.929,0.586l3.688-0.82l0.587,0.41l2.227-0.117l0.116,0.175L359.068,34
+ l1.113,0.058v0.177l1.698-0.118l4.802,0.118l-1.875,0.408l-4.215,0.41l-1.114,0.06l-1.053,0.176l4.155-0.059l1.992-0.234
+ l3.981-0.47l3.104-0.175l1.521,0.468l3.748-0.116l1.582,0.76l-1.523,0.528l3.924-0.352l4.099,0.76l-0.409,0.353l-0.938,0.177
+ l-1.932,0.117l0.527,0.117l-1.348,0.293h-0.879v0.115l-4.743,0.646l-1.814,0.292l-0.293,0.878l-1.17,0.352l-2.401,0.41
+ l-1.932,0.116l-2.577,0.704l-1.582,0.293h-1.347l-0.232,0.292l-4.627,0.82l-1.639,0.819l-4.861-0.645l-1.112,2.753l-3.923,0.41
+ l-2.399-0.119l-3.808-0.644l-2.342,0.353l4.625,0.058l0.82,0.763l-3.631,0.409l-2.985,0.233l-1.815-0.117l-0.41-0.117l-0.177,0.117
+ l-5.093-0.526l-3.162,0.701l-2.929,0.995l4.157,0.178l-1.933,0.878l1.873-0.704l3.514-0.233l2.813,3.747l-3.339,0.235l-1.229-0.178
+ l-4.04,0.061l2.283,1.17l-3.747,1.055l0.06-0.293l-1.523,0.353l-1.696-0.118l-3.748-0.06l-4.156-1.228l0.232,1.815l2.752-0.41
+ l3.396,0.292l3.807,0.177l3.162,2.167l-4.099,0.82h-1.172l-4.978,0.585l0.995-0.995l-1.523-0.468l-2.927,0.116l-2.4-1.055
+ l1.875,1.407l-4.275-1.23l0.702,1.23l-3.63-0.118l-2.458,0.587l-5.037-0.352l-0.878-0.878l-0.353,0.994l-2.868-0.937l0.41,0.937
+ l-3.338-0.116l-4.625-0.646l3.982-1.873l1.17-2.635l0.525,0.117l2.813-0.292l3.104,0.292l2.051,1.407l4.566,0.409l3.63-0.177
+ l4.04-2.577l-0.816,0.059l-4.744,2.05l-2.577-3.923l-3.045,1.756l-3.981-2.458l3.455-0.177l2.048-0.233l1.23,0.175l4.626,0.293
+ l3.747,0.76v-0.644l-3.221-0.293h3.396h1.989l0.762-0.82l-3.513,0.646l-1.464-0.175l-4.743-0.118l-1.757-0.233l4.977-0.058
+ l-3.455-0.468l-2.577-1.582l-4.977-0.469l-0.117-1.873l1.405-0.118l2.928,0.234h4.45l0.82,0.059l2.399,0.643l3.338,0.704
+ l1.58,0.995l0.879-0.175l2.928,0.174l3.045-0.41l-3.688,0.177l-2.518-0.234l0.409-0.761l-2.693-0.293l-3.631-1.055l4.1-0.292
+ l2.458-0.058l3.397-0.178l0.058-0.116l0.704-0.117l3.659-0.059l3.659-0.06l0.118-0.117h-1.348h-4.274l-1.173-0.059l4.86-0.526
+ l3.339-0.235l3.923-0.058l-0.819-2.048h-0.995l-4.216,0.526l-2.052,0.644l-2.398-0.353l-0.41,1.348l-4.566,0.587l-5.036,0.352
+ l1.404-0.997l-4.919,0.529l-3.396,0.585l-1.58-0.059h-3.865l-3.104-0.235l3.923-1.289l2.282-0.232l2.051-0.06l3.981-0.177
+ l1.698-0.117l1.463-0.175l-0.526,0.058h-1.112l-4.742,0.292h-1.407l-4.099,0.178l3.514-0.879l-0.644-0.059l-1.349,0.059
+ l-2.575,0.233l-1.347,0.293l-3.338,0.233h-3.338l-4.566,0.177l-1.463-0.762l3.863-0.059l-3.514-0.293l4.333-0.644l4.979,0.059
+ l-2.577-0.234l-0.526,0.06l-0.41-0.118l-3.574,0.293l-3.981,0.468l3.046-0.937l-1.758,0.058l-0.76-0.293v0.235l-1.172-0.117
+ l-4.626,0.058l0.645-0.058l5.035-0.82l3.572,0.41l4.333-1.112l4.568,0.177l4.156,0.175l3.455,0.41l-1.521-2.108l1.463,0.059v0.118
+ h-1.113l2.108,0.292l4.333,0.995l4.333,0.118l-3.864-0.937l1.171,0.058l2.577,0.468l4.741,0.585l4.686,0.585l-2.399-0.585
+ l0.232-0.115l-3.396-0.235l-0.585-0.117l0.41-0.117l-1.348-0.058l-1.289-0.119l-3.923-0.701l1.815-0.937l2.753,0.117l2.984,0.293
+ l-3.104-0.938l3.807,0.119l1.814,0.468l4.744-0.117l-3.28-0.997l4.568,0.526l1.17-0.35l2.4,0.175L331.722,35.874z"/>
+ <path id="path127" fill="#C0C0C0" d="M868.797,46.123L868.797,46.123l-1.229-0.178l4.51,0.353l-2.985-0.06L868.797,46.123z"/>
+ <path id="path129" fill="#C0C0C0" d="M949.021,47.175L949.021,47.175l0.233,1.463l-3.279,0.177l-4.101-0.118l-2.34-0.644
+ l-1.582,0.059l-5.153-0.293l-1.757-1.404l-5.211-0.292h1.522l4.916-0.938l0.879-0.995l1.173,0.293l0.467-0.234l0.646-0.117h1.698
+ l5.153-0.175l0.059,1.228l3.454-0.818L949.021,47.175z"/>
+ <path id="path131" fill="#C0C0C0" d="M537.37,47.292L537.37,47.292l0.409,0.468L537.37,47.292z"/>
+ <path id="path133" fill="#C0C0C0" d="M700.272,48.17L700.272,48.17l3.63,0.177L700.272,48.17z"/>
+ <path id="path135" fill="#C0C0C0" d="M532.159,48.289L532.159,48.289l-0.526,0.408L532.159,48.289z"/>
+ <path id="path137" fill="#C0C0C0" d="M535.849,48.581L535.849,48.581l-0.527,0.409L535.849,48.581z"/>
+ <path id="path139" fill="#C0C0C0" d="M693.129,48.757L693.129,48.757l0.587,0.292L693.129,48.757z"/>
+ <path id="path141" fill="#C0C0C0" d="M949.021,51.742L949.021,51.742l3.277-2.81h2.751l4.217-2.4l0.06,2.165l5.095-1.17
+ l1.874,1.055l3.513,1.229l-2.106,0.585l-0.41-0.059l-2.869,0.293l-2.926,0.059l-0.529,0.235l-0.586,0.058l-4.917-0.118l-4.45,0.878
+ H949.021z"/>
+ <path id="path143" fill="#C0C0C0" d="M535.262,49.225L535.262,49.225l-1.463,0.175L535.262,49.225z"/>
+ <path id="path145" fill="#C0C0C0" d="M235.279,46.823L235.279,46.823l3.982,1.698l2.227-0.762l3.336,0.528l5.037,1.229l1.288,2.635
+ l-4.979-0.115l-1.521-1.173h-1.113l-4.449-0.116l-0.586-0.526l-4.217,0.526l-2.928-0.41L235.279,46.823z"/>
+ <path id="path147" fill="#C0C0C0" d="M636.975,48.99L636.975,48.99l-0.527-0.585L636.975,48.99z"/>
+ <path id="path149" fill="#C0C0C0" d="M211.74,48.932L211.74,48.932l3.515,1.582h-4.627l-1.405-0.293l-4.45,0.058l-2.283,0.353
+ l-1.055-0.235l0.762-0.292l2.811-0.41l3.045-0.234L211.74,48.932z"/>
+ <path id="path151" fill="#C0C0C0" d="M676.853,50.748L676.853,50.748l-2.344-1.348L676.853,50.748z"/>
+ <path id="path153" fill="#C0C0C0" d="M676.909,50.689L676.909,50.689l-4.687,0.235L676.909,50.689z"/>
+ <path id="path155" fill="#C0C0C0" d="M637.149,46.18L637.149,46.18l3.573-1.055l2.167,0.587l-0.41-0.587l1.111,0.293l4.568-0.41
+ l-4.803,1.053l3.631-0.057l2.052,1.112l1.813-1.873l0.995,0.116l1.465,0.585l4.102,2.46l-0.528-4.1l3.455,0.47l2.868,0.702
+ l-1.641,1.289l2.519-0.937l1.989,1.64l3.223,0.058l0.232,0.47l1.29,0.116l4.509,0.763l-0.703,0.232l0.116,0.178l-0.583-0.059
+ l-0.471,0.117l-4.8,0.058l-2.635,0.585l0.467,1.23l-2.402,0.293l-0.408,1.814h-1.932l-2.285,1.582l-2.635,1.696l-2.985-1.111
+ l3.631-0.409h-4.158l-3.103-0.585l-3.104-3.104l2.692,0.292l-0.352-0.469h2.578l2.752-0.82l1.17-0.059l4.217-0.233l-2.636-1.055
+ l-3.925,0.937l-0.176-1.404l-2.281,1.64l-1.058,0.058l-5.033,0.585l0.703-1.17l-4.451-0.352l-2.05-1.113L637.149,46.18z"/>
+ <path id="path157" fill="#C0C0C0" d="M255.481,48.697L255.481,48.697l1.523,0.061l4.392,0.937l5.035,0.585l-0.938,1.463h-1.111
+ l-5.153,0.587L255.481,48.697z"/>
+ <path id="path159" fill="#C0C0C0" d="M972.034,50.805L972.034,50.805l1.345-0.233h0.878L972.034,50.805z"/>
+ <path id="path161" fill="#C0C0C0" d="M973.493,51.098L973.493,51.098l3.572-0.175l0.939,0.232l-0.939,0.235L973.493,51.098z"/>
+ <path id="path163" fill="#C0C0C0" d="M531.748,51.977L531.748,51.977l-4.04-0.235L531.748,51.977z"/>
+ <path id="path165" fill="#C0C0C0" d="M198.098,51.333L198.098,51.333l2.399,0.819l-1.053,0.353l-1.055,0.117l-1.289-0.176
+ l-0.878-0.761l1.407-0.352L198.098,51.333L198.098,51.333z"/>
+ <path id="path167" fill="#C0C0C0" d="M242.425,51.919L242.425,51.919l1.698,0.232l0.818,0.293l-3.747,0.235l-1.405-0.235
+ L242.425,51.919z"/>
+ <path id="path169" fill="#C0C0C0" d="M537.547,51.919L537.547,51.919l0.292,0.232L537.547,51.919z"/>
+ <path id="path171" fill="#C0C0C0" d="M680.716,51.567L680.716,51.567l1.989,0.47l4.449,0.409l-2.515,0.235l-1.582,0.818
+ l-3.925,0.704L680.716,51.567z"/>
+ <path id="path173" fill="#C0C0C0" d="M213.849,51.215L213.849,51.215l0.702,0.117L213.849,51.215z"/>
+ <path id="path175" fill="#C0C0C0" d="M272.287,52.621L272.287,52.621l0.233,0.117l-1.64,0.82l-3.894-0.061l-3.894-0.059h-0.353
+ l-1.582-0.468l4.275-0.527l1.288-0.116l3.162,0.175L272.287,52.621z"/>
+ <path id="path177" fill="#C0C0C0" d="M228.43,52.445L228.43,52.445l3.045,2.226L228.43,52.445z"/>
+ <path id="path179" fill="#C0C0C0" d="M280.427,52.797L280.427,52.797l2.692,1.58L280.427,52.797z"/>
+ <path id="path181" fill="#C0C0C0" d="M973.848,53.733L973.848,53.733l1.523-0.234L973.848,53.733z"/>
+ <path id="path183" fill="#C0C0C0" d="M349.347,53.499L349.347,53.499l1.757-0.059l2.226,0.177l-3.221,0.176L349.347,53.499z"/>
+ <path id="path185" fill="#C0C0C0" d="M345.834,53.499L345.834,53.499l2.985,0.234l0.116,0.117l-2.108,0.177l-2.166-0.352
+ L345.834,53.499z"/>
+ <path id="path187" fill="#C0C0C0" d="M976.308,54.26L976.308,54.26l1.873-0.293L976.308,54.26z"/>
+ <path id="path189" fill="#C0C0C0" d="M912.889,54.496L912.889,54.496l0.354-0.469L912.889,54.496z"/>
+ <path id="path191" fill="#C0C0C0" d="M938.714,54.377L938.714,54.377l0.059,0.06L938.714,54.377z"/>
+ <path id="path193" fill="#C0C0C0" d="M912.889,54.553L912.889,54.553l-0.06-0.117L912.889,54.553z"/>
+ <path id="path195" fill="#C0C0C0" d="M938.714,54.377L938.714,54.377h0.059H938.714z"/>
+ <path id="path197" fill="#C0C0C0" d="M198.449,55.49L198.449,55.49h1.348l1.053,0.176l-4.627,0.293l0.762-0.41L198.449,55.49z"/>
+ <path id="path199" fill="#C0C0C0" d="M1120.997,56.369L1120.997,56.369l3.631-0.526L1120.997,56.369z"/>
+ <path id="path201" fill="#C0C0C0" d="M182.756,53.792L182.756,53.792l2.751-0.059l3.923,0.117l1.172-0.702l1.814,3.045
+ l-4.039,0.527l-1.056,0.995l-1.58-1.992l-2.343,0.47l-3.63,1.112l-2.928,1.992l-1.815-1.407l-1.58,1.055l-4.92-0.177l-1.17-0.469
+ l2.167-1.111l1.521-0.177l0.702,0.118l0.878-0.059l0.41-0.409l0.82-0.469l0.995-0.06l0.292-0.117l0.82-0.058l0.645-0.175
+ l-0.059-0.235l0.819-0.175l0.351-0.293L182.756,53.792z"/>
+ <path id="path203" fill="#C0C0C0" d="M938.539,56.133L938.539,56.133l-0.763,0.293h-1.23L938.539,56.133z"/>
+ <path id="path205" fill="#C0C0C0" d="M283.472,55.666L283.472,55.666l1.055,0.293l-0.47,0.937h-0.938l-1.697-0.82l1.055-0.409
+ H283.472z"/>
+ <path id="path207" fill="#C0C0C0" d="M247.226,56.075L247.226,56.075l-3.163,0.526l-0.702,0.061l2.283-0.703L247.226,56.075z"/>
+ <path id="path209" fill="#C0C0C0" d="M941.874,56.075L941.874,56.075l0.587,0.469L941.874,56.075z"/>
+ <path id="path211" fill="#C0C0C0" d="M688.912,56.193L688.912,56.193l-1.698,0.818L688.912,56.193z"/>
+ <path id="path213" fill="#C0C0C0" d="M993.171,56.485L993.171,56.485v-0.058V56.485z"/>
+ <path id="path215" fill="#C0C0C0" d="M233.758,56.252L233.758,56.252l3.98,0.819l-2.46,0.469l-2.225-0.061L233.758,56.252z"/>
+ <path id="path217" fill="#C0C0C0" d="M997.093,57.305L997.093,57.305h-0.059H997.093z"/>
+ <path id="path219" fill="#C0C0C0" d="M997.093,57.305L997.093,57.305h-0.059H997.093z"/>
+ <path id="path221" fill="#C0C0C0" d="M533.155,55.959L533.155,55.959l1.288,2.577L533.155,55.959z"/>
+ <path id="path223" fill="#C0C0C0" d="M939.181,57.657L939.181,57.657l-0.175,0.41L939.181,57.657z"/>
+ <path id="path225" fill="#C0C0C0" d="M238.97,57.599L238.97,57.599l0.41,0.233L238.97,57.599z"/>
+ <path id="path227" fill="#C0C0C0" d="M322.411,58.184L322.411,58.184l-0.995,0.585l0.06,0.061l0.994,0.292h-1.873L322.411,58.184z"
+ />
+ <path id="path229" fill="#C0C0C0" d="M889.993,58.593L889.993,58.593l2.284,0.175L889.993,58.593z"/>
+ <path id="path231" fill="#C0C0C0" d="M886.422,58.83L886.422,58.83h0.059H886.422z"/>
+ <path id="path233" fill="#C0C0C0" d="M886.422,58.83L886.422,58.83l2.11,0.232L886.422,58.83z"/>
+ <path id="path235" fill="#C0C0C0" d="M241.311,58.83L241.311,58.83l-1.463,0.175l-0.41,0.352l-1.347,0.117l-1.23-0.175l1.347-0.41
+ L241.311,58.83z"/>
+ <path id="path237" fill="#C0C0C0" d="M246.933,56.369L246.933,56.369l2.81,0.059l2.93-0.233l3.807,0.702l0.175,4.802l-1.698-0.352
+ l-4.392,0.82l-3.63-0.41l-1.171-1.17l3.162-0.763l3.045-0.234l-2.518,0.177l0.176-0.119l-3.339,0.177l-2.81,0.292l-4.977,0.061
+ l3.22-3.163L246.933,56.369z"/>
+ <path id="path239" fill="#C0C0C0" d="M186.386,58.184L186.386,58.184l-3.397,2.167L186.386,58.184z"/>
+ <path id="path241" fill="#C0C0C0" d="M276.387,56.31L276.387,56.31h3.571l1.815,0.644l-3.278,0.059h1.463l1.464,0.235l4.685,0.409
+ l1.055,2.929l0.702-0.878l1.756,0.76l1.699-0.41l1.113,0.41l0.585-0.527l2.342,0.878l3.807-0.116l-2.225-0.353l1.347-0.175
+ l4.45-0.293l1.873-0.646l3.045,0.293l1.523-0.293h3.98l4.509,0.703l0.059,3.63l-3.455,0.059l-2.108,0.41l-3.922-0.41l-2.05-1.17
+ l-2.693,1.404l-2.46-0.702l-0.819,0.762l-1.112-0.702l-0.235,0.643h-1.814l-0.233-0.409l-0.819,0.468l-1.348-0.468l0.644,0.525
+ h-1.172l-0.176-0.117l-0.116,0.117l-5.153-0.117l-0.175-1.404l-3.28,1.229l-3.865-0.234l-1.521-0.294l-1.873,0.178l-1.582-3.572
+ l-3.808-2.402l-2.105,0.353l-4.802,0.117l-1.172-0.469l-2.519-0.525l-3.045-0.82l4.275-1.172l1.171,0.061l1.639,0.233l4.568,0.293
+ l0.352,1.815l1.521-0.82L276.387,56.31z"/>
+ <path id="path243" fill="#C0C0C0" d="M204.598,58.008L204.598,58.008l4.157,2.284l2.635-0.178l0.41,0.118l5.152,0.117l0.527-4.744
+ l0.937,2.87l1.698,0.878l4.918-0.058l4.333,0.585l-2.225,2.05l-4.04,0.469l-1.992-0.646l-4.275,0.234l-4.918,0.644l-0.232,0.117
+ l0.35,0.06l-1.229,0.059l0.232,0.292l-1.404,0.293l-4.802,0.702l-4.449-0.058l-2.811-0.878l1.697-0.41l3.748-0.586l4.685-0.175
+ l1.757-0.878l-4.685,0.526l-4.627,0.235l-0.585-0.703l1.932-0.585l-2.635-0.177l-1.229,0.762l-2.226,0.995l-0.704-0.76l-1.463,0.76
+ l-2.05-0.82l-5.035-0.175l1.58-0.762l4.333-0.059l3.513-0.701l-2.342,0.115l-2.46,0.353L187.672,60l1.404-0.702l2.87-0.061
+ l4.275-0.232l-0.233-0.059l-1.463,0.059l-4.979-0.059l1.289-0.994h3.864l2.05,0.058l-4.217-0.293l1.288-0.703h4.744l0.585,0.938
+ l2.226-0.294L204.598,58.008z"/>
+ <path id="path245" fill="#C0C0C0" d="M1075.502,60.818L1075.502,60.818l0.878-1.757L1075.502,60.818z"/>
+ <path id="path247" fill="#C0C0C0" d="M888.179,60.408L888.179,60.408h0.059H888.179z"/>
+ <path id="path249" fill="#C0C0C0" d="M1091.313,62.81L1091.313,62.81l-1.582,0.117h-4.687l-4.394-1.757l1.757-2.401l4.63-0.937
+ l1.11-0.059l-0.645,0.059l0.527,0.352l2.224,0.468l3.631,1.288l2.343-1.99l4.275,1.171l4.683,0.058l2.053,0.41l3.219,0.704
+ l-1.641,0.878l-3.394,0.819l-0.938,0.353l-4.453,0.408l-1.637-0.408l-0.179-0.235l-1.403,0.235l-2.109,0.117L1091.313,62.81z"/>
+ <path id="path251" fill="#C0C0C0" d="M888.237,60.35L888.237,60.35l-0.059,0.235L888.237,60.35z"/>
+ <path id="path253" fill="#C0C0C0" d="M233.699,60.585L233.699,60.585l1.99,0.937L233.699,60.585z"/>
+ <path id="path255" fill="#C0C0C0" d="M233.699,60.585L233.699,60.585l-0.116,1.463L233.699,60.585z"/>
+ <path id="path257" fill="#C0C0C0" d="M536.491,60.703L536.491,60.703l0.294,1.347L536.491,60.703z"/>
+ <path id="path259" fill="#C0C0C0" d="M536.491,60.703L536.491,60.703l0.353,1.053L536.491,60.703z"/>
+ <path id="path261" fill="#C0C0C0" d="M1114.325,60.057L1114.325,60.057l1.64,0.878l4.975-0.292l0.704,0.702l2.635-0.233
+ l2.868,0.233l2.813,0.293l-1.231,0.878l-2.984,0.353l-0.176,0.059l-5.095-0.059l-1.932-0.587l-1.994-0.175l-3.688-0.762
+ L1114.325,60.057z"/>
+ <path id="path263" fill="#C0C0C0" d="M888.179,61.639L888.179,61.639l-0.059,0.116L888.179,61.639z"/>
+ <path id="path265" fill="#C0C0C0" d="M799.762,63.22L799.762,63.22l-4.042-0.41l3.043-0.528l-2.635-0.878l1.936,0.469l4.393-0.878
+ l0.878-1.229l2.105-0.177l-0.175-0.117l0.703-0.117l0.117-0.177l1.99-0.175l3.455-0.353l2.635-0.995l5.036,0.293l0.467-0.06
+ l5.212-0.41l0.587-0.117l0.524-0.058l0.295-0.117l5.212-0.468l3.514-1.465h0.642h4.629l-0.646,2.344l-1.111,0.058l-3.164,0.585
+ l-1.465,0.178l-1.403,0.175l-0.645,0.175l-2.282,0.236l-1.114,0.293h-0.938l-2.635,0.292l-1.346,0.293l-0.236-0.235h-0.35
+ l-0.06,0.235l-0.878,0.175l-4.45,0.468l-2.635,0.41l-4.745,1.172l1.523,0.762l-2.165,0.701l-2.228-0.585l-3.279,0.645l0.119,1.992
+ l-2.813-0.645l1.698,1.112l-4.742-0.059l3.631,0.644l-3.044,0.119l0.995,1.11l-0.995,0.353l-2.871-0.644l0.295,0.292v0.06
+ l-0.179,0.118l-0.408-0.118h-1.407l-4.8-0.117l4.566-1.23l-3.979,0.41l-1.993-0.702l4.041-0.586l3.747-0.468L799.762,63.22z"/>
+ <path id="path267" fill="#C0C0C0" d="M266.431,59.882L266.431,59.882l4.744,1.347L266.431,59.882z"/>
+ <path id="path269" fill="#C0C0C0" d="M905.337,62.166L905.337,62.166h0.059H905.337z"/>
+ <path id="path271" fill="#C0C0C0" d="M528.528,61.99L528.528,61.99l1.698,0.644L528.528,61.99z"/>
+ <path id="path273" fill="#C0C0C0" d="M899.893,62.75L899.893,62.75l0.699,0.352L899.893,62.75z"/>
+ <path id="path275" fill="#C0C0C0" d="M877.755,63.512L877.755,63.512l0.354,0.117L877.755,63.512z"/>
+ <path id="path277" fill="#C0C0C0" d="M900.534,63.689L900.534,63.689l-0.06,0.059L900.534,63.689z"/>
+ <path id="path279" fill="#C0C0C0" d="M902.469,63.863L902.469,63.863l-1.877,0.06L902.469,63.863z"/>
+ <path id="path281" fill="#C0C0C0" d="M897.138,63.863L897.138,63.863h0.063H897.138z"/>
+ <path id="path283" fill="#C0C0C0" d="M666.312,63.805L666.312,63.805h0.7H666.312z"/>
+ <path id="path285" fill="#C0C0C0" d="M1006.87,64.567L1006.87,64.567h-0.115H1006.87z"/>
+ <path id="path287" fill="#C0C0C0" d="M995.981,65.269L995.981,65.269l-4.684-0.878L995.981,65.269z"/>
+ <path id="path289" fill="#C0C0C0" d="M1006.813,64.625L1006.813,64.625l0.06-0.118L1006.813,64.625z"/>
+ <path id="path291" fill="#C0C0C0" d="M995.923,65.328L995.923,65.328l0.937-1.405L995.923,65.328z"/>
+ <path id="path293" fill="#C0C0C0" d="M527.592,64.274L527.592,64.274l-3.808,0.82L527.592,64.274z"/>
+ <path id="path295" fill="#C0C0C0" d="M1075.382,64.8L1075.382,64.8h-0.059H1075.382z"/>
+ <path id="path297" fill="#C0C0C0" d="M889.702,65.036L889.702,65.036l0.587,0.232L889.702,65.036z"/>
+ <path id="path299" fill="#C0C0C0" d="M890.639,65.328L890.639,65.328l2.693-0.059L890.639,65.328z"/>
+ <path id="path301" fill="#C0C0C0" d="M1093.302,66.03L1093.302,66.03l-1.523-1.054L1093.302,66.03z"/>
+ <path id="path303" fill="#C0C0C0" d="M1075.382,64.742L1075.382,64.742l2.872,1.23L1075.382,64.742z"/>
+ <path id="path305" fill="#C0C0C0" d="M894.622,65.504L894.622,65.504h0.059H894.622z"/>
+ <path id="path307" fill="#C0C0C0" d="M256.535,65.269L256.535,65.269l-2.225,0.82l-3.631-0.233l2.753-0.321l2.751-0.323
+ L256.535,65.269z"/>
+ <path id="path309" fill="#C0C0C0" d="M1037.088,66.206L1037.088,66.206h-0.059H1037.088z"/>
+ <path id="path311" fill="#C0C0C0" d="M1093.534,66.03L1093.534,66.03l-0.527-0.059L1093.534,66.03z"/>
+ <path id="path313" fill="#C0C0C0" d="M221.402,67.142L221.402,67.142l-0.995,0.119l1.054-0.293L221.402,67.142z"/>
+ <path id="path315" fill="#C0C0C0" d="M1095.525,66.03L1095.525,66.03l4.804,0.176l3.396,1.814l-1.057,0.41l-1.873-0.175
+ l-0.938,0.059l-2.635-0.232l-2.868-0.528l-3.805,0.352l-0.297-0.175l0.18-0.117l2.105-0.06L1095.525,66.03z"/>
+ <path id="path317" fill="#C0C0C0" d="M866.866,67.318L866.866,67.318l0.059-0.116L866.866,67.318z"/>
+ <path id="path319" fill="#C0C0C0" d="M866.924,67.318L866.924,67.318h-0.06H866.924z"/>
+ <path id="path321" fill="#C0C0C0" d="M866.924,67.26L866.924,67.26l0.233-0.059L866.924,67.26z"/>
+ <path id="path323" fill="#C0C0C0" d="M864.172,67.67L864.172,67.67l2.752-0.468L864.172,67.67z"/>
+ <path id="path325" fill="#C0C0C0" d="M864.172,67.729L864.172,67.729V67.67V67.729z"/>
+ <path id="path327" fill="#C0C0C0" d="M232.527,67.26L232.527,67.26l-2.81,2.4l-0.646-0.292l-0.819-0.353l-4.684-1.582l1.463-0.762
+ l3.808-0.233L232.527,67.26z"/>
+ <path id="path329" fill="#C0C0C0" d="M845.082,69.017L845.082,69.017l2.168-1.64L845.082,69.017z"/>
+ <path id="path331" fill="#C0C0C0" d="M315.854,66.5L315.854,66.5l0.701-0.06l0.938,0.06l0.702,0.175l0.293-0.117l1.99,0.353
+ l4.51-0.116l3.396,0.585l3.045,2.399l-4.86-0.292l-1.932,0.059l-5.096,0.352L315.854,66.5z"/>
+ <path id="path333" fill="#C0C0C0" d="M513.832,67.67L513.832,67.67l4.155,0.702L513.832,67.67z"/>
+ <path id="path335" fill="#C0C0C0" d="M867.273,68.548L867.273,68.548h1.937H867.273z"/>
+ <path id="path337" fill="#C0C0C0" d="M525.132,68.724L525.132,68.724l-0.585,0.116L525.132,68.724z"/>
+ <path id="path339" fill="#C0C0C0" d="M525.132,68.724L525.132,68.724h-0.938H525.132z"/>
+ <path id="path341" fill="#C0C0C0" d="M1020.167,69.017L1020.167,69.017l0.175-0.41L1020.167,69.017z"/>
+ <path id="path343" fill="#C0C0C0" d="M265.553,65.562L265.553,65.562l1.229-0.293l4.275-0.232l4.215,0.819l0.645-0.06l0.117-0.117
+ l0.587-0.116l1.287-0.059l4.803,0.468l-0.233,0.233l-0.177-0.117l-0.233,0.058l0.059,0.235l-1.404,0.76l-0.293,0.119l-4.393,2.751
+ l-0.819,0.175l-1.758-0.116l-5.212-0.116l0.878,2.751h-3.98l-1.638-2.929L265.553,65.562z"/>
+ <path id="path345" fill="#C0C0C0" d="M259.64,68.49L259.64,68.49l-0.527,0.938L259.64,68.49z"/>
+ <path id="path347" fill="#C0C0C0" d="M1029.767,69.25L1029.767,69.25l3.223-0.059l3.63-2.869l2.635,0.41l4.979,1.17l-1.465,3.69
+ l-4.917-1.289h-1.23l-1.111-0.352l-4.8-0.527L1029.767,69.25z"/>
+ <path id="path349" fill="#C0C0C0" d="M859.896,69.075L859.896,69.075l0.06-0.059L859.896,69.075z"/>
+ <path id="path351" fill="#C0C0C0" d="M859.955,69.017L859.955,69.017l2.81-0.118L859.955,69.017z"/>
+ <path id="path353" fill="#C0C0C0" d="M1044.116,71.242L1044.116,71.242h-0.06l2.577-3.98l2.635,0.292l3.746,1.523l-0.411,0.116
+ l-2.692,0.646l-2.928,0.292l-2.635,1.055L1044.116,71.242z"/>
+ <path id="path355" fill="#C0C0C0" d="M522.673,69.485L522.673,69.485h-4.216h-4.217h4.217H522.673z"/>
+ <path id="path357" fill="#C0C0C0" d="M875.999,69.485L875.999,69.485l1.876-0.704L875.999,69.485z"/>
+ <path id="path359" fill="#C0C0C0" d="M875.94,69.544L875.94,69.544l0.06-0.059L875.94,69.544z"/>
+ <path id="path361" fill="#C0C0C0" d="M522.673,69.427L522.673,69.427l-0.059,0.82L522.673,69.427z"/>
+ <path id="path363" fill="#C0C0C0" d="M1050.38,69.602L1050.38,69.602l0.059,0.175L1050.38,69.602z"/>
+ <path id="path365" fill="#C0C0C0" d="M178.948,65.504L178.948,65.504l1.935,0.175l3.862-1.053l5.037,0.995l4.685,1.814
+ l-1.874,0.527l-2.108,0.293l-2.81,0.704h-0.644l-3.279,0.817l-2.693,0.646l-3.923,1.288l-1.23,2.692l-2.926,0.41l-4.802,1.054
+ l-1.465-0.117l-2.577-1.873l-3.514-1.113h-3.688l3.688-2.108l-0.526-1.054l2.167-0.232l2.519-2.93l-3.571-1.992l2.342-0.116
+ l0.117-0.116h0.819l5.153-0.235l2.869-0.292l4.626,0.938L178.948,65.504z"/>
+ <path id="path367" fill="#C0C0C0" d="M1046.925,70.363L1046.925,70.363l3.455-0.468L1046.925,70.363z"/>
+ <path id="path369" fill="#C0C0C0" d="M248.279,65.795L248.279,65.795l2.87,0.938l4.918-0.819l2.868,0.643l-2.458,0.878
+ l-2.987,1.698l4.275,0.117l2.517,4.04l-3.162,0.704l-3.336-0.645l1.405,0.938l-2.402,0.938l-3.747-1.814l-3.045-1.405l-3.98-0.41
+ l-3.338-1.465l1.582-1.289l4.333,1.407l2.458-1.289L248.279,65.795z"/>
+ <path id="path371" fill="#C0C0C0" d="M1049.735,70.422L1049.735,70.422h-0.059H1049.735z"/>
+ <path id="path373" fill="#C0C0C0" d="M518.398,69.777L518.398,69.777l4.158,1.23L518.398,69.777z"/>
+ <path id="path375" fill="#C0C0C0" d="M869.675,71.475L869.675,71.475l2.636-1.053L869.675,71.475z"/>
+ <path id="path377" fill="#C0C0C0" d="M1044.698,71.125L1044.698,71.125l-0.116-0.061L1044.698,71.125z"/>
+ <path id="path379" fill="#C0C0C0" d="M780.2,73.41L780.2,73.41l0.703-1.056l4.45-0.937l3.163-3.337l4.097-0.41l3.048,0.469
+ l2.692,0.41l-2.692,0.35l-0.646,0.353l2.168,0.293l-2.813,0.352l-1.111,1.17l0.354,1.875l3.571,2.518l4.917,1.64l-3.16,0.117
+ l-0.762-0.175l0.116,0.704l-3.983-0.704l-2.34,0.352l-4.508-0.586l0.058-0.995l2.637-0.059l-2.753-0.469l1.758-0.762l-1.642,0.646
+ l-0.47-0.997l-2.927-0.233L780.2,73.41z"/>
+ <path id="path381" fill="#C0C0C0" d="M473.778,93.259L473.778,93.259l-2.517,0.175l-1.582,0.878l-0.352-0.82l-0.41,1.056
+ l-2.283-0.41l2.343-1.582l-2.343-0.41l0.526,0.646l-1.054,1.171l-1.698-0.293l0.879,1.347l-3.925-0.41l0.06,0.762l-3.104,0.117
+ l-3.161,1.347l2.636,2.692l-4.218,0.293l3.515,0.527l0.177,1.463l-3.396-0.585l2.576,1.229l-1.873-0.177l0.176,0.587l-1.23-0.293
+ l1.641,0.646l-2.752-0.587l-4.392,2.519l2.399,3.572l-1.404-0.117l2.166,0.175l-0.703,0.587l-2.225-0.177l1.99,0.235l-0.41,0.878
+ l-1.64,4.157l-3.747-0.233l-3.338,0.35l-0.352-3.981l-2.868,0.997l0.818-1.465l-3.688,1.875l-4.86-0.061l1.935-0.643l-0.294-0.645
+ L430.682,111l-0.878-0.995l-2.577-0.117l2.519-0.703l-3.337,0.177l2.518-0.293l-1.638,0.059l-0.353-0.353l1.404-0.937l-1.756,0.937
+ l0.818-1.697l-2.283,0.702l-2.46-4.274l-0.352-0.585h-2.458l1.463-0.585l0.878-0.41l1.757-4.217l-1.991,0.352l-1.464-1.582
+ l-3.57,3.572l-1.992-3.923l3.104-1.348l3.981-0.058l-3.163-0.175l-3.688,1.347l-3.396-2.107l0.177-0.233l2.166-0.646l0.352-0.293
+ l1.172-0.408l3.864-1.466l4.449-0.468h-3.338l-1.99,0.585l-0.762,0.353l-0.878,0.234l-0.526,0.47l-4.743,1.463l-1.698-3.397
+ l0.177-0.232l0.351-0.176l1.522-0.06l4.334-0.585l2.226,0.175l4.039,0.529l-2.81,0.116l0.058-0.995l-1.64,0.232h-1.172
+ l-0.701-0.175l-3.455,0.41l-2.577,0.175l4.803-1.873l4.099,0.293l3.981,0.76l-2.693-1.521l-2.635,0.702l-2.227-0.41l-4.858,0.997
+ l1.934-1.815l3.921,0.292l-4.392-0.76l1.992-0.06l0.585,0.06l4.92,0.408l3.63,0.47L418.915,86l0.176-0.176l1.989-0.878
+ l-2.868,0.293l-2.751,0.82l-3.397-0.529l3.162-0.76h4.627l1.111-0.235l0.645-0.762l1.58-4.157l-3.746,0.176l-3.632-0.292
+ l-1.99-0.82l-1.172-0.235l-4.977-1.053l1.698-0.645l3.864,0.177l2.106,0.292l3.222,0.938l2.987,0.408l0.701-0.702l-1.933,0.293
+ l1.464-0.703l-2.869-0.409l2.812,0.058l-4.627-0.995l3.455,0.175l-0.938-0.585l-3.57,0.059l2.107-0.878l-3.104,0.762l4.155-1.172
+ l-1.287-0.06l-4.45,0.293l-2.05-3.279l0.587,1.756l-1.815,1.404l-4.92,0.235l-2.049-1.053l2.283-0.293l3.046-1.582l-4.275,0.82
+ l3.222-1.348l-3.339-0.293l4.687-0.117l-2.52-0.115l0.82-1.699l-3.222-0.235l2.166-1.053l-3.514-0.995l-0.175-2.225l-4.159,0.644
+ l3.925-1.58l-2.868-0.41l-3.925-1.347l-0.41-1.23l-1.581,0.176l1.698-0.353l-0.644-0.937l-2.345,0.058l-3.57-1.111l-2.283,0.059
+ l-0.41-0.526l-4.859-0.468l-4.04-0.293l-3.396,0.058l-3.98,1.172l-0.702-0.878l-2.753,0.644l-1.99-0.644l-5.153,0.644l-3.923-1.17
+ l1.932-0.235l3.808-0.702l-0.41-0.06l-1.64,0.177l-5.035-0.41l-4.803-0.995l4.274-0.646h1.17l4.511,0.235l2.458-0.119l5.037,0.352
+ l1.17-1.405l-2.105-0.762l-2.52,0.587l-3.455,0.175l-2.867,0.176l-3.749-0.351l2.692-0.704l-4.215,0.235l2.458-0.529l-4.685,0.235
+ l0.293-0.41h-2.458l-3.925-0.937l1.465-1.23l0.994-0.175h1.581l3.865-0.118l0.175-0.35l2.752-0.235l4.158-0.293l-1.113-0.468
+ l2.813-0.353l2.869-0.232l0.937,0.058l4.979-0.058l3.453-1.405l3.632-2.167l-1.465-0.353l-2.459,0.644l-1.348-0.116l-0.878,0.177
+ l-1.288,0.176l-4.04-0.176l-1.522-0.997l2.46-0.409l0.232-0.351l2.108-0.234l0.409-0.176h1.757l-0.762-0.117l2.283-0.292
+ l4.861-1.288l3.161,1.404l-2.05-1.404l1.873-0.293l0.353,0.116h1.756l4.159,0.293l3.221-2.868l4.449,0.232l0.763,0.646l2.575,0.35
+ l5.152,0.878l-0.585-0.232l-1.582-0.117l-0.407-0.353l-1.992-0.41l-1.348-0.058l-4.685-1.114l3.104-0.41h0.763l0.233-0.059
+ l2.05-0.175l4.1-0.235l2.283-0.117l5.094-0.352l2.87,2.987l2.576-1.815l3.455,0.41l1.874,0.058l3.863,0.645l1.464,0.352
+ l-4.217-1.111l4.393,0.232l1.349-0.175l-4.452-0.938l-1.463-1.055l4.627-0.117l2.811,0.233l1.347,0.41l2.401,0.176l1.286,0.233
+ l-0.116,0.177l4.217,0.232l1.464,0.293l4.743,0.938l0.059-1.874l-3.981-1.698l2.342-0.058l3.045,0.058l2.577-0.058h2.812
+ l2.106,0.117l1.407,0.937l0.468-0.878l3.162,0.526l2.81,0.762l-0.175-1.053l-0.819-0.177h-1.641l-1.463-0.175l-3.924-0.293
+ l-2.93,0.029l-2.926,0.029l-2.754-0.06h-5.151l-2.226-0.585l2.342-0.235l3.221,0.528l1.229-0.118l4.802,0.177h-2.107l-3.104-0.293
+ l-2.283-0.469l0.47-0.059l0.352,0.059l0.585-0.117l1.463,0.233l-0.058-0.233h1.581l4.859,0.233l0.645-0.585l3.338,0.293
+ l-0.645,0.35l1.055-0.175l3.63,0.585l4.04,0.059l3.104,0.704l-1.932-0.878l1.113-0.235l2.167-0.175l4.565-0.117h-2.635
+ l-3.688-0.177l-0.588-0.818l3.69,0.233l0.585-0.469l4.217,0.469l-0.82-0.585l2.049-0.059l3.104,0.059l2.93-0.235l4.742-0.06h2.752
+ l-0.175,0.176l1.638-0.117l2.345,0.117l3.277-0.117l3.396,0.235l2.283,0.409l4.274-0.177l4.51,0.353l1.522,0.293l-4.393,0.468
+ l-2.753,0.059l-3.925-0.117h-4.331l-1.465,0.059l-1.289,0.117l-3.98,0.234l-3.865-0.293l-1.405-0.059l3.397,0.41l-1.521,0.058
+ l-4.217,0.293l-5.152,0.117l0.408,0.527l2.108-0.527l3.514,0.41l1.23-0.587l1.873-0.059l3.57-0.117l1.173,0.235l0.644-0.235
+ l5.095-0.468l5.153,0.116l1.289,0.177l0.878-0.118l4.45,0.059l2.105-0.175l3.223-0.176l-2.636,1.405l1.463-0.058l5.213-0.47
+ l-0.06,0.586l2.227-0.353l1.932,0.353l0.646-0.176l4.684,0.702l-4.099,0.938l-1.989,0.176l-5.096,0.292l-1.873,0.177h-1.582h-2.399
+ l-3.074-0.058l-3.073-0.059l-1.23,0.059l-1.055-0.059l-4.273,0.176l-2.05-0.176l-4.392-0.061l-3.632,1.816l3.572-0.527l3.22-0.117
+ l3.515-0.233l2.812-0.234h0.585l4.687-0.059l3.834,0.029l3.836,0.029l-0.294,0.762l-0.645,0.175l-4.685,0.585l-2.693,0.235
+ l0.938,0.41l1.582-0.116l5.152-0.646l4.215-0.353l0.763-1.111l0.293,0.116l1.054-0.232l4.627-0.119l0.351,2.107l-1.288,0.585
+ l-1.405,0.061l0.703,0.117l-3.981,1.347l-1.991,1.229l2.813-0.645l-0.177-0.175l0.525-0.41l2.754-0.353l1.464-0.526l2.107-0.41
+ l0.06-0.175l0.937-0.118l0.116-0.292l2.402-0.587l2.928-0.351l-1.113,0.938l2.752-0.529l4.275,0.471l2.635-1.523l0.644,0.117
+ l0.234-0.117l1.23,0.059l-0.06-0.175l0.76-0.117l3.633,0.117l2.282-0.117l0.88,0.06l2.985,0.35l2.635,0.119l3.572,0.644
+ l-1.522,0.409l-5.095,1.23l-2.282,0.762l-4.627,0.645l-2.342,0.116l-4.449-0.409l-2.285,0.702h-0.702l-4.568-0.232l-4.098,0.408
+ l4.508-0.292l4.979,0.352l2.399-0.06l1.523-0.233L543,42.776l-3.515,0.938l-4.565,0.059l-4.511-0.232l-2.984,0.644l0.76,1.171
+ l3.69-1.171l1.11,0.058l3.633-0.175l1.695,0.294l-2.692,1.054l-4.978,0.293l1.933,1.638l-0.938-0.292l-1.99,0.526l-4.449,1.111
+ l-2.986,3.983l4.099-1.172l0.938,0.293l4.685,0.585l4.04,2.868l-1.172,0.762l-0.35-0.293l-0.469,0.06l-0.819-0.177l-1.582-0.058
+ l-1.757-0.353l-3.924-0.059l-5.212,0.526l2.813,1.23l-0.06,0.878l2.165-0.233l4.921,0.585l1.171,2.577l-1.933,0.878l-0.82-0.645
+ l-1.989,0.119l-1.698-0.353l-3.807-0.937l-0.645,1.756l2.4,0.76l3.923-0.41l-1.64,1.466l4.567,0.232l2.868,0.353l-2.458,0.878
+ l-2.402-0.763h-4.448l-1.698-0.468l-1.289,1.814l2.342,1.465l4.627,0.702l-3.571-0.117l-3.104,0.82l-3.807-0.644l-1.933-0.938
+ l4.684,0.527l1.816-0.293l-2.051,0.233l-4.449-0.878l-1.522,0.997l-4.273-1.465l3.453,1.582l-4.625,0.878l-5.037-0.703l3.749,0.762
+ l2.928,2.928l0.06,0.995l3.337-1.053l2.928,0.585l4.394,1.229l-1.699,0.585l2.051-0.175l-0.704,0.761l2.46-0.586l1.171,4.45
+ l-2.868,0.118l-0.353-1.465l-0.468,1.405l-2.577,0.06l-2.342-0.762l-2.166-2.46l-1.582,0.177l-1.933-0.82l-4.157-0.059
+ l-0.645-0.177l-0.644-0.292l-4.979-1.582l4.509,1.463l-4.04,0.587l4.218,0.175h4.859l1.641,0.82l-0.587,0.352l-3.161,0.702
+ l-3.572,0.119l-1.463-0.704l-4.511,2.577l3.163-0.353L500.02,78.2l0.468,0.176l3.515-0.293l2.519-0.059l0.176,0.526l-0.938,0.119
+ l-0.82-0.119l-1.229,0.235l-4.51,0.525l4.042,0.527l1.872-1.053l2.108,0.175l3.747-0.761l-0.352,0.527l1.055-0.352l3.98,0.819
+ l1.17,0.117l5.153-0.175l-0.701,0.526l-4.802,1.582l-2.402-0.178l0.88,0.646l-2.227-0.06l-3.161,1.99l-0.646-0.059L504,84.815
+ l-1.99,0.233l-0.819,0.059l-4.802,0.878l-1.699-0.76l-0.584,1.053l-2.461-0.525l1.113,0.702l-2.107,0.117l-2.401-0.234
+ l-2.752-1.815l1.229,2.693l-3.748,0.586l-0.292,0.995l-3.57,2.927l-1.173,0.703L473.778,93.259z"/>
+ <path id="path383" fill="#C0C0C0" d="M411.886,73.818L411.886,73.818l2.342,0.06l-1.229,0.41l-0.938-0.06L411.886,73.818z"/>
+ <path id="path385" fill="#C0C0C0" d="M1084.344,74.345L1084.344,74.345v0.058V74.345z"/>
+ <path id="path387" fill="#C0C0C0" d="M413.524,74.814L413.524,74.814l1.935,0.117L413.524,74.814z"/>
+ <path id="path389" fill="#C0C0C0" d="M1227.746,76.863L1227.746,76.863l2.636-2.225l0.645-0.06l0.525-0.117l0.233-0.175h0.702
+ l4.566-0.119l3.28,1.582l-1.054,0.293l-4.861,0.468l-0.583-0.058l-0.587-0.119l-1.287-0.176L1227.746,76.863z"/>
+ <path id="path391" fill="#C0C0C0" d="M785.825,76.219L785.825,76.219l-2.752-1.172L785.825,76.219z"/>
+ <path id="path393" fill="#C0C0C0" d="M411.357,75.107L411.357,75.107l-0.232,0.995l-1.172-0.352l1.172-0.703L411.357,75.107z"/>
+ <path id="path395" fill="#C0C0C0" d="M689.382,76.455L689.382,76.455l0.82-0.82l0.937,0.526l-1.111,0.116L689.382,76.455z"/>
+ <path id="path397" fill="#C0C0C0" d="M570.337,75.692L570.337,75.692h1.406H570.337z"/>
+ <path id="path399" fill="#C0C0C0" d="M785.825,76.277L785.825,76.277v-0.058V76.277z"/>
+ <path id="path401" fill="#C0C0C0" d="M196.983,70.54L196.983,70.54l3.338-0.06l2.167-1.405l1.698,0.233l4.625,0.82l-1.873,1.814
+ l1.58-0.937l5.037-0.292l4.509,0.117l2.635,3.22l2.108-1.053l-1.873-0.82l-1.055-4.275l3.571,0.646l4.275,0.41l2.283,2.342
+ l2.986,2.868l1.23,2.87l3.162,0.878l0.234-0.585l4.744,1.288l2.518,0.526v1.698l-1.698-0.878l-0.76,0.937l-4.333,2.986
+ l-1.056-0.176l-0.468,0.058l-0.117,0.177l-0.468-0.059l-0.175-0.118l-1.933-0.058l-3.688-0.175l0.82-0.586l-5.211-0.409
+ l-0.646-1.113l-2.692,1.698l-4.157,0.232l-2.283,0.878h-0.762l-0.995,0.235h-1.875l-3.572,0.41l-1.172-0.117l-2.517,0.117
+ l-3.633,0.175l-0.7-2.517l-1.464-0.235l-1.349-0.117l-1.58,0.117l-0.762-0.117l-0.644,0.175l-4.802-0.585l-3.162-2.107l1.229-0.41
+ l3.981-0.352l2.636-0.233l3.222-0.119l1.405,0.177h2.167l0.995,0.06l1.463,0.175l3.807-0.468l-1.756-0.117l-0.762-0.468h-0.702
+ l-0.178-0.117l-5.21-0.646l-0.762,0.178l-5.037,0.35l-0.41-0.117l-1.229,0.117l-0.586-0.117h-4.744l-2.927-1.404l2.107-0.585
+ l1.348-0.06l1.989-0.235l3.808-0.409l2.458-0.585l-1.348,0.175l-0.409-0.06l0.409-0.115l-0.644-0.06l-1.113,0.117l-5.035,0.468
+ l-1.112-0.995l-4.918-0.058l3.514-1.934l2.635-2.4l1.465-0.118l1.287-0.35l0.471-0.061l0.817-0.175l0.82-0.059l4.918-0.878
+ L196.983,70.54z"/>
+ <path id="path403" fill="#C0C0C0" d="M1164.272,76.804L1164.272,76.804l-0.937-0.059L1164.272,76.804z"/>
+ <path id="path405" fill="#C0C0C0" d="M1167.728,77.097L1167.728,77.097V77.04V77.097z"/>
+ <path id="path407" fill="#C0C0C0" d="M509.382,75.925L509.382,75.925l1.286,1.465L509.382,75.925z"/>
+ <path id="path409" fill="#C0C0C0" d="M1169.659,77.39L1169.659,77.39l0.059-0.117L1169.659,77.39z"/>
+ <path id="path411" fill="#C0C0C0" d="M677.377,77.975L677.377,77.975l4.042-0.995l-0.938,0.701l-0.819,0.177l-0.763,0.06
+ l-0.819,0.058H677.377z"/>
+ <path id="path413" fill="#C0C0C0" d="M1169.718,77.333L1169.718,77.333l0.762,0.058L1169.718,77.333z"/>
+ <path id="path415" fill="#C0C0C0" d="M683.059,77.858L683.059,77.858l0.995-0.585L683.059,77.858z"/>
+ <path id="path417" fill="#C0C0C0" d="M246.64,77.333L246.64,77.333l0.878,0.76l-0.878-0.175V77.333z"/>
+ <path id="path419" fill="#C0C0C0" d="M680.948,78.737L680.948,78.737l-0.937-0.468l0.762-0.41l1.055-0.115L680.948,78.737z"/>
+ <path id="path421" fill="#C0C0C0" d="M406.497,77.975L406.497,77.975l1.056,0.293l-1.056,0.059V77.975z"/>
+ <path id="path423" fill="#C0C0C0" d="M680.366,78.796L680.366,78.796l-1.814-0.117L680.366,78.796z"/>
+ <path id="path425" fill="#C0C0C0" d="M669.53,79.5L669.53,79.5l-0.762-0.528l0.879,0.06L669.53,79.5z"/>
+ <path id="path427" fill="#C0C0C0" d="M671.523,79.439L671.523,79.439l0.995-0.585L671.523,79.439z"/>
+ <path id="path429" fill="#C0C0C0" d="M806.668,80.084L806.668,80.084l-1.815-1.288L806.668,80.084z"/>
+ <path id="path431" fill="#C0C0C0" d="M669.53,79.732L669.53,79.732l0.06-0.117l0.059,0.059L669.53,79.732z"/>
+ <path id="path433" fill="#C0C0C0" d="M666.662,80.377L666.662,80.377l-0.468-0.235l-0.762-0.175l-0.059-0.058l0.232-0.061
+ l0.995-0.233l1.17,0.117h0.995l-0.995,0.527L666.662,80.377z"/>
+ <path id="path435" fill="#C0C0C0" d="M278.2,80.084L278.2,80.084l-0.058,0.468L278.2,80.084z"/>
+ <path id="path437" fill="#C0C0C0" d="M1194.836,80.495L1194.836,80.495l-1.933,0.701L1194.836,80.495z"/>
+ <path id="path439" fill="#C0C0C0" d="M305.956,80.435L305.956,80.435h-1.17H305.956z"/>
+ <path id="path441" fill="#C0C0C0" d="M408.841,78.56L408.841,78.56l3.63,0.41l0.82,0.293l4.215,1.698l-0.645,0.41l-0.818,0.232
+ l-4.627,0.761L408.841,78.56z"/>
+ <path id="path443" fill="#C0C0C0" d="M305.956,80.435L305.956,80.435l-0.468,0.06L305.956,80.435z"/>
+ <path id="path445" fill="#C0C0C0" d="M420.435,79.967L420.435,79.967l1.113,0.35l-0.997,0.353l-0.938,0.645l0.116-1.055
+ L420.435,79.967z"/>
+ <path id="path447" fill="#C0C0C0" d="M663.499,81.314L663.499,81.314l-0.643-0.177L663.499,81.314z"/>
+ <path id="path449" fill="#C0C0C0" d="M316.849,80.435L316.849,80.435l0.995-0.058l1.055,0.232l1.288-0.232l-1.347,0.702
+ l-1.056,0.234l-0.879-0.41l-0.701-0.352l0.938,0.117L316.849,80.435z"/>
+ <path id="path451" fill="#C0C0C0" d="M325.047,80.552L325.047,80.552l-2.52,0.937l1.054-0.525l0.588-0.059L325.047,80.552z"/>
+ <path id="path453" fill="#C0C0C0" d="M110.145,81.137L110.145,81.137l1.289-0.117L110.145,81.137z"/>
+ <path id="path455" fill="#C0C0C0" d="M110.145,81.137L110.145,81.137h1.582H110.145z"/>
+ <path id="path457" fill="#C0C0C0" d="M244.592,81.43L244.592,81.43l-1.172-0.117L244.592,81.43z"/>
+ <path id="path459" fill="#C0C0C0" d="M264.147,81.195L264.147,81.195l-0.82,0.878l-0.352-0.878l-0.526,0.763L264.147,81.195z"/>
+ <path id="path461" fill="#C0C0C0" d="M261.864,81.255L261.864,81.255l-0.468,0.643l-1.347-0.703L261.864,81.255z"/>
+ <path id="path463" fill="#C0C0C0" d="M282.709,81.724L282.709,81.724l-0.469,0.643L282.709,81.724z"/>
+ <path id="path465" fill="#C0C0C0" d="M659.46,83.129L659.46,83.129l2.811-1.992L659.46,83.129z"/>
+ <path id="path467" fill="#C0C0C0" d="M280.952,81.899L280.952,81.899h0.353H280.952z"/>
+ <path id="path469" fill="#C0C0C0" d="M328.677,81.666L328.677,81.666l1.404,0.059l-0.644,1.111l-0.938-0.059l-0.702-0.995
+ L328.677,81.666z"/>
+ <path id="path471" fill="#C0C0C0" d="M807.43,82.544L807.43,82.544l-1.345-0.528L807.43,82.544z"/>
+ <path id="path473" fill="#C0C0C0" d="M122.033,82.835L122.033,82.835l3.863,0.41L122.033,82.835z"/>
+ <path id="path475" fill="#C0C0C0" d="M242.893,82.602L242.893,82.602l0.058-0.119l0.059,0.061L242.893,82.602z"/>
+ <path id="path477" fill="#C0C0C0" d="M255.774,80.084L255.774,80.084l1.698,0.995l4.099,1.933l2.402,1.347l-3.515,0.761
+ l-1.347-0.233l-4.158-0.527l-4.683-0.762l-0.119-0.878l3.749-0.585L255.774,80.084z"/>
+ <path id="path479" fill="#C0C0C0" d="M242.95,82.483L242.95,82.483l-0.585,0.41L242.95,82.483z"/>
+ <path id="path481" fill="#C0C0C0" d="M769.078,82.894L769.078,82.894l2.751-1.521L769.078,82.894z"/>
+ <path id="path483" fill="#C0C0C0" d="M323.934,81.84L323.934,81.84l0.645,0.058L323.934,81.84z"/>
+ <path id="path485" fill="#C0C0C0" d="M653.778,83.481L653.778,83.481v-0.234V83.481z"/>
+ <path id="path487" fill="#C0C0C0" d="M247.928,82.777L247.928,82.777l-0.353,0.469l-0.232-0.176L247.928,82.777z"/>
+ <path id="path489" fill="#C0C0C0" d="M247.165,83.187L247.165,83.187l0.293,0.293L247.165,83.187z"/>
+ <path id="path491" fill="#C0C0C0" d="M651.672,84.535L651.672,84.535l1.17-0.294l-2.456,0.353l0.758-0.585l1.29-0.293l1.111,0.176
+ l-0.995,0.818L651.672,84.535z"/>
+ <path id="path493" fill="#C0C0C0" d="M242.306,84.007L242.306,84.007l-0.468,0.702L242.306,84.007z"/>
+ <path id="path495" fill="#C0C0C0" d="M652.259,85.764L652.259,85.764l2.281-2.402L652.259,85.764z"/>
+ <path id="path497" fill="#C0C0C0" d="M335.352,84.24L335.352,84.24l0.762,0.118l-0.116,0.995L335,84.3L335.352,84.24z"/>
+ <path id="path499" fill="#C0C0C0" d="M210.569,85.002L210.569,85.002l-1.112,0.058L210.569,85.002z"/>
+ <path id="path501" fill="#C0C0C0" d="M231.825,84.709L231.825,84.709l-0.704,0.41L231.825,84.709z"/>
+ <path id="path503" fill="#C0C0C0" d="M210.569,85.002L210.569,85.002h-1.289H210.569z"/>
+ <path id="path505" fill="#C0C0C0" d="M247.986,85.413L247.986,85.413l-0.526,0.175L247.986,85.413z"/>
+ <path id="path507" fill="#C0C0C0" d="M649.564,86.115L649.564,86.115l-0.059-0.117L649.564,86.115z"/>
+ <path id="path509" fill="#C0C0C0" d="M207.76,85.764L207.76,85.764l0.058-0.117l0.06,0.059L207.76,85.764z"/>
+ <path id="path511" fill="#C0C0C0" d="M207.76,85.706L207.76,85.706l-0.878,0.175L207.76,85.706z"/>
+ <path id="path513" fill="#C0C0C0" d="M214.609,85.998L214.609,85.998l0.058-0.117l0.061,0.058L214.609,85.998z"/>
+ <path id="path515" fill="#C0C0C0" d="M214.609,85.88L214.609,85.88l-0.878,0.352l-0.059-0.058L214.609,85.88z"/>
+ <path id="path517" fill="#C0C0C0" d="M646.987,86.525L646.987,86.525l0.645-0.819l0.878,0.409l-0.819,0.351L646.987,86.525z"/>
+ <path id="path519" fill="#C0C0C0" d="M213.556,86.291L213.556,86.291l-0.116,0.116L213.556,86.291z"/>
+ <path id="path521" fill="#C0C0C0" d="M215.077,86.349L215.077,86.349l-0.059,0.177L215.077,86.349z"/>
+ <path id="path523" fill="#C0C0C0" d="M295.944,86.115L295.944,86.115l0.117,1.054l-0.995,0.468l-0.938-0.643l0.118-0.879
+ l0.938-0.468L295.944,86.115z"/>
+ <path id="path525" fill="#C0C0C0" d="M341.677,86.817L341.677,86.817l-4.803-0.117L341.677,86.817z"/>
+ <path id="path527" fill="#C0C0C0" d="M216.775,86.875L216.775,86.875l0.058-0.116l0.062,0.058L216.775,86.875z"/>
+ <path id="path529" fill="#C0C0C0" d="M645.816,86.465L645.816,86.465l-1.17,0.82L645.816,86.465z"/>
+ <path id="path531" fill="#C0C0C0" d="M216.833,86.817L216.833,86.817l-0.878-0.058L216.833,86.817z"/>
+ <path id="path533" fill="#C0C0C0" d="M210.218,86.995L210.218,86.995l0.059-0.119l0.061,0.061L210.218,86.995z"/>
+ <path id="path535" fill="#C0C0C0" d="M201.61,87.052L201.61,87.052l-1.055,0.059l1.055-0.116V87.052z"/>
+ <path id="path537" fill="#C0C0C0" d="M210.275,86.936L210.275,86.936l-0.937,0.292L210.275,86.936z"/>
+ <path id="path539" fill="#C0C0C0" d="M199.033,87.227L199.033,87.227l0.059-0.117l0.059,0.059L199.033,87.227z"/>
+ <path id="path541" fill="#C0C0C0" d="M363.4,85.706L363.4,85.706l-1.288,0.409l2.283,0.527l2.225-0.41l-0.232,1.289l1.641-1.405
+ l-0.294,1.874l0.704-1.172l1.58,1.289l-0.233-1.111l2.458-0.235l-1.697,1.171l1.934-0.645l1.989,0.762l0.646,1.113l-3.162-0.178
+ l1.99,0.178l0.938,0.116l-2.518,0.938l3.104-0.82l0.115,0.82l2.227-1.172l-2.402,1.814l3.397-0.526l-0.175,1.172l0.585-1.113
+ l1.463,0.762l3.689,0.353h-3.221l2.226,1.053h-4.742l3.336,1.113l-3.923-0.353l-1.697,4.333l-0.878-1.053l-1.935-4.1l-2.048,0.937
+ l-3.339,0.468l1.405-1.521l-1.698,0.995l-3.688-1.933l-2.577,0.292l-2.751,0.938l4.04,2.693l0.994,1.638l1.404,1.055l0.062-0.937
+ l1.638,1.229l1.934-0.47l2.05,1.172l-2.05,0.646l3.515,0.937l0.115,3.981h-1.99l-3.045,3.63h-1.17l-0.527-0.116l-0.409-0.117
+ l0.175-0.119h-0.294l-0.175-0.175l-0.644-0.117l-0.118,0.117l-0.176-0.117l-0.293,0.06l-0.469-0.235l-4.859-0.585l-2.693-1.757
+ l-1.347,0.117l-4.859-0.878l-0.879-0.233l-2.635-1.407l3.22-0.527l-3.807-0.292l0.762-0.762l-4.508-1.289l0.293-1.404l-2.46,1.17
+ l-4.218-0.41l-1.872,0.293l-3.278,0.645l-4.687-0.819l1.992-3.69l0.585,0.058h0.233l4.979,0.82l1.404,1.757l0.704-1.347
+ l-2.695-0.762l4.274-0.408l4.393-0.061l-3.455-2.399l4.802-2.05l1.641,0.119l4.508,0.468l0.354,2.105l2.166-1.347l4.977-0.82
+ l-4.566-0.644l-1.697-0.995l-1.521,1.464l-2.167-0.293l-3.28-0.175l2.752-1.815l-2.81-3.396l-2.987-0.41l0.294-1.17l-4.274-0.47
+ l0.585-0.938l-1.111,0.703l-1.113-0.468l-4.216,1.111l0.06-1.111l3.63-0.763l-3.63-1.11l1.582-0.41l-3.515,0.117l0.702-1.054
+ l-2.283,0.644l-0.176-1.521l-4.685-1.757l-1.992,0.995l2.754,1.815l-3.339,0.059l-0.468-0.352l-0.527,0.059l-0.058-0.175
+ l-0.938,0.059l-4.977-0.526l2.751,1.463l-0.761-0.353l-1.522-0.468l-4.918-1.229l4.508,1.288l-1.521,0.526l-3.223-0.82h-0.76
+ l-0.235,0.117l-5.093-0.41l-1.522,0.41l-2.051-0.059l-1.932-1.815l-0.995,0.702l-4.45,0.293l-1.229-0.352l-2.167-0.702
+ l-2.402-1.935l-1.58-2.81l1.58-0.995l1.992-3.923h1.347l-0.819-0.177l3.807-1.289l2.693-0.41l2.986-0.175l4.625,0.468l-0.41,0.235
+ l-2.167,0.585l-3.805,2.225l0.82,2.987l-1.348,3.63l1.873-0.06l4.567-0.644l0.762,0.702l0.468-2.4l-5.034-1.229l1.289-3.104
+ l0.643-0.234h0.762l4.685,0.762l-5.095-1.347h0.763l1.229,0.175l4.217,0.352l-0.526-0.175l-4.743-0.937l3.396-0.588l1.99,0.588
+ l-1.405-0.763l4.1-0.762h3.045l1.815,0.177l2.985,1.874l1.229,1.463l-2.519,2.986l2.46-1.463l2.108,0.585l-0.528-1.289l0.234,0.995
+ l2.811-0.233l-0.879,1.112l1.23-0.702l4.04,1.229l2.225-3.278l3.396,0.995l4.04,0.703l-0.469,3.807l2.87-1.933l3.104,2.635
+ l2.868-2.342l2.284,0.292l-2.46,3.279l3.808,2.167l1.873-2.167l3.98-0.878l3.045,3.104l-3.63,1.64l0.469,0.117l0.763-0.175
+ l1.286,0.175l1.056-0.117l1.229-0.177l4.978,0.41l1.698,0.468l0.059,0.704l-0.878-0.175h-0.645l-0.061,0.116l-0.526-0.116
+ l-0.525,0.116l-0.645-0.058l-5.212-0.529l-0.818,1.582l4.742,0.646L363.4,85.706z"/>
+ <path id="path543" fill="#C0C0C0" d="M336.056,86.174L336.056,86.174l-2.051,2.986L336.056,86.174z"/>
+ <path id="path545" fill="#C0C0C0" d="M220.23,87.93L220.23,87.93l0.235,0.352L220.23,87.93z"/>
+ <path id="path547" fill="#C0C0C0" d="M220.582,88.692L220.582,88.692l0.06-0.118l0.058,0.059L220.582,88.692z"/>
+ <path id="path549" fill="#C0C0C0" d="M221.636,89.629L221.636,89.629l0.059-0.119l0.061,0.06L221.636,89.629z"/>
+ <path id="path551" fill="#C0C0C0" d="M221.636,89.51L221.636,89.51l0.878,0.352L221.636,89.51z"/>
+ <path id="path553" fill="#C0C0C0" d="M749.051,90.976L749.051,90.976l0.351,0.353L749.051,90.976z"/>
+ <path id="path555" fill="#C0C0C0" d="M308.241,92.849L308.241,92.849h-1.229H308.241z"/>
+ <path id="path557" fill="#C0C0C0" d="M304.786,93.669L304.786,93.669l0.82,0.352L304.786,93.669z"/>
+ <path id="path559" fill="#C0C0C0" d="M306.776,94.312L306.776,94.312l-0.82-0.058L306.776,94.312z"/>
+ <path id="path561" fill="#C0C0C0" d="M306.776,94.43L306.776,94.43l0.06-0.118l0.059,0.059L306.776,94.43z"/>
+ <path id="path563" fill="#C0C0C0" d="M1270.373,94.606L1270.373,94.606v-0.175l0.12-0.118l0.116,0.029l0.06,0.015"/>
+ <path id="path565" fill="#C0C0C0" d="M1270.669,94.411L1270.669,94.411L1270.669,94.411l-0.004,0.001l-0.004,0.004l-0.023,0.015
+ l-0.086,0.059l-0.179,0.117"/>
+ <path id="path567" fill="#C0C0C0" d="M301.273,93.727L301.273,93.727l1.17,1.23l-1.053-0.06l-0.995-1.112L301.273,93.727z"/>
+ <path id="path569" fill="#C0C0C0" d="M466.166,94.78L466.166,94.78l1.056-0.701l0.643,0.352l-0.702,0.527L466.166,94.78z"/>
+ <path id="path571" fill="#C0C0C0" d="M469.563,95.191L469.563,95.191l-0.352-0.117L469.563,95.191z"/>
+ <path id="path573" fill="#C0C0C0" d="M412.765,95.25L412.765,95.25l1.111-0.292L412.765,95.25z"/>
+ <path id="path575" fill="#C0C0C0" d="M468.978,95.367L468.978,95.367l-0.118-0.177L468.978,95.367z"/>
+ <path id="path577" fill="#C0C0C0" d="M643.357,95.953L643.357,95.953l-0.938,0.409l0.471-0.819L643.357,95.953z"/>
+ <path id="path579" fill="#C0C0C0" d="M725.336,96.597L725.336,96.597l0.059,0.058L725.336,96.597z"/>
+ <path id="path581" fill="#C0C0C0" d="M725.395,96.597L725.395,96.597l0.232,0.526L725.395,96.597z"/>
+ <path id="path583" fill="#C0C0C0" d="M685.985,97.357L685.985,97.357l1.582-0.232L685.985,97.357z"/>
+ <path id="path585" fill="#C0C0C0" d="M524.547,101.28L524.547,101.28l-4.743,0.06l0.058-0.878l4.687-1.054l-2.577,0.233l2.108-1.17
+ l-3.221-0.586l-0.819,0.177l-4.568,0.059l-0.35-0.41l3.045-0.526l4.859-0.059l0.351-1.465h-2.106l0.701-0.527l-1.58-0.117
+ l-0.353,0.41l-0.293,0.059l-0.409-0.41l-3.571,0.763l-2.342-0.353l2.576-0.116l2.399-3.162h2.576l3.688,1.463l0.879,2.986
+ l0.527-1.465l1.521,0.353l0.82-0.645l-0.527-1.465l3.337,1.23l0.059-1.171h3.163l1.696,1.465l-0.818-1.815l2.637,0.878l1.404-1.055
+ l3.455-1.112l2.751,1.348l2.93-0.82l3.22,3.22l-1.288,0.703l-0.117,0.233l1.874,0.468l-2.577,0.118l1.873,0.409l-2.868,0.41
+ l-0.115,1.405h-3.223l0.293,0.41l-3.864,1.347l-1.698-0.059l-4.215,1.58l-1.991,0.293l-5.035-0.527L524.547,101.28z"/>
+ <path id="path587" fill="#C0C0C0" d="M638.614,97.357L638.614,97.357l-1.287,0.353L638.614,97.357z"/>
+ <path id="path589" fill="#C0C0C0" d="M457.499,99.056L457.499,99.056l-1.463-1.464l1.172,0.352l-0.06,0.292l0.585,0.353
+ L457.499,99.056z"/>
+ <path id="path591" fill="#C0C0C0" d="M307.948,97.534L307.948,97.534l4.393,1.464l2.811,3.688h-0.469l-4.802-0.818l-2.226-0.996
+ l0.293-0.761l-2.167,1.463l-2.284,0.469l-3.338,1.814l-1.698-2.283l-5.151,0.644l3.513-1.815l-0.819-1.756l1.404-3.923l1.405-0.702
+ l2.46,2.458l1.17-0.937l4.158,1.229L307.948,97.534z"/>
+ <path id="path593" fill="#C0C0C0" d="M455.45,100.05L455.45,100.05l1.111-0.351L455.45,100.05z"/>
+ <path id="path595" fill="#C0C0C0" d="M326.862,100.754L326.862,100.754l-1.114,0.175l1.173-0.292L326.862,100.754z"/>
+ <path id="path597" fill="#C0C0C0" d="M630.651,101.75L630.651,101.75l-0.234,0.059l-1.58,0.118l1.639-0.528L630.651,101.75z"/>
+ <path id="path599" fill="#C0C0C0" d="M456.211,102.101L456.211,102.101l0.527-0.117L456.211,102.101z"/>
+ <path id="path601" fill="#C0C0C0" d="M280.895,102.336L280.895,102.336h-0.878H280.895z"/>
+ <path id="path603" fill="#C0C0C0" d="M631.763,102.336L631.763,102.336l-1.288,0.232L631.763,102.336z"/>
+ <path id="path605" fill="#C0C0C0" d="M330.608,102.686L330.608,102.686l-0.995,0.235l-1.347-0.468l-0.701-0.293l0.878-0.292
+ l1.64,0.407L330.608,102.686z"/>
+ <path id="path607" fill="#C0C0C0" d="M280.895,102.336L280.895,102.336l0.177,0.117L280.895,102.336z"/>
+ <path id="path609" fill="#C0C0C0" d="M281.246,102.569L281.246,102.569l0.059,0.117L281.246,102.569z"/>
+ <path id="path611" fill="#C0C0C0" d="M628.366,102.921L628.366,102.921l-0.761,0.175L628.366,102.921z"/>
+ <path id="path613" fill="#C0C0C0" d="M1268.325,104.442L1268.325,104.442l-4.157-1.814L1268.325,104.442z"/>
+ <path id="path615" fill="#C0C0C0" d="M453.928,103.389L453.928,103.389l-0.937-0.878l0.994,0.352l0.996,0.41L453.928,103.389z"/>
+ <path id="path617" fill="#C0C0C0" d="M327.329,103.389L327.329,103.389l-1.404,0.527l-0.469-0.06l-1.875-0.995l1.229-0.352
+ l2.051,0.41L327.329,103.389z"/>
+ <path id="path619" fill="#C0C0C0" d="M674.858,103.389L674.858,103.389l-0.523,0.352L674.858,103.389z"/>
+ <path id="path621" fill="#C0C0C0" d="M452.289,105.029L452.289,105.029l-0.118-0.177L452.289,105.029z"/>
+ <path id="path623" fill="#C0C0C0" d="M450.649,105.32L450.649,105.32l1.23,0.061L450.649,105.32z"/>
+ <path id="path625" fill="#C0C0C0" d="M351.63,105.087L351.63,105.087l0.997,0.41l-1.466,0.352l-0.469-0.586l0.117-0.175
+ l-1.17-0.116L351.63,105.087z"/>
+ <path id="path627" fill="#C0C0C0" d="M337.929,105.205L337.929,105.205l1.172,0.177L337.929,105.205z"/>
+ <path id="path629" fill="#C0C0C0" d="M310.877,104.325L310.877,104.325l0.878,0.938L310.877,104.325z"/>
+ <path id="path631" fill="#C0C0C0" d="M451.293,106.024L451.293,106.024l-0.233-0.059L451.293,106.024z"/>
+ <path id="path633" fill="#C0C0C0" d="M373.413,105.907L373.413,105.907l0.059,0.117l-0.761,0.468l-1.229-0.175l1.286-0.41H373.413
+ L373.413,105.907z"/>
+ <path id="path635" fill="#C0C0C0" d="M620.813,106.609L620.813,106.609l-0.702,0.235l-0.117-0.235H620.813z"/>
+ <path id="path637" fill="#C0C0C0" d="M620.754,106.667L620.754,106.667l0.059-0.117l0.06,0.059L620.754,106.667z"/>
+ <path id="path639" fill="#C0C0C0" d="M620.813,106.609L620.813,106.609h-0.819H620.813z"/>
+ <path id="path641" fill="#C0C0C0" d="M576.662,106.55L576.662,106.55l-0.178,0.41L576.662,106.55z"/>
+ <path id="path643" fill="#C0C0C0" d="M619.991,106.844L619.991,106.844l-0.058,0.175L619.991,106.844z"/>
+ <path id="path645" fill="#C0C0C0" d="M574.438,106.727L574.438,106.727l0.938,0.527h-1.057L574.438,106.727z"/>
+ <path id="path647" fill="#C0C0C0" d="M575.432,106.667L575.432,106.667l0.762,0.938L575.432,106.667z"/>
+ <path id="path649" fill="#C0C0C0" d="M574.438,106.727L574.438,106.727l1.579,1.289L574.438,106.727z"/>
+ <path id="path651" fill="#C0C0C0" d="M320.187,106.317L320.187,106.317l-0.819,2.927L320.187,106.317z"/>
+ <path id="path653" fill="#C0C0C0" d="M702.732,107.372L702.732,107.372h-0.059h-1.054l-0.994,0.468l0.818,0.703l1.055-0.118
+ L702.732,107.372z"/>
+ <path id="path655" fill="#C0C0C0" d="M575.9,108.307L575.9,108.307l0.06-0.117l0.058,0.059L575.9,108.307z"/>
+ <path id="path657" fill="#C0C0C0" d="M617.944,108.307L617.944,108.307l-1.112,0.177L617.944,108.307z"/>
+ <path id="path659" fill="#C0C0C0" d="M451.176,108.601L451.176,108.601l0.585-0.177L451.176,108.601z"/>
+ <path id="path661" fill="#C0C0C0" d="M575.959,109.421L575.959,109.421l0.058-0.118l0.059,0.06L575.959,109.421z"/>
+ <path id="path663" fill="#C0C0C0" d="M576.017,109.302L576.017,109.302l0.177,0.645L576.017,109.302z"/>
+ <path id="path665" fill="#C0C0C0" d="M372.419,109.245L372.419,109.245l-0.703,0.937L372.419,109.245z"/>
+ <path id="path667" fill="#C0C0C0" d="M434.136,111.646L434.136,111.646l0.059-0.117L434.136,111.646z"/>
+ <path id="path669" fill="#C0C0C0" d="M437.298,111.705L437.298,111.705l-2.283,0.409L437.298,111.705z"/>
+ <path id="path671" fill="#C0C0C0" d="M434.194,111.762L434.194,111.762v0.117V111.762z"/>
+ <path id="path673" fill="#C0C0C0" d="M436.829,111.937L436.829,111.937l0.059,0.061L436.829,111.937z"/>
+ <path id="path675" fill="#C0C0C0" d="M433.551,111.998L433.551,111.998l0.117,0.116L433.551,111.998z"/>
+ <path id="path677" fill="#C0C0C0" d="M434.487,111.998L434.487,111.998l0.06,0.116L434.487,111.998z"/>
+ <path id="path679" fill="#C0C0C0" d="M324.754,111.937L324.754,111.937l-1.173,0.353L324.754,111.937z"/>
+ <path id="path681" fill="#C0C0C0" d="M431.794,111.998L431.794,111.998l-0.938,0.409L431.794,111.998z"/>
+ <path id="path683" fill="#C0C0C0" d="M436.128,112.172L436.128,112.172l-0.41,0.059L436.128,112.172z"/>
+ <path id="path685" fill="#C0C0C0" d="M596.806,111.879L596.806,111.879l-0.587,0.527L596.806,111.879z"/>
+ <path id="path687" fill="#C0C0C0" d="M596.103,112.347L596.103,112.347l0.059-0.117l0.059,0.06L596.103,112.347z"/>
+ <path id="path689" fill="#C0C0C0" d="M437.006,112.114L437.006,112.114l0.117,0.059L437.006,112.114z"/>
+ <path id="path691" fill="#C0C0C0" d="M596.103,112.29L596.103,112.29l-0.469,0.819L596.103,112.29z"/>
+ <path id="path693" fill="#C0C0C0" d="M619.582,112.465L619.582,112.465l-0.469,0.82L619.582,112.465z"/>
+ <path id="path695" fill="#C0C0C0" d="M87.427,112.816L87.427,112.816l-1.582,0.41l-0.293-0.059l0.41-0.176l1.522-0.352
+ L87.427,112.816z"/>
+ <path id="path697" fill="#C0C0C0" d="M440.284,113.167L440.284,113.167l-0.116,0.119L440.284,113.167z"/>
+ <path id="path699" fill="#C0C0C0" d="M1256.907,112.757L1256.907,112.757l0.175,0.293l0.995,0.352l0.819,0.233h-0.878
+ L1256.907,112.757z"/>
+ <path id="path701" fill="#C0C0C0" d="M441.515,113.287L441.515,113.287l-0.294,0.232L441.515,113.287z"/>
+ <path id="path703" fill="#C0C0C0" d="M360.882,112.816L360.882,112.816l0.352,0.703L360.882,112.816z"/>
+ <path id="path705" fill="#C0C0C0" d="M372.534,113.109L372.534,113.109l0.763,0.703l-1.288-0.352L372.534,113.109z"/>
+ <path id="path707" fill="#C0C0C0" d="M441.749,113.344L441.749,113.344l-0.293,0.233L441.749,113.344z"/>
+ <path id="path709" fill="#C0C0C0" d="M439.933,113.578L439.933,113.578l0.062-0.117L439.933,113.578z"/>
+ <path id="path711" fill="#C0C0C0" d="M86.313,113.402L86.313,113.402l-1.698,0.526L86.313,113.402z"/>
+ <path id="path713" fill="#C0C0C0" d="M440.987,113.461L440.987,113.461l0.06,0.117L440.987,113.461z"/>
+ <path id="path715" fill="#C0C0C0" d="M595.459,113.167L595.459,113.167l-0.646,2.05L595.459,113.167z"/>
+ <path id="path717" fill="#C0C0C0" d="M669.53,113.402L669.53,113.402l0.82,0.233l-0.762,0.41L669.53,113.402z"/>
+ <path id="path719" fill="#C0C0C0" d="M676.382,114.104L676.382,114.104l-0.524,0.235L676.382,114.104z"/>
+ <path id="path721" fill="#C0C0C0" d="M680.249,113.812L680.249,113.812l-0.763,0.995l-1.114-0.352l1.405-0.469L680.249,113.812z"/>
+ <path id="path723" fill="#C0C0C0" d="M675.679,114.28L675.679,114.28l-0.059,0.176L675.679,114.28z"/>
+ <path id="path725" fill="#C0C0C0" d="M444.091,114.514L444.091,114.514l0.059-0.116l0.06,0.059L444.091,114.514z"/>
+ <path id="path727" fill="#C0C0C0" d="M15.987,113.344L15.987,113.344l2.05,1.521L15.987,113.344z"/>
+ <path id="path729" fill="#C0C0C0" d="M83.387,113.812L83.387,113.812l-1.757,1.112l-0.178,0.118L83.387,113.812z"/>
+ <path id="path731" fill="#C0C0C0" d="M444.091,114.398L444.091,114.398l0.232,0.235l-0.35,0.232L444.091,114.398z"/>
+ <path id="path733" fill="#C0C0C0" d="M445.671,114.924L445.671,114.924l-0.351-0.117L445.671,114.924z"/>
+ <path id="path735" fill="#C0C0C0" d="M678.491,114.572L678.491,114.572l-0.236,0.235L678.491,114.572z"/>
+ <path id="path737" fill="#C0C0C0" d="M446.784,115.101L446.784,115.101l0.526-0.352L446.784,115.101z"/>
+ <path id="path739" fill="#C0C0C0" d="M447.253,115.042L447.253,115.042l0.115-0.235L447.253,115.042z"/>
+ <path id="path741" fill="#C0C0C0" d="M618.296,115.042L618.296,115.042l0.059-0.118l0.059,0.058L618.296,115.042z"/>
+ <path id="path743" fill="#C0C0C0" d="M445.027,114.865L445.027,114.865l-0.468,0.293L445.027,114.865z"/>
+ <path id="path745" fill="#C0C0C0" d="M444.618,115.392L444.618,115.392l0.058-0.117L444.618,115.392z"/>
+ <path id="path747" fill="#C0C0C0" d="M618.412,114.924L618.412,114.924l0.292,0.703L618.412,114.924z"/>
+ <path id="path749" fill="#C0C0C0" d="M737.104,115.334L737.104,115.334v0.058V115.334z"/>
+ <path id="path751" fill="#C0C0C0" d="M617.825,116.974L617.825,116.974l0.061-0.116l0.059,0.059L617.825,116.974z"/>
+ <path id="path753" fill="#C0C0C0" d="M1145.886,117.208L1145.886,117.208l0.292-0.117L1145.886,117.208z"/>
+ <path id="path755" fill="#C0C0C0" d="M617.886,116.858L617.886,116.858l0.232,0.878L617.886,116.858z"/>
+ <path id="path757" fill="#C0C0C0" d="M1128.202,118.262L1128.202,118.262l1.054-0.352L1128.202,118.262z"/>
+ <path id="path759" fill="#C0C0C0" d="M681.065,118.146L681.065,118.146h0.063H681.065z"/>
+ <path id="path761" fill="#C0C0C0" d="M590.188,118.497L590.188,118.497l-1.815,0.117L590.188,118.497z"/>
+ <path id="path763" fill="#C0C0C0" d="M681.065,118.205L681.065,118.205l0.763,0.175L681.065,118.205z"/>
+ <path id="path765" fill="#C0C0C0" d="M679.134,118.027L679.134,118.027l1.465,0.82L679.134,118.027z"/>
+ <path id="path767" fill="#C0C0C0" d="M588.372,118.847L588.372,118.847l-0.818-0.058L588.372,118.847z"/>
+ <path id="path769" fill="#C0C0C0" d="M588.372,118.905L588.372,118.905l0.061-0.115l0.058,0.058L588.372,118.905z"/>
+ <path id="path771" fill="#C0C0C0" d="M1173.64,119.842L1173.64,119.842l1.053-1.522L1173.64,119.842z"/>
+ <path id="path773" fill="#C0C0C0" d="M34.959,119.024L34.959,119.024l-0.701,0.818L34.959,119.024z"/>
+ <path id="path775" fill="#C0C0C0" d="M681.244,119.492L681.244,119.492l0.523,0.469L681.244,119.492z"/>
+ <path id="path777" fill="#C0C0C0" d="M64.354,119.726L64.354,119.726l-1.053,0.235l1.053-0.353V119.726z"/>
+ <path id="path779" fill="#C0C0C0" d="M667.19,120.487L667.19,120.487l0.292,0.059L667.19,120.487z"/>
+ <path id="path781" fill="#C0C0C0" d="M680.366,119.726L680.366,119.726l1.229,0.587L680.366,119.726z"/>
+ <path id="path783" fill="#C0C0C0" d="M65.291,120.546L65.291,120.546l-2.692,1.347L65.291,120.546z"/>
+ <path id="path785" fill="#C0C0C0" d="M640.839,120.839L640.839,120.839l-0.938,0.76L640.839,120.839z"/>
+ <path id="path787" fill="#C0C0C0" d="M683.995,121.307L683.995,121.307v0.117V121.307z"/>
+ <path id="path789" fill="#C0C0C0" d="M577.95,120.429L577.95,120.429l-1.112,1.64L577.95,120.429z"/>
+ <path id="path791" fill="#C0C0C0" d="M120.158,121.599L120.158,121.599l0.059-0.116l0.06,0.059L120.158,121.599z"/>
+ <path id="path793" fill="#C0C0C0" d="M120.217,121.542L120.217,121.542l0.41,0.234L120.217,121.542z"/>
+ <path id="path795" fill="#C0C0C0" d="M667.482,122.009L667.482,122.009l-0.995,0.177L667.482,122.009z"/>
+ <path id="path797" fill="#C0C0C0" d="M60.489,121.951L60.489,121.951l0.82,0.587l-1.111-0.41L60.489,121.951z"/>
+ <path id="path799" fill="#C0C0C0" d="M122.735,120.957L122.735,120.957l-0.175,0.995L122.735,120.957z"/>
+ <path id="path801" fill="#C0C0C0" d="M569.577,122.477L569.577,122.477l-0.178,0.061L569.577,122.477z"/>
+ <path id="path803" fill="#C0C0C0" d="M681.302,122.477L681.302,122.477l0.117,0.119L681.302,122.477z"/>
+ <path id="path805" fill="#C0C0C0" d="M125.78,120.546L125.78,120.546l2.46,0.704L125.78,120.546z"/>
+ <path id="path807" fill="#C0C0C0" d="M574.379,122.947L574.379,122.947l0.35,0.117l-0.058,0.175l-0.762,0.353l-0.352-0.235
+ L574.379,122.947z"/>
+ <path id="path809" fill="#C0C0C0" d="M573.792,123.649L573.792,123.649l0.525,0.059L573.792,123.649z"/>
+ <path id="path811" fill="#C0C0C0" d="M666.37,122.186L666.37,122.186l-0.295,1.757L666.37,122.186z"/>
+ <path id="path813" fill="#C0C0C0" d="M61.135,121.834L61.135,121.834l3.277,1.991h-2.458l1.23,0.526l-2.986,0.41l-4.45-0.646
+ l2.049-1.11L61.135,121.834z"/>
+ <path id="path815" fill="#C0C0C0" d="M638.027,124.294L638.027,124.294h0.704H638.027z"/>
+ <path id="path817" fill="#C0C0C0" d="M574.202,124.412L574.202,124.412l0.059-0.117l0.058,0.058L574.202,124.412z"/>
+ <path id="path819" fill="#C0C0C0" d="M638.027,124.294L638.027,124.294h0.704H638.027z"/>
+ <path id="path821" fill="#C0C0C0" d="M573.792,123.942L573.792,123.942l0.469,0.233L573.792,123.942z"/>
+ <path id="path823" fill="#C0C0C0" d="M1266.627,124.586L1266.627,124.586l-0.938,0.177L1266.627,124.586z"/>
+ <path id="path825" fill="#C0C0C0" d="M122.852,124.234L122.852,124.234l0.293,1.113l-0.703-0.585L122.852,124.234z"/>
+ <path id="path827" fill="#C0C0C0" d="M631.529,125.054L631.529,125.054l-0.117-0.116L631.529,125.054z"/>
+ <path id="path829" fill="#C0C0C0" d="M62.423,124.879L62.423,124.879l-1.056,0.175L62.423,124.879z"/>
+ <path id="path831" fill="#C0C0C0" d="M573.5,125.172L573.5,125.172l-0.471,0.35L573.5,125.172z"/>
+ <path id="path833" fill="#C0C0C0" d="M577.364,125.172L577.364,125.172l0.293,0.175l-0.059,0.175L577.364,125.172z"/>
+ <path id="path835" fill="#C0C0C0" d="M124.959,123.826L124.959,123.826l1.582,4.45L124.959,123.826z"/>
+ <path id="path837" fill="#C0C0C0" d="M631.001,125.464L631.001,125.464l-0.585,0.937L631.001,125.464z"/>
+ <path id="path839" fill="#C0C0C0" d="M659.752,124.176L659.752,124.176l-2.165,3.865L659.752,124.176z"/>
+ <path id="path841" fill="#C0C0C0" d="M384.07,125.641L384.07,125.641l-0.116,1.053l-0.937-0.41L384.07,125.641z"/>
+ <path id="path843" fill="#C0C0C0" d="M132.163,125.406L132.163,125.406l0.351,1.288L132.163,125.406z"/>
+ <path id="path845" fill="#C0C0C0" d="M133.041,126.109L133.041,126.109l0.938,0.644v0.059l-0.526,0.235l-0.293,0.059h-0.585
+ l-0.119-1.053L133.041,126.109z"/>
+ <path id="path847" fill="#C0C0C0" d="M576.837,126.461L576.837,126.461l-0.701,0.468L576.837,126.461z"/>
+ <path id="path849" fill="#C0C0C0" d="M58.206,126.811L58.206,126.811l0.059-0.117l0.058,0.059L58.206,126.811z"/>
+ <path id="path851" fill="#C0C0C0" d="M1268.092,126.694L1268.092,126.694l0.878,0.059L1268.092,126.694z"/>
+ <path id="path853" fill="#C0C0C0" d="M58.265,126.752L58.265,126.752v0.177l-0.938,0.059L58.265,126.752z"/>
+ <path id="path855" fill="#C0C0C0" d="M58.969,126.987L58.969,126.987l0.058-0.117l0.058,0.06L58.969,126.987z"/>
+ <path id="path857" fill="#C0C0C0" d="M58.969,126.929L58.969,126.929l-0.235,0.175L58.969,126.929z"/>
+ <path id="path859" fill="#C0C0C0" d="M57.095,126.811L57.095,126.811l0.058,0.118L57.095,126.811z"/>
+ <path id="path861" fill="#C0C0C0" d="M575.665,126.987L575.665,126.987l-0.585,0.117L575.665,126.987z"/>
+ <path id="path863" fill="#C0C0C0" d="M128.531,125.699L128.531,125.699l1.407,1.054L128.531,125.699z"/>
+ <path id="path865" fill="#C0C0C0" d="M578.126,126.578L578.126,126.578l0.408,0.232l0.995,0.353l0.235,0.116l-0.762,0.353
+ l-1.405,0.293l0.879-0.703l-1.056-0.41L578.126,126.578z"/>
+ <path id="path867" fill="#C0C0C0" d="M133.392,127.279L133.392,127.279l0.293,0.178L133.392,127.279z"/>
+ <path id="path869" fill="#C0C0C0" d="M320.129,127.104L320.129,127.104l-0.529,0.468l-1.288,0.646l0.294-0.061L320.129,127.104z"/>
+ <path id="path871" fill="#C0C0C0" d="M134.68,127.163L134.68,127.163l1.113,0.526l-1.113,0.293V127.163z"/>
+ <path id="path873" fill="#C0C0C0" d="M323.231,127.398L323.231,127.398l-0.878,0.878l0.701-0.997L323.231,127.398z"/>
+ <path id="path875" fill="#C0C0C0" d="M321.592,127.046L321.592,127.046l-0.235,2.342L321.592,127.046z"/>
+ <path id="path877" fill="#C0C0C0" d="M134.506,127.689L134.506,127.689l0.409,1.465l-1.522-1.055L134.506,127.689z"/>
+ <path id="path879" fill="#C0C0C0" d="M578.067,128.452L578.067,128.452l-0.175,0.293h-0.294L578.067,128.452z"/>
+ <path id="path881" fill="#C0C0C0" d="M579.589,128.392L579.589,128.392l-0.879,0.645L579.589,128.392z"/>
+ <path id="path883" fill="#C0C0C0" d="M131.344,128.392L131.344,128.392l-1.056,0.645L131.344,128.392z"/>
+ <path id="path885" fill="#C0C0C0" d="M579.589,128.334L579.589,128.334l0.06,0.117L579.589,128.334z"/>
+ <path id="path887" fill="#C0C0C0" d="M636.681,128.977L636.681,128.977l0.235,0.704L636.681,128.977z"/>
+ <path id="path889" fill="#C0C0C0" d="M53.112,129.154L53.112,129.154l-0.06,0.469L53.112,129.154z"/>
+ <path id="path891" fill="#C0C0C0" d="M578.126,129.154L578.126,129.154l0.058,0.41L578.126,129.154z"/>
+ <path id="path893" fill="#C0C0C0" d="M581.112,129.856L581.112,129.856l0.701,0.878l-0.995-0.292L581.112,129.856z"/>
+ <path id="path895" fill="#C0C0C0" d="M138.546,129.037L138.546,129.037l0.116,2.694L138.546,129.037z"/>
+ <path id="path897" fill="#C0C0C0" d="M138.604,129.037L138.604,129.037l0.293,2.694L138.604,129.037z"/>
+ <path id="path899" fill="#C0C0C0" d="M643.649,128.626L643.649,128.626l-1.347,3.749L643.649,128.626z"/>
+ <path id="path901" fill="#C0C0C0" d="M130.288,127.63L130.288,127.63l1.466,0.117l3.571,2.929l-1.873,0.116L130.288,127.63z"/>
+ <path id="path903" fill="#C0C0C0" d="M136.437,131.027L136.437,131.027l0.058-0.116l0.061,0.058L136.437,131.027z"/>
+ <path id="path905" fill="#C0C0C0" d="M637.032,130.324L637.032,130.324l0.295,1.815L637.032,130.324z"/>
+ <path id="path907" fill="#C0C0C0" d="M636.975,130.382L636.975,130.382l0.058,1.816L636.975,130.382z"/>
+ <path id="path909" fill="#C0C0C0" d="M136.494,130.912L136.494,130.912l0.587,0.468L136.494,130.912z"/>
+ <path id="path911" fill="#C0C0C0" d="M131.284,131.203L131.284,131.203l0.176,0.409L131.284,131.203z"/>
+ <path id="path913" fill="#C0C0C0" d="M35.018,130.969L35.018,130.969l0.82,0.702l-1.23,0.293L35.018,130.969z"/>
+ <path id="path915" fill="#C0C0C0" d="M39.177,131.612L39.177,131.612l0.058-0.116l0.06,0.058L39.177,131.612z"/>
+ <path id="path917" fill="#C0C0C0" d="M137.666,131.612L137.666,131.612l0.059-0.116l0.059,0.058L137.666,131.612z"/>
+ <path id="path919" fill="#C0C0C0" d="M651.613,131.379L651.613,131.379l1.229,0.937L651.613,131.379z"/>
+ <path id="path921" fill="#C0C0C0" d="M39.177,131.554L39.177,131.554l-0.469,0.704l0.233-0.587L39.177,131.554z"/>
+ <path id="path923" fill="#C0C0C0" d="M137.725,131.554L137.725,131.554l0.352,0.762L137.725,131.554z"/>
+ <path id="path925" fill="#C0C0C0" d="M37.946,131.379L37.946,131.379l0.059,0.117L37.946,131.379z"/>
+ <path id="path927" fill="#C0C0C0" d="M1183.654,131.203L1183.654,131.203l1.521,2.344L1183.654,131.203z"/>
+ <path id="path929" fill="#C0C0C0" d="M1079.773,132.726L1079.773,132.726l1.35-0.058L1079.773,132.726z"/>
+ <path id="path931" fill="#C0C0C0" d="M138.486,132.491L138.486,132.491l0.06-0.116l0.058,0.058L138.486,132.491z"/>
+ <path id="path933" fill="#C0C0C0" d="M642.713,132.199L642.713,132.199l0.878,0.351L642.713,132.199z"/>
+ <path id="path935" fill="#C0C0C0" d="M633.871,132.082L633.871,132.082l0.994,0.468h-0.938L633.871,132.082z"/>
+ <path id="path937" fill="#C0C0C0" d="M131.986,131.497L131.986,131.497l1.523,2.05L131.986,131.497z"/>
+ <path id="path939" fill="#C0C0C0" d="M29.632,132.609L29.632,132.609l0.058-0.118l0.058,0.059L29.632,132.609z"/>
+ <path id="path941" fill="#C0C0C0" d="M638.027,131.906L638.027,131.906l-0.817,1.405L638.027,131.906z"/>
+ <path id="path943" fill="#C0C0C0" d="M138.546,132.432L138.546,132.432l0.177,0.235L138.546,132.432z"/>
+ <path id="path945" fill="#C0C0C0" d="M1081.709,133.194L1081.709,133.194v-0.058l3.335-0.938L1081.709,133.194z"/>
+ <path id="path947" fill="#C0C0C0" d="M29.632,132.491L29.632,132.491l-0.353,0.469L29.632,132.491z"/>
+ <path id="path949" fill="#C0C0C0" d="M396.016,132.784L396.016,132.784l0.061-0.116l0.059,0.058L396.016,132.784z"/>
+ <path id="path951" fill="#C0C0C0" d="M628.718,133.253L628.718,133.253l0.293-0.995l0.995,0.527l-1.17,0.058L628.718,133.253z"/>
+ <path id="path953" fill="#C0C0C0" d="M142.294,132.316L142.294,132.316l-0.704,0.82L142.294,132.316z"/>
+ <path id="path955" fill="#C0C0C0" d="M396.075,132.668L396.075,132.668l0.232,0.41L396.075,132.668z"/>
+ <path id="path957" fill="#C0C0C0" d="M639.083,132.549L639.083,132.549l2.166,0.704L639.083,132.549z"/>
+ <path id="path959" fill="#C0C0C0" d="M641.191,132.549L641.191,132.549l1.054,0.41L641.191,132.549z"/>
+ <path id="path961" fill="#C0C0C0" d="M25.181,132.432L25.181,132.432l-4.04,2.108L25.181,132.432z"/>
+ <path id="path963" fill="#C0C0C0" d="M1187.868,132.842L1187.868,132.842l2.283,1.289L1187.868,132.842z"/>
+ <path id="path965" fill="#C0C0C0" d="M631.119,134.072L631.119,134.072l0.059-0.058L631.119,134.072z"/>
+ <path id="path967" fill="#C0C0C0" d="M27.758,134.248L27.758,134.248l0.058-0.116l0.059,0.058L27.758,134.248z"/>
+ <path id="path969" fill="#C0C0C0" d="M638.263,134.248L638.263,134.248l0.235-0.233L638.263,134.248z"/>
+ <path id="path971" fill="#C0C0C0" d="M645.7,134.716L645.7,134.716l0.116-0.76L645.7,134.716z"/>
+ <path id="path973" fill="#C0C0C0" d="M27.815,134.189L27.815,134.189l0.704,0.353L27.815,134.189z"/>
+ <path id="path975" fill="#C0C0C0" d="M582.049,119.609L582.049,119.609l0.82,0.644l0.585-0.469l0.409,0.469l5.153-0.644
+ l-2.636,2.751l-1.698,1.23l3.22-0.761l1.114,0.177l4.215,0.232l-2.517,3.631l-4.04,1.933l2.398,0.233l3.046,0.177l1.757,1.11
+ l1.582,3.455l4.155,2.93l0.47,0.643l-0.47,0.177l1.23,1.289l-1.23,0.995l1.933-0.293l4.274,1.698l-1.697,2.225l-3.162,1.405
+ l-0.526,2.519l-0.82-0.175l-5.152-0.468l-2.048,0.702l-1.407,0.762l-3.571-0.585l-5.094,0.292l2.517-2.105l4.218-0.119l2.167-1.873
+ l-3.104,1.288l-3.63-0.995l-1.465-4.159l2.986-1.698h3.981l-1.289-0.76l0.294-5.037l-3.339,0.762l-4.099-0.293l0.704-4.977
+ l-3.105,3.396l1.288-1.875l1.347-3.045l-2.225,0.763l-1.111-0.526l1.579-0.175l-2.341-0.118l2.812-1.347l-0.061-1.112
+ L582.049,119.609z"/>
+ <path id="path977" fill="#C0C0C0" d="M584.332,134.424L584.332,134.424l-1.521,1.229L584.332,134.424z"/>
+ <path id="path979" fill="#C0C0C0" d="M18.096,134.834L18.096,134.834l0.41,0.35l-0.763,0.293l-0.058-0.117L18.096,134.834z"/>
+ <path id="path981" fill="#C0C0C0" d="M17.569,135.478L17.569,135.478l-0.352,0.175L17.569,135.478z"/>
+ <path id="path983" fill="#C0C0C0" d="M17.569,135.478L17.569,135.478h-1.582H17.569z"/>
+ <path id="path985" fill="#C0C0C0" d="M20.146,135.419L20.146,135.419l-0.938,0.059L20.146,135.419z"/>
+ <path id="path987" fill="#C0C0C0" d="M18.975,135.594L18.975,135.594l-0.117,0.177L18.975,135.594z"/>
+ <path id="path989" fill="#C0C0C0" d="M141.706,135.652L141.706,135.652l-0.059,0.82l-0.878-0.41L141.706,135.652z"/>
+ <path id="path991" fill="#C0C0C0" d="M564.599,135.83L564.599,135.83l-1.054,0.175L564.599,135.83z"/>
+ <path id="path993" fill="#C0C0C0" d="M141.884,136.708L141.884,136.708l0.058-0.117l0.059,0.058L141.884,136.708z"/>
+ <path id="path995" fill="#C0C0C0" d="M626.376,136.766L626.376,136.766l-0.526,0.117L626.376,136.766z"/>
+ <path id="path997" fill="#C0C0C0" d="M625.381,136.882L625.381,136.882l-0.646,0.058L625.381,136.882z"/>
+ <path id="path999" fill="#C0C0C0" d="M141.941,136.591L141.941,136.591l0.645,0.817l-0.879-0.175L141.941,136.591z"/>
+ <path id="path1001" fill="#C0C0C0" d="M137.023,135.478L137.023,135.478l-3.631,3.045L137.023,135.478z"/>
+ <path id="path1003" fill="#C0C0C0" d="M15.52,136.004L15.52,136.004l-1.114,0.878L15.52,136.004z"/>
+ <path id="path1005" fill="#C0C0C0" d="M623.506,137.293L623.506,137.293l-0.233,0.058L623.506,137.293z"/>
+ <path id="path1007" fill="#C0C0C0" d="M142.235,136.181L142.235,136.181l1.521,0.878L142.235,136.181z"/>
+ <path id="path1009" fill="#C0C0C0" d="M147.034,136.941L147.034,136.941l-0.175,0.47l-0.762,0.177L147.034,136.941z"/>
+ <path id="path1011" fill="#C0C0C0" d="M621.866,137.644L621.866,137.644l-0.702,0.117L621.866,137.644z"/>
+ <path id="path1013" fill="#C0C0C0" d="M619.524,137.761L619.524,137.761h0.996H619.524z"/>
+ <path id="path1015" fill="#C0C0C0" d="M619.466,137.879L619.466,137.879l0.059-0.118l0.059,0.058L619.466,137.879z"/>
+ <path id="path1017" fill="#C0C0C0" d="M619.524,137.761L619.524,137.761l-0.059,0.118L619.524,137.761z"/>
+ <path id="path1019" fill="#C0C0C0" d="M577.657,135.594L577.657,135.594l0.879,3.924l-1.288,2.753h-1.873l-0.353,0.175
+ l-2.107,0.117l-3.278,1.756l-4.334,0.527l-2.46-2.575l2.577-0.234l3.513-1.464l-4.215,0.351l3.63-2.283l-4.508-0.644l0.232-2.46
+ l1.113-0.82l4.508,0.468l1.464-1.463l2.986-1.521L577.657,135.594z"/>
+ <path id="path1021" fill="#C0C0C0" d="M619.232,137.819L619.232,137.819l-1.465,0.353L619.232,137.819z"/>
+ <path id="path1023" fill="#C0C0C0" d="M141.532,137.234L141.532,137.234l1.756,0.763L141.532,137.234z"/>
+ <path id="path1025" fill="#C0C0C0" d="M584.099,137.879L584.099,137.879l1.17,0.644l-1.111,0.41l-0.587-0.878L584.099,137.879z"/>
+ <path id="path1027" fill="#C0C0C0" d="M10.074,137.644L10.074,137.644l-0.234,0.235l0.058,0.175l-0.468,0.204l-0.059,0.024"/>
+ <path id="path1029" fill="#C0C0C0" d="M1270.669,139.901L1270.669,139.901L1270.669,139.901L1270.669,139.901h-0.004l-0.019,0.004
+ l-0.03,0.009l-0.064,0.014l-0.236,0.117l0.179-0.059v-0.116l0.145-0.029l0.021-0.003l0.007-0.002h0.004v-0.001"/>
+ <path id="path1031" fill="#C0C0C0" d="M9.37,137.409L9.37,137.409l0.703,0.235"/>
+ <path id="path1033" fill="#C0C0C0" d="M616.772,138.757L616.772,138.757l-0.525,0.702L616.772,138.757z"/>
+ <path id="path1035" fill="#C0C0C0" d="M1268.208,139.284L1268.208,139.284l-0.116,0.353L1268.208,139.284z"/>
+ <path id="path1037" fill="#C0C0C0" d="M314.74,138.757L314.74,138.757l1.348,1.697L314.74,138.757z"/>
+ <path id="path1039" fill="#C0C0C0" d="M146.803,138.406L146.803,138.406l0.468,2.4l-1.289-0.762L146.803,138.406z"/>
+ <path id="path1041" fill="#C0C0C0" d="M1206.255,139.401L1206.255,139.401l2.168,0.235l-1.231,0.644l-0.407-0.469h-0.408
+ L1206.255,139.401z"/>
+ <path id="path1043" fill="#C0C0C0" d="M1268.267,139.927L1268.267,139.927l-1.111,0.059L1268.267,139.927z"/>
+ <path id="path1045" fill="#C0C0C0" d="M1266.802,140.163L1266.802,140.163l0.117,0.059L1266.802,140.163z"/>
+ <path id="path1047" fill="#C0C0C0" d="M136.613,138.582L136.613,138.582l0.644,0.704L136.613,138.582z"/>
+ <path id="path1049" fill="#C0C0C0" d="M618.529,139.167L618.529,139.167l0.763,1.406l0.878,0.233l-0.763,0.878l-0.585,0.353
+ l-1.347-0.585l-0.118-1.815L618.529,139.167z"/>
+ <path id="path1051" fill="#C0C0C0" d="M145.572,140.044L145.572,140.044l1.056,0.704l-1.288-0.527L145.572,140.044z"/>
+ <path id="path1053" fill="#C0C0C0" d="M147.974,140.749L147.974,140.749l0.059-0.117l0.059,0.058L147.974,140.749z"/>
+ <path id="path1055" fill="#C0C0C0" d="M1265.045,140.514L1265.045,140.514l-0.82,0.468L1265.045,140.514z"/>
+ <path id="path1057" fill="#C0C0C0" d="M148.616,140.163L148.616,140.163l0.293,1.111L148.616,140.163z"/>
+ <path id="path1059" fill="#C0C0C0" d="M148.032,140.631L148.032,140.631l0.233,0.643L148.032,140.631z"/>
+ <path id="path1061" fill="#C0C0C0" d="M1262.764,141.099L1262.764,141.099l0.175,0.058L1262.764,141.099z"/>
+ <path id="path1063" fill="#C0C0C0" d="M620.11,140.922L620.11,140.922l0.117,0.177L620.11,140.922z"/>
+ <path id="path1065" fill="#C0C0C0" d="M1209.068,141.333L1209.068,141.333l1.111-0.176L1209.068,141.333z"/>
+ <path id="path1067" fill="#C0C0C0" d="M1258.722,141.567L1258.722,141.567l0.175,0.293L1258.722,141.567z"/>
+ <path id="path1069" fill="#C0C0C0" d="M150.021,141.978L150.021,141.978l0.059-0.117l0.061,0.059L150.021,141.978z"/>
+ <path id="path1071" fill="#C0C0C0" d="M150.021,141.919L150.021,141.919l0.177,0.352h-0.527L150.021,141.919z"/>
+ <path id="path1073" fill="#C0C0C0" d="M966.351,142.152L966.351,142.152h0.059H966.351z"/>
+ <path id="path1075" fill="#C0C0C0" d="M1252.515,141.452L1252.515,141.452l0.233,1.111L1252.515,141.452z"/>
+ <path id="path1077" fill="#C0C0C0" d="M152.599,141.452L152.599,141.452l-1.641,1.521l0.646-1.111L152.599,141.452z"/>
+ <path id="path1079" fill="#C0C0C0" d="M149.379,142.271L149.379,142.271l-0.178,0.527L149.379,142.271z"/>
+ <path id="path1081" fill="#C0C0C0" d="M1253.043,142.504L1253.043,142.504l3.747,0.117L1253.043,142.504z"/>
+ <path id="path1083" fill="#C0C0C0" d="M1245.958,142.563L1245.958,142.563l-0.471,0.353L1245.958,142.563z"/>
+ <path id="path1085" fill="#C0C0C0" d="M321.007,142.563L321.007,142.563l-1.113,0.646L321.007,142.563z"/>
+ <path id="path1087" fill="#C0C0C0" d="M1223.705,142.504L1223.705,142.504l-0.233,0.704L1223.705,142.504z"/>
+ <path id="path1089" fill="#C0C0C0" d="M1246.542,142.972L1246.542,142.972v0.059V142.972z"/>
+ <path id="path1091" fill="#C0C0C0" d="M1247.07,143.031L1247.07,143.031v0.118V143.031z"/>
+ <path id="path1093" fill="#C0C0C0" d="M1230.848,142.856L1230.848,142.856l0.412,0.175L1230.848,142.856z"/>
+ <path id="path1095" fill="#C0C0C0" d="M150.08,142.739L150.08,142.739l-0.175,0.938l-0.468,0.117L150.08,142.739z"/>
+ <path id="path1097" fill="#C0C0C0" d="M1245.958,143.208L1245.958,143.208l0.292,0.175L1245.958,143.208z"/>
+ <path id="path1099" fill="#C0C0C0" d="M1245.488,143.324L1245.488,143.324l0.528,0.233L1245.488,143.324z"/>
+ <path id="path1101" fill="#C0C0C0" d="M1236.297,143.5L1236.297,143.5l0.175,0.177L1236.297,143.5z"/>
+ <path id="path1103" fill="#C0C0C0" d="M1245.08,143.441L1245.08,143.441l-0.471,0.117v-0.117H1245.08z"/>
+ <path id="path1105" fill="#C0C0C0" d="M1244.144,143.031L1244.144,143.031l0.408,0.82L1244.144,143.031z"/>
+ <path id="path1107" fill="#C0C0C0" d="M1242.445,143.324L1242.445,143.324l-0.762,0.763l-1.054-0.06l0.995-0.352L1242.445,143.324z
+ "/>
+ <path id="path1109" fill="#C0C0C0" d="M1239.34,143.208L1239.34,143.208l1.054,0.292L1239.34,143.208z"/>
+ <path id="path1111" fill="#C0C0C0" d="M149.905,143.909L149.905,143.909l0.468,0.879L149.905,143.909z"/>
+ <path id="path1113" fill="#C0C0C0" d="M1227.455,144.144L1227.455,144.144l2.456,0.995L1227.455,144.144z"/>
+ <path id="path1115" fill="#C0C0C0" d="M602.426,145.139L602.426,145.139l-0.233-0.175L602.426,145.139z"/>
+ <path id="path1117" fill="#C0C0C0" d="M602.426,145.139L602.426,145.139h0.528H602.426z"/>
+ <path id="path1119" fill="#C0C0C0" d="M1145.77,146.837L1145.77,146.837l0.758,0.117l-0.642,0.058L1145.77,146.837z"/>
+ <path id="path1121" fill="#C0C0C0" d="M404.741,147.189L404.741,147.189l-0.644,0.175L404.741,147.189z"/>
+ <path id="path1123" fill="#C0C0C0" d="M1149.104,147.716L1149.104,147.716l-0.819-0.353L1149.104,147.716z"/>
+ <path id="path1125" fill="#C0C0C0" d="M156.054,147.071L156.054,147.071l-1.113,0.586L156.054,147.071z"/>
+ <path id="path1127" fill="#C0C0C0" d="M595.866,147.542L595.866,147.542l-0.76,0.35L595.866,147.542z"/>
+ <path id="path1129" fill="#C0C0C0" d="M1149.104,147.774L1149.104,147.774h-0.059H1149.104z"/>
+ <path id="path1131" fill="#C0C0C0" d="M1145.008,149.766L1145.008,149.766l2.927-2.577L1145.008,149.766z"/>
+ <path id="path1133" fill="#C0C0C0" d="M159.509,148.419L159.509,148.419l0.762,0.702l-0.293,0.409l-0.468-0.703l-0.41,0.118
+ l0.232-0.177L159.509,148.419z"/>
+ <path id="path1135" fill="#C0C0C0" d="M160.445,149.237L160.445,149.237l0.06-0.116l0.058,0.059L160.445,149.237z"/>
+ <path id="path1137" fill="#C0C0C0" d="M1097.927,138.875L1097.927,138.875l-0.175-0.82l4.333-2.635l-0.586,0.937l1.756,3.572
+ l-0.467,4.627l0.584-0.352l0.47,1.463l0.995,3.279l0.703,0.938l0.407,0.878l2.229,3.981l-2.285-2.107l-2.985-0.527l1.462,0.293
+ l-2.281,0.585l-1.698,4.743l2.282,3.337l1.522,1.641l-0.646,1.229l-4.741,0.468l-0.938-2.46l1.286-4.859l-1.17-2.751l0.995-2.811
+ l-0.292-3.455l0.762-2.05l-2.227-2.693L1097.927,138.875z"/>
+ <path id="path1139" fill="#C0C0C0" d="M159.567,148.946L159.567,148.946l0.293,0.292L159.567,148.946z"/>
+ <path id="path1141" fill="#C0C0C0" d="M160.504,149.122L160.504,149.122v0.762V149.122z"/>
+ <path id="path1143" fill="#C0C0C0" d="M160.504,149.122L160.504,149.122l0.293,0.585L160.504,149.122z"/>
+ <path id="path1145" fill="#C0C0C0" d="M577.422,150.234L577.422,150.234l0.118-0.059L577.422,150.234z"/>
+ <path id="path1147" fill="#C0C0C0" d="M1141.902,150.761L1141.902,150.761l0.412-0.117L1141.902,150.761z"/>
+ <path id="path1149" fill="#C0C0C0" d="M154.238,150.351L154.238,150.351l0.527,0.995l-1.172-0.41L154.238,150.351z"/>
+ <path id="path1151" fill="#C0C0C0" d="M409.601,150.936L409.601,150.936l0.059-0.116l0.061,0.059L409.601,150.936z"/>
+ <path id="path1153" fill="#C0C0C0" d="M409.601,150.878L409.601,150.878l0.353,0.234L409.601,150.878z"/>
+ <path id="path1155" fill="#C0C0C0" d="M161.791,150.644L161.791,150.644l0.82,0.292l-0.937-0.058L161.791,150.644z"/>
+ <path id="path1157" fill="#C0C0C0" d="M151.778,147.481L151.778,147.481l0.177-0.175l0.059,0.175l0.702,0.293h0.293l0.41,0.117
+ l0.525,0.119l4.979,0.818l2.282,2.986l2.928,0.82l1.406,3.28h-0.352l-0.41-0.235l-4.743-1.289l1.054-1.756l-2.4,1.113l-0.995-1.582
+ l-0.41-0.117h-2.401l1.698-0.995l-3.63-0.587L151.778,147.481z"/>
+ <path id="path1159" fill="#C0C0C0" d="M408.021,151.229L408.021,151.229l-0.937,0.41L408.021,151.229z"/>
+ <path id="path1161" fill="#C0C0C0" d="M376.518,150.526L376.518,150.526l1.288,0.178l4.392,1.521l0.233,0.995h-1.58l-4.627-1.112
+ L376.518,150.526z"/>
+ <path id="path1163" fill="#C0C0C0" d="M590.832,151.697L590.832,151.697l-0.585,0.235L590.832,151.697z"/>
+ <path id="path1165" fill="#C0C0C0" d="M1142.78,152.459L1142.78,152.459v-0.059V152.459z"/>
+ <path id="path1167" fill="#C0C0C0" d="M156.464,152.108L156.464,152.108l0.293,0.41L156.464,152.108z"/>
+ <path id="path1169" fill="#C0C0C0" d="M1142.723,152.459L1142.723,152.459h0.058H1142.723z"/>
+ <path id="path1171" fill="#C0C0C0" d="M592.296,152.577L592.296,152.577l0.233,0.293L592.296,152.577z"/>
+ <path id="path1173" fill="#C0C0C0" d="M1142.256,152.87L1142.256,152.87h0.059H1142.256z"/>
+ <path id="path1175" fill="#C0C0C0" d="M404.214,144.319L404.214,144.319l0.059,1.056l-1.697-0.235l1.229,0.995l-1.171,1.289
+ l-2.752,4.1l2.576-2.107l2.577,3.923l2.985-1.756l3.688,0.878l-2.52,1.814l1.875,4.393l2.927-2.051l-0.878,5.096h-1.873
+ l-2.226-4.393l-0.526,1.58l-3.455,2.05l-1.347-3.807l-3.571,1.465l-5.212-0.762l-3.63,0.468l-0.235-0.878l3.865-2.283l1.521-4.626
+ l2.4-2.752l1.521-2.46L404.214,144.319z"/>
+ <path id="path1177" fill="#C0C0C0" d="M1142.314,152.87L1142.314,152.87l0.408,0.232L1142.314,152.87z"/>
+ <path id="path1179" fill="#C0C0C0" d="M165.131,153.162L165.131,153.162l0.878,0.587l-0.938-0.528L165.131,153.162z"/>
+ <path id="path1181" fill="#C0C0C0" d="M165.131,153.103L165.131,153.103l1.17,0.82l-0.702-0.233l-0.586-0.528L165.131,153.103z"/>
+ <path id="path1183" fill="#C0C0C0" d="M165.423,153.69L165.423,153.69l0.527,0.292L165.423,153.69z"/>
+ <path id="path1185" fill="#C0C0C0" d="M1140.616,154.391L1140.616,154.391h-0.059l0.938-0.585L1140.616,154.391z"/>
+ <path id="path1187" fill="#C0C0C0" d="M167.823,154.449L167.823,154.449v0.059l-0.41,0.352L167.823,154.449z"/>
+ <path id="path1189" fill="#C0C0C0" d="M167.12,154.859L167.12,154.859l0.469,0.526L167.12,154.859z"/>
+ <path id="path1191" fill="#C0C0C0" d="M581.874,155.269L581.874,155.269h-0.062H581.874z"/>
+ <path id="path1193" fill="#C0C0C0" d="M168.936,155.563L168.936,155.563l0.235,1.053l-0.526-0.994L168.936,155.563z"/>
+ <path id="path1195" fill="#C0C0C0" d="M411.416,156.324L411.416,156.324l-0.995,0.292L411.416,156.324z"/>
+ <path id="path1197" fill="#C0C0C0" d="M1138.039,156.793L1138.039,156.793h-0.06H1138.039z"/>
+ <path id="path1199" fill="#C0C0C0" d="M1138.039,156.793L1138.039,156.793h-0.06H1138.039z"/>
+ <path id="path1201" fill="#C0C0C0" d="M1137.98,156.851L1137.98,156.851v-0.058V156.851z"/>
+ <path id="path1203" fill="#C0C0C0" d="M373.063,157.319L373.063,157.319l0.058-0.116l0.06,0.058L373.063,157.319z"/>
+ <path id="path1205" fill="#C0C0C0" d="M373.063,157.261L373.063,157.261l-0.702,0.585L373.063,157.261z"/>
+ <path id="path1207" fill="#C0C0C0" d="M1137.103,157.962L1137.103,157.962l0.233-0.353L1137.103,157.962z"/>
+ <path id="path1209" fill="#C0C0C0" d="M409.426,158.256L409.426,158.256l-0.469,0.878L409.426,158.256z"/>
+ <path id="path1211" fill="#C0C0C0" d="M383.896,158.256L383.896,158.256l-0.703,0.293L383.896,158.256z"/>
+ <path id="path1213" fill="#C0C0C0" d="M1135.108,159.428L1135.108,159.428l0.471-0.119L1135.108,159.428z"/>
+ <path id="path1215" fill="#C0C0C0" d="M588.256,159.134L588.256,159.134l0.585,0.232L588.256,159.134z"/>
+ <path id="path1217" fill="#C0C0C0" d="M1134.289,160.071L1134.289,160.071h0.062H1134.289z"/>
+ <path id="path1219" fill="#C0C0C0" d="M592.004,160.775L592.004,160.775l-0.469-0.41L592.004,160.775z"/>
+ <path id="path1221" fill="#C0C0C0" d="M1134.351,160.071L1134.351,160.071l-1.522,1.23L1134.351,160.071z"/>
+ <path id="path1223" fill="#C0C0C0" d="M401.872,160.247L401.872,160.247l-0.178,0.997l-0.232-1.114L401.872,160.247z"/>
+ <path id="path1225" fill="#C0C0C0" d="M591.301,161.534L591.301,161.534l-0.06-0.116L591.301,161.534z"/>
+ <path id="path1227" fill="#C0C0C0" d="M374.819,160.364L374.819,160.364l0.176,1.933L374.819,160.364z"/>
+ <path id="path1229" fill="#C0C0C0" d="M387.7,161.007L387.7,161.007l-2.926,4.04l4.743-0.818l-1.523,0.818l-3.688,0.587
+ l-0.82-1.405l3.162-3.807L387.7,161.007z"/>
+ <path id="path1231" fill="#C0C0C0" d="M710.346,162.707L710.346,162.707l2.106,0.762L710.346,162.707z"/>
+ <path id="path1233" fill="#C0C0C0" d="M595.049,163.468L595.049,163.468h0.117H595.049z"/>
+ <path id="path1235" fill="#C0C0C0" d="M595.049,163.526L595.049,163.526l0.059-0.117l0.06,0.06L595.049,163.526z"/>
+ <path id="path1237" fill="#C0C0C0" d="M595.282,164.638L595.282,164.638l-0.175-0.292L595.282,164.638z"/>
+ <path id="path1239" fill="#C0C0C0" d="M1124.747,165.4L1124.747,165.4l3.102-2.167L1124.747,165.4z"/>
+ <path id="path1241" fill="#C0C0C0" d="M595.282,164.698L595.282,164.698l0.06-0.118l0.058,0.059L595.282,164.698z"/>
+ <path id="path1243" fill="#C0C0C0" d="M717.956,163.233L717.956,163.233l4.568,1.935L717.956,163.233z"/>
+ <path id="path1245" fill="#C0C0C0" d="M1094.942,165.926L1094.942,165.926v0.06V165.926z"/>
+ <path id="path1247" fill="#C0C0C0" d="M1095,165.926L1095,165.926l0.176,0.645L1095,165.926z"/>
+ <path id="path1249" fill="#C0C0C0" d="M1095.642,166.629L1095.642,166.629l-0.175,0.175L1095.642,166.629z"/>
+ <path id="path1251" fill="#C0C0C0" d="M650.909,166.747L650.909,166.747l0.703,0.878l-1.053-0.233l-0.237-0.177L650.909,166.747z"
+ />
+ <path id="path1253" fill="#C0C0C0" d="M1122.404,165.692L1122.404,165.692l-4.159,1.933L1122.404,165.692z"/>
+ <path id="path1255" fill="#C0C0C0" d="M775.692,167.273L775.692,167.273l-0.35,0.353L775.692,167.273z"/>
+ <path id="path1257" fill="#C0C0C0" d="M650.032,166.923L650.032,166.923l0.117,0.41L650.032,166.923z"/>
+ <path id="path1259" fill="#C0C0C0" d="M365.039,168.211L365.039,168.211l-0.408,0.644L365.039,168.211z"/>
+ <path id="path1261" fill="#C0C0C0" d="M651.438,168.561L651.438,168.561l1.055,0.703l0.645,0.585l-1.173-0.526L651.438,168.561z"/>
+ <path id="path1263" fill="#C0C0C0" d="M359.828,169.558L359.828,169.558l0.059-0.118l0.059,0.061L359.828,169.558z"/>
+ <path id="path1265" fill="#C0C0C0" d="M359.887,169.5L359.887,169.5l0.117,0.35L359.887,169.5z"/>
+ <path id="path1267" fill="#C0C0C0" d="M1113.15,169.264L1113.15,169.264l1.29,0.41L1113.15,169.264z"/>
+ <path id="path1269" fill="#C0C0C0" d="M651.847,170.436L651.847,170.436l0.995,0.76l-0.995-0.643V170.436z"/>
+ <path id="path1271" fill="#C0C0C0" d="M388.462,171.256L388.462,171.256l1.347-0.177L388.462,171.256z"/>
+ <path id="path1273" fill="#C0C0C0" d="M1115.61,171.489L1115.61,171.489l-0.937,0.469L1115.61,171.489z"/>
+ <path id="path1275" fill="#C0C0C0" d="M1110.165,172.484L1110.165,172.484l-0.408-0.059L1110.165,172.484z"/>
+ <path id="path1277" fill="#C0C0C0" d="M1113.15,172.662L1113.15,172.662h0.237H1113.15z"/>
+ <path id="path1279" fill="#C0C0C0" d="M1098.339,165.751L1098.339,165.751l3.043,2.81l3.339,2.108l3.338,0.645l3.863,1.933
+ l-2.927,1.347l-3.514,0.293l-2.636,3.455l-0.47-0.41l-4.625-1.992l-4.625,0.116l-1.523,3.924l-0.703-4.099l2.461-1.348l3.043-0.994
+ l1.406-4.686L1098.339,165.751z"/>
+ <path id="path1281" fill="#C0C0C0" d="M657.412,173.188L657.412,173.188l1.402,0.41l-1.287-0.059L657.412,173.188z"/>
+ <path id="path1283" fill="#C0C0C0" d="M657.175,173.832L657.175,173.832l1.349,0.117l1.287,0.176l-1.874-0.059L657.175,173.832z"/>
+ <path id="path1285" fill="#C0C0C0" d="M656.063,174.299L656.063,174.299h0.646H656.063z"/>
+ <path id="path1287" fill="#C0C0C0" d="M656.063,174.299L656.063,174.299h0.646H656.063z"/>
+ <path id="path1289" fill="#C0C0C0" d="M658.349,174.593L658.349,174.593l0.583,0.058L658.349,174.593z"/>
+ <path id="path1291" fill="#C0C0C0" d="M636.029,175.13v0.312l-0.753,0.34L636.029,175.13z"/>
+ <path id="path1293" fill="#C0C0C0" d="M658.874,175.296L658.874,175.296l0.232,0.059L658.874,175.296z"/>
+ <path id="path1295" fill="#C0C0C0" d="M660.806,175.296L660.806,175.296l1.057,0.292L660.806,175.296z"/>
+ <path id="path1297" fill="#C0C0C0" d="M1089.493,177.344L1089.493,177.344h0.063H1089.493z"/>
+ <path id="path1299" fill="#C0C0C0" d="M632.361,178.457l0.038-1.245l0.24-1.798l0.087-0.657l-0.157-0.173l0.085-0.285l-0.223-0.51
+ l-0.243,0.172l-0.04,0.752l-0.398,0.116l-0.979,0.238l-0.241,1.003l0.174,1.002l0.067,1.072l0.348,1.106l0.934,0.554
+ L632.361,178.457z"/>
+ <path id="path1301" fill="#C0C0C0" d="M1089.556,177.287L1089.556,177.287l0.408-0.06L1089.556,177.287z"/>
+ <path id="path1303" fill="#C0C0C0" d="M351.748,179.921L351.748,179.921l-0.996,0.352L351.748,179.921z"/>
+ <path id="path1305" fill="#C0C0C0" d="M353.563,180.273L353.563,180.273l0.059-0.116l0.06,0.059L353.563,180.273z"/>
+ <path id="path1307" fill="#C0C0C0" d="M353.621,180.214L353.621,180.214l0.116,0.468L353.621,180.214z"/>
+ <path id="path1309" fill="#C0C0C0" d="M346.947,181.386L346.947,181.386l-2.812,0.937l-4.509,0.702l1.814-1.289l2.928-0.116
+ L346.947,181.386z"/>
+ <path id="path1311" fill="#C0C0C0" d="M686.159,182.381L686.159,182.381l0.06-0.116l0.059,0.058L686.159,182.381z"/>
+ <path id="path1313" fill="#C0C0C0" d="M686.219,182.265L686.219,182.265l0.47,0.643L686.219,182.265z"/>
+ <path id="path1315" fill="#C0C0C0" d="M689.674,183.435L689.674,183.435l0.059-0.117l0.059,0.059L689.674,183.435z"/>
+ <path id="path1317" fill="#C0C0C0" d="M689.732,183.318L689.732,183.318l-0.175,0.353L689.732,183.318z"/>
+ <path id="path1319" fill="#C0C0C0" d="M690.964,184.606L690.964,184.606l-1.055,0.117l1.055-0.175V184.606z"/>
+ <path id="path1321" fill="#C0C0C0" d="M632.114,180.683L632.114,180.683l2.051,2.52l-0.703,4.333l-2.752,1.463l-1.698-0.526
+ l0.644-2.928l-1.464-3.045L632.114,180.683z"/>
+ <path id="path1323" fill="#C0C0C0" d="M614.431,185.016L614.431,185.016l-1.055,0.293l0.996-0.352L614.431,185.016z"/>
+ <path id="path1325" fill="#C0C0C0" d="M614.431,184.958L614.431,184.958l0.292,0.76L614.431,184.958z"/>
+ <path id="path1327" fill="#C0C0C0" d="M689.032,185.074L689.032,185.074l-0.354,0.763L689.032,185.074z"/>
+ <path id="path1329" fill="#C0C0C0" d="M610.799,185.191L610.799,185.191l1.056,0.878L610.799,185.191z"/>
+ <path id="path1331" fill="#C0C0C0" d="M610.799,185.25L610.799,185.25l-0.468,2.4L610.799,185.25z"/>
+ <path id="path1333" fill="#C0C0C0" d="M669.355,185.718L669.355,185.718l0.292,1.171l-1.054-0.937L669.355,185.718z"/>
+ <path id="path1335" fill="#C0C0C0" d="M338.748,186.714L338.748,186.714l0.234-0.293L338.748,186.714z"/>
+ <path id="path1337" fill="#C0C0C0" d="M787.581,186.48L787.581,186.48l-0.116,0.177L787.581,186.48z"/>
+ <path id="path1339" fill="#C0C0C0" d="M489.998,186.773L489.998,186.773l-0.233,0.584L489.998,186.773z"/>
+ <path id="path1341" fill="#C0C0C0" d="M692.426,187.417L692.426,187.417l0.703,1.055l-0.703,0.233l-1.17-0.41l0.47-1.054
+ L692.426,187.417z"/>
+ <path id="path1343" fill="#C0C0C0" d="M682.589,187.884L682.589,187.884l0.47,0.41L682.589,187.884z"/>
+ <path id="path1345" fill="#C0C0C0" d="M605.061,188.178L605.061,188.178l0.118,0.41L605.061,188.178z"/>
+ <path id="path1347" fill="#C0C0C0" d="M605.061,188.178L605.061,188.178l-0.526,0.937L605.061,188.178z"/>
+ <path id="path1349" fill="#C0C0C0" d="M786.116,188.236L786.116,188.236l-0.059,0.878L786.116,188.236z"/>
+ <path id="path1351" fill="#C0C0C0" d="M685.577,188.763L685.577,188.763l0.059-0.117l0.059,0.06L685.577,188.763z"/>
+ <path id="path1353" fill="#C0C0C0" d="M685.636,188.646L685.636,188.646l0.7,0.704L685.636,188.646z"/>
+ <path id="path1355" fill="#C0C0C0" d="M503.409,189.583L503.409,189.583l0.878-0.233L503.409,189.583z"/>
+ <path id="path1357" fill="#C0C0C0" d="M672.344,189.173L672.344,189.173l-0.063,0.82l-0.467,0.116l0.467-0.995L672.344,189.173z"/>
+ <path id="path1359" fill="#C0C0C0" d="M498.724,189.876L498.724,189.876l0.409,0.293L498.724,189.876z"/>
+ <path id="path1361" fill="#C0C0C0" d="M681.478,188.471L681.478,188.471l0.938,0.878L681.478,188.471z"/>
+ <path id="path1363" fill="#C0C0C0" d="M499.31,190.228L499.31,190.228l1.757,0.353L499.31,190.228z"/>
+ <path id="path1365" fill="#C0C0C0" d="M690.964,190.344L690.964,190.344v0.878V190.344z"/>
+ <path id="path1367" fill="#C0C0C0" d="M691.547,190.228L691.547,190.228l-0.175,1.054L691.547,190.228z"/>
+ <path id="path1369" fill="#C0C0C0" d="M1086.217,191.106L1086.217,191.106v0.06V191.106z"/>
+ <path id="path1371" fill="#C0C0C0" d="M671.874,190.461L671.874,190.461l0.527,1.404L671.874,190.461z"/>
+ <path id="path1373" fill="#C0C0C0" d="M334.999,192.336L334.999,192.336l0.763-1.23l-0.763,1.348V192.336z"/>
+ <path id="path1375" fill="#C0C0C0" d="M1086.275,191.106L1086.275,191.106v1.289V191.106z"/>
+ <path id="path1377" fill="#C0C0C0" d="M1037.85,192.159L1037.85,192.159h-0.178H1037.85z"/>
+ <path id="path1379" fill="#C0C0C0" d="M682.181,192.101L682.181,192.101l-0.117,0.175L682.181,192.101z"/>
+ <path id="path1381" fill="#C0C0C0" d="M686.747,192.159L686.747,192.159l0.587,1.056l-0.938-0.938L686.747,192.159z"/>
+ <path id="path1383" fill="#C0C0C0" d="M508.795,192.454L508.795,192.454l2.46,0.175L508.795,192.454z"/>
+ <path id="path1385" fill="#C0C0C0" d="M1043.762,192.863L1043.762,192.863l0.059-0.118l0.063,0.061L1043.762,192.863z"/>
+ <path id="path1387" fill="#C0C0C0" d="M672.344,192.395L672.344,192.395l0.758,0.644l-1.053-0.293L672.344,192.395z"/>
+ <path id="path1389" fill="#C0C0C0" d="M596.922,192.98L596.922,192.98l0.117-0.059L596.922,192.98z"/>
+ <path id="path1391" fill="#C0C0C0" d="M682.355,192.921L682.355,192.921h-0.47H682.355z"/>
+ <path id="path1393" fill="#C0C0C0" d="M682.355,192.921L682.355,192.921l-0.059,0.232L682.355,192.921z"/>
+ <path id="path1395" fill="#C0C0C0" d="M694.711,192.921L694.711,192.921l-0.879,0.469L694.711,192.921z"/>
+ <path id="path1397" fill="#C0C0C0" d="M1043.82,192.745L1043.82,192.745l0.296,0.762L1043.82,192.745z"/>
+ <path id="path1399" fill="#C0C0C0" d="M687.567,193.332L687.567,193.332l0.06-0.117l0.058,0.059L687.567,193.332z"/>
+ <path id="path1401" fill="#C0C0C0" d="M685.224,193.214L685.224,193.214l-0.175,0.526L685.224,193.214z"/>
+ <path id="path1403" fill="#C0C0C0" d="M687.626,193.214L687.626,193.214l0.408,0.175L687.626,193.214z"/>
+ <path id="path1405" fill="#C0C0C0" d="M692.251,193.214L692.251,193.214l-1.347,0.644L692.251,193.214z"/>
+ <path id="path1407" fill="#C0C0C0" d="M631.001,193.799L631.001,193.799l0.06-0.117L631.001,193.799z"/>
+ <path id="path1409" fill="#C0C0C0" d="M1059.571,193.741L1059.571,193.741l-0.35,0.233L1059.571,193.741z"/>
+ <path id="path1411" fill="#C0C0C0" d="M1095.467,180.041L1095.467,180.041l1.174,0.116v2.811l2.106,3.689l-2.106,3.162l0.233,1.348
+ l-2.049,0.41l0.232,3.514l-1.581,3.104l-0.819,3.981l-1.642,0.878l-3.571,0.995l-0.35-1.815l-1.814,1.874l-4.861-1.757l-1.17,1.347
+ l-2.637,4.452l-1.522-4.51h-3.921l-3.983,1.64l-1.814,0.235l-0.703-0.586l-1.111,2.05l-4.101-0.585l0.237-1.698h1.577l-0.059-0.119
+ l0.236-0.116l4.154-2.811l1.582-1.055l1.054,0.468l3.222-0.468l3.572,0.528l1.465-0.178l0.82-1.757l2.635-2.692l0.175-2.108
+ l2.106-0.292l4.157,0.233l3.044-2.753l2.109-4.333l0.059-1.463l-1.17-0.468l1.111-0.997l-0.586-1.347l1.465-0.701L1095.467,180.041
+ z"/>
+ <path id="path1413" fill="#C0C0C0" d="M654.481,191.223L654.481,191.223l-1.873,2.693v2.929l-2.048-0.469l-0.88-0.997l-1.756-0.292
+ l-4.686-2.283l1.112-1.347l2.05-0.119l1.58,0.878l4.039-0.76L654.481,191.223z"/>
+ <path id="path1415" fill="#C0C0C0" d="M688.679,193.858L688.679,193.858l0.412,0.117L688.679,193.858z"/>
+ <path id="path1417" fill="#C0C0C0" d="M687.214,193.858L687.214,193.858l-0.117,0.117L687.214,193.858z"/>
+ <path id="path1419" fill="#C0C0C0" d="M685.457,193.975L685.457,193.975l0.062,0.41L685.457,193.975z"/>
+ <path id="path1421" fill="#C0C0C0" d="M689.382,195.088L689.382,195.088l0.059-0.117l0.06,0.058L689.382,195.088z"/>
+ <path id="path1423" fill="#C0C0C0" d="M688.445,195.206L688.445,195.206l-0.291,0.468L688.445,195.206z"/>
+ <path id="path1425" fill="#C0C0C0" d="M689.44,195.029L689.44,195.029l0.06,0.351L689.44,195.029z"/>
+ <path id="path1427" fill="#C0C0C0" d="M694.594,195.614L694.594,195.614l0.059,0.176L694.594,195.614z"/>
+ <path id="path1429" fill="#C0C0C0" d="M571.919,195.731L571.919,195.731l0.059-0.117l0.059,0.06L571.919,195.731z"/>
+ <path id="path1431" fill="#C0C0C0" d="M511.078,195.614L511.078,195.614l0.409-0.058L511.078,195.614z"/>
+ <path id="path1433" fill="#C0C0C0" d="M686.219,195.44L686.219,195.44l0.237,0.527L686.219,195.44z"/>
+ <path id="path1435" fill="#C0C0C0" d="M695.705,196.083L695.705,196.083l-1.346,0.41L695.705,196.083z"/>
+ <path id="path1437" fill="#C0C0C0" d="M641.95,196.435L641.95,196.435l-0.116,0.117L641.95,196.435z"/>
+ <path id="path1439" fill="#C0C0C0" d="M685.752,196.551L685.752,196.551l0.059-0.117l0.06,0.058L685.752,196.551z"/>
+ <path id="path1441" fill="#C0C0C0" d="M688.504,196.376L688.504,196.376l0.175,0.469L688.504,196.376z"/>
+ <path id="path1443" fill="#C0C0C0" d="M685.869,196.494L685.869,196.494l-0.763,0.352L685.869,196.494z"/>
+ <path id="path1445" fill="#C0C0C0" d="M697.521,196.903L697.521,196.903l-0.175,0.059l0.233,0.175l-0.117,0.118L697.521,196.903z"
+ />
+ <path id="path1447" fill="#C0C0C0" d="M688.796,197.43L688.796,197.43l0.236,0.526L688.796,197.43z"/>
+ <path id="path1449" fill="#C0C0C0" d="M680.188,197.898L680.188,197.898l0.063-0.117l0.059,0.059L680.188,197.898z"/>
+ <path id="path1451" fill="#C0C0C0" d="M680.249,197.781L680.249,197.781l0.523,0.469L680.249,197.781z"/>
+ <path id="path1453" fill="#C0C0C0" d="M1067.948,197.957L1067.948,197.957l-0.233,0.059h0.233V197.957z"/>
+ <path id="path1455" fill="#C0C0C0" d="M698.694,197.546L698.694,197.546l0.176,0.234L698.694,197.546z"/>
+ <path id="path1457" fill="#C0C0C0" d="M649.916,199.011L649.916,199.011l-0.471-0.058L649.916,199.011z"/>
+ <path id="path1459" fill="#C0C0C0" d="M588.9,199.48L588.9,199.48l0.06-0.117L588.9,199.48z"/>
+ <path id="path1461" fill="#C0C0C0" d="M650.561,199.832L650.561,199.832l-0.411-0.178L650.561,199.832z"/>
+ <path id="path1463" fill="#C0C0C0" d="M695.297,199.771L695.297,199.771l-0.236,0.061l0.236,1.17V199.771z"/>
+ <path id="path1465" fill="#C0C0C0" d="M688.329,200.943L688.329,200.943l-0.06-0.175l0.06-0.059h0.232l-0.059,0.232
+ L688.329,200.943L688.329,200.943z"/>
+ <path id="path1467" fill="#C0C0C0" d="M333.595,201.938L333.595,201.938l0.938-1.289l-0.117-0.585L333.595,201.938z"/>
+ <path id="path1469" fill="#C0C0C0" d="M692.075,201.528L692.075,201.528l-0.407,1.056L692.075,201.528z"/>
+ <path id="path1471" fill="#C0C0C0" d="M684.462,201.647L684.462,201.647l0.059-0.119l0.06,0.061L684.462,201.647z"/>
+ <path id="path1473" fill="#C0C0C0" d="M333.304,202.056L333.304,202.056l-0.587,0.175L333.304,202.056z"/>
+ <path id="path1475" fill="#C0C0C0" d="M721.119,200.299L721.119,200.299l-2.345,1.405l-3.102,2.458l-2.693-1.758l2.106-0.292
+ l0.176-0.878h3.279L721.119,200.299z"/>
+ <path id="path1477" fill="#C0C0C0" d="M942.811,202.466L942.811,202.466v-0.061V202.466z"/>
+ <path id="path1479" fill="#C0C0C0" d="M332.365,202.583L332.365,202.583l0.061-0.117l0.059,0.058L332.365,202.583z"/>
+ <path id="path1481" fill="#C0C0C0" d="M1051.787,202.935L1051.787,202.935l0.058-0.118l0.059,0.061L1051.787,202.935z"/>
+ <path id="path1483" fill="#C0C0C0" d="M1049.032,202.994L1049.032,202.994h0.059H1049.032z"/>
+ <path id="path1485" fill="#C0C0C0" d="M1051.845,202.817L1051.845,202.817l-0.47,0.878L1051.845,202.817z"/>
+ <path id="path1487" fill="#C0C0C0" d="M1049.09,202.994L1049.09,202.994l0.47,0.701L1049.09,202.994z"/>
+ <path id="path1489" fill="#C0C0C0" d="M331.839,202.994L331.839,202.994l-0.82,0.701l0.762-0.76L331.839,202.994z"/>
+ <path id="path1491" fill="#C0C0C0" d="M1089.377,203.461L1089.377,203.461h0.059H1089.377z"/>
+ <path id="path1493" fill="#C0C0C0" d="M639.258,203.579L639.258,203.579l-0.526,0.234L639.258,203.579z"/>
+ <path id="path1495" fill="#C0C0C0" d="M1089.436,203.403L1089.436,203.403l-0.059,0.41L1089.436,203.403z"/>
+ <path id="path1497" fill="#C0C0C0" d="M330.14,203.694L330.14,203.694l-0.938,0.061L330.14,203.694z"/>
+ <path id="path1499" fill="#C0C0C0" d="M1073.92,204.281L1073.92,204.281v0.059V204.281z"/>
+ <path id="path1501" fill="#C0C0C0" d="M1054.48,203.754L1054.48,203.754l-0.471,1.347L1054.48,203.754z"/>
+ <path id="path1503" fill="#C0C0C0" d="M1043.528,204.515L1043.528,204.515l0.06-0.117l0.058,0.059L1043.528,204.515z"/>
+ <path id="path1505" fill="#C0C0C0" d="M1043.645,204.398L1043.645,204.398l-0.995,0.353L1043.645,204.398z"/>
+ <path id="path1507" fill="#C0C0C0" d="M327.856,204.398L327.856,204.398l-0.937,0.527l0.879-0.585L327.856,204.398z"/>
+ <path id="path1509" fill="#C0C0C0" d="M1073.92,204.281L1073.92,204.281l-0.175,0.878L1073.92,204.281z"/>
+ <path id="path1511" fill="#C0C0C0" d="M1053.952,205.335L1053.952,205.335v0.059V205.335z"/>
+ <path id="path1513" fill="#C0C0C0" d="M1054.01,205.335L1054.01,205.335l-0.528,0.468L1054.01,205.335z"/>
+ <path id="path1515" fill="#C0C0C0" d="M1089.964,205.803L1089.964,205.803v0.059V205.803z"/>
+ <path id="path1517" fill="#C0C0C0" d="M1089.964,205.803L1089.964,205.803v0.177V205.803z"/>
+ <path id="path1519" fill="#C0C0C0" d="M176.841,205.98L176.841,205.98h-0.351H176.841z"/>
+ <path id="path1521" fill="#C0C0C0" d="M176.841,205.98L176.841,205.98l0.176,0.06L176.841,205.98z"/>
+ <path id="path1523" fill="#C0C0C0" d="M178.48,205.861L178.48,205.861l1.23,0.118L178.48,205.861z"/>
+ <path id="path1525" fill="#C0C0C0" d="M177.602,206.039L177.602,206.039l0.527,0.232L177.602,206.039z"/>
+ <path id="path1527" fill="#C0C0C0" d="M325.747,206.506L325.747,206.506l-0.058,0.175L325.747,206.506z"/>
+ <path id="path1529" fill="#C0C0C0" d="M1055.534,206.739L1055.534,206.739v0.06V206.739z"/>
+ <path id="path1531" fill="#C0C0C0" d="M638.438,206.858L638.438,206.858l-1.11,0.351L638.438,206.858z"/>
+ <path id="path1533" fill="#C0C0C0" d="M1072.514,205.92L1072.514,205.92l0.528,0.878l-1.993,2.05l-4.098,1.874l-3.514-2.225
+ l3.219-2.811l2.109,0.585L1072.514,205.92z"/>
+ <path id="path1535" fill="#C0C0C0" d="M183.165,208.086L183.165,208.086l0.06-0.116l0.058,0.058L183.165,208.086z"/>
+ <path id="path1537" fill="#C0C0C0" d="M183.224,207.97L183.224,207.97l0.585,0.235L183.224,207.97z"/>
+ <path id="path1539" fill="#C0C0C0" d="M1045.227,207.795L1045.227,207.795l0.06,0.819L1045.227,207.795z"/>
+ <path id="path1541" fill="#C0C0C0" d="M1054.714,208.555L1054.714,208.555v0.06V208.555z"/>
+ <path id="path1543" fill="#C0C0C0" d="M179.769,208.673L179.769,208.673l0.293,0.175L179.769,208.673z"/>
+ <path id="path1545" fill="#C0C0C0" d="M1090.726,209.141L1090.726,209.141v0.059V209.141z"/>
+ <path id="path1547" fill="#C0C0C0" d="M1090.726,209.141L1090.726,209.141l0.291,0.175L1090.726,209.141z"/>
+ <path id="path1549" fill="#C0C0C0" d="M542.113,209.433L542.113,209.433l0.176-0.175L542.113,209.433z"/>
+ <path id="path1551" fill="#C0C0C0" d="M1053.19,209.494L1053.19,209.494l0.059-0.119l0.059,0.058L1053.19,209.494z"/>
+ <path id="path1553" fill="#C0C0C0" d="M1053.307,209.375L1053.307,209.375l-0.524,0.527L1053.307,209.375z"/>
+ <path id="path1555" fill="#C0C0C0" d="M183.165,209.668L183.165,209.668l0.645,0.585L183.165,209.668z"/>
+ <path id="path1557" fill="#C0C0C0" d="M539.889,210.311L539.889,210.311l1.172,0.177L539.889,210.311z"/>
+ <path id="path1559" fill="#C0C0C0" d="M1051.608,210.721L1051.608,210.721v-0.233V210.721z"/>
+ <path id="path1561" fill="#C0C0C0" d="M1051.55,210.84L1051.55,210.84l0.059-0.119l0.06,0.06L1051.55,210.84z"/>
+ <path id="path1563" fill="#C0C0C0" d="M1062.148,211.6L1062.148,211.6l-1.054,3.807l-2.401,1.289l0.354-1.404l-0.295-1.113
+ l-0.525,1.113l0.175,0.878l-1.64-0.878l0.762-0.763l1.17-3.571l-3.805-2.519l0.938,0.235l4.1-2.343l0.176,1.055L1062.148,211.6z"/>
+ <path id="path1565" fill="#C0C0C0" d="M1057.174,211.6L1057.174,211.6l0.819-0.233L1057.174,211.6z"/>
+ <path id="path1567" fill="#C0C0C0" d="M1056.237,211.952L1056.237,211.952l0.819-0.469L1056.237,211.952z"/>
+ <path id="path1569" fill="#C0C0C0" d="M1056.237,212.01L1056.237,212.01v-0.06V212.01z"/>
+ <path id="path1571" fill="#C0C0C0" d="M372.126,212.068L372.126,212.068l-0.354,0.178L372.126,212.068z"/>
+ <path id="path1573" fill="#C0C0C0" d="M1025.437,213.943L1025.437,213.943v-0.058V213.943z"/>
+ <path id="path1575" fill="#C0C0C0" d="M196.809,214.295L196.809,214.295l-0.468-0.41L196.809,214.295z"/>
+ <path id="path1577" fill="#C0C0C0" d="M1025.437,213.885L1025.437,213.885l2.225,1.228L1025.437,213.885z"/>
+ <path id="path1579" fill="#C0C0C0" d="M716.436,215.991L716.436,215.991v-0.058V215.991z"/>
+ <path id="path1581" fill="#C0C0C0" d="M716.436,215.933L716.436,215.933l-1.053,0.176L716.436,215.933z"/>
+ <path id="path1583" fill="#C0C0C0" d="M717.197,216.227L717.197,216.227l-0.587-0.293L717.197,216.227z"/>
+ <path id="path1585" fill="#C0C0C0" d="M1060.101,217.28L1060.101,217.28l-0.351,1.582l0.351-1.522V217.28z"/>
+ <path id="path1587" fill="#C0C0C0" d="M1092.54,218.568L1092.54,218.568l0.116-0.058L1092.54,218.568z"/>
+ <path id="path1589" fill="#C0C0C0" d="M1058.11,218.746L1058.11,218.746l0.06-0.118l0.058,0.06L1058.11,218.746z"/>
+ <path id="path1591" fill="#C0C0C0" d="M295.475,218.803L295.475,218.803h-0.526l-1.404,0.175L295.475,218.803z"/>
+ <path id="path1593" fill="#C0C0C0" d="M1058.169,218.627L1058.169,218.627l0.466,0.586L1058.169,218.627z"/>
+ <path id="path1595" fill="#C0C0C0" d="M290.089,219.388L290.089,219.388l-0.353-0.059L290.089,219.388z"/>
+ <path id="path1597" fill="#C0C0C0" d="M288.509,219.446L288.509,219.446l-0.587-0.116L288.509,219.446z"/>
+ <path id="path1599" fill="#C0C0C0" d="M286.106,219.798L286.106,219.798l-0.175,0.059L286.106,219.798z"/>
+ <path id="path1601" fill="#C0C0C0" d="M714.034,219.565L714.034,219.565l0.059,0.818L714.034,219.565z"/>
+ <path id="path1603" fill="#C0C0C0" d="M1028.13,220.033L1028.13,220.033v-0.06V220.033z"/>
+ <path id="path1605" fill="#C0C0C0" d="M1028.13,219.973L1028.13,219.973l0.408-0.292L1028.13,219.973z"/>
+ <path id="path1607" fill="#C0C0C0" d="M543.284,220.15L543.284,220.15l0.06-0.116L543.284,220.15z"/>
+ <path id="path1609" fill="#C0C0C0" d="M1056.116,220.267L1056.116,220.267l0.063-0.117L1056.116,220.267z"/>
+ <path id="path1611" fill="#C0C0C0" d="M287.512,220.383L287.512,220.383l0.058-0.116l0.061,0.058L287.512,220.383z"/>
+ <path id="path1613" fill="#C0C0C0" d="M287.569,220.267L287.569,220.267l-0.175,0.82L287.569,220.267z"/>
+ <path id="path1615" fill="#C0C0C0" d="M1055.884,220.676L1055.884,220.676h0.058H1055.884z"/>
+ <path id="path1617" fill="#C0C0C0" d="M1055.884,220.676L1055.884,220.676l0.175,0.117L1055.884,220.676z"/>
+ <path id="path1619" fill="#C0C0C0" d="M768.899,220.267L768.899,220.267l0.646,0.878l-1.111-0.175L768.899,220.267z"/>
+ <path id="path1621" fill="#C0C0C0" d="M1028.655,221.321L1028.655,221.321l-0.176-0.177L1028.655,221.321z"/>
+ <path id="path1623" fill="#C0C0C0" d="M301.975,221.087L301.975,221.087l-0.938,0.525L301.975,221.087z"/>
+ <path id="path1625" fill="#C0C0C0" d="M1055.358,221.438L1055.358,221.438l0.117-0.058L1055.358,221.438z"/>
+ <path id="path1627" fill="#C0C0C0" d="M277.382,221.73L277.382,221.73l-1.112-0.058L277.382,221.73z"/>
+ <path id="path1629" fill="#C0C0C0" d="M722.468,221.791L722.468,221.791h0.058H722.468z"/>
+ <path id="path1631" fill="#C0C0C0" d="M200.556,221.671L200.556,221.671l0.762,0.645l0.646,0.878l-0.82-0.234L200.556,221.671z"/>
+ <path id="path1633" fill="#C0C0C0" d="M266.489,222.491L266.489,222.491l-1.053,0.879L266.489,222.491z"/>
+ <path id="path1635" fill="#C0C0C0" d="M1027.894,223.428L1027.894,223.428l-0.117-0.175L1027.894,223.428z"/>
+ <path id="path1637" fill="#C0C0C0" d="M552.36,223.195L552.36,223.195l-1.11,1.111L552.36,223.195z"/>
+ <path id="path1639" fill="#C0C0C0" d="M183.985,224.015L183.985,224.015l-0.235-0.937L183.985,224.015z"/>
+ <path id="path1641" fill="#C0C0C0" d="M204.598,223.018L204.598,223.018l0.817,0.586l-0.526,0.938L204.598,223.018z"/>
+ <path id="path1643" fill="#C0C0C0" d="M183.926,224.073L183.926,224.073l0.06-0.116l0.059,0.058L183.926,224.073z"/>
+ <path id="path1645" fill="#C0C0C0" d="M204.011,224.658L204.011,224.658v0.235V224.658z"/>
+ <path id="path1647" fill="#C0C0C0" d="M537.137,225.361L537.137,225.361l-0.293,0.176l0.293-1.23V225.361z"/>
+ <path id="path1649" fill="#C0C0C0" d="M203.016,224.835L203.016,224.835l0.469,0.292L203.016,224.835z"/>
+ <path id="path1651" fill="#C0C0C0" d="M261.454,225.537L261.454,225.537l-0.409,0.293L261.454,225.537z"/>
+ <path id="path1653" fill="#C0C0C0" d="M550.135,225.478L550.135,225.478l-1.463,1.405L550.135,225.478z"/>
+ <path id="path1655" fill="#C0C0C0" d="M1237.995,225.946L1237.995,225.946l0.059-0.116l0.058,0.059L1237.995,225.946z"/>
+ <path id="path1657" fill="#C0C0C0" d="M1056.354,226.005L1056.354,226.005v0.234V226.005z"/>
+ <path id="path1659" fill="#C0C0C0" d="M1055.238,225.478L1055.238,225.478l-1.054,1.347L1055.238,225.478z"/>
+ <path id="path1661" fill="#C0C0C0" d="M542.582,225.244L542.582,225.244l-1.58,2.05L542.582,225.244z"/>
+ <path id="path1663" fill="#C0C0C0" d="M260.928,225.888L260.928,225.888l-1.465,1.053L260.928,225.888z"/>
+ <path id="path1665" fill="#C0C0C0" d="M1241.271,226.531L1241.271,226.531l0.06-0.116L1241.271,226.531z"/>
+ <path id="path1667" fill="#C0C0C0" d="M1241.388,226.531L1241.388,226.531l0.059-0.116L1241.388,226.531z"/>
+ <path id="path1669" fill="#C0C0C0" d="M194.643,227L194.643,227l-0.293-0.176l0.41-0.878L194.643,227z"/>
+ <path id="path1671" fill="#C0C0C0" d="M1053.481,226.591L1053.481,226.591l0.471,0.35L1053.481,226.591z"/>
+ <path id="path1673" fill="#C0C0C0" d="M538.952,226.531L538.952,226.531l-0.178,0.119L538.952,226.531z"/>
+ <path id="path1675" fill="#C0C0C0" d="M259.404,226.883L259.404,226.883l-0.702,0.878L259.404,226.883z"/>
+ <path id="path1677" fill="#C0C0C0" d="M544.045,227.47L544.045,227.47l1.465-0.82L544.045,227.47z"/>
+ <path id="path1679" fill="#C0C0C0" d="M1052.545,227.645L1052.545,227.645l0.059-0.058L1052.545,227.645z"/>
+ <path id="path1681" fill="#C0C0C0" d="M1052.604,227.587L1052.604,227.587l0.063,0.762L1052.604,227.587z"/>
+ <path id="path1683" fill="#C0C0C0" d="M536.2,228.113L536.2,228.113l0.526-0.352L536.2,228.113z"/>
+ <path id="path1685" fill="#C0C0C0" d="M1098.747,228.23L1098.747,228.23l0.115-0.058L1098.747,228.23z"/>
+ <path id="path1687" fill="#C0C0C0" d="M1099.097,228.64L1099.097,228.64l0.12-0.058L1099.097,228.64z"/>
+ <path id="path1689" fill="#C0C0C0" d="M317.025,227.761L317.025,227.761l0.644,1.582l0.116,0.352L317.025,227.761z"/>
+ <path id="path1691" fill="#C0C0C0" d="M258.645,227.878L258.645,227.878l-1.23,2.05L258.645,227.878z"/>
+ <path id="path1693" fill="#C0C0C0" d="M1051.259,229.286L1051.259,229.286h0.058H1051.259z"/>
+ <path id="path1695" fill="#C0C0C0" d="M1051.259,229.343L1051.259,229.343v-0.06V229.343z"/>
+ <path id="path1697" fill="#C0C0C0" d="M1051.259,229.286L1051.259,229.286l0.527-0.118L1051.259,229.286z"/>
+ <path id="path1699" fill="#C0C0C0" d="M1094.472,229.986L1094.472,229.986l0.059-0.116l0.06,0.059L1094.472,229.986z"/>
+ <path id="path1701" fill="#C0C0C0" d="M315.911,230.164L315.911,230.164v-0.059V230.164z"/>
+ <path id="path1703" fill="#C0C0C0" d="M1099.155,230.222L1099.155,230.222l0.063-0.117l0.059,0.059L1099.155,230.222z"/>
+ <path id="path1705" fill="#C0C0C0" d="M1099.334,230.456L1099.334,230.456v0.177V230.456z"/>
+ <path id="path1707" fill="#C0C0C0" d="M797.359,230.923L797.359,230.923l-3.513,1.407L797.359,230.923z"/>
+ <path id="path1709" fill="#C0C0C0" d="M1098.98,231.744L1098.98,231.744l0.175,0.352L1098.98,231.744z"/>
+ <path id="path1711" fill="#C0C0C0" d="M257.473,230.105L257.473,230.105l0.526,2.635L257.473,230.105z"/>
+ <path id="path1713" fill="#C0C0C0" d="M322.177,231.861L322.177,231.861l1.347-0.41L322.177,231.861z"/>
+ <path id="path1715" fill="#C0C0C0" d="M1050.321,231.275L1050.321,231.275l-2.227,2.693L1050.321,231.275z"/>
+ <path id="path1717" fill="#C0C0C0" d="M310.877,232.446L310.877,232.446v0.176V232.446z"/>
+ <path id="path1719" fill="#C0C0C0" d="M325.747,231.1L325.747,231.1l3.164,1.347L325.747,231.1z"/>
+ <path id="path1721" fill="#C0C0C0" d="M1044.877,232.916L1044.877,232.916h0.058H1044.877z"/>
+ <path id="path1723" fill="#C0C0C0" d="M1044.877,232.916L1044.877,232.916h0.175H1044.877z"/>
+ <path id="path1725" fill="#C0C0C0" d="M1253.218,234.026L1253.218,234.026l0.117-0.058L1253.218,234.026z"/>
+ <path id="path1727" fill="#C0C0C0" d="M209.105,234.145L209.105,234.145l0.058-0.118l0.06,0.061L209.105,234.145z"/>
+ <path id="path1729" fill="#C0C0C0" d="M777.041,233.442L777.041,233.442l0.407,0.117L777.041,233.442z"/>
+ <path id="path1731" fill="#C0C0C0" d="M209.105,234.026L209.105,234.026l-0.177,0.938L209.105,234.026z"/>
+ <path id="path1733" fill="#C0C0C0" d="M1060.687,234.73L1060.687,234.73l-0.058,0.117L1060.687,234.73z"/>
+ <path id="path1735" fill="#C0C0C0" d="M1261.065,235.083L1261.065,235.083l0.059-0.117l0.059,0.058L1261.065,235.083z"/>
+ <path id="path1737" fill="#C0C0C0" d="M1020.167,236.312L1020.167,236.312l0.175-0.878L1020.167,236.312z"/>
+ <path id="path1739" fill="#C0C0C0" d="M317.844,236.193L317.844,236.193l0.06-0.115l0.06,0.058L317.844,236.193z"/>
+ <path id="path1741" fill="#C0C0C0" d="M1095.995,236.253L1095.995,236.253l0.116-0.061L1095.995,236.253z"/>
+ <path id="path1743" fill="#C0C0C0" d="M216.601,236.312L216.601,236.312l0.058-0.119l0.06,0.061L216.601,236.312z"/>
+ <path id="path1745" fill="#C0C0C0" d="M216.601,236.253L216.601,236.253l0.82,0.175L216.601,236.253z"/>
+ <path id="path1747" fill="#C0C0C0" d="M1140.499,236.838L1140.499,236.838l0.059-0.116l0.059,0.058L1140.499,236.838z"/>
+ <path id="path1749" fill="#C0C0C0" d="M317.61,236.603L317.61,236.603l-0.585,0.878L317.61,236.603z"/>
+ <path id="path1751" fill="#C0C0C0" d="M330.023,235.783L330.023,235.783l2.167,1.523L330.023,235.783z"/>
+ <path id="path1753" fill="#C0C0C0" d="M210.628,237.541L210.628,237.541l0.059-0.117l0.06,0.059L210.628,237.541z"/>
+ <path id="path1755" fill="#C0C0C0" d="M327.271,237.658L327.271,237.658l0.059-0.118l0.06,0.06L327.271,237.658z"/>
+ <path id="path1757" fill="#C0C0C0" d="M327.329,237.541L327.329,237.541l-0.115,0.234l-0.119-0.059L327.329,237.541z"/>
+ <path id="path1759" fill="#C0C0C0" d="M9.37,237.658L9.37,237.658l0.059,0.059l-0.059,0.029"/>
+ <path id="path1761" fill="#C0C0C0" d="M210.686,237.423L210.686,237.423l0.528,0.762L210.686,237.423z"/>
+ <path id="path1763" fill="#C0C0C0" d="M205.65,236.78L205.65,236.78l-0.058,2.226l-0.178-1.23L205.65,236.78z"/>
+ <path id="path1765" fill="#C0C0C0" d="M1039.782,238.244L1039.782,238.244h0.059H1039.782z"/>
+ <path id="path1767" fill="#C0C0C0" d="M316.087,238.301L316.087,238.301l0.06-0.117l0.059,0.06L316.087,238.301z"/>
+ <path id="path1769" fill="#C0C0C0" d="M315.736,238.478L315.736,238.478l0.06-0.118L315.736,238.478z"/>
+ <path id="path1771" fill="#C0C0C0" d="M1039.782,238.244L1039.782,238.244l0.232,0.293L1039.782,238.244z"/>
+ <path id="path1773" fill="#C0C0C0" d="M1096.229,238.538L1096.229,238.538l-0.175,0.175L1096.229,238.538z"/>
+ <path id="path1775" fill="#C0C0C0" d="M315.207,238.712L315.207,238.712l0.062-0.117L315.207,238.712z"/>
+ <path id="path1777" fill="#C0C0C0" d="M324.869,237.071L324.869,237.071l1.641,1.698L324.869,237.071z"/>
+ <path id="path1779" fill="#C0C0C0" d="M314.798,238.829L314.798,238.829l0.061-0.117L314.798,238.829z"/>
+ <path id="path1781" fill="#C0C0C0" d="M313.276,238.888L313.276,238.888h0.06H313.276z"/>
+ <path id="path1783" fill="#C0C0C0" d="M257.298,236.253L257.298,236.253l-0.997,4.099L257.298,236.253z"/>
+ <path id="path1785" fill="#C0C0C0" d="M313.102,238.888L313.102,238.888l0.117,0.233L313.102,238.888z"/>
+ <path id="path1787" fill="#C0C0C0" d="M311.052,239.238L311.052,239.238l0.059-0.116L311.052,239.238z"/>
+ <path id="path1789" fill="#C0C0C0" d="M312.691,239.296L312.691,239.296l0.059-0.117l0.06,0.059L312.691,239.296z"/>
+ <path id="path1791" fill="#C0C0C0" d="M211.74,239.238L211.74,239.238l0.233,0.646L211.74,239.238z"/>
+ <path id="path1793" fill="#C0C0C0" d="M1014.484,239.767L1014.484,239.767h0.233H1014.484z"/>
+ <path id="path1795" fill="#C0C0C0" d="M1060.745,239.648L1060.745,239.648l0.059-0.117L1060.745,239.648z"/>
+ <path id="path1797" fill="#C0C0C0" d="M1035.565,239.767L1035.565,239.767l0.878-0.528L1035.565,239.767z"/>
+ <path id="path1799" fill="#C0C0C0" d="M1015.245,239.825L1015.245,239.825l-0.058-0.177L1015.245,239.825z"/>
+ <path id="path1801" fill="#C0C0C0" d="M206.061,239.416L206.061,239.416l1.111,0.468L206.061,239.416z"/>
+ <path id="path1803" fill="#C0C0C0" d="M1031.585,239.648L1031.585,239.648h0.232H1031.585z"/>
+ <path id="path1805" fill="#C0C0C0" d="M1035.507,239.825L1035.507,239.825l0.059-0.117l0.059,0.06L1035.507,239.825z"/>
+ <path id="path1807" fill="#C0C0C0" d="M1014.484,239.767L1014.484,239.767h-0.058H1014.484z"/>
+ <path id="path1809" fill="#C0C0C0" d="M333.889,239.005L333.889,239.005l1.229,1.757L333.889,239.005z"/>
+ <path id="path1811" fill="#C0C0C0" d="M787.228,240L787.228,240l0.06-0.117l0.059,0.058L787.228,240z"/>
+ <path id="path1813" fill="#C0C0C0" d="M213.439,240.058L213.439,240.058l0.058-0.117l0.059,0.06L213.439,240.058z"/>
+ <path id="path1815" fill="#C0C0C0" d="M1034.512,239.825L1034.512,239.825l0.059,0.06L1034.512,239.825z"/>
+ <path id="path1817" fill="#C0C0C0" d="M787.286,239.942L787.286,239.942l-0.819,0.41L787.286,239.942z"/>
+ <path id="path1819" fill="#C0C0C0" d="M1140.499,240.235L1140.499,240.235l0.059-0.119L1140.499,240.235z"/>
+ <path id="path1821" fill="#C0C0C0" d="M213.439,240L213.439,240l0.468,0.819L213.439,240z"/>
+ <path id="path1823" fill="#C0C0C0" d="M788.751,240.585L788.751,240.585l0.059-0.117l0.06,0.058L788.751,240.585z"/>
+ <path id="path1825" fill="#C0C0C0" d="M788.868,240.468L788.868,240.468l0.295,0.293L788.868,240.468z"/>
+ <path id="path1827" fill="#C0C0C0" d="M325.983,240.645L325.983,240.645l0.293-0.234L325.983,240.645z"/>
+ <path id="path1829" fill="#C0C0C0" d="M337.754,240.996L337.754,240.996h0.408H337.754z"/>
+ <path id="path1831" fill="#C0C0C0" d="M326.627,240.293L326.627,240.293l0.293,0.232L326.627,240.293z"/>
+ <path id="path1833" fill="#C0C0C0" d="M336.698,242.283L336.698,242.283l-0.116,0.235l-0.294-0.117L336.698,242.283z"/>
+ <path id="path1835" fill="#C0C0C0" d="M1025.729,237.365L1025.729,237.365l2.52,0.41l-0.646,0.526l0.233,0.878l-0.995,1.815
+ l-0.762,3.396l-2.341,4.158l-2.344-3.923l0.233-1.992l0.819-1.463l2.285-3.396L1025.729,237.365z"/>
+ <path id="path1837" fill="#C0C0C0" d="M20.906,242.81L20.906,242.81l0.118-0.058L20.906,242.81z"/>
+ <path id="path1839" fill="#C0C0C0" d="M332.541,242.401L332.541,242.401l0.995,0.761L332.541,242.401z"/>
+ <path id="path1841" fill="#C0C0C0" d="M1019.58,242.928L1019.58,242.928l0.466-0.058L1019.58,242.928z"/>
+ <path id="path1843" fill="#C0C0C0" d="M918.101,243.103L918.101,243.103l0.059-0.117L918.101,243.103z"/>
+ <path id="path1845" fill="#C0C0C0" d="M333.829,243.22L333.829,243.22l0.41,0.119L333.829,243.22z"/>
+ <path id="path1847" fill="#C0C0C0" d="M335.061,242.46L335.061,242.46l1.638,2.81L335.061,242.46z"/>
+ <path id="path1849" fill="#C0C0C0" d="M340.271,244.45L340.271,244.45h0.47H340.271z"/>
+ <path id="path1851" fill="#C0C0C0" d="M340.271,244.45L340.271,244.45h0.47H340.271z"/>
+ <path id="path1853" fill="#C0C0C0" d="M30.625,244.685L30.625,244.685l0.119-0.059L30.625,244.685z"/>
+ <path id="path1855" fill="#C0C0C0" d="M917.459,244.627L917.459,244.627l0.175-0.061L917.459,244.627z"/>
+ <path id="path1857" fill="#C0C0C0" d="M917.866,244.685L917.866,244.685l0.293,0.41L917.866,244.685z"/>
+ <path id="path1859" fill="#C0C0C0" d="M917.926,245.212L917.926,245.212l0.292,0.232l-0.409,0.119l-0.116,0.353L917.926,245.212z"
+ />
+ <path id="path1861" fill="#C0C0C0" d="M319.835,245.505L319.835,245.505l0.762,0.41L319.835,245.505z"/>
+ <path id="path1863" fill="#C0C0C0" d="M338.396,245.387L338.396,245.387l1.172,0.41l-0.233,0.177L338.396,245.387z"/>
+ <path id="path1865" fill="#C0C0C0" d="M321.767,245.973L321.767,245.973h0.41H321.767z"/>
+ <path id="path1867" fill="#C0C0C0" d="M321.767,245.973L321.767,245.973h0.41H321.767z"/>
+ <path id="path1869" fill="#C0C0C0" d="M338.632,245.973L338.632,245.973l-0.293,0.41L338.632,245.973z"/>
+ <path id="path1871" fill="#C0C0C0" d="M919.036,246.442L919.036,246.442l0.06-0.118l0.062,0.061L919.036,246.442z"/>
+ <path id="path1873" fill="#C0C0C0" d="M323.816,246.558L323.816,246.558l0.059-0.117l0.06,0.06L323.816,246.558z"/>
+ <path id="path1875" fill="#C0C0C0" d="M323.816,246.442L323.816,246.442l0.762,0.292L323.816,246.442z"/>
+ <path id="path1877" fill="#C0C0C0" d="M340.153,245.738L340.153,245.738l-0.058,0.235L340.153,245.738z"/>
+ <path id="path1879" fill="#C0C0C0" d="M920.973,246.208L920.973,246.208l0.351,0.586l-0.588-0.118L920.973,246.208z"/>
+ <path id="path1881" fill="#C0C0C0" d="M920.036,246.733L920.036,246.733h-0.121H920.036z"/>
+ <path id="path1883" fill="#C0C0C0" d="M917.984,246.733L917.984,246.733l0.116,0.353L917.984,246.733z"/>
+ <path id="path1885" fill="#C0C0C0" d="M918.218,245.564L918.218,245.564l0.119,0.468L918.218,245.564z"/>
+ <path id="path1887" fill="#C0C0C0" d="M342.613,246.852L342.613,246.852l1.464,0.292l-0.526-0.117h-0.938V246.852L342.613,246.852z
+ "/>
+ <path id="path1889" fill="#C0C0C0" d="M324.46,246.911L324.46,246.911h0.762H324.46z"/>
+ <path id="path1891" fill="#C0C0C0" d="M325.515,247.32L325.515,247.32l0.059-0.117l0.06,0.06L325.515,247.32z"/>
+ <path id="path1893" fill="#C0C0C0" d="M919.683,246.5L919.683,246.5l-0.292,1.521L919.683,246.5z"/>
+ <path id="path1895" fill="#C0C0C0" d="M919.274,247.085L919.274,247.085v0.234l-0.117,0.233L919.274,247.085z"/>
+ <path id="path1897" fill="#C0C0C0" d="M919.332,247.437L919.332,247.437l-0.059,0.235L919.332,247.437z"/>
+ <path id="path1899" fill="#C0C0C0" d="M325.515,247.203L325.515,247.203l0.644,0.586L325.515,247.203z"/>
+ <path id="path1901" fill="#C0C0C0" d="M919.157,247.611L919.157,247.611v0.235V247.611z"/>
+ <path id="path1903" fill="#C0C0C0" d="M917.984,247.73L917.984,247.73l-0.351,0.644L917.984,247.73z"/>
+ <path id="path1905" fill="#C0C0C0" d="M917.105,248.198L917.105,248.198l0.117-0.059L917.105,248.198z"/>
+ <path id="path1907" fill="#C0C0C0" d="M39.878,247.671L39.878,247.671l-0.469,1.111L39.878,247.671z"/>
+ <path id="path1909" fill="#C0C0C0" d="M1026.491,248.14L1026.491,248.14l-0.06-0.118L1026.491,248.14z"/>
+ <path id="path1911" fill="#C0C0C0" d="M37.242,248.374L37.242,248.374l0.061-0.117l0.059,0.059L37.242,248.374z"/>
+ <path id="path1913" fill="#C0C0C0" d="M325.747,247.963L325.747,247.963l1.173,0.234L325.747,247.963z"/>
+ <path id="path1915" fill="#C0C0C0" d="M917.339,248.198L917.339,248.198l0.179,0.176L917.339,248.198z"/>
+ <path id="path1917" fill="#C0C0C0" d="M917.164,248.315L917.164,248.315l-0.117,0.059L917.164,248.315z"/>
+ <path id="path1919" fill="#C0C0C0" d="M917.926,248.432L917.926,248.432l-0.233,0.352L917.926,248.432z"/>
+ <path id="path1921" fill="#C0C0C0" d="M909.2,248.49L909.2,248.49l0.06,0.178L909.2,248.49z"/>
+ <path id="path1923" fill="#C0C0C0" d="M37.303,248.256L37.303,248.256l-0.061,0.352L37.303,248.256z"/>
+ <path id="path1925" fill="#C0C0C0" d="M346.653,248.49L346.653,248.49l0.469,0.41l-0.585-0.35L346.653,248.49z"/>
+ <path id="path1927" fill="#C0C0C0" d="M909.259,248.783L909.259,248.783v0.06V248.783z"/>
+ <path id="path1929" fill="#C0C0C0" d="M911.132,248.725L911.132,248.725l-0.291,0.233L911.132,248.725z"/>
+ <path id="path1931" fill="#C0C0C0" d="M922.376,248.608L922.376,248.608l-0.117,0.644L922.376,248.608z"/>
+ <path id="path1933" fill="#C0C0C0" d="M345.481,248.783L345.481,248.783l0.354,0.235L345.481,248.783z"/>
+ <path id="path1935" fill="#C0C0C0" d="M912.539,248.725L912.539,248.725l0.291,0.527L912.539,248.725z"/>
+ <path id="path1937" fill="#C0C0C0" d="M347.181,248.842L347.181,248.842l0.645,0.116L347.181,248.842z"/>
+ <path id="path1939" fill="#C0C0C0" d="M224.739,249.135L224.739,249.135l0.061-0.117l0.059,0.06L224.739,249.135z"/>
+ <path id="path1941" fill="#C0C0C0" d="M909.317,248.783L909.317,248.783l0.06,0.41L909.317,248.783z"/>
+ <path id="path1943" fill="#C0C0C0" d="M348.116,249.193L348.116,249.193l0.41,0.117L348.116,249.193z"/>
+ <path id="path1945" fill="#C0C0C0" d="M307.771,248.9L307.771,248.9l1.817,0.938L307.771,248.9z"/>
+ <path id="path1947" fill="#C0C0C0" d="M313.041,249.72L313.041,249.72l0.587-0.41L313.041,249.72z"/>
+ <path id="path1949" fill="#C0C0C0" d="M35.547,249.663L35.547,249.663l0.058-0.117L35.547,249.663z"/>
+ <path id="path1951" fill="#C0C0C0" d="M224.915,249.428L224.915,249.428l0.469,0.585L224.915,249.428z"/>
+ <path id="path1953" fill="#C0C0C0" d="M922.609,249.193L922.609,249.193l0.179,0.469L922.609,249.193z"/>
+ <path id="path1955" fill="#C0C0C0" d="M911.836,249.72L911.836,249.72l-0.117,0.177L911.836,249.72z"/>
+ <path id="path1957" fill="#C0C0C0" d="M301.273,248.608L301.273,248.608l2.225-0.352l-0.586-0.646l0.82-1.347l3.455-1.463
+ l4.217-0.704l3.162-0.058l-0.117,0.645l4.803,0.468l1.639,1.758l2.225,0.058l3.808,1.756l1.112,0.469l1.405,1.582l4.509,0.818
+ l-0.41,1.288l2.751,0.06l2.87,1.757l-3.455,1.054l0.06-0.585l-0.878,0.585l-2.752-0.353l-0.763,0.117l-4.684,0.468l0.76-1.17
+ l1.23-0.762l-0.293-0.938l-3.337-0.468l-2.05-3.045l-3.925-0.117l-2.225-1.814l-4.919-1.756h-3.161l-3.982,1.814L301.273,248.608z"
+ />
+ <path id="path1959" fill="#C0C0C0" d="M342.905,250.071L342.905,250.071l0.293-0.234L342.905,250.071z"/>
+ <path id="path1961" fill="#C0C0C0" d="M342.905,250.071L342.905,250.071h0.528H342.905z"/>
+ <path id="path1963" fill="#C0C0C0" d="M44.62,249.369L44.62,249.369l1.056,1.465L44.62,249.369z"/>
+ <path id="path1965" fill="#C0C0C0" d="M225.559,250.013L225.559,250.013l0.469,0.058L225.559,250.013z"/>
+ <path id="path1967" fill="#C0C0C0" d="M703.844,166.747L703.844,166.747l-0.35,1.404l-3.455,3.749l-0.408,1.348l-1.582,4.859
+ l3.396,3.455l-5.212,0.059l-0.703,0.994l-3.925,2.285l-0.523-2.401l-3.164-0.995l-5.033,1.053l-3.925,0.878l0.058,1.582
+ l-0.291,4.098l1.814,0.353l3.631,1.932l-4.742,2.226l1.698,3.983l-1.641-1.289l-1.231,1.112l-0.819-1.874l-3.688-2.928l3.746-1.289
+ l3.751,0.234l-2.932-1.055l-4.392,0.528l-2.693-3.455l-1.286-1.405l-2.577-2.576l0.292-5.037l-2.401-2.225h-1.054l-4.8-1.814
+ l2.519,0.585l-2.988-1.99l-3.276-0.353l-2.813-2.399l-2.048-3.923l-2.986-1.056l-5.095,0.526l0.41,4.333l4.333,2.343l1.404,3.045
+ l2.52,2.107l4.976,0.586l-0.583,1.699l2.106,0.817l2.105,0.587l2.931,1.348l1.757,1.814l-0.528,1.172l-4.508-2.519l-1.641,1.463
+ l-0.291,1.523l2.223,0.937l0.12,1.347l-2.11,0.763l-1.873,3.104l-1.522-0.293l2.052-3.22l-1.935-3.923h-1.403l-1.698-2.226
+ l-2.578-0.468l-1.17-1.582l-2.344,0.117l-4.272-2.868l-0.762-0.937l-1.814-0.353l-2.108-1.873l-1.405-3.807l-4.685-1.463
+ l-4.334,2.282l-0.353,0.117l-0.175,0.059l-4.274,2.401l-3.981-1.055l-4.04-0.702l-2.342,3.923v1.933l-4.04,2.167l-3.807,0.819
+ l-3.455,3.806l-0.409,3.572l0.409,1.112l-2.341,1.641l-0.178,1.873l-3.277,0.82l-1.699,2.284l-0.819-0.352l-1.229,0.469
+ l-0.353-0.06l-0.116,0.06l-0.232-0.175l-0.646-0.059l-4.625,0.175l-3.338,1.992h-0.059l-2.342-0.117l-1.348-1.933l-3.455-1.58
+ h-5.27l-0.119-4.568l-1.932-0.819l0.294-2.284l0.76-0.175l2.225-4.686l-0.643-4.274l-1.874-3.865l0.232-0.175l4.627-2.341
+ l2.986,0.994l4.216-0.643l4.803,0.995l3.161-0.468l1.991,0.701l4.393-0.232l2.576-4.45l-0.178-3.103l-0.116-2.695l-3.571-1.815
+ l-0.116-1.521l1.521,0.175l-2.81-0.292l0.585-0.704l-1.172-0.468l-1.521,0.585v-0.995l-4.334-0.175l-1.463-2.52l2.811-0.762
+ l2.692-0.468l1.875,1.289l4.685-0.468l-2.048-3.865l2.398,0.117l4.393,1.288l1.757-0.526l-1.463-0.117l0.468-0.704l1.464-0.525
+ l3.63-1.112l3.104-3.164l2.87-0.995l3.396,0.293l-3.163-0.878l2.986,0.175l-2.108-0.819l1.407-0.41l2.283-3.981l4.392-1.521
+ l4.274,0.585l-0.528-0.938l3.222-0.762l1.875,1.289l4.685-0.645l-3.28-1.465l-0.818-3.337l-0.176-1.873l-1.698-4.042l3.221-0.76
+ l3.163-0.878l-4.042,0.175l-1.933,0.645l4.04-1.171l4.04-2.05l-0.059,1.815l-2.048,0.587l0.817,2.048l2.695,0.118l-0.879,1.053
+ l-1.288-0.41l-1.113,1.933l-1.989,3.103l1.814,0.177l3.278,2.869l4.273-0.526l1.465-1.348l1.347,0.235l-1.873,0.585l2.283-0.643
+ l4.333,2.458l-0.175-0.47l0.059-0.232l0.643,0.058l1.174-0.41l4.975-0.819l1.349-0.995l1.287-0.178l4.979-0.819l4.448,1.288
+ l1.29-1.698h4.51l-0.995-4.978l1.578-2.928l1.057-1.289l3.102-0.643l2.11,1.814h4.214l0.586-3.807l-3.862-3.162l2.164-0.175
+ l-0.175-0.41l0.995-0.175l4.861-0.82l3.922,0.644h4.275l0.175-1.111l3.396-0.587h4.217l-4.333-0.76l-4.101-1.35l-4.038,0.528
+ l-0.47-0.646l-2.285,1.289l-0.879-0.469l-2.106,0.762h-1.813l0.116,0.292h-0.878l-5.097,0.938l1.523-0.762l-1.523-0.47l0.704-0.702
+ l-1.932,0.525l-3.927-1.347l1.058-3.278l-2.168-4.392l4.333-1.756l-0.175-0.878l0.407,0.232l0.646-0.878l0.703,0.235l2.927-1.348
+ l3.28-2.751l3.163-0.528l-0.471-1.99l-4.042-1.055l-3.394-0.059l-2.93-0.117l-2.106,0.527l1.523,0.586l-3.28,0.76l1.228,0.646
+ l-2.048,1.11l1.99,1.348l-3.222,2.285l-4.33,0.817l-4.158,2.636l-3.28,1.172l0.587,2.986l-1.582,0.176l0.468,3.104l2.755,0.352
+ l3.922,3.046l-2.402,0.937l-2.048,0.353l-0.762-1.521l0.527,1.111h-1.173l-4.917-0.059l2.985,0.41l3.513,0.585l1.933,0.293
+ l-1.814,0.938l-0.82-1.055l-1.054,1.463l-4.158,0.41l2.637,0.527l-1.815,0.058l1.349,0.527l-0.117,1.523l-1.23-0.06l0.998,1.521
+ l-0.819,0.645l-2.169,4.215l-4.038-0.292l-1.758,2.752l-3.163,0.176l-1.639-0.176l0.82-0.995l-2.168-2.225l1.289,0.233l0.232-1.405
+ l-1.873-0.995l-2.283-2.753l-0.938-4.508l-3.043-3.162l-0.41,1.288l-0.646,1.699l-2.575-0.293l0.645,0.468l-1.465,0.41
+ l-3.805,2.635l-0.703-0.353l-4.979,0.526l0.879-0.701l-4.919-1.699l-0.938-2.635h0.818l3.104-1.229l2.812-2.284l-3.222,0.117
+ l-3.513-0.644l-0.879-0.526l1.757,0.585l0.352-0.82l-1.698,0.117l0.061-0.82l1.347,0.235l4.1-0.585l3.807-0.235l-1.406-0.175
+ l0.938-0.703l-0.938,1.113l-2.575-0.178l-4.802,0.41l-0.878-0.526l2.399-0.41l4.157-1.757l-2.985-0.176l-2.87,0.06l-0.233-0.995
+ l4.45,0.468l1.873-3.045l3.865-0.177l1.99,1.113l-2.343-1.23l2.87,0.643l-1.875-1.053l2.693-0.293l-0.995-0.701l1.523,0.353
+ l2.225-1.172l1.932,1.289l4.159-1.815l-0.529-1.172l-2.573,1.113l-3.574,0.116l3.339-2.342l1.641-0.586l2.399,0.468l-0.878-0.819
+ l2.87-0.818l-1.815,0.116l-1.406,0.059l3.104-0.352l2.636-1.112l2.401-3.28l-1.523-1.521l2.813-0.41l-1.581-0.469l2.869-0.82
+ l4.861-0.058l2.519-2.813l-0.999-0.819l2.228,0.234l-1.989-0.762l3.862,0.645l2.693-4.042l0.646-0.585l2.519,0.704l-0.528-0.937
+ l2.285,1.17l-1.932-1.405l2.868-0.643l-0.763,1.404l2.106-1.814l-0.699,2.342l3.159-0.82l0.232-1.521l1.758-0.353l2.401,0.995
+ v-1.346l-3.16-0.293l2.811-0.41l3.396,0.41l0.116,0.177l1.111,0.763l0.704-1.523l4.273-0.878l2.225-1.23l1.989,0.353l-3.044,1.289
+ l0.587,1.463l0.292-0.351l0.763-0.352l4.1-2.344l3.335-0.585l5.095,0.878l3.515,0.526l3.396,1.523l-0.937,1.756l3.514,0.353
+ l0.467-0.997l4.101,0.762l-0.82,0.585l-2.984,0.059l3.746,0.353l1.291,0.059l-0.179,1.056l-1.345,0.701l3.278-1.347l4.214,0.235
+ l2.931,0.352l0.292,0.175l0.645,0.059l0.292,0.177l0.938,0.117l2.987,0.995l3.335,1.404l1.29,0.178l3.806,0.878l4.042,1.111
+ l1.287,1.815l-0.525,1.289l-4.042,1.933l-2.868,0.585l-4.508,0.117l-1.29-0.175l-1.582-0.41l-2.693-0.175l-3.043-0.293
+ l-3.688-0.527l-1.349-0.468l0.232-0.352l-0.762,0.293l-1.403-0.119l-1.23-0.353l-4.567-1.228l2.169,0.468l2.868,1.347l2.984,1.58
+ l2.813,1.699l-0.762,4.1l2.397,0.761l0.47-0.233l1.814,0.527l0.704,0.819l4.392,0.702l1.698-1.696l-4.101-3.104l3.982,1.053
+ l1.521,0.059l-1.287,0.819l1.466-0.645l3.805,0.878l3.338,0.119l-2.284-3.807l1.989-0.585l4.334-1.348l1.993-1.289l3.805,0.41
+ l3.103,1.932l-1.521-4.742l1.346-2.577l-1.403-1.815l-1.29-0.76l2.46,0.527l4.217-0.119l2.577,0.352l2.519,2.284l-4.688,0.293
+ l-1.64,1.347l3.75,1.758l2.048-0.059h3.514l0.938-2.519l4.45-0.175l-1.815-1.054l2.285,0.233l2.752-0.762l2.692-0.995l4.979-0.763
+ l3.571-0.995l4.741-0.468l-3.396,0.353l1.23,1.757l-2.169,0.585l5.212,0.235l1.758-1.348l2.285-0.41l4.625,0.41l1.054-0.645
+ l4.741-0.938l2.519,2.341l0.587-1.228l4.041-0.762l-1.29-1.113l-1.581-1.463l2.52-0.82l0.645,0.059l0.175-0.059l0.176,0.117
+ l1.522,0.235l3.222,0.058l3.22,0.293l3.047,0.527l2.46,0.701l0.233,0.177l1.17,0.293l1.697,0.175l4.393,0.995l3.925,1.933
+ l1.462-0.06l1.993-2.226l-2.636-0.116l-1.289-1.99l-4.566-0.061l-0.646-5.21l1.055-0.878l5.036-1.289l2.228-3.513l1.932-1.055
+ l0.233,0.293l2.46-0.059l4.333-0.059l4.566,0.76l0.175,1.465l-3.805,2.868l3.63,2.108l-1.466,2.107l0.471,4.509l2.106,4.449
+ l-2.106,0.41l-4.333,2.283l0.819,0.587l-2.927,0.995l-1.522-0.41l-4.625-0.644l1.462,1.053l1.29,0.117l0.523,0.177l4.979,0.175
+ l2.4,0.527l1.229-0.292l0.412-1.055l4.857-1.348l3.104-2.458l-0.878-3.632l0.642-0.233l2.813-0.409l3.805-0.293l2.693,1.64
+ l-0.763,2.577l2.05,0.76h4.803l-0.291-0.116l-0.471-0.059l-4.801-0.526l0.583-3.981l-2.983-0.704l-4.275-0.585l-1.229,0.293
+ l-4.979,0.175l1.287-4.509l0.47-0.938l-4.508-2.577l1.814-1.406l4.979-1.054l0.175-2.692l1.757,4.625l-0.175,0.938l5.092,0.41
+ l2.753,0.117l2.695,0.937l2.282-0.468l-2.344,0.353l-1.521-1.582l-1.699,0.234l-4.448-0.997l-0.88-1.17l3.16-0.469l4.217,0.585
+ l1.466-1.815l3.396,0.117l4.742,0.995l2.811,1.288l1.757,0.059l3.982-0.059l-0.819,1.113l-3.339,2.927l3.806,1.699l-0.758-0.82
+ l0.582-2.81l1.814-1.756l-3.396-0.879l-1.697-0.762l0.062-0.702l-3.633-0.234l-1.578-0.645l-0.704-3.632h1.17l1.407-0.117
+ l0.938-0.175h2.28h4.334l1.231-0.177h5.153l0.937-0.059l4.567-0.644v3.22l-3.28-1.699l0.06-4.392l3.865,0.41l2.868-1.463
+ l-2.751-0.468l3.455,0.175l4.449-1.405l1.641,0.235l1.17-0.528l2.225-0.175l0.761-0.117l0.059,0.117l0.237,0.058l0.641-0.175
+ l0.06,0.117h1.522l0.354-0.353l1.17,0.059l4.565-0.41l2.52-0.292l-4.158,0.059l0.938-0.704l0.937,0.293l2.052-0.116l-1.173-0.235
+ l2.813,0.235l4.74-0.293l-0.891,0.882l3.104,0.058l4.801-0.41l3.454-0.995l1.055,2.519l3.806,1.347l-1.054-3.222l-3.747-1.463
+ l0.351-0.06l1.814,0.176l4.979-0.233l4.92,0.526l-4.804-0.585l0.117-1.466l1.057-0.059l-0.059-0.41l2.281-0.644l4.218-1.23
+ l3.57-0.352h0.82l-0.117,0.117l0.352,0.117l1.348-0.117l3.922,0.468l1.523,0.703h-1.99l-0.995,0.293l-4.687,0.702l4.687,0.409
+ l4.801-0.292l2.401,0.41l-3.867,1.463l5.212-0.058l0.237-0.704h1.17l0.058,0.117l2.985-0.059l0.762-0.116l2.345,0.234l3.746-0.234
+ l2.576,1.463l3.863,0.997l2.755,2.282H998.5l0.466,0.117l-0.232,0.293l-2.519,1.054l-3.806,1.112l-1.406-0.058l-0.995,0.292H989.6
+ l-5.095,1.055h1.522l-0.471,0.41l-1.229,0.35l-1.465,0.178l-3.57,1.404l-3.223,0.06l-1.229,0.995l-2.576,0.177l-3.514,1.756
+ l4.508-1.405l1.582,0.176l0.82-0.176l4.625-0.117l3.745-0.702l2.402-0.293l4.217-1.289l3.338,0.585l3.103-0.644l1.697,4.45
+ l-0.467-3.103l2.165-0.293l4.685-0.41l4.042,0.119l2.343,0.292l4.857,0.058l-0.818,1.172l4.979,1.056v-0.119l-0.232-0.117
+ l0.232-0.059l3.104,0.176h4.097l0.176,0.177l0.471,0.117l1.286,0.058l0.819,0.175l2.46,0.293l4.861,0.353l3.102,0.995h2.637
+ l3.222,3.396l-0.82-2.167l-0.35-1.405l2.515,0.176l4.513,2.167l0.407-0.995l1.642,1.053l0.35,2.225l4.861,1.23l3.279-1.99
+ l2.752-2.285l4.684,1.992l2.107,0.41l4.217-1.289l2.168,0.233l3.219,0.704l2.052,0.937v-1.229l2.576-0.702l4.625,0.643l-2.46-1.698
+ l3.047-0.878l1.578-2.458l2.46,0.175l0.762,0.294l1.055,0.116l1.932,0.116l3.983,0.062l0.937,0.115h1.111l4.334,0.292l5.211,0.763
+ l0.292,0.115l-3.451,1.641l-3.751,0.645l4.159-0.41l3.746-1.875h3.982l4.45,0.529l1.698,0.76l-4.217,0.997h4.042l2.397,0.585
+ l-2.224,1.055l5.037-0.527l3.805,1.992l0.175-0.177h0.587h1.171l0.819-0.059l1.053-0.117l0.117,0.117l2.052-0.41h4.566l1.403-0.468
+ h3.104l4.041,0.177l4.509,0.818l2.985,1.875l-1.287,1.932l4.45,0.526l0.175,3.689l1.346-2.986l3.514-0.995l1.406,0.059l4.158-0.41
+ l1.814,0.586l3.862,0.058l4.334,0.352l3.223-1.053l1.757,1.932l4.566,1.582l3.63,0.117l-0.233-3.688l-0.291-1.172l5.149,0.468
+ l3.866,0.469l0.646,0.293l-0.179-0.41l1.058-0.177l0.758,0.293l0.237,0.117l0.058-0.175l0.468,0.116l0.47-0.116h0.995l0.471,0.059
+ l2.105,0.058l3.746-0.116l2.169,0.762l2.52,0.233l0.815,0.177l4.629,0.702l-1.174,0.177l2.168,0.116l4.218,1.111l3.63,1.289
+ l1.462,1.171l-1.111-1.053l3.223,0.938l-0.587,0.352l0.937-0.235l0.703,0.176h-0.35l0.35,0.234l0.351-0.117l3.223,0.938l2.988,0.82
+ l-0.296,1.11l3.223,3.69l2.751-2.929l4.392,0.703l2.461-0.06l3.806,2.519l3.279,0.353l-2.867,1.64l-3.515-0.586l-4.629,0.468
+ l-1.17,5.096l-0.82-1.289l-0.937,0.937l-2.106-1.11l-4.217-0.41l-2.168-2.46l-3.396-0.469l-5.209,0.353l-2.228-3.162l-2.228,1.638
+ l-2.457,3.982l-3.454,0.82l0.819-0.41l-3.925-0.06l-4.217-1.288l2.692,1.056l-3.922-0.587l-1.229,0.587l-4.512,0.352l4.453-0.234
+ l1.17-0.527l0.291,1.289l4.275-0.878l2.985,1.17l2.052,2.87l1.17,4.743l-0.467-0.235l-3.28-0.702l-2.577-0.118l-1.11-0.995
+ l0.995,1.054l-2.053,0.118l-4.975,1.288l-0.354,0.527l-1.989,0.117l-3.631,0.82l-2.984,1.112l-2.46,1.17v0.878l-0.233-0.352v0.352
+ l-5.036,1.405l-0.937,1.875l-3.631-2.46l-5.096,0.235l-2.635,0.41l-1.64,1.521l-1.582,0.585l0.995-2.342l-4.334,1.64l-1.17,0.878
+ l-4.158-0.878l-1.521,3.455l-1.114-0.293l-3.34,3.747l1.115,0.938l1.582-0.586l1.99,0.702l-1.874,1.464l2.165,4.039l-1.64,0.588
+ l-2.693,4.449l-4.45,0.763l-2.635,1.229l-1.054,2.402l0.878,1.463l-0.819-0.644l-4.862,0.938l-0.523,3.807l-0.354,0.117
+ l-0.583,0.468l-0.354,0.469l-4.45,2.635l0.354-0.646l-0.82-0.878l-0.819-4.215h0.524l-1.17-1.172l-0.059-0.878l-0.528-2.635
+ l-1.286-4.509l-0.059-0.703l1.406-4.684l2.693-1.465l0.524-2.517l5.152-0.528l-0.35-0.292l3.513-1.523l-0.178-0.232l0.762-0.468
+ l3.809-3.104l4.684-2.167l0.35-0.878l3.397-1.23l2.872-0.352l1.11-1.64l0.351-3.278l1.406-0.645h3.979l-4.508-0.938l-3.863,0.586
+ l0.058,3.104h-3.104l-3.396,1.874l-4.566,1.931l0.819-4.156l-0.116-0.645l-2.811,0.997l-1.17-0.878l-1.115,0.116l-4.917,0.293
+ l-2.751,0.938l-0.12,1.112l-1.989,0.702l-0.703,1.055l-3.396,1.288l-2.457,1.64l3.335,2.518l-4.038,0.41l-3.982,0.527l-1.933-0.527
+ l-3.631,0.761l-0.878-0.995l4.275-0.41l-3.223-1.289l-2.401,0.526l-3.746-1.111l-3.044,0.995l0.524,0.878l-2.397-0.644
+ l-2.576,0.644l-3.339-0.82l-0.762,0.997l-2.285-0.878l-1.229,0.175l-0.231-0.116l-1.115,0.116h-0.467l-0.117-0.058h-0.528
+ l-4.975,0.058l-2.169,0.527l-1.17,0.41l-0.938,0.525l-4.216,2.343l-0.996,1.697l-0.526,0.235l-0.233-0.06l-0.82,0.176l-0.41,0.234
+ l-4.567,2.343l-1.403,1.933l-1.115,0.175l-1.757,1.582l-4.508,2.225l-3.219,1.288l0.059,0.818l0.351-0.058l5.212,0.234l3.222,1.17
+ l-1.465,2.753l4.45-1.64l4.1-1.113l1.757,0.938l4.098,2.692l-2.516,0.586l1.989,0.937l-0.47,1.582l1.466,0.878l-0.704,0.175
+ l-1.523,1.698l-1.577,3.22l0.819,2.167l-1.057,0.763l-0.762,4.977l-3.16,2.225l-1.111,1.758l-0.296,0.06l-1.111,0.938l-0.232,0.585
+ l-2.931,3.749l-1.054,0.701l-0.819,0.82l-1.111,0.646l-3.455,2.927l-2.46,2.985l-4.333,2.226l-3.043,0.645l-4.275-2.284
+ l-1.989,2.343l-1.993,1.347l-3.452,2.226l0.059,2.867l-1.757,0.528l-0.411,0.76l-1.582,0.997l-4.038,1.638l3.043,3.865l0.938,1.698
+ l2.811,3.747l-0.176,3.632l0.176,1.932l-1.521,1.582l-1.406-0.645l-0.408,0.762l-2.692,0.059l-4.217,2.46l-0.88-1.405l1.229,0.233
+ l-0.878-0.41l1.053-0.293l-0.995,0.117l-0.466-1.172l0.642,0.353l-0.408-0.762l1.286-1.054l0.646-5.212l-0.646-2.87l-1.932,0.353
+ l-1.932-1.054l-3.223-0.293l3.455-1.814l-1.814-0.585l1.114-2.753l-3.809-1.815l-0.819,0.938l-1.697-0.292l-0.177,0.35
+ l-0.645,0.293l-0.643-0.293l0.116,0.41l-3.047,0.997l-4.274,2.458l2.461-4.509l-0.06-3.455l-2.401,0.177l-0.759,0.408l-3.866,2.929
+ l-3.339,2.986l-3.979,2.986l4.038,3.278l2.872,0.704l3.455-2.402l2.927,1.465l3.982,0.059l-0.703,1.757l-1.933-0.352l-4.217,1.347
+ l0.762,0.293l-0.997,1.112l-1.171,0.645l-3.747,3.396l-0.291,1.229l3.688,1.405l2.281,4.567l-0.233,1.348l3.747,3.162l-3.219-0.353
+ l-3.105-0.41l-1.698-1.404l0.995,1.289h2.872v0.585l4.098,2.986l-0.06,0.41l-3.043,0.995l-2.987,1.289l1.289-0.41l0.995,0.878
+ l4.684,0.646l-2.397,1.288l1.873-0.235l-0.117,1.347l-0.527-0.585l-1.35,0.703l0.82,1.17h-1.814l1.757,1.935l-0.994,0.526
+ l-3.222,3.221l-0.817-0.233l0.759,0.469l-0.995,1.463l-3.63,2.051l2.11,0.525l-0.88,1.114l0.7,1.17l-1.17-0.878l-0.762,0.703
+ l0.878,0.526h-1.64l0.354,1.288h-1.466l0.292,1.112l-1.698-0.408l-3.455,3.747l-2.34,0.704l0.938,0.643l-0.995,0.06l-0.06,0.997
+ l-2.4,0.702l-1.35-0.645l-4.154,1.289l-2.931-1.934l0.528,3.222l-1.348-1.348l0.178,1.875l-0.411-0.646l-0.408,1.055l-4.745,1.405
+ l-4.509,0.293l-1.522,4.215l-0.408-1.697l0.527-2.693h-1.465l-1.407,0.293l-4.038-0.527l-1.992,0.761l-0.176,1.112h-2.519
+ l0.528,1.171l-3.571,3.806l-0.528,2.46l2.811,2.752l0.527,1.932l1.873,1.698l2.461,2.753l1.814,0.526l2.168,3.162l-0.295,0.352
+ l1.582,4.45l0.528,3.455l-0.763,4.157l-0.819,0.293l-3.571,3.277l-2.635,1.113l-2.461,2.81l-2.576-1.463l1.349,2.226l-2.344,0.819
+ l-2.401,1.99l0.411-0.527l-0.353-3.395l-1.462-2.46l-2.053-1.113l-3.339-3.277l-2.165-1.933l-0.818-1.348l-4.218-0.292
+ l-2.105-3.045l-1.112,0.762l0.233,3.923l-1.581,3.043l-1.466,3.338l0.295,3.923l2.165-0.175l1.29,3.045l0.699,4.45l3.926,1.112
+ l1.989,2.167l0.82,0.177l0.587,1.053l3.338,3.808l0.176,1.696l-0.236,4.861l1.349,1.229l1.698,3.98l-2.752,0.646l-0.528-0.938
+ l-2.34-1.112l-3.28-2.577l-1.697-0.878l0.059-1.522l-1.523-2.635l-1.054-1.055l0.351-1.229l-1.054-1.465l-0.879-4.684l-1.813-3.338
+ l-0.703,0.235l-3.922-3.222l0.115-3.455l1.523-4.04l-0.762,1.289l-0.291-2.577l1.52-3.455l-1.17-0.645l0.587-0.352l-0.47-4.157
+ l-1.407-3.164l-0.175,1.875l-1.17-4.685l-0.82-4.217l0.587-1.757l-2.987-3.104l-0.352,2.577l-3.925,2.692l-4.976-0.058l0.06-1.99
+ l1.228-3.57l-2.048-4.568l0.175-1.874l-0.467,1.289h-0.938l-0.7-1.289h1.814l-1.406-1.172l0.527-0.702l-2.169-0.586l-3.275-3.688
+ l0.407,1.348l-0.994-1.463l-0.703-3.865l-1.229-2.284l-2.518,0.117l-0.704-2.46l-4.625-1.289l4.509,2.167l0.292,3.396l-1.171,1.582
+ h-4.392l-3.983-1.757l0.938,1.17l-4.215,2.46l0.292,2.4l-2.227,2.519l-0.938-0.526l0.412,0.819l-2.867,0.82l-0.703-0.352
+ l1.17,0.293l-2.985,1.873l-2.168,2.986l-2.34,1.348l-3.984,3.045l-0.058,1.696l-3.455,0.703l-3.63,2.343l-0.82,2.167l-0.059,3.103
+ l0.995,2.635l-0.938-0.585l1.054,0.995l-0.646,2.986l-1.757,4.159l0.646,0.468v3.104l-1.402,3.981l-3.635,0.175l-1.229,2.46h-3.863
+ l-1.523-1.873l-0.993-3.632l-0.06-0.938l-0.236,0.178l-1.521-4.159l-1.873-2.225l-1.349-2.929l0.408-0.117h-0.408l-0.292-2.751
+ l-1.115-2.928l-1.17-1.112l0.117-0.177l-0.704-0.82l-0.466-1.111l-1.698-3.923l-0.352-3.749l-1.23-3.806l0.703-1.172l-0.291-0.585
+ l-0.704,0.76v-0.937h0.995l-1.406-2.167l1.057-3.278l-1.349-2.167l1.229-3.103l-2.812,3.747l-4.858,1.697l-2.051-1.229
+ l-0.879-0.878l-3.335-3.453l0.995,0.117l3.275-0.995l1.175-1.934l-4.509,0.937l-3.571-3.278l-0.179,0.293l-2.341-0.703
+ l-2.752-4.333l-1.173-1.757l-0.937,0.527l1.405,0.235l-0.354-0.178l-0.467-0.058l-1.465,0.177l-3.863,0.351l-0.295,0.528
+ l-1.932-0.997l-2.166,0.938l-3.338-0.293l-3.279,0.232l-3.747-0.817l-0.528,0.175h-0.35l-4.393-0.059l-4.45-0.82l-1.641-0.527
+ l-0.819-3.103l-0.937-1.641l-1.642-0.234l-3.043,1.522l-0.819-0.059l-2.168,0.995l-3.22-0.704l-0.998-0.938l-3.275-2.282
+ l-4.159-1.582l-1.348-3.514l-2.812-3.104l-0.116-0.702h-3.044l-2.46,0.644l-2.048-0.175l0.758,1.641l0.879,3.514l1.466,3.278
+ l1.465,0.293l3.219,3.103l0.178,1.23l-0.762,1.053l0.351,0.059l2.576,4.333l1.465-4.918l1.112,0.878l-1.229,4.509l0.995,0.175
+ l-0.763,0.938l1.055-0.293l0.645,0.938l1.111,0.585l1.582-0.644l2.165-0.116l3.396,0.116l1.054-0.526l0.586-0.646l-0.586-0.232
+ l0.586,0.058l0.412-0.995l2.225-1.407l0.762-1.347l2.868-2.81l-0.351,2.519l1.171,4.098l1.988,1.992l1.582,0.469l4.042,0.937
+ l2.635,3.455l0.995,1.17l-1.582,2.753l-2.927,3.572l-1.053,0.058l-1.465,5.035l-3.455,0.762l-1.642,2.87l-3.222,0.351l-1.286,2.869
+ h-3.396l-3.572,1.348l-2.752,1.289l-0.291,2.282l-2.931,1.348l-2.049,0.526l-0.879,0.118l-4.157,1.463l-2.341,2.108l-2.46-0.058
+ l-4.628,2.167l-3.631,0.35l-2.106,2.05l-0.115-0.352l-5.212,0.586l-1.055-2.05l0.177-1.582l-1.232-4.333l-0.524-5.035l-1.697-3.749
+ l-1.815-1.347l-1.814-2.693l-1.814-4.098l-3.455-2.051l-2.052-2.635l-0.816-2.868l0.699-1.697l-0.466-1.289l-1.99-3.572
+ l-3.514-2.05l-0.939-2.987l-1.814-1.99l-0.06-0.997l-0.7-0.292l-0.062-0.293l-0.583-1.053l-0.703-0.762l-0.175-0.469l-2.812-4.099
+ l-2.284-0.118l1.406-4.508v-0.644l-0.819,0.878l-1.175,3.453l-0.523,2.05l-3.571-2.868l-3.164-3.69l0.938,0.938l0.059,1.229
+ l3.396,3.981l1.229,4.217l0.295,0.117l1.112,2.167l0.762,0.995l2.048,4.217l1.698,4.86l0.412,1.054l4.097,2.812l1.29,3.396
+ l-0.704,0.118l0.528,1.757v0.233h-0.119v0.117v0.818l0.878,4.744l4.101,2.928l1.641,3.513l0.703,3.631l1.582,3.161l0.583-1.463
+ l0.995,1.873l3.513,1.172l1.815,2.46l1.934,1.344l3.102,2.984l-2.106,4.101l2.636,0.117l3.57,3.688l2.225,0.118l2.987-1.64
+ l2.401,0.702l3.335-1.757l2.577,0.175l1.349-0.645l1.641,0.235l3.863-0.938l2.46-1.699l1.757,0.585l0.467,4.86l-1.815,0.468
+ l-0.232,3.164l-2.52,4.333l-0.993,0.878l-0.06,0.702l-0.762,1.405L771.946,304l-1.465,2.399l-2.397,3.515l-1.231,1.347
+ l-0.525,0.703l-0.762,0.704l-1.582,1.756l-2.692,2.635l-4.333,2.518l-1.523,1.112l-3.043,2.636l-2.46,2.692l-2.11,2.4l-0.815,0.352
+ l-1.407,2.693l-0.819,1.055h-1.582l0.295,1.17l-2.695,1.348l-0.233,2.051l-0.646,0.234l-0.351,1.697l-2.227,2.986l-1.465,4.861
+ l2.692,3.338l-1.054,2.869h0.704l-0.587,1.758l0.995,2.105l0.407,3.982l2.636,1.521l0.762,0.701l-1.054,2.229l1.054,5.094
+ l-0.82,0.703l0.646,0.059l-0.233,4.156l0.351,1.406l0.587-0.586l0.175,1.055l-1.111,1.52l-2.401,4.568l-2.693,1.99l-3.513,0.645
+ l-4.393,2.459l-1.111,2.283l-0.411,0.939l-0.467,0.352l-1.466,0.176l-4.509,2.342l0.762,0.879l-0.41,2.342l1.58,1.404l0.763,4.393
+ l0.232,1.113l0.528-1.113l-0.232,1.756l0.175,3.924l-0.116,1.057l-1.582,1.873l-0.938,0.408l-3.745,1.289l-1.758,0.645
+ l-1.406,1.055l0.232,4.393l-0.175,0.938l-1.582,4.977l-3.571,2.869l-0.819,1.055l-0.291,0.588v0.174h-0.117l-0.06,0.117
+ l0.233-0.061l-0.058,0.061l-0.646,0.645l-2.985,4.215l-2.168,1.406l-0.175,0.352l-0.467,0.586l-0.236,0.117l-0.995,1.053
+ l-3.396,2.635l-0.584,0.295l-4.217,2.225l-2.868,0.061l-2.401,0.703l-0.702,0.818l-4.043-0.762l-3.862,0.059l-2.752,1.348
+ l-4.566,0.293l-1.757,1.229l-4.158-1.521l-1.757-0.762l0.408-1.641l-2.049-3.045l1.522-0.703v-2.576l-0.353-0.762l-0.938-1.111
+ l-2.223-3.57l-1.642-4.449l-1.17-1.758l-2.575-1.936l-1.582-2.516l-0.763-2.168l-0.407-1.287l-0.471-2.051l0.059-2.459
+ l-1.346-3.221l-0.058-3.514l0.291-1.582l-0.527-1.404l-0.293-0.352l-0.059-0.234l-1.17-1.172l-1.935-3.277l-0.762-2.344
+ l-2.165-3.805l-2.695-3.572l-0.115-2.928l-0.117-4.977l1.464-2.346l0.645-3.924l0.645-2.166l3.339-3.277l1.17-2.459l-0.117-3.926
+ l-0.818-0.992l-1.933-4.625l1.404-1.23v-1.23l-1.932-3.98l-2.051-4.041l3.278-0.879l-3.453-0.234l-0.646-2.691l-2.986-3.746
+ l-0.469-0.354l-0.353-0.703l-0.995-0.818l-3.336-3.396l1.521,0.232l-1.815-0.469l-1.229-1.814l-1.933-4.334l0.995,0.879
+ l1.113-3.746l1.696-2.87l0.061-4.744l0.526-2.576l-0.763-3.688l-4.099-2.341l-1.406-0.646l0.409,1.523l-2.225,0.175l-0.41-0.704
+ l-0.938,0.704l-4.155,0.82l-2.227-2.05l-0.645-3.688l-0.82,0.527l-2.283-2.167l-3.455-0.176l-2.458,0.176l-3.807,0.526l-1.522,0.41
+ l-4.217,1.699l-4.448,1.873l-2.87,1.23l-3.572-1.23l0.879-0.292l-3.397-0.118l-0.643-0.175l-2.811,0.293l-1.816-0.235l1.113,0.353
+ l-3.104,0.41l-1.172,0.525l-4.565,1.815h-0.703l-0.353-0.233l-4.509-2.107l-1.111-0.878l-3.222-3.046l-4.04-2.752l-3.572-1.64
+ l1.113-0.762l-0.996-0.644l-1.757-0.41l-1.17-3.98v-1.113l-1.465-0.527l0.118-1.582l-1.113-0.878l-3.572-2.635l-1.64-1.521
+ l1.698-2.051l-3.396,0.82l-2.635-2.05l4.685-1.815l-4.802-0.701l0.059-1.466h5.037l-4.452-0.468l0.293-1.289l-3.688-2.81
+ l2.283-1.641l1.288-2.867l0.175-2.051l1.522-3.923l-0.525-4.157l-0.062-4.567l-2.983-1.933l0.468-4.158l0.702-1.111l0.818-0.235
+ l0.178-0.643l0.292-0.177l2.05-4.567l-0.82,0.704l3.865-3.572l0.233-2.227l1.229-2.985l3.22-1.992l1.406-3.277l0.938-0.997
+ l4.858-1.229l0.645-0.704l3.864-2.87l2.108-2.984l-0.762-4.333l1.99-4.04l2.693-2.519h0.233l0.527-0.409l4.803-1.933l2.459-3.807
+ l2.868-3.162l2.519,2.458l4.801,0.119l3.982,0.35l1.465-0.117l3.395-2.282l2.87-0.235l3.339-2.167l1.405-0.35l4.274-0.119
+ l1.287-0.761l2.869-0.293l3.631-0.058l1.934,0.938l3.161-0.995l0.82-0.586l1.347,0.527l1.111,0.059l5.096-0.059l4.333-1.407
+ l4.215,0.879l-2.106,3.396l2.459,3.104l-1.464,1.991l-2.577,1.757l1.173,1.639l4.215,1.875l2.812,1.17l3.278-0.292l3.221,0.76
+ l3.514,1.055l2.575,3.806l5.096,0.819l2.931,1.056l3.979,1.756l2.811-2.46l-0.233-4.157l1.758-1.407l4.041-1.347l4.917,1.113
+ l0.703,1.699l1.466-0.06l4.392,0.702l0.583,1.113l0.587,0.526l2.106-0.41l3.69,0.585l2.398,0.997l0.703-0.293l4.45,1.521
+ l2.987-1.521l1.112,0.059l0.937-0.585l1.698-0.703l3.043,0.234l1.058,0.879l-1.115-0.879l-0.408,0.82l4.098,0.527l4.512-0.646
+ l1.757-2.167l1.346-4.04l1.873-3.162l1.173-2.282l-0.178-4.509l0.354-3.513l-2.401,1.405l-2.343-0.938l-2.457,2.049l-4.101,0.702
+ l-1.522-0.525l-4.625-2.402h-1.523l-3.28,2.577l-2.049-0.937l-2.223-1.758l-3.867,0.704l3.396-1.229h-3.863l1.346-0.82
+ l-2.165-1.347l-2.692-2.167l3.275-0.646l-1.578-0.702l-1.992-4.567l2.168-1.58l2.752,0.352l0.995-0.352l4.333,0.117l1.932-2.868
+ l4.745,0.408l1.402-0.351l4.334-2.343l2.576-0.644l4.861,0.232l0.82-0.527l1.17,1.348l2.692,0.119l1.346,1.521l0.646-0.41
+ l1.465,0.41l4.685,1.172l3.688-0.704l2.577,0.704l4.805-2.05l0.937-1.171l-1.111-3.045l-2.169-1.288l-2.983-1.112l-0.296-0.058
+ l-4.098-3.045l-1.932-0.41l-1.114-0.995l-4.567-1.814l4.042-0.41l2.928-2.577l-2.928-2.226l2.985,0.06l2.811-1.64h-3.979
+ l-4.275,0.878l-0.937,0.819l-3.339,0.06l-3.514,1.522l1.641,2.693l3.805,1.347l-2.983-0.293l-1.523,1.172l-5.096,1.23l-0.938-0.529
+ l-3.102-2.868l4.509-1.873l-0.587-0.762l-0.587,0.353l-0.699-0.588l-5.037-0.232l-0.175-3.396l0.523,2.108l-1.577-0.527
+ l-2.345,0.878l-1.873,2.4L703.844,166.747z"/>
+ <path id="path1969" fill="#C0C0C0" d="M978.59,250.482L978.59,250.482l-0.117,0.06L978.59,250.482z"/>
+ <path id="path1971" fill="#C0C0C0" d="M978.532,250.541L978.532,250.541l0.059-0.117l0.058,0.058L978.532,250.541z"/>
+ <path id="path1973" fill="#C0C0C0" d="M226.32,250.657L226.32,250.657h0.175H226.32z"/>
+ <path id="path1975" fill="#C0C0C0" d="M977.128,250.95L977.128,250.95l0.059-0.116l0.059,0.059L977.128,250.95z"/>
+ <path id="path1977" fill="#C0C0C0" d="M977.187,250.892L977.187,250.892l0.466,0.175L977.187,250.892z"/>
+ <path id="path1979" fill="#C0C0C0" d="M987.96,251.125L987.96,251.125l-0.06,0.293L987.96,251.125z"/>
+ <path id="path1981" fill="#C0C0C0" d="M47.433,251.125L47.433,251.125l1.463,0.118L47.433,251.125z"/>
+ <path id="path1983" fill="#C0C0C0" d="M340.681,251.712L340.681,251.712l2.4-1.056L340.681,251.712z"/>
+ <path id="path1985" fill="#C0C0C0" d="M977.711,251.477L977.711,251.477v-0.059V251.477z"/>
+ <path id="path1987" fill="#C0C0C0" d="M977.711,251.477L977.711,251.477v-0.059V251.477z"/>
+ <path id="path1989" fill="#C0C0C0" d="M320.714,251.418L320.714,251.418l0.293,0.175L320.714,251.418z"/>
+ <path id="path1991" fill="#C0C0C0" d="M982.864,251.653L982.864,251.653l0.117-0.06L982.864,251.653z"/>
+ <path id="path1993" fill="#C0C0C0" d="M977.478,251.712L977.478,251.712v0.059V251.712z"/>
+ <path id="path1995" fill="#C0C0C0" d="M978.123,251.829L978.123,251.829v-0.059V251.829z"/>
+ <path id="path1997" fill="#C0C0C0" d="M987.668,251.653L987.668,251.653l0.292-0.06L987.668,251.653z"/>
+ <path id="path1999" fill="#C0C0C0" d="M978.473,251.712L978.473,251.712l-0.059,0.059L978.473,251.712z"/>
+ <path id="path2001" fill="#C0C0C0" d="M978.181,251.77L978.181,251.77l0.117,0.117L978.181,251.77z"/>
+ <path id="path2003" fill="#C0C0C0" d="M977.536,251.712L977.536,251.712l-0.176,0.352L977.536,251.712z"/>
+ <path id="path2005" fill="#C0C0C0" d="M321.24,251.829L321.24,251.829l0.526,0.352L321.24,251.829z"/>
+ <path id="path2007" fill="#C0C0C0" d="M977.536,252.003L977.536,252.003h-0.06H977.536z"/>
+ <path id="path2009" fill="#C0C0C0" d="M48.312,252.18L48.312,252.18l0.058-0.116l0.059,0.059L48.312,252.18z"/>
+ <path id="path2011" fill="#C0C0C0" d="M977.536,252.003L977.536,252.003h-0.06H977.536z"/>
+ <path id="path2013" fill="#C0C0C0" d="M321.767,252.18L321.767,252.18l0.352,0.233L321.767,252.18z"/>
+ <path id="path2015" fill="#C0C0C0" d="M974.726,252.296L974.726,252.296l0.467,0.234L974.726,252.296z"/>
+ <path id="path2017" fill="#C0C0C0" d="M976.774,252.355L976.774,252.355v0.059V252.355z"/>
+ <path id="path2019" fill="#C0C0C0" d="M976.774,252.355L976.774,252.355l0.116,0.117L976.774,252.355z"/>
+ <path id="path2021" fill="#C0C0C0" d="M50.595,252.064L50.595,252.064l0.937,0.76L50.595,252.064z"/>
+ <path id="path2023" fill="#C0C0C0" d="M322.177,252.472L322.177,252.472l0.352,0.118L322.177,252.472z"/>
+ <path id="path2025" fill="#C0C0C0" d="M975.251,252.414L975.251,252.414l0.354-0.059L975.251,252.414z"/>
+ <path id="path2027" fill="#C0C0C0" d="M1027.776,252.414L1027.776,252.414l-0.291,0.468L1027.776,252.414z"/>
+ <path id="path2029" fill="#C0C0C0" d="M322.702,252.708L322.702,252.708l0.178,0.058L322.702,252.708z"/>
+ <path id="path2031" fill="#C0C0C0" d="M1009.564,252.881L1009.564,252.881l0.063-0.117L1009.564,252.881z"/>
+ <path id="path2033" fill="#C0C0C0" d="M323.934,253.233L323.934,253.233l0.526,0.293L323.934,253.233z"/>
+ <path id="path2035" fill="#C0C0C0" d="M49.539,253.233L49.539,253.233h-0.058H49.539z"/>
+ <path id="path2037" fill="#C0C0C0" d="M1108.7,253.526L1108.7,253.526l0.06-0.115L1108.7,253.526z"/>
+ <path id="path2039" fill="#C0C0C0" d="M806.609,252.942L806.609,252.942l0.12,0.585L806.609,252.942z"/>
+ <path id="path2041" fill="#C0C0C0" d="M1028.305,253.643L1028.305,253.643l0.059,0.06L1028.305,253.643z"/>
+ <path id="path2043" fill="#C0C0C0" d="M294.831,253.35L294.831,253.35l-0.703,0.997L294.831,253.35z"/>
+ <path id="path2045" fill="#C0C0C0" d="M978.006,254.874L978.006,254.874h0.059H978.006z"/>
+ <path id="path2047" fill="#C0C0C0" d="M978.006,254.932L978.006,254.932l0.059-0.117L978.006,254.932z"/>
+ <path id="path2049" fill="#C0C0C0" d="M926.063,255.048L926.063,255.048v0.058V255.048z"/>
+ <path id="path2051" fill="#C0C0C0" d="M343.315,255.107L343.315,255.107l1.113,0.293L343.315,255.107z"/>
+ <path id="path2053" fill="#C0C0C0" d="M1109.991,255.283L1109.991,255.283h-0.116H1109.991z"/>
+ <path id="path2055" fill="#C0C0C0" d="M926.122,255.048L926.122,255.048l0.295,0.703L926.122,255.048z"/>
+ <path id="path2057" fill="#C0C0C0" d="M927.763,255.517L927.763,255.517h0.058H927.763z"/>
+ <path id="path2059" fill="#C0C0C0" d="M542.172,255.927L542.172,255.927l0.059-0.117l0.059,0.059L542.172,255.927z"/>
+ <path id="path2061" fill="#C0C0C0" d="M927.82,255.517L927.82,255.517l0.296,0.703L927.82,255.517z"/>
+ <path id="path2063" fill="#C0C0C0" d="M542.23,255.869L542.23,255.869l-0.41,0.819L542.23,255.869z"/>
+ <path id="path2065" fill="#C0C0C0" d="M318.137,256.513L318.137,256.513l0.41-0.177L318.137,256.513z"/>
+ <path id="path2067" fill="#C0C0C0" d="M1110.398,256.63L1110.398,256.63l0.06-0.117L1110.398,256.63z"/>
+ <path id="path2069" fill="#C0C0C0" d="M52.175,254.405L52.175,254.405l3.572,2.577l-3.045,2.167L52.175,254.405z"/>
+ <path id="path2071" fill="#C0C0C0" d="M1028.13,256.863L1028.13,256.863h0.059H1028.13z"/>
+ <path id="path2073" fill="#C0C0C0" d="M1028.13,256.863L1028.13,256.863l0.117,0.118L1028.13,256.863z"/>
+ <path id="path2075" fill="#C0C0C0" d="M928.819,256.863L928.819,256.863l0.938,0.471H928.7L928.819,256.863z"/>
+ <path id="path2077" fill="#C0C0C0" d="M313.628,257.683L313.628,257.683l0.059,0.059l0.995-0.116l-0.995,0.293L313.628,257.683z"/>
+ <path id="path2079" fill="#C0C0C0" d="M1026.548,257.508L1026.548,257.508l-0.059,0.468L1026.548,257.508z"/>
+ <path id="path2081" fill="#C0C0C0" d="M1185.058,257.683L1185.058,257.683l0.117,0.059L1185.058,257.683z"/>
+ <path id="path2083" fill="#C0C0C0" d="M210.275,257.683L210.275,257.683l0.118,0.119L210.275,257.683z"/>
+ <path id="path2085" fill="#C0C0C0" d="M929.519,258.212L929.519,258.212l-0.116-0.235L929.519,258.212z"/>
+ <path id="path2087" fill="#C0C0C0" d="M984.563,255.4L984.563,255.4l4.862,0.059l-1.465,4.158l-3.28,2.167l-3.222-1.171
+ l-0.117-2.869L984.563,255.4z"/>
+ <path id="path2089" fill="#C0C0C0" d="M1025.554,258.329L1025.554,258.329l0.058,0.409L1025.554,258.329z"/>
+ <path id="path2091" fill="#C0C0C0" d="M1025.554,258.329L1025.554,258.329v0.469V258.329z"/>
+ <path id="path2093" fill="#C0C0C0" d="M1028.13,258.914L1028.13,258.914l-0.471,0.585L1028.13,258.914z"/>
+ <path id="path2095" fill="#C0C0C0" d="M928.524,259.323L928.524,259.323l0.059-0.116l0.059,0.059L928.524,259.323z"/>
+ <path id="path2097" fill="#C0C0C0" d="M1026.315,259.265L1026.315,259.265l-0.646,0.058L1026.315,259.265z"/>
+ <path id="path2099" fill="#C0C0C0" d="M342.087,259.09L342.087,259.09l1.579,0.35L342.087,259.09z"/>
+ <path id="path2101" fill="#C0C0C0" d="M209.633,259.323L209.633,259.323l0.293,0.469L209.633,259.323z"/>
+ <path id="path2103" fill="#C0C0C0" d="M347.532,256.395L347.532,256.395l2.636-0.817l3.688,0.878l0.703,1.404l2.107-0.058
+ l2.928,2.458l-1.17,1.405l-4.333-0.938l-2.227,0.938l-4.392,0.587l-1.056-0.704l-4.625-0.117l-3.864-0.585l0.762-0.82l2.399,0.292
+ l4.334,0.178l-1.642-1.815l-2.225-2.46l2.285-0.703L347.532,256.395z"/>
+ <path id="path2105" fill="#C0C0C0" d="M928.582,259.265L928.582,259.265l0.354,0.703L928.582,259.265z"/>
+ <path id="path2107" fill="#C0C0C0" d="M1111.452,259.559L1111.452,259.559l0.119,0.116L1111.452,259.559z"/>
+ <path id="path2109" fill="#C0C0C0" d="M373.297,259.85L373.297,259.85l0.059-0.117l0.059,0.059L373.297,259.85z"/>
+ <path id="path2111" fill="#C0C0C0" d="M293.017,259.908L293.017,259.908l0.058-0.116L293.017,259.908z"/>
+ <path id="path2113" fill="#C0C0C0" d="M278.026,259.617L278.026,259.617l-1.055,0.527L278.026,259.617z"/>
+ <path id="path2115" fill="#C0C0C0" d="M340.329,260.203L340.329,260.203l0.233-0.059L340.329,260.203z"/>
+ <path id="path2117" fill="#C0C0C0" d="M292.781,260.496L292.781,260.496v0.292V260.496z"/>
+ <path id="path2119" fill="#C0C0C0" d="M372.478,260.905L372.478,260.905l0.058-0.117l0.06,0.06L372.478,260.905z"/>
+ <path id="path2121" fill="#C0C0C0" d="M371.891,261.138L371.891,261.138l0.06-0.117l0.06-0.117l0.175,0.06l0.059,0.058
+ l-0.059,0.175L371.891,261.138z"/>
+ <path id="path2123" fill="#C0C0C0" d="M372.184,261.138L372.184,261.138l0.059-0.117l0.06,0.06L372.184,261.138z"/>
+ <path id="path2125" fill="#C0C0C0" d="M371.188,261.197L371.188,261.197l0.059-0.116l0.06,0.058L371.188,261.197z"/>
+ <path id="path2127" fill="#C0C0C0" d="M196.398,261.138L196.398,261.138h0.175H196.398z"/>
+ <path id="path2129" fill="#C0C0C0" d="M363.283,261.022L363.283,261.022l0.701-0.468l5.153,0.995l-2.108,1.113L363.283,261.022z"/>
+ <path id="path2131" fill="#C0C0C0" d="M357.897,261.783L357.897,261.783l0.058-0.117l0.06,0.06L357.897,261.783z"/>
+ <path id="path2133" fill="#C0C0C0" d="M357.954,261.666L357.954,261.666l0.762,0.293L357.954,261.666z"/>
+ <path id="path2135" fill="#C0C0C0" d="M377.631,261.9L377.631,261.9l0.058-0.117l0.059,0.06L377.631,261.9z"/>
+ <path id="path2137" fill="#C0C0C0" d="M369.256,262.017L369.256,262.017l0.06-0.117l0.059,0.06L369.256,262.017z"/>
+ <path id="path2139" fill="#C0C0C0" d="M369.256,262.017L369.256,262.017l0.06-0.117l0.059,0.06L369.256,262.017z"/>
+ <path id="path2141" fill="#C0C0C0" d="M1111.864,261.783L1111.864,261.783l-0.232,0.41L1111.864,261.783z"/>
+ <path id="path2143" fill="#C0C0C0" d="M324.284,261.432L324.284,261.432l1.757-0.878L324.284,261.432z"/>
+ <path id="path2145" fill="#C0C0C0" d="M360.882,262.133L360.882,262.133l0.061-0.117l0.059,0.059L360.882,262.133z"/>
+ <path id="path2147" fill="#C0C0C0" d="M340.681,262.075L340.681,262.075l0.409,0.059L340.681,262.075z"/>
+ <path id="path2149" fill="#C0C0C0" d="M290.439,262.663L290.439,262.663l0.352-0.82L290.439,262.663z"/>
+ <path id="path2151" fill="#C0C0C0" d="M378.741,262.604L378.741,262.604l0.293,0.059L378.741,262.604z"/>
+ <path id="path2153" fill="#C0C0C0" d="M290.439,262.778L290.439,262.778l0.058-0.116l0.06,0.059L290.439,262.778z"/>
+ <path id="path2155" fill="#C0C0C0" d="M371.716,263.189L371.716,263.189l0.585,0.059L371.716,263.189z"/>
+ <path id="path2157" fill="#C0C0C0" d="M382.197,263.541L382.197,263.541l0.06-0.118l0.058,0.06L382.197,263.541z"/>
+ <path id="path2159" fill="#C0C0C0" d="M1112.039,263.774L1112.039,263.774l-0.117,0.059L1112.039,263.774z"/>
+ <path id="path2161" fill="#C0C0C0" d="M348.352,263.715L348.352,263.715l-0.058,0.117L348.352,263.715z"/>
+ <path id="path2163" fill="#C0C0C0" d="M796.54,263.95L796.54,263.95l-0.292,0.176L796.54,263.95z"/>
+ <path id="path2165" fill="#C0C0C0" d="M378.391,264.184L378.391,264.184l0.059-0.059L378.391,264.184z"/>
+ <path id="path2167" fill="#C0C0C0" d="M378.391,264.242L378.391,264.242l0.059-0.116l0.061,0.059L378.391,264.242z"/>
+ <path id="path2169" fill="#C0C0C0" d="M290.675,264.829L290.675,264.829l0.526-0.763L290.675,264.829z"/>
+ <path id="path2171" fill="#C0C0C0" d="M304.552,264.477L304.552,264.477l0.058-0.117L304.552,264.477z"/>
+ <path id="path2173" fill="#C0C0C0" d="M304.669,264.477L304.669,264.477l0.06-0.117L304.669,264.477z"/>
+ <path id="path2175" fill="#C0C0C0" d="M378.801,264.536L378.801,264.536l0.058-0.117l0.06,0.058L378.801,264.536z"/>
+ <path id="path2177" fill="#C0C0C0" d="M1111.98,264.829L1111.98,264.829l0.116-0.061L1111.98,264.829z"/>
+ <path id="path2179" fill="#C0C0C0" d="M290.675,264.887L290.675,264.887v-0.059V264.887z"/>
+ <path id="path2181" fill="#C0C0C0" d="M382.371,265.355L382.371,265.355l0.06-0.117l0.06,0.06L382.371,265.355z"/>
+ <path id="path2183" fill="#C0C0C0" d="M510.668,265.882L510.668,265.882l-0.059-0.353l1.229,0.059L510.668,265.882z"/>
+ <path id="path2185" fill="#C0C0C0" d="M746.591,265.94L746.591,265.94l0.059-0.117l0.06,0.06L746.591,265.94z"/>
+ <path id="path2187" fill="#C0C0C0" d="M993.991,266L993.991,266l0.117-0.06L993.991,266z"/>
+ <path id="path2189" fill="#C0C0C0" d="M993.816,266L993.816,266l0.116-0.06L993.816,266z"/>
+ <path id="path2191" fill="#C0C0C0" d="M994.284,266.175L994.284,266.175l0.058-0.118L994.284,266.175z"/>
+ <path id="path2193" fill="#C0C0C0" d="M746.708,265.882L746.708,265.882l0.47,0.82l-0.587-0.41L746.708,265.882z"/>
+ <path id="path2195" fill="#C0C0C0" d="M511.606,266.585L511.606,266.585l0.585-0.061L511.606,266.585z"/>
+ <path id="path2197" fill="#C0C0C0" d="M994.225,266.525L994.225,266.525l0.06-0.117L994.225,266.525z"/>
+ <path id="path2199" fill="#C0C0C0" d="M381.025,266.644L381.025,266.644l0.06-0.119l0.06,0.061L381.025,266.644z"/>
+ <path id="path2201" fill="#C0C0C0" d="M1268.675,266.877L1268.675,266.877l0.12-0.059L1268.675,266.877z"/>
+ <path id="path2203" fill="#C0C0C0" d="M746.3,266.292L746.3,266.292l0.408,0.293L746.3,266.292z"/>
+ <path id="path2205" fill="#C0C0C0" d="M518.866,266.585L518.866,266.585l0.178,0.702L518.866,266.585z"/>
+ <path id="path2207" fill="#C0C0C0" d="M1111.747,266.996L1111.747,266.996l0.059-0.119l0.059,0.059L1111.747,266.996z"/>
+ <path id="path2209" fill="#C0C0C0" d="M995.632,267.17L995.632,267.17l0.058-0.117l0.06,0.059L995.632,267.17z"/>
+ <path id="path2211" fill="#C0C0C0" d="M513.773,267.112L513.773,267.112l1.229,0.117L513.773,267.112z"/>
+ <path id="path2213" fill="#C0C0C0" d="M991.647,267.522L991.647,267.522l0.117-0.058L991.647,267.522z"/>
+ <path id="path2215" fill="#C0C0C0" d="M942.169,267.697L942.169,267.697l0.059-0.116l0.06,0.058L942.169,267.697z"/>
+ <path id="path2217" fill="#C0C0C0" d="M991.998,267.814L991.998,267.814l0.062-0.117L991.998,267.814z"/>
+ <path id="path2219" fill="#C0C0C0" d="M297.642,267.932L297.642,267.932l0.41-0.293L297.642,267.932z"/>
+ <path id="path2221" fill="#C0C0C0" d="M991.239,267.875L991.239,267.875l0.06-0.119L991.239,267.875z"/>
+ <path id="path2223" fill="#C0C0C0" d="M942.228,267.638L942.228,267.638l0.175,0.937L942.228,267.638z"/>
+ <path id="path2225" fill="#C0C0C0" d="M295.241,268.342L295.241,268.342l1.463-0.468L295.241,268.342z"/>
+ <path id="path2227" fill="#C0C0C0" d="M383.485,267.99L383.485,267.99l0.175-0.409L383.485,267.99z"/>
+ <path id="path2229" fill="#C0C0C0" d="M1111.335,268.048L1111.335,268.048l-0.059,0.058L1111.335,268.048z"/>
+ <path id="path2231" fill="#C0C0C0" d="M295.3,268.4L295.3,268.4v-0.058V268.4z"/>
+ <path id="path2233" fill="#C0C0C0" d="M382.665,269.22L382.665,269.22v-1.114V269.22z"/>
+ <path id="path2235" fill="#C0C0C0" d="M519.102,269.395L519.102,269.395v-0.82V269.395z"/>
+ <path id="path2237" fill="#C0C0C0" d="M294.012,269.044L294.012,269.044l0.352-0.06L294.012,269.044z"/>
+ <path id="path2239" fill="#C0C0C0" d="M992.177,269.278L992.177,269.278l0.058-0.118l0.06,0.061L992.177,269.278z"/>
+ <path id="path2241" fill="#C0C0C0" d="M932.155,268.575L932.155,268.575l-0.176,0.703l-0.762,0.176L932.155,268.575z"/>
+ <path id="path2243" fill="#C0C0C0" d="M519.102,269.454L519.102,269.454l0.06-0.116l0.059,0.058L519.102,269.454z"/>
+ <path id="path2245" fill="#C0C0C0" d="M932.741,269.63L932.741,269.63l0.059,0.059L932.741,269.63z"/>
+ <path id="path2247" fill="#C0C0C0" d="M990.241,270.215L990.241,270.215l0.063-0.116l0.059,0.058L990.241,270.215z"/>
+ <path id="path2249" fill="#C0C0C0" d="M740.093,270.8L740.093,270.8l1.053-0.175L740.093,270.8z"/>
+ <path id="path2251" fill="#C0C0C0" d="M1029.241,260.963L1029.241,260.963l-0.41,2.81l1.29,1.757l-1.171,3.045l-2.871,3.339
+ l1.992,4.565h1.229l-0.47-0.643l1.23-0.646l1.814,0.878l3.16,1.113l0.528,4.333l-0.995-0.997l0.762-0.468l-2.519-0.175
+ l-2.692-3.338l0.232,2.812l-2.984-2.753l-3.926,0.528l-0.175-1.465l1.406-1.171l-1.349-1.229l-0.408,1.698l-1.406-1.348
+ l-0.646-3.689l-0.408-1.641l1.403,0.997l0.703-0.702l-0.176-4.686l0.938-3.395l0.819-0.41L1029.241,260.963z"/>
+ <path id="path2253" fill="#C0C0C0" d="M942.694,270.977L942.694,270.977l0.06-0.118L942.694,270.977z"/>
+ <path id="path2255" fill="#C0C0C0" d="M383.659,270.684L383.659,270.684l0.704,0.41L383.659,270.684z"/>
+ <path id="path2257" fill="#C0C0C0" d="M518.047,271.855L518.047,271.855l-0.117,0.117L518.047,271.855z"/>
+ <path id="path2259" fill="#C0C0C0" d="M1111.922,272.03L1111.922,272.03l-0.47,0.526L1111.922,272.03z"/>
+ <path id="path2261" fill="#C0C0C0" d="M516.231,272.908L516.231,272.908l0.117-1.053L516.231,272.908z"/>
+ <path id="path2263" fill="#C0C0C0" d="M1028.071,272.792L1028.071,272.792h0.06H1028.071z"/>
+ <path id="path2265" fill="#C0C0C0" d="M1111.335,272.673L1111.335,272.673l0.059,0.352L1111.335,272.673z"/>
+ <path id="path2267" fill="#C0C0C0" d="M513.655,272.908L513.655,272.908l0.526-0.058L513.655,272.908z"/>
+ <path id="path2269" fill="#C0C0C0" d="M928.819,273.318L928.819,273.318l0.06-0.117L928.819,273.318z"/>
+ <path id="path2271" fill="#C0C0C0" d="M928.878,273.26L928.878,273.26v0.058V273.26z"/>
+ <path id="path2273" fill="#C0C0C0" d="M512.835,273.26L512.835,273.26l0.06,0.058L512.835,273.26z"/>
+ <path id="path2275" fill="#C0C0C0" d="M1028.13,272.733L1028.13,272.733l0.232,1.17L1028.13,272.733z"/>
+ <path id="path2277" fill="#C0C0C0" d="M384.598,273.377L384.598,273.377l1.113,0.352L384.598,273.377z"/>
+ <path id="path2279" fill="#C0C0C0" d="M1193.2,274.43L1193.2,274.43l0.059-0.117L1193.2,274.43z"/>
+ <path id="path2281" fill="#C0C0C0" d="M1024.263,274.84L1024.263,274.84l0.117-0.175L1024.263,274.84z"/>
+ <path id="path2283" fill="#C0C0C0" d="M1025.903,275.017L1025.903,275.017l-0.994-0.352L1025.903,275.017z"/>
+ <path id="path2285" fill="#C0C0C0" d="M308.71,275.133L308.71,275.133l0.175-0.175L308.71,275.133z"/>
+ <path id="path2287" fill="#C0C0C0" d="M308.71,275.133L308.71,275.133h0.059H308.71z"/>
+ <path id="path2289" fill="#C0C0C0" d="M943.223,275.778L943.223,275.778h0.06H943.223z"/>
+ <path id="path2291" fill="#C0C0C0" d="M943.223,275.778L943.223,275.778l0.06,0.176L943.223,275.778z"/>
+ <path id="path2293" fill="#C0C0C0" d="M1110.049,275.778L1110.049,275.778l-0.528,0.233L1110.049,275.778z"/>
+ <path id="path2295" fill="#C0C0C0" d="M927.646,276.012L927.646,276.012l0.06-0.117l0.059,0.06L927.646,276.012z"/>
+ <path id="path2297" fill="#C0C0C0" d="M1028.071,275.661L1028.071,275.661l0.816,0.762L1028.071,275.661z"/>
+ <path id="path2299" fill="#C0C0C0" d="M943.573,276.715L943.573,276.715l0.059-0.118l0.059,0.06L943.573,276.715z"/>
+ <path id="path2301" fill="#C0C0C0" d="M385.535,277.417L385.535,277.417l-0.234-1.055L385.535,277.417z"/>
+ <path id="path2303" fill="#C0C0C0" d="M943.631,276.948L943.631,276.948l0.059-0.115L943.631,276.948z"/>
+ <path id="path2305" fill="#C0C0C0" d="M1036.093,276.248L1036.093,276.248l0.643,1.347L1036.093,276.248z"/>
+ <path id="path2307" fill="#C0C0C0" d="M1021.687,276.948L1021.687,276.948l0.528,0.588L1021.687,276.948z"/>
+ <path id="path2309" fill="#C0C0C0" d="M926.417,277.71L926.417,277.71l0.059-0.116l0.059,0.058L926.417,277.71z"/>
+ <path id="path2311" fill="#C0C0C0" d="M1027.776,278.004L1027.776,278.004h0.06H1027.776z"/>
+ <path id="path2313" fill="#C0C0C0" d="M930.81,278.415L930.81,278.415l0.059-0.119L930.81,278.415z"/>
+ <path id="path2315" fill="#C0C0C0" d="M1108.642,277.71L1108.642,277.71l-0.523,1.347L1108.642,277.71z"/>
+ <path id="path2317" fill="#C0C0C0" d="M1027.835,278.004L1027.835,278.004l0.878,0.643L1027.835,278.004z"/>
+ <path id="path2319" fill="#C0C0C0" d="M313.804,278.647L313.804,278.647v0.117V278.647z"/>
+ <path id="path2321" fill="#C0C0C0" d="M291.903,278.882L291.903,278.882l-0.232-0.118L291.903,278.882z"/>
+ <path id="path2323" fill="#C0C0C0" d="M291.67,279.057L291.67,279.057L291.61,279L291.67,279.057z"/>
+ <path id="path2325" fill="#C0C0C0" d="M390.57,279.76L390.57,279.76l-0.525-0.938l0.819,0.704L390.57,279.76z"/>
+ <path id="path2327" fill="#C0C0C0" d="M953.763,279.408L953.763,279.408l0.059-0.115L953.763,279.408z"/>
+ <path id="path2329" fill="#C0C0C0" d="M384.716,279.525L384.716,279.525l0.059-0.117l0.058,0.06L384.716,279.525z"/>
+ <path id="path2331" fill="#C0C0C0" d="M384.716,279.525L384.716,279.525l0.059-0.117l0.058,0.06L384.716,279.525z"/>
+ <path id="path2333" fill="#C0C0C0" d="M944.921,280.052L944.921,280.052l-0.175-0.82L944.921,280.052z"/>
+ <path id="path2335" fill="#C0C0C0" d="M944.862,280.11L944.862,280.11l0.06-0.115l0.059,0.058L944.862,280.11z"/>
+ <path id="path2337" fill="#C0C0C0" d="M925.423,280.052L925.423,280.052v0.058V280.052z"/>
+ <path id="path2339" fill="#C0C0C0" d="M925.423,280.11L925.423,280.11h-0.06H925.423z"/>
+ <path id="path2341" fill="#C0C0C0" d="M953.293,280.17L953.293,280.17l0.12-0.061L953.293,280.17z"/>
+ <path id="path2343" fill="#C0C0C0" d="M1031.76,279.408L1031.76,279.408l0.583,0.82l-0.758-0.468L1031.76,279.408z"/>
+ <path id="path2345" fill="#C0C0C0" d="M925.714,280.288L925.714,280.288h0.232H925.714z"/>
+ <path id="path2347" fill="#C0C0C0" d="M925.714,280.288L925.714,280.288h0.232H925.714z"/>
+ <path id="path2349" fill="#C0C0C0" d="M925.423,280.052L925.423,280.052l-0.18,0.587L925.423,280.052z"/>
+ <path id="path2351" fill="#C0C0C0" d="M925.655,280.345L925.655,280.345h0.293H925.655z"/>
+ <path id="path2353" fill="#C0C0C0" d="M1022.507,278.121L1022.507,278.121l4.158,1.404l-1.523,3.104L1022.507,278.121z"/>
+ <path id="path2355" fill="#C0C0C0" d="M943.339,280.755L943.339,280.755l0.059-0.176L943.339,280.755z"/>
+ <path id="path2357" fill="#C0C0C0" d="M1033.983,281.224L1033.983,281.224l0.116-0.059L1033.983,281.224z"/>
+ <path id="path2359" fill="#C0C0C0" d="M353.505,281.34L353.505,281.34l0.059-0.117l0.059,0.058L353.505,281.34z"/>
+ <path id="path2361" fill="#C0C0C0" d="M1029.184,281.34L1029.184,281.34v0.058V281.34z"/>
+ <path id="path2363" fill="#C0C0C0" d="M943.397,281.517L943.397,281.517l0.06-0.06L943.397,281.517z"/>
+ <path id="path2365" fill="#C0C0C0" d="M383.779,281.633L383.779,281.633l0.116-0.293h0.117v0.293H383.779z"/>
+ <path id="path2367" fill="#C0C0C0" d="M312.634,281.399L312.634,281.399l-0.119,0.235L312.634,281.399z"/>
+ <path id="path2369" fill="#C0C0C0" d="M1029.241,281.34L1029.241,281.34l-0.058,0.41l-0.059-0.293L1029.241,281.34z"/>
+ <path id="path2371" fill="#C0C0C0" d="M944.745,281.692L944.745,281.692l0.233-0.059L944.745,281.692z"/>
+ <path id="path2373" fill="#C0C0C0" d="M926.593,278.062L926.593,278.062L926.65,279l-0.116,0.702l-0.646,0.527l-0.466,4.978
+ l-0.762-1.23l0.523-1.288l0.587-3.923L926.593,278.062z"/>
+ <path id="path2375" fill="#C0C0C0" d="M353.505,281.224L353.505,281.224l0.644,0.762L353.505,281.224z"/>
+ <path id="path2377" fill="#C0C0C0" d="M944.745,281.692L944.745,281.692h-0.058H944.745z"/>
+ <path id="path2379" fill="#C0C0C0" d="M945.036,282.161L945.036,282.161l0.06-0.527L945.036,282.161z"/>
+ <path id="path2381" fill="#C0C0C0" d="M786.994,281.517L786.994,281.517l4.101,0.059L786.994,281.517z"/>
+ <path id="path2383" fill="#C0C0C0" d="M1034.042,281.166L1034.042,281.166l-0.233,0.059L1034.042,281.166z"/>
+ <path id="path2385" fill="#C0C0C0" d="M945.565,281.985L945.565,281.985h0.176H945.565z"/>
+ <path id="path2387" fill="#C0C0C0" d="M1030.411,281.867L1030.411,281.867l0.059-0.116l0.059,0.059L1030.411,281.867z"/>
+ <path id="path2389" fill="#C0C0C0" d="M1028.713,281.166L1028.713,281.166h0.059H1028.713z"/>
+ <path id="path2391" fill="#C0C0C0" d="M946.091,282.161L946.091,282.161v-0.06V282.161z"/>
+ <path id="path2393" fill="#C0C0C0" d="M946.091,282.161L946.091,282.161v-0.06V282.161z"/>
+ <path id="path2395" fill="#C0C0C0" d="M1030.528,281.75L1030.528,281.75l0.116,0.468L1030.528,281.75z"/>
+ <path id="path2397" fill="#C0C0C0" d="M943.866,282.455L943.866,282.455v-0.06V282.455z"/>
+ <path id="path2399" fill="#C0C0C0" d="M944.979,282.218L944.979,282.218v-0.059V282.218z"/>
+ <path id="path2401" fill="#C0C0C0" d="M925.598,282.395L925.598,282.395h0.291H925.598z"/>
+ <path id="path2403" fill="#C0C0C0" d="M925.539,282.395L925.539,282.395h0.35H925.539z"/>
+ <path id="path2405" fill="#C0C0C0" d="M925.598,282.395L925.598,282.395h0.291H925.598z"/>
+ <path id="path2407" fill="#C0C0C0" d="M958.8,282.455L958.8,282.455l0.058-0.119L958.8,282.455z"/>
+ <path id="path2409" fill="#C0C0C0" d="M929.344,282.57L929.344,282.57l0.059-0.116l0.06,0.058L929.344,282.57z"/>
+ <path id="path2411" fill="#C0C0C0" d="M944.159,282.863L944.159,282.863l-0.117-0.176L944.159,282.863z"/>
+ <path id="path2413" fill="#C0C0C0" d="M356.666,282.102L356.666,282.102l1.055,1.112L356.666,282.102z"/>
+ <path id="path2415" fill="#C0C0C0" d="M383.134,282.746L383.134,282.746l0.059-0.117l0.06,0.059L383.134,282.746z"/>
+ <path id="path2417" fill="#C0C0C0" d="M782.661,282.629L782.661,282.629l1.054,0.117L782.661,282.629z"/>
+ <path id="path2419" fill="#C0C0C0" d="M307.771,282.863L307.771,282.863l0.061-0.117L307.771,282.863z"/>
+ <path id="path2421" fill="#C0C0C0" d="M944.159,282.863L944.159,282.863h-0.06H944.159z"/>
+ <path id="path2423" fill="#C0C0C0" d="M359.36,282.395L359.36,282.395l0.526,0.938l-0.585-0.878L359.36,282.395z"/>
+ <path id="path2425" fill="#C0C0C0" d="M1032.696,281.399L1032.696,281.399l2.812,2.987L1032.696,281.399z"/>
+ <path id="path2427" fill="#C0C0C0" d="M1020.866,282.335L1020.866,282.335l1.523,0.819L1020.866,282.335z"/>
+ <path id="path2429" fill="#C0C0C0" d="M926.768,283.04L926.768,283.04l0.058-0.117l0.06,0.058L926.768,283.04z"/>
+ <path id="path2431" fill="#C0C0C0" d="M925.539,282.805L925.539,282.805l-0.06,0.408L925.539,282.805z"/>
+ <path id="path2433" fill="#C0C0C0" d="M925.48,282.863L925.48,282.863v0.351V282.863z"/>
+ <path id="path2435" fill="#C0C0C0" d="M959.091,282.98L959.091,282.98l0.292,0.293L959.091,282.98z"/>
+ <path id="path2437" fill="#C0C0C0" d="M945.565,283.8L945.565,283.8l-0.119-0.704L945.565,283.8z"/>
+ <path id="path2439" fill="#C0C0C0" d="M926.417,283.39L926.417,283.39l0.176,0.41L926.417,283.39z"/>
+ <path id="path2441" fill="#C0C0C0" d="M944.745,283.684L944.745,283.684h0.116H944.745z"/>
+ <path id="path2443" fill="#C0C0C0" d="M945.565,283.858L945.565,283.858l-0.058-0.058L945.565,283.858z"/>
+ <path id="path2445" fill="#C0C0C0" d="M944.804,283.917L944.804,283.917V283.8V283.917z"/>
+ <path id="path2447" fill="#C0C0C0" d="M942.694,283.975L942.694,283.975h0.06H942.694z"/>
+ <path id="path2449" fill="#C0C0C0" d="M372.594,283.8L372.594,283.8l0.234,0.175L372.594,283.8z"/>
+ <path id="path2451" fill="#C0C0C0" d="M543.46,283.858L543.46,283.858l-0.175,0.41L543.46,283.858z"/>
+ <path id="path2453" fill="#C0C0C0" d="M1036.327,281.399L1036.327,281.399l3.396,0.293l0.703,3.162l1.053,1.992l-3.338-3.104
+ L1036.327,281.399z"/>
+ <path id="path2455" fill="#C0C0C0" d="M367.03,284.092L367.03,284.092l0.294-0.06L367.03,284.092z"/>
+ <path id="path2457" fill="#C0C0C0" d="M365.567,284.092L365.567,284.092l0.116,0.118L365.567,284.092z"/>
+ <path id="path2459" fill="#C0C0C0" d="M941.993,284.269L941.993,284.269l0.06-0.117L941.993,284.269z"/>
+ <path id="path2461" fill="#C0C0C0" d="M944.101,284.679L944.101,284.679v-0.469V284.679z"/>
+ <path id="path2463" fill="#C0C0C0" d="M1180.2,284.562L1180.2,284.562l0.059-0.119L1180.2,284.562z"/>
+ <path id="path2465" fill="#C0C0C0" d="M855.038,284.562L855.038,284.562l0.117-0.06L855.038,284.562z"/>
+ <path id="path2467" fill="#C0C0C0" d="M944.101,284.679L944.101,284.679v-0.059V284.679z"/>
+ <path id="path2469" fill="#C0C0C0" d="M945.388,284.854L945.388,284.854l-0.175-0.644L945.388,284.854z"/>
+ <path id="path2471" fill="#C0C0C0" d="M959.97,284.328L959.97,284.328l0.116,0.644L959.97,284.328z"/>
+ <path id="path2473" fill="#C0C0C0" d="M944.101,284.679L944.101,284.679h-0.059H944.101z"/>
+ <path id="path2475" fill="#C0C0C0" d="M1181.077,284.795L1181.077,284.795l0.059-0.116L1181.077,284.795z"/>
+ <path id="path2477" fill="#C0C0C0" d="M944.509,285.38L944.509,285.38l0.179-0.351L944.509,285.38z"/>
+ <path id="path2479" fill="#C0C0C0" d="M945.271,284.913L945.271,284.913l0.06-0.117l0.059,0.059L945.271,284.913z"/>
+ <path id="path2481" fill="#C0C0C0" d="M853.161,284.913L853.161,284.913l0.121-0.059L853.161,284.913z"/>
+ <path id="path2483" fill="#C0C0C0" d="M545.275,284.737L545.275,284.737l-0.585,0.41L545.275,284.737z"/>
+ <path id="path2485" fill="#C0C0C0" d="M298.93,284.913L298.93,284.913v0.059V284.913z"/>
+ <path id="path2487" fill="#C0C0C0" d="M923.841,284.913L923.841,284.913l-0.175,0.177L923.841,284.913z"/>
+ <path id="path2489" fill="#C0C0C0" d="M542.582,284.97L542.582,284.97l-0.645,0.293L542.582,284.97z"/>
+ <path id="path2491" fill="#C0C0C0" d="M543.637,284.854L543.637,284.854l-0.352,0.646L543.637,284.854z"/>
+ <path id="path2493" fill="#C0C0C0" d="M856.034,285.264L856.034,285.264l0.059-0.117l0.059,0.059L856.034,285.264z"/>
+ <path id="path2495" fill="#C0C0C0" d="M298.871,284.913L298.871,284.913l0.293,0.645L298.871,284.913z"/>
+ <path id="path2497" fill="#C0C0C0" d="M1020.75,285.147L1020.75,285.147l-0.06,0.468L1020.75,285.147z"/>
+ <path id="path2499" fill="#C0C0C0" d="M925.243,285.322L925.243,285.322l-0.291,0.293L925.243,285.322z"/>
+ <path id="path2501" fill="#C0C0C0" d="M1188.104,285.615L1188.104,285.615l0.06-0.116L1188.104,285.615z"/>
+ <path id="path2503" fill="#C0C0C0" d="M1169.834,285.791L1169.834,285.791l0.116-0.059L1169.834,285.791z"/>
+ <path id="path2505" fill="#C0C0C0" d="M961.609,285.557L961.609,285.557h-0.175l0.116-0.058L961.609,285.557z"/>
+ <path id="path2507" fill="#C0C0C0" d="M1034.395,285.967L1034.395,285.967h0.06H1034.395z"/>
+ <path id="path2509" fill="#C0C0C0" d="M542.875,286.084L542.875,286.084l-0.469,0.058L542.875,286.084z"/>
+ <path id="path2511" fill="#C0C0C0" d="M944.804,286.2L944.804,286.2v-0.059V286.2z"/>
+ <path id="path2513" fill="#C0C0C0" d="M386.94,285.732L386.94,285.732v0.293V285.732z"/>
+ <path id="path2515" fill="#C0C0C0" d="M855.271,286.2L855.271,286.2l0.06-0.116l0.059,0.058L855.271,286.2z"/>
+ <path id="path2517" fill="#C0C0C0" d="M1196.301,286.2L1196.301,286.2l0.059-0.116L1196.301,286.2z"/>
+ <path id="path2519" fill="#C0C0C0" d="M544.573,285.909L544.573,285.909l-0.352,0.469L544.573,285.909z"/>
+ <path id="path2521" fill="#C0C0C0" d="M944.804,286.2L944.804,286.2v-0.059V286.2z"/>
+ <path id="path2523" fill="#C0C0C0" d="M852.929,286.258L852.929,286.258l0.116-0.059L852.929,286.258z"/>
+ <path id="path2525" fill="#C0C0C0" d="M1034.395,285.967L1034.395,285.967l0.233,0.468L1034.395,285.967z"/>
+ <path id="path2527" fill="#C0C0C0" d="M1028.363,283.8L1028.363,283.8l3.979,1.521l-1.521,2.344l-2.813,1.289L1028.363,283.8z"/>
+ <path id="path2529" fill="#C0C0C0" d="M1185.702,286.495L1185.702,286.495l0.059-0.117L1185.702,286.495z"/>
+ <path id="path2531" fill="#C0C0C0" d="M543.46,286.258L543.46,286.258l-0.293,0.119L543.46,286.258z"/>
+ <path id="path2533" fill="#C0C0C0" d="M543.577,286.258L543.577,286.258l0.177,0.234L543.577,286.258z"/>
+ <path id="path2535" fill="#C0C0C0" d="M855.155,286.61L855.155,286.61l0.06-0.117L855.155,286.61z"/>
+ <path id="path2537" fill="#C0C0C0" d="M543.167,286.258L543.167,286.258v0.587V286.258z"/>
+ <path id="path2539" fill="#C0C0C0" d="M373.589,286.727L373.589,286.727l0.997,0.293l-0.88,0.117L373.589,286.727z"/>
+ <path id="path2541" fill="#C0C0C0" d="M945.624,286.962L945.624,286.962l-0.06,0.058L945.624,286.962z"/>
+ <path id="path2543" fill="#C0C0C0" d="M945.388,287.08L945.388,287.08l0.12-0.06L945.388,287.08z"/>
+ <path id="path2545" fill="#C0C0C0" d="M853.573,287.197L853.573,287.197l0.06-0.117L853.573,287.197z"/>
+ <path id="path2547" fill="#C0C0C0" d="M370.018,287.08L370.018,287.08l-0.117,0.058L370.018,287.08z"/>
+ <path id="path2549" fill="#C0C0C0" d="M943.514,287.373L943.514,287.373l0.117,0.058L943.514,287.373z"/>
+ <path id="path2551" fill="#C0C0C0" d="M853.22,287.488L853.22,287.488l0.063-0.115L853.22,287.488z"/>
+ <path id="path2553" fill="#C0C0C0" d="M945.683,287.547L945.683,287.547l-0.059-0.175L945.683,287.547z"/>
+ <path id="path2555" fill="#C0C0C0" d="M944.921,287.899L944.921,287.899l-0.06,0.117L944.921,287.899z"/>
+ <path id="path2557" fill="#C0C0C0" d="M858.373,287.666L858.373,287.666l0.059-0.118l0.06,0.058L858.373,287.666z"/>
+ <path id="path2559" fill="#C0C0C0" d="M1036.502,285.088L1036.502,285.088l2.227,0.526L1036.502,285.088z"/>
+ <path id="path2561" fill="#C0C0C0" d="M854.452,287.782L854.452,287.782l0.115-0.058L854.452,287.782z"/>
+ <path id="path2563" fill="#C0C0C0" d="M924.777,287.724L924.777,287.724v0.058V287.724z"/>
+ <path id="path2565" fill="#C0C0C0" d="M374.819,287.666L374.819,287.666l0.293,0.232L374.819,287.666z"/>
+ <path id="path2567" fill="#C0C0C0" d="M944.862,288.015L944.862,288.015l0.06-0.117l0.059,0.06L944.862,288.015z"/>
+ <path id="path2569" fill="#C0C0C0" d="M924.836,287.724L924.836,287.724l-0.233,0.938L924.836,287.724z"/>
+ <path id="path2571" fill="#C0C0C0" d="M974.668,288.25L974.668,288.25l0.058-0.116l0.059,0.058L974.668,288.25z"/>
+ <path id="path2573" fill="#C0C0C0" d="M1020.691,288.25L1020.691,288.25l0.06,0.059L1020.691,288.25z"/>
+ <path id="path2575" fill="#C0C0C0" d="M1030.707,287.899L1030.707,287.899l-0.587,1.113L1030.707,287.899z"/>
+ <path id="path2577" fill="#C0C0C0" d="M854.802,288.544L854.802,288.544l0.059-0.118l0.059,0.058L854.802,288.544z"/>
+ <path id="path2579" fill="#C0C0C0" d="M982.336,288.544L982.336,288.544h0.062H982.336z"/>
+ <path id="path2581" fill="#C0C0C0" d="M1020.75,288.25L1020.75,288.25l0.47,0.352L1020.75,288.25z"/>
+ <path id="path2583" fill="#C0C0C0" d="M974.726,288.134L974.726,288.134l0.352,0.878L974.726,288.134z"/>
+ <path id="path2585" fill="#C0C0C0" d="M982.336,288.544L982.336,288.544l0.12,0.117L982.336,288.544z"/>
+ <path id="path2587" fill="#C0C0C0" d="M944.745,288.661L944.745,288.661l-0.179,0.116l0.12-0.175L944.745,288.661z"/>
+ <path id="path2589" fill="#C0C0C0" d="M1196.651,288.955L1196.651,288.955l0.063-0.119L1196.651,288.955z"/>
+ <path id="path2591" fill="#C0C0C0" d="M943.751,288.955L943.751,288.955l-0.12,0.116l0.059-0.116H943.751z"/>
+ <path id="path2593" fill="#C0C0C0" d="M943.751,288.955L943.751,288.955h-0.063H943.751z"/>
+ <path id="path2595" fill="#C0C0C0" d="M385.007,287.605L385.007,287.605h0.646H385.007z"/>
+ <path id="path2597" fill="#C0C0C0" d="M1035.507,286.2L1035.507,286.2l-0.176,2.929L1035.507,286.2z"/>
+ <path id="path2599" fill="#C0C0C0" d="M215.84,289.54L215.84,289.54l0.058-0.117l0.059,0.059L215.84,289.54z"/>
+ <path id="path2601" fill="#C0C0C0" d="M965.064,288.894L965.064,288.894l0.06,1.465l-0.646-1.112l0.587-0.292V288.894z"/>
+ <path id="path2603" fill="#C0C0C0" d="M1041.127,288.955L1041.127,288.955l0.12,1.228l-0.237-1.288L1041.127,288.955z"/>
+ <path id="path2605" fill="#C0C0C0" d="M858.373,290.007L858.373,290.007l0.059-0.117L858.373,290.007z"/>
+ <path id="path2607" fill="#C0C0C0" d="M853.632,290.066L853.632,290.066l0.059-0.117l0.059,0.059L853.632,290.066z"/>
+ <path id="path2609" fill="#C0C0C0" d="M944.745,289.89L944.745,289.89l-0.179,0.468L944.745,289.89z"/>
+ <path id="path2611" fill="#C0C0C0" d="M858.315,290.24L858.315,290.24l0.059-0.116L858.315,290.24z"/>
+ <path id="path2613" fill="#C0C0C0" d="M853.515,290.358L853.515,290.358l0.059-0.118L853.515,290.358z"/>
+ <path id="path2615" fill="#C0C0C0" d="M1033.634,287.373L1033.634,287.373l-1.35,3.63l0.236,2.635l-2.872-2.577l1.642-0.82
+ L1033.634,287.373z"/>
+ <path id="path2617" fill="#C0C0C0" d="M944.921,290.475L944.921,290.475l-0.528,0.585L944.921,290.475z"/>
+ <path id="path2619" fill="#C0C0C0" d="M1042.649,290.417L1042.649,290.417l0.233,0.702L1042.649,290.417z"/>
+ <path id="path2621" fill="#C0C0C0" d="M973.553,290.711L973.553,290.711v0.058V290.711z"/>
+ <path id="path2623" fill="#C0C0C0" d="M1036.793,290.125L1036.793,290.125l-2.224,1.229L1036.793,290.125z"/>
+ <path id="path2625" fill="#C0C0C0" d="M1019.521,285.557L1019.521,285.557l0.703,3.162l-3.396,2.05l-0.879,2.167l-1.698,1.463
+ l-2.931,1.933l1.641-2.518l1.29-0.645l0.407-0.353l3.048-3.747l0.938-0.352L1019.521,285.557z"/>
+ <path id="path2627" fill="#C0C0C0" d="M944.159,291.179L944.159,291.179l-0.117,0.058L944.159,291.179z"/>
+ <path id="path2629" fill="#C0C0C0" d="M944.159,291.179L944.159,291.179h-0.06H944.159z"/>
+ <path id="path2631" fill="#C0C0C0" d="M944.101,291.179L944.101,291.179v0.058V291.179z"/>
+ <path id="path2633" fill="#C0C0C0" d="M951.069,291.179L951.069,291.179v0.058V291.179z"/>
+ <path id="path2635" fill="#C0C0C0" d="M945.388,291.296L945.388,291.296v0.058V291.296z"/>
+ <path id="path2637" fill="#C0C0C0" d="M945.388,291.296L945.388,291.296v0.117V291.296z"/>
+ <path id="path2639" fill="#C0C0C0" d="M951.069,291.179L951.069,291.179l0.176,0.468L951.069,291.179z"/>
+ <path id="path2641" fill="#C0C0C0" d="M1001.368,291.588L1001.368,291.588l0.115-0.061L1001.368,291.588z"/>
+ <path id="path2643" fill="#C0C0C0" d="M880.273,291.296L880.273,291.296l0.354,0.525L880.273,291.296z"/>
+ <path id="path2645" fill="#C0C0C0" d="M1197.296,291.822L1197.296,291.822l0.117-0.058L1197.296,291.822z"/>
+ <path id="path2647" fill="#C0C0C0" d="M949.78,291.822L949.78,291.822h0.059H949.78z"/>
+ <path id="path2649" fill="#C0C0C0" d="M949.78,291.88L949.78,291.88l0.059-0.117L949.78,291.88z"/>
+ <path id="path2651" fill="#C0C0C0" d="M868.034,291.588L868.034,291.588l0.06,0.059L868.034,291.588z"/>
+ <path id="path2653" fill="#C0C0C0" d="M1197.649,292.057L1197.649,292.057l0.06-0.119L1197.649,292.057z"/>
+ <path id="path2655" fill="#C0C0C0" d="M949.899,292.115L949.899,292.115v-0.058V292.115z"/>
+ <path id="path2657" fill="#C0C0C0" d="M951.186,292.057L951.186,292.057v0.058V292.057z"/>
+ <path id="path2659" fill="#C0C0C0" d="M949.899,292.115L949.899,292.115v0.059V292.115z"/>
+ <path id="path2661" fill="#C0C0C0" d="M879.57,292.115L879.57,292.115l-0.116,0.117v-0.175L879.57,292.115z"/>
+ <path id="path2663" fill="#C0C0C0" d="M1085.164,291.939L1085.164,291.939l-0.063,0.119L1085.164,291.939z"/>
+ <path id="path2665" fill="#C0C0C0" d="M951.243,292.057L951.243,292.057l-0.232,0.468L951.243,292.057z"/>
+ <path id="path2667" fill="#C0C0C0" d="M943.514,292.349L943.514,292.349l-0.058,0.118L943.514,292.349z"/>
+ <path id="path2669" fill="#C0C0C0" d="M943.397,292.584L943.397,292.584l0.06-0.117L943.397,292.584z"/>
+ <path id="path2671" fill="#C0C0C0" d="M1005.114,292.584L1005.114,292.584l0.06-0.117L1005.114,292.584z"/>
+ <path id="path2673" fill="#C0C0C0" d="M310.582,292.467L310.582,292.467l0.117,0.35L310.582,292.467z"/>
+ <path id="path2675" fill="#C0C0C0" d="M1188.046,292.642L1188.046,292.642l0.059,0.233L1188.046,292.642z"/>
+ <path id="path2677" fill="#C0C0C0" d="M310.759,292.759L310.759,292.759h0.058H310.759z"/>
+ <path id="path2679" fill="#C0C0C0" d="M310.759,292.759L310.759,292.759v0.058V292.759z"/>
+ <path id="path2681" fill="#C0C0C0" d="M310.877,292.759L310.877,292.759v0.058V292.759z"/>
+ <path id="path2683" fill="#C0C0C0" d="M1185.645,292.875L1185.645,292.875l0.06-0.116L1185.645,292.875z"/>
+ <path id="path2685" fill="#C0C0C0" d="M310.759,292.759L310.759,292.759h0.058H310.759z"/>
+ <path id="path2687" fill="#C0C0C0" d="M1033.983,292.995L1033.983,292.995h0.06H1033.983z"/>
+ <path id="path2689" fill="#C0C0C0" d="M318.84,293.052L318.84,293.052v-0.117V293.052z"/>
+ <path id="path2691" fill="#C0C0C0" d="M318.84,293.052L318.84,293.052v-0.117V293.052z"/>
+ <path id="path2693" fill="#C0C0C0" d="M1181.136,293.286L1181.136,293.286l0.059-0.117L1181.136,293.286z"/>
+ <path id="path2695" fill="#C0C0C0" d="M925.598,293.169L925.598,293.169l-0.175,0.352L925.598,293.169z"/>
+ <path id="path2697" fill="#C0C0C0" d="M1034.042,292.995L1034.042,292.995l-0.176,0.643L1034.042,292.995z"/>
+ <path id="path2699" fill="#C0C0C0" d="M1037.909,293.169L1037.909,293.169l0.115,0.585L1037.909,293.169z"/>
+ <path id="path2701" fill="#C0C0C0" d="M945.096,293.695L945.096,293.695l-0.06,0.059L945.096,293.695z"/>
+ <path id="path2703" fill="#C0C0C0" d="M327.799,295.161L327.799,295.161l2.166,2.635l-0.703-2.226l2.225-1.347l2.402-1.817
+ l0.352-2.574l2.342-3.338l2.051,0.468l-1.113,0.41l0.762,0.468l0.82-2.108l3.045,0.177l3.63-2.05l3.278,0.117l-2.283,1.055
+ l1.347,2.928l-1.932,3.162l1.757,2.694l1.989-0.938l0.119-1.405l-1.935-3.805h0.528l-0.235-0.586l2.283-0.82l3.69-0.818
+ l-0.763-2.694l1.348,2.576l4.333,0.938l0.352,1.817l0.469,0.644l1.055,0.175l0.233-0.175l2.167-0.175l3.337-0.353l4.04,2.167
+ l4.979-1.582l-2.108-0.643l0.293,0.116l0.176,0.059l0.294-0.117l0.468,0.059l0.232-0.059l0.116-0.234l0.177,0.177l0.82,0.116
+ l0.353-0.116h0.116l0.526-0.059l4.918-0.235l-3.746,0.762l-0.294,0.938l0.762-0.468l0.585,0.994l0.117-0.409l0.938,1.872
+ l5.152,0.938l-2.692,3.043l2.05,0.235l3.688-0.117l0.82,0.41l2.226,1.347l2.226,2.342l-0.702,3.455l1.287-1.814l3.923,2.635
+ l-0.175,2.342l0.995-1.815l3.748,1.172l0.175-0.997l2.577,0.468l3.339,1.64l4.333-0.352l2.283,1.816l2.108,3.161l0.407-0.702
+ l0.471,1.055l-0.353-1.64l1.58,1.757l0.235,2.692l0.878,3.808l3.104,3.104l-3.104,3.455l-1.991,0.938l-2.106,4.391l-2.754,0.936
+ l1.815,0.293l0.177-0.176l4.566-2.518l0.468,3.045h4.569l-0.938,3.162l2.636-3.162l1.814-0.41l-0.234-1.229l1.348-2.109h4.508
+ l0.762,0.527l-0.526,0.527l2.051-0.354l-0.353,0.938l1.054-0.35l0.526,0.879l4.274,1.463l0.353,1.053l-0.995,4.393l1.347-1.639
+ l0.41-1.23l0.878-0.234l-0.587,1.582l2.987-1.758l3.923,1.641l1.405-0.352l2.108,0.994l4.332-0.584l0.995,0.584l4.393,2.402
+ l1.465,1.814l3.104,2.518l2.167,0.703l3.981,0.293l1.111,2.693l0.938,3.514l-0.351,4.803l-1.288,2.926l-2.285,1.465l0.528,0.469
+ l-2.051,2.637l-3.161,1.871l0.469,0.646l-0.763,0.818l-0.352-0.232l0.293,0.293l-2.693,4.508h-2.693l-0.234,3.572h-0.586
+ l0.82,0.584l-0.528,2.578l0.703,4.217l-1.171,4.566l0.234,1.873l-1.814,1.934l-0.527,4.918l-0.762,0.41l-0.703,1.699l-2.635,3.512
+ v2.637l-2.811,1.287l-0.938,1.99l-3.513,0.232l-0.177-1.111l-0.292,0.938h-2.051h-2.342l-0.997,0.645l0.704,0.645l-3.221,1.113
+ v0.762l-3.396,0.115v0.586l-0.059-0.059l-0.293,0.059l-1.464,0.762l-3.981,2.693l-2.519,1.172l1.347,0.82l-1.404,0.994l0.293,1.348
+ l-0.409-0.645l1.111,3.863l-0.938,4.803l-3.514,2.928l-1.054,1.641l-0.938,2.225l-1.99,2.693l-2.05,1.697l-2.108,1.58l-0.058-1.17
+ l2.928-1.287l2.4-3.572l-2.518-1.523l0.059,2.754l-0.353-0.527l-0.293,1.521l-1.814,0.881l-0.994,1.813l-1.348,4.508l-2.576,2.109
+ l-1.758,2.459l-3.807,1.934l-2.635-0.762l-4.86-0.938h-2.635l-2.106-2.342l0.818-4.859l0.177,2.105l-1.289,4.92l0.117,0.117
+ l0.058,0.234l4.512,2.691l-0.703,2.285l2.518,3.277l-2.87,3.279l-0.352,1.055l-2.576,1.229l-1.405,0.355l-3.747,0.877l-3.688,0.469
+ l-2.518,0.176l-2.929-0.762l1.288,2.049l-0.994,5.037l-3.865,1.229h-1.404l-3.808-1.17l-0.878,0.059l0.409,4.391l1.99,1.23
+ l3.045,0.586l-4.859,0.174l2.344,1.172l-3.573,2.283l-0.995,4.803l-4.743,0.82l-2.226,2.635l0.819,2.166l2.227,1.463l3.455,1.23
+ l-0.527,1.346l-1.757,0.355l1.641-0.236l0.06,1.055l-4.159,1.875l-1.757,1.463l-0.761,3.045l-4.273,0.352l2.283,0.469l-3.688,3.279
+ l0.82-0.41l0.76,2.109l1.875,2.867l-3.514-0.469l-0.819,0.996l-4.159,0.645l-4.508,2.342l3.571-1.873l-5.035,0.762l-2.343,0.584
+ l1.813,0.234l4.334-2.342l-4.859-0.469l-2.108,1.758l0.938-0.354l2.517-3.922l-3.805,0.936l0.525-0.115l-0.234-1.172l-1.521-0.234
+ v-0.879l-2.812-4.098l2.929,0.35l-1.757-1.111l1.698,0.354l-0.06-0.764l-1.582-0.232l2.344-0.234l-1.522-0.877l0.937-0.469
+ l-0.232-1.23l-2.576-3.455l5.035-0.059l-1.815-0.994l-2.752-3.223l-4.158-0.584l3.223-1.463l2.167-1.467l1.521,2.576l1.348-1.758
+ l-1.171,0.998l0.06-1.229l1.698-1.057l2.048-4.1h-0.409l-1.99-1.287l1.639-1.111l-1.054-1.35l1.348-1.229l-0.41-1.814l1.934-4.158
+ l-0.646,1.053l-1.641-0.699l-1.99,1.109l-0.819-0.174l-0.234-0.645l-0.585-1.582l2.108-4.217l0.643-2.457l-1.11-2.402l-0.586-4.215
+ l1.696-0.645v-1.348l0.762-0.232l0.646-2.52l0.76-0.646l-0.232-0.76l1.521-1.699l0.704-3.338l0.938-3.688l1.053-1.582l-0.291-1.58
+ l0.116-0.762l-0.763-4.801l1.523-2.52l-0.82-3.277l1.23-2.168l0.469-2.4l1.404-4.742l0.644-3.396l-0.469-2.871l0.704-3.275
+ l-0.82-0.354l0.116-1.52l1.056-0.588l0.819-5.152l-0.586-2.229l0.233-3.805l-0.878-4.801l-3.454-2.283l-3.455-3.279l-4.686-1.875
+ l-0.469-0.232l-0.701-0.527l-4.101-2.283l-2.575-2.459l-1.229-1.758l0.291-2.576l-2.105-3.688l-1.351-1.119l-1.64-2.695
+ l-0.117-1.287l-1.816-2.869l-1.11-3.279l-0.879-2.107l-2.46-3.045l-1.814-3.338l-4.216-2.693l1.112-1.229l-1.173-1.58l-0.525-1.816
+ l0.233-1.346l3.338-3.279l1.991-4.742l-4.04,1.055v-4.51l2.283-1.406l-0.82-0.938l1.521-1.521v-2.693l4.392-2.106l-0.817-0.703
+ l1.639-0.468l0.059-2.402l2.87-0.527l2.519-4.625l-1.404-0.352l0.701-0.82l-1.111-4.392l1.054-0.82l-0.819-1.58l-1.405-3.69
+ l-0.82-4.625l-4.977-1.347l-0.234,0.175l-3.046,2.342l0.119,3.396h-1.757l-0.41-2.283l-0.587,1.053l-3.395-2.576l-2.52,1.055
+ l-0.937-2.108l-1.114-0.175l0.704,1.111l-1.582-0.762l0.352-1.58l-3.455-1.875l-3.688-1.17l-0.059-4.102l-2.869-2.458l-0.995-1.522
+ l-3.162-2.458l1.347-0.235l-1.875-1.638l-0.232,0.994l-2.87-0.409l-4.86-1.698l-4.508-0.82l-3.045-1.99l-1.815-2.167l-3.98-3.222
+ l-3.397-1.228l-0.703,0.585l1.113,0.232l-1.405,0.062l-4.685,1.873l-4.567-1.113l-1.113-0.878l-1.579-0.353l-0.763-0.817
+ l-3.279-0.528l-4.742-1.99l-3.164-2.518l-2.693-0.293l-2.692-0.938l-1.698-1.932l-3.63-1.64l-1.582-1.99l-0.818-1.698l1.522-0.587
+ l-1.054-0.76l1.288-2.343l-1.875-3.806l-2.458-2.282l-1.756-2.402l-3.104-2.167l0.995-0.117l-1.641-0.41v-1.171l-1.229-0.469
+ l-3.747-1.873l-0.06-1.405l1.17-0.878l-1.521-1.698l-3.513-1.874v-1.991l-2.051-0.233l-3.747-3.632l-0.117-1.17l-0.645-0.118
+ l-1.288-2.048l-1.172-2.753v-1.874l-3.104-1.521l-3.747-0.997l0.878,1.056l-0.353,1.757l0.878,3.571l0.938,1.172l2.225,1.58
+ l3.045,3.748l0.703,1.99l2.869,3.69v-0.82l1.405,1.347l0.528,2.577l2.167,3.104v1.814l1.11,0.938l2.987,3.455l-1.523,0.937
+ l-0.585-0.937l-0.703-1.523l-3.688-2.575l-1.521-0.762l-1.055-0.762l0.117-3.455l-1.17-1.932l-2.929-1.582l0.352-0.878l-0.41,0.819
+ l-2.635-0.878l-3.571-2.635l3.336-2.751l-3.104-3.045l-2.635-1.348l-0.469-1.991l-0.702-0.41l-0.059-1.229l-0.997-0.586v-0.878
+ l-1.229-1.17l0.292-0.997l-2.4-4.098l-1.289-1.582l-3.104-2.106l-2.051-0.234l-1.463-1.054l-3.807-0.527v-1.99l-0.82-0.293
+ l-3.571-3.805l0.41-1.817l1.172-4.215l-3.749,0.643l-1.814-0.585l-2.46-3.277l-0.41-3.164l-1.99-2.167l1.111-1.405l-0.408-4.04
+ l-1.288-2.987l1.696-3.045l-0.408,0.06l0.468-3.981l0.233-4.918l-0.293-0.175l0.293-0.41l0.82-1.055l-1.289-0.761l1.112-0.234
+ h-1.229l-0.878-2.693l-1.113-2.283l2.753,0.763l4.157,0.058l-1.113,3.688l2.401-0.644l0.704-2.519l-1.935-3.396l-1.697-0.526
+ L168,151.94h-1.348l0.235-0.945l-1.23,1.112l-1.582-0.468l-0.117-0.762l-2.869-4.157l-1.287,1.757l-1.35-0.177l0.471-0.878
+ l-0.938,0.997l-2.048-0.293l1.229-0.41l1.112-0.41l-0.058-1.229l-0.06,1.112l-1.934,0.41l-1.229-0.587l-4.333-1.17l-0.352-1.756
+ l4.04-2.46l-1.58-0.059l-4.042,0.059l-2.225-4.156l-3.806-1.172v-0.938l0.41-0.116l1.638-0.178l-3.571-0.468l0.177-0.937
+ l1.522-4.509l-2.4,4.04l-1.171-4.685l-4.393,1.229l2.751-1.64l-3.746-1.463l-0.82-1.582l-2.693-0.35l1.815-0.588l-2.108-1.229
+ l2.226,0.645l-1.933-1.347l1.522,0.175h-2.226l-1.053-0.762l0.995-1.58l-1.346,1.111l-2.167-0.644l-1.992-3.807l0.645,4.45
+ l-1.172-0.995l-1.521,0.352l0.585-1.757l-1.405-0.525l-0.059,0.994l-3.104-1.112l-0.293,0.878h2.108l1.58,1.698l-1.464-0.351
+ l-3.923-0.587l-2.929-2.048l-3.688-3.045l-3.104,1.228l-3.749-0.643l0.235-0.878l-1.172,0.643l-3.514-0.584l-3.337,0.293h-2.05
+ l-2.4-0.937l1.112-1.465l-2.4,1.288l-2.225-0.41l1.053-0.702l-2.167,0.117l0.763-0.585l-2.167,0.35l-3.748-2.048l-3.455,1.757
+ l-3.337,3.278l-0.353,0.703l-1.64-0.235l-2.577,1.814l-3.63-0.292l3.455-1.757l-1.463,0.644l-1.641-0.585l1.641-3.338l3.571-1.112
+ l4.04-1.64l-2.635,0.937l-1.992-0.468l-4.156,1.582l-2.342,2.225h-2.401l1.404,1.289l-2.635,4.215l-3.104,2.226l-0.526-0.41
+ l-0.352,0.645h-1.58l-0.938,0.995l-4.392,1.463v1.172l-3.104,0.469l-3.513,2.985l-0.235-0.703l-3.688,1.113l-0.235,1.112
+ l-0.41-0.995l-2.458,0.704l-2.87,1.053l-0.819-0.468l-0.293-0.469l-1.405,1.814l-4.802,1.055l0.058-1.112l2.695-0.82l2.635-1.874
+ h3.514l1.933,0.41l-0.353-1.815l0.703-0.409l4.508-1.758l0.82,0.47l4.333-2.577l-0.762-2.05l2.929-3.747l-1.172,0.995l-3.747,0.937
+ l-1.113-1.405l1.756,0.353l-1.932-0.82l-1.171,2.577l-4.45-1.698l-0.645-0.645l-4.803,1.757l-1.638-0.292l2.106-1.582l-1.521-0.175
+ l1.053-1.23l-0.643-4.217l-2.87,1.523l-3.395,1.64l0.41-3.865l-0.47-0.352l-5.152,0.234l0.409-1.757l-4.1-0.528l0.352-0.819
+ l1.815-0.117l1.582-2.342l2.518-2.46h2.458l-0.292,0.819l0.938-0.409l4.272-1.522l4.101,0.059l0.585-4.977l-1.99,0.643
+ l-4.333,1.464l-1.288-1.112l-0.117,0.878l-2.223-0.641l-3.337,0.409l-4.743-0.352l-1.053-0.938L13.06,96.42l3.104-0.06
+ l-3.043-0.468l-1.815-0.117l-0.878-0.352l-0.761-0.177l-0.265-0.029l-0.017-0.002H9.376H9.37l0,0v-0.235l0,0l0,0h0.001h0.002
+ l0.041-0.012l0.16-0.043l0.322-0.087l0.117-0.118l1.055-0.059l4.393-1.58l1.757-0.471l1.11-0.292l4.101-0.704l2.342,0.117
+ l-1.99,1.35h0.818l0.06-0.119l0.116,0.119l0.233,0.232l0.645,0.175l0.995-0.059l0.937,0.059l4.568,0.293l-2.401-3.396l3.104,1.757
+ l4.802,0.177l-0.058-0.879l-4.393,0.41V90.27h-3.338l0.353-0.643l-4.86,0.175l-1.347-1.757l-1.288-0.353l-0.762-0.409H20.73
+ l-2.108-0.702l-1.932-0.353l-3.222-0.762l2.167-1.874l1.698,0.117l4.978-0.292l2.167-0.528l1.522-0.82l2.753-2.574l2.635-0.528
+ l2.752-0.292l2.812-1.114l1.348,1.405l1.697-1.17l-2.869-0.353l3.104-0.175l4.743-0.586l2.107-0.702l2.811-1.229l3.222,0.995
+ l-1.465,1.289l3.104-1.405l1.64,1.111l4.977-0.351l3.455,0.408l-1.404,0.938l4.918,0.644l1.522-0.468l1.347,0.293l3.162-0.353
+ l4.918,0.585l3.28,0.646h4.685l3.045,0.702l4.918-0.526h0.997l1.053,0.175l0.293-0.058l0.937,0.234l0.117,0.176h0.41l0.762,0.409
+ l4.45,0.704l2.108,0.176l4.449,0.352l1.874,0.937l4.743,0.995l3.982,0.235l3.338,0.82l-1.582-0.82l4.567,0.704l4.451-2.753
+ l0.527-0.644h1.932l-0.937-0.116l1.23-0.293l-0.763,0.116l1.23,0.178l2.518-0.938l0.82,0.468l0.995-0.995l4.333-0.585l0.585,0.878
+ l-2.635,0.645l-2.4,0.937l-3.749,0.118l-1.698,1.289l-3.455,0.995l1.523,0.704l-1.23-0.586l3.455-0.06l-1.64-0.702l4.275-1.405
+ l2.986,0.41l1.521-1.23l5.095-0.937l3.22-2.167l2.93,1.112l3.22,2.577l2.87,0.761l3.104-2.927l0.76,2.811l3.339-0.233l1.463-1.465
+ l0.587,0.118l4.741,0.117l4.274,1.347l0.938,0.117l3.981,0.352l0.646,0.117l0.702,0.352l4.567,0.82h3.747l3.865,0.06l-0.41,3.749
+ l1.229-0.061l0.294,0.061l0.292,0.116l0.177-0.059l5.211,0.41l4.04-0.06l2.458-0.234l3.923-0.878l4.45,2.282l0.47-0.994
+ l2.342,1.171l2.693,3.337l-1.405-2.577l1.99,0.937l-2.811-4.449l5.096-0.233l2.751-1.699l-3.162,1.23l-4.51-0.178l-2.167,0.529
+ l0.352-1.465l3.69-0.352l3.805-0.818l2.635,0.76l3.396,2.402h2.635l1.171-0.468l4.157,1.697h2.401l4.04-0.586l5.153,0.526
+ l2.048-0.351l4.04,0.644l-2.283-3.278l5.037,0.818l0.82,2.05l1.287,4.04l1.229-3.688v-1.523h2.636l4.742-1.99l-1.521-1.522
+ l-2.928,1.112l1.229-1.991l2.987-0.585h-3.28l-4.977-0.879l-2.636-1.404l2.636-1.405l-2.93-0.937l0.41-1.698h3.397l3.395-2.519
+ l3.045,0.878l2.344,3.104l0.409,4.217l3.924,0.644l0.878-0.059l4.392,0.175l0.175,4.275l1.874-1.463l2.693-2.05l4.1,2.929
+ l2.577,4.04l0.878-0.585l0.995,0.232v-1.17l2.987-3.689l0.35-3.981l1.757,0.353l4.686,0.232l5.152,0.235l3.278,1.582l-2.517,1.112
+ l2.752,0.819l-4.86,0.704l1.17,0.995l3.749,2.4l-0.879,1.64l-1.698,0.116l-0.585,0.878l-4.392,1.289l-1.815-1.874l-4.567-0.117
+ l2.282,0.059l3.046,2.52l-2.868-0.762l0.526,0.878l-3.045-0.41l-0.878-1.114l-4.508,0.177l-2.225,4.273l-2.284-0.117l-2.753-0.995
+ l-2.927-1.053l-1.173-0.06l0.82,0.468l-1.055-0.233l-5.035-0.234l1.698,0.527l3.688,0.06l3.222,1.579l1.405,0.06l0.995,0.177
+ l4.686,0.117l-3.339,3.69l-2.635,0.76l-1.874-0.701l0.82,0.76l-3.397-0.702l-0.525,1.815l-2.46,0.232l-0.469-0.059l-0.293-0.116
+ l-1.11-0.175l-4.627-0.645l-3.806-1.17l0.469,1.053l1.521,0.117l3.749,0.468l-1.113,0.704l2.46-0.704l3.981,2.284l-2.519,0.997
+ l-3.864-0.119l1.992,0.704h-2.577l-2.226,0.878l1.641,0.645l-2.929,0.818l1.288,0.703l-2.577,1.053l-2.867,3.338l-0.704,5.095
+ l2.46,1.99l0.469-0.995l3.395,0.059l0.528,1.172l2.226,3.805l-1.641,1.523l2.226-0.586l4.392-0.702l1.932,0.232l1.757,0.703
+ l3.924,0.585l4.274,2.928l0.235-0.175l0.702,0.175l4.918,1.055l2.87,1.229l-0.995,1.288l1.463-1.11l4.098,0.058l0.938,0.527
+ l4.452-0.06l0.35,1.053l-0.818,2.226l0.47,4.392l1.463,2.753l4.566,1.697l0.528,1.172l3.863,2.283l-1.289-2.4l1.289-0.937
+ l1.522,1.698l0.763-1.056l-1.23-0.995l2.227-1.64l-2.052-2.751l0.294-2.812l-3.045-2.928l5.034-1.347l4.217-2.167l2.108-2.284
+ l-0.177-3.28l-1.989-2.752l-1.172-0.525l-3.808-1.582v-1.23l2.813-2.635l2.05-1.17l-1.581-0.06l0.761-1.697l-0.352-0.997
+ l-2.401,0.177l2.576-2.635l-2.225-2.813l2.225-0.937l0.354,0.177l1.112,0.117l4.978,0.82l-0.938,0.469h4.274l3.514-1.172
+ l1.757,0.819l3.863,1.815l-0.76,0.585l2.574-0.117l-0.059,1.582l5.036,0.233l2.752,0.645l-0.878,2.928h-4.977l4.565,0.352
+ l-0.059,2.283h1.757l3.688,2.694l-4.099,2.751l3.396-0.937l1.404-1.934l-0.469,1.814l1.289-1.405l0.175,1.934l0.82-1.229
+ l3.864-2.05l1.111,1.874l0.646-2.458l1.99-0.058l1.697-4.687l1.582,0.41v0.293l-1.522,0.644l1.055,0.293l1.288-0.293l0.117,1.64
+ h1.347l-1.172,0.468l2.401,0.353l-2.342,0.937l4.04,0.762l-2.401,1.757l3.632-0.646l-1.229,0.938l-1.522,0.819l3.045-0.702
+ l2.87,3.63l-1.935,1.522l-1.054-0.233l-0.175-0.177l3.162,1.055l-1.698,0.292l1.932,0.588l-1.521,0.175l2.342,0.058l2.344,4.275
+ l1.815-0.995l1.346-0.177l-0.645,0.762l1.875-0.058l-1.757,1.347l2.692-1.699l-0.762,0.938l1.698,0.409h0.292l5.153,0.938
+ l-3.571,1.229l-0.938,0.703h-1.404l-3.864,0.878l-0.995,1.815h1.054l0.819-0.938l2.811-0.525l4.568-1.35l-0.879-0.585l3.104,1.056
+ l-0.762,1.756l1.405-1.055l4.217,1.933l0.526,3.395h-0.585l-4.101,2.813h-0.937l-5.095,0.585l-1.229,1.757l-3.923,1.932v-0.116
+ h-0.116l0.058-0.176l-0.352,0.176l-5.153,0.526l0.469-0.35h-0.819l-3.162-0.47l-2.518,0.352l-3.632-0.352l-5.211,0.118
+ l-1.811,0.057l-3.162,3.277l-3.808,0.529l-2.165,1.463l-2.165,2.226l-4.862-1.054l4.686,1.112l-1.757,2.167l-3.747,2.635
+ l2.812-0.937l3.748-3.455l4.215-2.225l0.41-0.06l0.525-0.177l4.687-1.463l4.155-0.526l4.335,2.693l-3.806,1.756l-2.107-0.762
+ l-3.34,0.762l3.571,0.293l4.042,0.644l-2.4,2.283h1.99l0.352,2.693l3.338,1.698l3.514,0.762l2.93-0.938l3.336,2.167l-2.576,0.293
+ l-3.982,1.639h-2.868l0.06,0.997l-0.878-0.878l-1.464,0.407l0.175,1.056l-4.274,2.81l-2.517-3.337l2.635-1.288l3.337-1.934
+ l3.923-0.117l-1.347-0.117l-4.156,0.175l0.645-2.577l-3.397,2.87l-5.212,0.293l0.062,1.815l-3.046,1.112l-1.465-0.527l-0.176,0.878
+ l-0.994-1.172l-1.112,1.992l-1.642,0.643l-4.04,2.693l-0.293,0.703l-1.054,4.802l-2.52,0.644l-3.805,0.061l-2.519,1.053
+ l-2.166,1.757l1.053,0.353l-0.468,2.167l-2.693,2.927L336,185.072l-1.348,0.704l1.348,4.742l-1.172,1.523l-2.051,3.103l1.056-2.928
+ l-2.108-1.815l1.464-3.864l-2.752,1.172l1.053,4.217l-2.458-2.577l-0.115-0.41l-0.294,2.577l3.045,3.805l-3.571-0.819l2.167,0.47
+ l2.927,2.225l1.113,2.693l-1.464-3.28l-2.813,2.693l3.455,1.172l-4.565,0.293l2.517,2.283l-3.514,1.171l-4.273,2.458l-2.225,2.225
+ l-0.703,0.703l-2.167,1.463l-3.104,2.05l-2.167,4.566v0.587l1.172,3.396l2.227,3.923l0.291,2.107l1.465,3.808l-0.293,3.395
+ l-0.995,2.228l-2.401,0.232l-0.175-0.762l0.763,0.293l-0.82-0.468l-3.045-3.865l0.818-0.82l-0.878,0.703l-0.177-0.645l0.353-1.054
+ l-1.111,0.586l-1.523-2.4l1.229-1.055l-1.053-0.761l0.175,1.17l-0.763-0.585l0.763-3.571l-3.688-3.63l-1.171-0.646l-4.627,1.465
+ l-0.175-0.819l-1.172-0.938l0.526-0.47l-0.937,0.118l0.352,0.526l-2.752-0.937l-3.455,0.469l-3.162-0.41l-3.923,0.703l-3.22,0.117
+ l3.747,0.352l-0.175,3.923l0.525-0.762l-3.22-1.465l0.585,0.938l-0.762,0.76l-0.702-0.938l-0.938,0.82l-1.99-0.469l0.175-1.23
+ l-2.167-0.819l-0.643,0.762l-0.938,0.293l-3.338-0.878l-2.108,0.292l0.178-0.995l-3.455,2.167l0.995-0.704l-1.111,0.06
+ l-0.938-0.586l0.878,1.23l-1.932,1.698l-2.987,1.404l-4.566,2.167l0.937,0.585l-0.526,1.288l0.937,4.803l-1.582,4.158l-0.82,3.514
+ l-0.232,4.157l0.352,1.814l0.233,0.528l1.933,4.392l2.518,2.869l2.05,4.04l2.402,0.058l2.517,1.935l3.162-0.878l3.164-0.117
+ l0.937-0.878l4.275,0.059l-0.703-0.587l0.526-0.41l-0.995,0.469l2.751-1.873l0.177-1.464l1.229-4.449l1.814-0.82l4.801-1.055
+ l4.686-0.176l1.347,1.641l-2.635,4.156l-0.878,1.055l1.112,0.292l-0.937,0.937h0.76l-1.053,3.163l-0.293,0.82l-0.762-1.113
+ l0.118-1.289l-1.172,1.992l0.995,0.292l-0.41,4.393l-2.517,3.747l2.458,0.645l2.225-0.76l4.333,0.585l1.23-0.938l1.756,0.527
+ l3.865,0.232l1.053,0.471l3.396,2.399l-0.995,0.704l0.819,1.639l-1.288,3.104l0.233,3.69l-0.585,5.212l0.059,0.702l1.464,2.05
+ l2.282,1.99l1.113,1.991h1.64l0.995,0.763l1.874-0.178l3.279-1.521l0.702-0.353l1.055-0.878l3.924,0.878L327.799,295.161"/>
+ <path id="path2705" fill="#C0C0C0" d="M879.807,293.637L879.807,293.637l0.525,0.469L879.807,293.637z"/>
+ <path id="path2707" fill="#C0C0C0" d="M319.659,293.637L319.659,293.637l0.47,0.527L319.659,293.637z"/>
+ <path id="path2709" fill="#C0C0C0" d="M1126.971,294.106L1126.971,294.106l0.116-0.059L1126.971,294.106z"/>
+ <path id="path2711" fill="#C0C0C0" d="M1199.756,294.399L1199.756,294.399l0.059-0.117l0.06,0.06L1199.756,294.399z"/>
+ <path id="path2713" fill="#C0C0C0" d="M1188.866,294.925L1188.866,294.925l0.117-0.059L1188.866,294.925z"/>
+ <path id="path2715" fill="#C0C0C0" d="M974.314,294.809L974.314,294.809v0.059V294.809z"/>
+ <path id="path2717" fill="#C0C0C0" d="M1127.849,295.394L1127.849,295.394l0.117-0.059L1127.849,295.394z"/>
+ <path id="path2719" fill="#C0C0C0" d="M1125.389,295.51L1125.389,295.51l0.117-0.059L1125.389,295.51z"/>
+ <path id="path2721" fill="#C0C0C0" d="M928.466,295.57L928.466,295.57v0.059V295.57z"/>
+ <path id="path2723" fill="#C0C0C0" d="M321.707,296.04L321.707,296.04v0.058V296.04z"/>
+ <path id="path2725" fill="#C0C0C0" d="M321.707,296.04L321.707,296.04v0.058V296.04z"/>
+ <path id="path2727" fill="#C0C0C0" d="M322.528,295.921L322.528,295.921l0.117,0.41L322.528,295.921z"/>
+ <path id="path2729" fill="#C0C0C0" d="M856.267,296.507L856.267,296.507l0.059-0.118l0.06,0.06L856.267,296.507z"/>
+ <path id="path2731" fill="#C0C0C0" d="M926.709,296.389L926.709,296.389l-0.175,0.118L926.709,296.389z"/>
+ <path id="path2733" fill="#C0C0C0" d="M321.767,296.449L321.767,296.449l0.118,0.176L321.767,296.449z"/>
+ <path id="path2735" fill="#C0C0C0" d="M1011.85,296.389L1011.85,296.389l-0.116,0.47L1011.85,296.389z"/>
+ <path id="path2737" fill="#C0C0C0" d="M310.349,296.507L310.349,296.507l-0.117,0.232l-0.059,0.059L310.349,296.507z"/>
+ <path id="path2739" fill="#C0C0C0" d="M310.582,296.682L310.582,296.682l0.177,0.116L310.582,296.682z"/>
+ <path id="path2741" fill="#C0C0C0" d="M928.174,296.858L928.174,296.858l0.059-0.118l0.06,0.059L928.174,296.858z"/>
+ <path id="path2743" fill="#C0C0C0" d="M310.349,297.092L310.349,297.092l0.058-0.117L310.349,297.092z"/>
+ <path id="path2745" fill="#C0C0C0" d="M946.149,296.917L946.149,296.917l-0.232,0.175L946.149,296.917z"/>
+ <path id="path2747" fill="#C0C0C0" d="M1010.913,297.092L1010.913,297.092h-0.06H1010.913z"/>
+ <path id="path2749" fill="#C0C0C0" d="M1010.913,297.092L1010.913,297.092v0.117V297.092z"/>
+ <path id="path2751" fill="#C0C0C0" d="M928.232,296.74L928.232,296.74L928,297.443L928.232,296.74z"/>
+ <path id="path2753" fill="#C0C0C0" d="M945.799,297.15L945.799,297.15h0.059H945.799z"/>
+ <path id="path2755" fill="#C0C0C0" d="M1010.972,297.328L1010.972,297.328v0.058V297.328z"/>
+ <path id="path2757" fill="#C0C0C0" d="M945.799,297.15L945.799,297.15l0.292,0.178L945.799,297.15z"/>
+ <path id="path2759" fill="#C0C0C0" d="M928.291,297.502L928.291,297.502h0.058H928.291z"/>
+ <path id="path2761" fill="#C0C0C0" d="M928.291,297.502L928.291,297.502v0.058V297.502z"/>
+ <path id="path2763" fill="#C0C0C0" d="M928.291,297.502L928.291,297.502l-0.175,0.117L928.291,297.502z"/>
+ <path id="path2765" fill="#C0C0C0" d="M945.096,296.917L945.096,296.917l0.117,0.232L945.096,296.917z"/>
+ <path id="path2767" fill="#C0C0C0" d="M927.704,297.443L927.704,297.443l0.295,0.47L927.704,297.443z"/>
+ <path id="path2769" fill="#C0C0C0" d="M1010.972,297.328L1010.972,297.328v0.643V297.328z"/>
+ <path id="path2771" fill="#C0C0C0" d="M879.982,298.907L879.982,298.907l-0.351-2.167l0.467,0.763l0.762-4.918l1.99-0.178
+ l-2.46-1.11l1.876,0.702l-0.703-0.938l1.932,1.875l1.17,2.811l2.637,4.274l-0.762,2.986l-4.215,1.757l-1.522-1.172L879.982,298.907
+ z"/>
+ <path id="path2773" fill="#C0C0C0" d="M996.272,298.029L996.272,298.029l0.06-0.116L996.272,298.029z"/>
+ <path id="path2775" fill="#C0C0C0" d="M1190.564,298.38L1190.564,298.38l0.06-0.117L1190.564,298.38z"/>
+ <path id="path2777" fill="#C0C0C0" d="M886.775,298.674L886.775,298.674l0.06-0.119L886.775,298.674z"/>
+ <path id="path2779" fill="#C0C0C0" d="M1040.368,291.179L1040.368,291.179l2.692,1.756l0.467,1.639l-0.879,0.82l1.815,4.686
+ l-1.462,3.513l-1.876-3.455l-0.995,1.992l0.059,3.863l-0.524-1.815l-0.646,0.878l-2.165-0.82l-1.348-1.111l-1.35-4.979
+ l-0.815,0.061l-0.063,1.521l-1.112-1.347l-4.333,2.283l1.231-3.046l4.097-2.635l0.995,2.635l1.936-0.819l0.699-1.463l3.81-1.347
+ L1040.368,291.179z"/>
+ <path id="path2781" fill="#C0C0C0" d="M886.834,298.615L886.834,298.615v0.06V298.615z"/>
+ <path id="path2783" fill="#C0C0C0" d="M947.673,298.732L947.673,298.732l0.058-0.117l0.06,0.06L947.673,298.732z"/>
+ <path id="path2785" fill="#C0C0C0" d="M1193.079,298.965L1193.079,298.965l0.059-0.117l0.063,0.058L1193.079,298.965z"/>
+ <path id="path2787" fill="#C0C0C0" d="M886.834,298.615L886.834,298.615l0.291,0.702L886.834,298.615z"/>
+ <path id="path2789" fill="#C0C0C0" d="M947.673,298.907L947.673,298.907l0.116,0.469L947.673,298.907z"/>
+ <path id="path2791" fill="#C0C0C0" d="M314.74,298.965L314.74,298.965l-0.585,0.352L314.74,298.965z"/>
+ <path id="path2793" fill="#C0C0C0" d="M1072.688,298.498L1072.688,298.498l-0.175,1.229L1072.688,298.498z"/>
+ <path id="path2795" fill="#C0C0C0" d="M1145.708,299.259L1145.708,299.259l0.119-0.06L1145.708,299.259z"/>
+ <path id="path2797" fill="#C0C0C0" d="M554.352,298.849L554.352,298.849l0.995-0.059l-1.053,0.232L554.352,298.849z"/>
+ <path id="path2799" fill="#C0C0C0" d="M1113.15,299.317L1113.15,299.317l0.06-0.117L1113.15,299.317z"/>
+ <path id="path2801" fill="#C0C0C0" d="M312.456,298.791L312.456,298.791l0.526,1.054l-1.054-0.645L312.456,298.791z"/>
+ <path id="path2803" fill="#C0C0C0" d="M1191.734,299.434L1191.734,299.434l0.116-0.059L1191.734,299.434z"/>
+ <path id="path2805" fill="#C0C0C0" d="M1133.118,299.552L1133.118,299.552l0.059-0.177L1133.118,299.552z"/>
+ <path id="path2807" fill="#C0C0C0" d="M928.641,299.61L928.641,299.61l0.117-0.059L928.641,299.61z"/>
+ <path id="path2809" fill="#C0C0C0" d="M928.641,299.552L928.641,299.552v0.059V299.552z"/>
+ <path id="path2811" fill="#C0C0C0" d="M1105.187,299.727L1105.187,299.727l0.117-0.059L1105.187,299.727z"/>
+ <path id="path2813" fill="#C0C0C0" d="M1132.183,299.786L1132.183,299.786l0.116-0.176L1132.183,299.786z"/>
+ <path id="path2815" fill="#C0C0C0" d="M1123.811,299.727L1123.811,299.727h-0.062H1123.811z"/>
+ <path id="path2817" fill="#C0C0C0" d="M1133.061,299.902L1133.061,299.902l0.116-0.058L1133.061,299.902z"/>
+ <path id="path2819" fill="#C0C0C0" d="M928.819,299.552L928.819,299.552l-0.179,0.585L928.819,299.552z"/>
+ <path id="path2821" fill="#C0C0C0" d="M1192.26,299.844L1192.26,299.844l0.295,0.177L1192.26,299.844z"/>
+ <path id="path2823" fill="#C0C0C0" d="M1010.21,300.195L1010.21,300.195l0.527-0.232L1010.21,300.195z"/>
+ <path id="path2825" fill="#C0C0C0" d="M1071.988,299.902L1071.988,299.902l-0.354,0.235L1071.988,299.902z"/>
+ <path id="path2827" fill="#C0C0C0" d="M312.162,300.021L312.162,300.021h0.178H312.162z"/>
+ <path id="path2829" fill="#C0C0C0" d="M948.784,300.137L948.784,300.137h0.059H948.784z"/>
+ <path id="path2831" fill="#C0C0C0" d="M948.843,300.08L948.843,300.08l-0.117,0.058L948.843,300.08z"/>
+ <path id="path2833" fill="#C0C0C0" d="M1011.03,299.962L1011.03,299.962l0.411-0.177L1011.03,299.962z"/>
+ <path id="path2835" fill="#C0C0C0" d="M929.344,300.373L929.344,300.373l0.059,0.058L929.344,300.373z"/>
+ <path id="path2837" fill="#C0C0C0" d="M952.825,300.43L952.825,300.43h0.059H952.825z"/>
+ <path id="path2839" fill="#C0C0C0" d="M952.825,300.43L952.825,300.43h0.059H952.825z"/>
+ <path id="path2841" fill="#C0C0C0" d="M1203.562,300.606L1203.562,300.606l0.059-0.117l0.059,0.059L1203.562,300.606z"/>
+ <path id="path2843" fill="#C0C0C0" d="M855.739,300.722L855.739,300.722l0.116-0.058L855.739,300.722z"/>
+ <path id="path2845" fill="#C0C0C0" d="M1200.575,300.547L1200.575,300.547l0.646,0.232l0.524-0.116"/>
+ <path id="path2847" fill="#C0C0C0" d="M1203.095,300.899L1203.095,300.899l0.116-0.118L1203.095,300.899z"/>
+ <path id="path2849" fill="#C0C0C0" d="M855.976,300.958L855.976,300.958l0.059-0.117L855.976,300.958z"/>
+ <path id="path2851" fill="#C0C0C0" d="M1071.401,300.84L1071.401,300.84l-0.175,0.175L1071.401,300.84z"/>
+ <path id="path2853" fill="#C0C0C0" d="M1015.774,300.899L1015.774,300.899l-0.119,0.06L1015.774,300.899z"/>
+ <path id="path2855" fill="#C0C0C0" d="M1202.45,300.899L1202.45,300.899l0.587,0.233L1202.45,300.899z"/>
+ <path id="path2857" fill="#C0C0C0" d="M929.402,300.373L929.402,300.373l0.233,0.817L929.402,300.373z"/>
+ <path id="path2859" fill="#C0C0C0" d="M1155.489,301.132L1155.489,301.132l0.06-0.117L1155.489,301.132z"/>
+ <path id="path2861" fill="#C0C0C0" d="M856.733,301.191L856.733,301.191l0.063-0.117L856.733,301.191z"/>
+ <path id="path2863" fill="#C0C0C0" d="M855.68,301.191L855.68,301.191l0.06-0.117L855.68,301.191z"/>
+ <path id="path2865" fill="#C0C0C0" d="M856.795,301.367L856.795,301.367l0.059-0.116L856.795,301.367z"/>
+ <path id="path2867" fill="#C0C0C0" d="M1070.991,301.251L1070.991,301.251l0.059,0.117L1070.991,301.251z"/>
+ <path id="path2869" fill="#C0C0C0" d="M1155.253,301.6L1155.253,301.6l-0.06-0.233L1155.253,301.6z"/>
+ <path id="path2871" fill="#C0C0C0" d="M856.675,301.659L856.675,301.659l0.059-0.116L856.675,301.659z"/>
+ <path id="path2873" fill="#C0C0C0" d="M856.616,301.894L856.616,301.894l0.059-0.117L856.616,301.894z"/>
+ <path id="path2875" fill="#C0C0C0" d="M1154.553,301.953L1154.553,301.953l0.058-0.117L1154.553,301.953z"/>
+ <path id="path2877" fill="#C0C0C0" d="M1154.433,302.068L1154.433,302.068l0.059-0.115L1154.433,302.068z"/>
+ <path id="path2879" fill="#C0C0C0" d="M856.384,302.068L856.384,302.068l0.058-0.115L856.384,302.068z"/>
+ <path id="path2881" fill="#C0C0C0" d="M949.78,302.01L949.78,302.01v0.058V302.01z"/>
+ <path id="path2883" fill="#C0C0C0" d="M1102.202,302.129L1102.202,302.129l0.059-0.119L1102.202,302.129z"/>
+ <path id="path2885" fill="#C0C0C0" d="M1124.161,302.129L1124.161,302.129l0.058-0.119L1124.161,302.129z"/>
+ <path id="path2887" fill="#C0C0C0" d="M1011.85,302.187L1011.85,302.187l0.351-0.058L1011.85,302.187z"/>
+ <path id="path2889" fill="#C0C0C0" d="M856.267,302.246L856.267,302.246l0.059-0.116L856.267,302.246z"/>
+ <path id="path2891" fill="#C0C0C0" d="M1011.85,302.187L1011.85,302.187h0.587H1011.85z"/>
+ <path id="path2893" fill="#C0C0C0" d="M856.208,302.421L856.208,302.421l0.059-0.117L856.208,302.421z"/>
+ <path id="path2895" fill="#C0C0C0" d="M949.78,302.01L949.78,302.01l0.119,0.587L949.78,302.01z"/>
+ <path id="path2897" fill="#C0C0C0" d="M948.143,302.538L948.143,302.538h0.06H948.143z"/>
+ <path id="path2899" fill="#C0C0C0" d="M1028.538,302.01L1028.538,302.01l0.879,0.352L1028.538,302.01z"/>
+ <path id="path2901" fill="#C0C0C0" d="M948.143,302.538L948.143,302.538h0.175H948.143z"/>
+ <path id="path2903" fill="#C0C0C0" d="M950.366,303.007L950.366,303.007l0.059-0.118l0.059,0.058L950.366,303.007z"/>
+ <path id="path2905" fill="#C0C0C0" d="M856.15,303.066L856.15,303.066l0.059-0.119l0.059,0.061L856.15,303.066z"/>
+ <path id="path2907" fill="#C0C0C0" d="M854.918,303.125L854.918,303.125l0.12-0.059L854.918,303.125z"/>
+ <path id="path2909" fill="#C0C0C0" d="M950.424,302.889L950.424,302.889l0.233,0.41L950.424,302.889z"/>
+ <path id="path2911" fill="#C0C0C0" d="M856.795,303.357L856.795,303.357l-0.063-0.058L856.795,303.357z"/>
+ <path id="path2913" fill="#C0C0C0" d="M856.5,303.416L856.5,303.416l0.059-0.116L856.5,303.416z"/>
+ <path id="path2915" fill="#C0C0C0" d="M1023.269,303.182L1023.269,303.182l-0.351,0.468L1023.269,303.182z"/>
+ <path id="path2917" fill="#C0C0C0" d="M856.5,303.592L856.5,303.592l0.059-0.116L856.5,303.592z"/>
+ <path id="path2919" fill="#C0C0C0" d="M856.911,303.767L856.911,303.767l0.116-0.059L856.911,303.767z"/>
+ <path id="path2921" fill="#C0C0C0" d="M950.366,303.592L950.366,303.592l-0.059,0.352L950.366,303.592z"/>
+ <path id="path2923" fill="#C0C0C0" d="M856.97,303.944L856.97,303.944l0.059-0.119L856.97,303.944z"/>
+ <path id="path2925" fill="#C0C0C0" d="M856.97,304.061L856.97,304.061l0.059-0.117L856.97,304.061z"/>
+ <path id="path2927" fill="#C0C0C0" d="M1202.978,304.294L1202.978,304.294l0.117-0.059L1202.978,304.294z"/>
+ <path id="path2929" fill="#C0C0C0" d="M1204.032,304.354L1204.032,304.354l-0.293-0.06L1204.032,304.354z"/>
+ <path id="path2931" fill="#C0C0C0" d="M1025.024,304.177L1025.024,304.177l1.112,0.352l-1.112,0.41V304.177z"/>
+ <path id="path2933" fill="#C0C0C0" d="M855.68,304.705L855.68,304.705l0.06-0.117l0.059,0.059L855.68,304.705z"/>
+ <path id="path2935" fill="#C0C0C0" d="M857.379,304.705L857.379,304.705l0.058-0.117l0.06,0.059L857.379,304.705z"/>
+ <path id="path2937" fill="#C0C0C0" d="M857.554,304.88L857.554,304.88l0.059-0.117L857.554,304.88z"/>
+ <path id="path2939" fill="#C0C0C0" d="M1195.95,304.529L1195.95,304.529l-0.527,0.763L1195.95,304.529z"/>
+ <path id="path2941" fill="#C0C0C0" d="M855.917,305.055L855.917,305.055l0.059-0.117L855.917,305.055z"/>
+ <path id="path2943" fill="#C0C0C0" d="M934.73,305.114L934.73,305.114l-0.116,0.178L934.73,305.114z"/>
+ <path id="path2945" fill="#C0C0C0" d="M857.612,305.172L857.612,305.172l0.063-0.117L857.612,305.172z"/>
+ <path id="path2947" fill="#C0C0C0" d="M855.976,305.232L855.976,305.232l0.059-0.118L855.976,305.232z"/>
+ <path id="path2949" fill="#C0C0C0" d="M1151.681,305.349L1151.681,305.349l0.059-0.117L1151.681,305.349z"/>
+ <path id="path2951" fill="#C0C0C0" d="M855.976,305.407L855.976,305.407l0.059-0.116L855.976,305.407z"/>
+ <path id="path2953" fill="#C0C0C0" d="M857.437,305.524L857.437,305.524l0.06-0.116L857.437,305.524z"/>
+ <path id="path2955" fill="#C0C0C0" d="M933.794,305.583L933.794,305.583l0.059,0.06L933.794,305.583z"/>
+ <path id="path2957" fill="#C0C0C0" d="M933.735,305.583L933.735,305.583h0.06H933.735z"/>
+ <path id="path2959" fill="#C0C0C0" d="M1190.27,305.876L1190.27,305.876l0.06-0.117L1190.27,305.876z"/>
+ <path id="path2961" fill="#C0C0C0" d="M857.262,306.521L857.262,306.521l0.06-0.119l0.059,0.06L857.262,306.521z"/>
+ <path id="path2963" fill="#C0C0C0" d="M858.257,306.637L858.257,306.637l0.059-0.117L858.257,306.637z"/>
+ <path id="path2965" fill="#C0C0C0" d="M857.437,306.812L857.437,306.812l0.117-0.058L857.437,306.812z"/>
+ <path id="path2967" fill="#C0C0C0" d="M857.146,306.812L857.146,306.812l0.116-0.058L857.146,306.812z"/>
+ <path id="path2969" fill="#C0C0C0" d="M952.006,306.461L952.006,306.461l-0.411,0.645L952.006,306.461z"/>
+ <path id="path2971" fill="#C0C0C0" d="M1021.803,306.871L1021.803,306.871h0.059H1021.803z"/>
+ <path id="path2973" fill="#C0C0C0" d="M1171.999,307.047L1171.999,307.047l0.354-0.352L1171.999,307.047z"/>
+ <path id="path2975" fill="#C0C0C0" d="M1064.083,306.99L1064.083,306.99l0.059-0.119L1064.083,306.99z"/>
+ <path id="path2977" fill="#C0C0C0" d="M1004.236,307.047L1004.236,307.047l0.296-0.352L1004.236,307.047z"/>
+ <path id="path2979" fill="#C0C0C0" d="M856.441,307.047L856.441,307.047l0.06-0.118L856.441,307.047z"/>
+ <path id="path2981" fill="#C0C0C0" d="M857.674,307.047L857.674,307.047l0.058-0.118L857.674,307.047z"/>
+ <path id="path2983" fill="#C0C0C0" d="M1139.442,307.047L1139.442,307.047l0.117-0.058L1139.442,307.047z"/>
+ <path id="path2985" fill="#C0C0C0" d="M858.141,307.106L858.141,307.106l0.058-0.116L858.141,307.106z"/>
+ <path id="path2987" fill="#C0C0C0" d="M1021.861,306.871L1021.861,306.871l-0.758,0.878L1021.861,306.871z"/>
+ <path id="path2989" fill="#C0C0C0" d="M856.384,307.515L856.384,307.515l0.058-0.116L856.384,307.515z"/>
+ <path id="path2991" fill="#C0C0C0" d="M856.208,307.632L856.208,307.632l0.059-0.117L856.208,307.632z"/>
+ <path id="path2993" fill="#C0C0C0" d="M857.612,308.217L857.612,308.217l0.063-0.116L857.612,308.217z"/>
+ <path id="path2995" fill="#C0C0C0" d="M855.976,308.453L855.976,308.453l0.059-0.117L855.976,308.453z"/>
+ <path id="path2997" fill="#C0C0C0" d="M978.823,309.095L978.823,309.095l0.236-0.232L978.823,309.095z"/>
+ <path id="path2999" fill="#C0C0C0" d="M36.132,309.095L36.132,309.095l-0.06,0.061L36.132,309.095z"/>
+ <path id="path3001" fill="#C0C0C0" d="M1015.538,309.156L1015.538,309.156h0.059H1015.538z"/>
+ <path id="path3003" fill="#C0C0C0" d="M1015.538,309.156L1015.538,309.156l0.703,0.116L1015.538,309.156z"/>
+ <path id="path3005" fill="#C0C0C0" d="M857.437,309.389L857.437,309.389l0.117-0.058L857.437,309.389z"/>
+ <path id="path3007" fill="#C0C0C0" d="M1192.555,309.332L1192.555,309.332l-0.295,0.232L1192.555,309.332z"/>
+ <path id="path3009" fill="#C0C0C0" d="M1016.475,309.799L1016.475,309.799h0.06H1016.475z"/>
+ <path id="path3011" fill="#C0C0C0" d="M1016.475,309.799L1016.475,309.799l0.354,0.059L1016.475,309.799z"/>
+ <path id="path3013" fill="#C0C0C0" d="M857.379,309.974L857.379,309.974l0.058-0.117L857.379,309.974z"/>
+ <path id="path3015" fill="#C0C0C0" d="M858.552,310.035L858.552,310.035v-0.061V310.035z"/>
+ <path id="path3017" fill="#C0C0C0" d="M858.257,310.326L858.257,310.326l0.059-0.117L858.257,310.326z"/>
+ <path id="path3019" fill="#C0C0C0" d="M858.141,310.384L858.141,310.384l0.058-0.117L858.141,310.384z"/>
+ <path id="path3021" fill="#C0C0C0" d="M1045.401,309.917L1045.401,309.917l-0.703,1.582L1045.401,309.917z"/>
+ <path id="path3023" fill="#C0C0C0" d="M855.917,310.677L855.917,310.677l0.059-0.117L855.917,310.677z"/>
+ <path id="path3025" fill="#C0C0C0" d="M857.849,310.97L857.849,310.97l0.059-0.118l0.059,0.061L857.849,310.97z"/>
+ <path id="path3027" fill="#C0C0C0" d="M1013.077,310.677L1013.077,310.677l-0.116,0.116L1013.077,310.677z"/>
+ <path id="path3029" fill="#C0C0C0" d="M857.79,311.262L857.79,311.262l0.059-0.117L857.79,311.262z"/>
+ <path id="path3031" fill="#C0C0C0" d="M1012.845,311.205L1012.845,311.205l0.116-0.117L1012.845,311.205z"/>
+ <path id="path3033" fill="#C0C0C0" d="M854.977,311.615L854.977,311.615l0.063-0.117l0.059,0.058L854.977,311.615z"/>
+ <path id="path3035" fill="#C0C0C0" d="M857.79,311.731L857.79,311.731l0.059-0.116L857.79,311.731z"/>
+ <path id="path3037" fill="#C0C0C0" d="M857.731,311.792L857.731,311.792l0.06-0.119L857.731,311.792z"/>
+ <path id="path3039" fill="#C0C0C0" d="M857.262,311.792L857.262,311.792l0.06-0.119L857.262,311.792z"/>
+ <path id="path3041" fill="#C0C0C0" d="M979.293,312.083L979.293,312.083l-0.352-0.585L979.293,312.083z"/>
+ <path id="path3043" fill="#C0C0C0" d="M1044.877,311.908L1044.877,311.908l-0.06,0.232L1044.877,311.908z"/>
+ <path id="path3045" fill="#C0C0C0" d="M40.055,312.259L40.055,312.259l-0.527-0.352L40.055,312.259z"/>
+ <path id="path3047" fill="#C0C0C0" d="M857.554,312.14L857.554,312.14l0.059-0.116L857.554,312.14z"/>
+ <path id="path3049" fill="#C0C0C0" d="M1045.343,312.434L1045.343,312.434l-0.175-0.058L1045.343,312.434z"/>
+ <path id="path3051" fill="#C0C0C0" d="M854.977,312.55L854.977,312.55l0.063-0.117L854.977,312.55z"/>
+ <path id="path3053" fill="#C0C0C0" d="M1041.127,313.547L1041.127,313.547l-0.879-0.762l0.819,0.819L1041.127,313.547z"/>
+ <path id="path3055" fill="#C0C0C0" d="M855.739,313.196L855.739,313.196l0.059-0.118l0.059,0.06L855.739,313.196z"/>
+ <path id="path3057" fill="#C0C0C0" d="M1013.432,313.078L1013.432,313.078l0.408,0.352L1013.432,313.078z"/>
+ <path id="path3059" fill="#C0C0C0" d="M1011.5,313.019L1011.5,313.019l0.878,0.469L1011.5,313.019z"/>
+ <path id="path3061" fill="#C0C0C0" d="M855.33,313.312L855.33,313.312l0.059-0.116L855.33,313.312z"/>
+ <path id="path3063" fill="#C0C0C0" d="M855.446,313.312L855.446,313.312l0.06-0.116L855.446,313.312z"/>
+ <path id="path3065" fill="#C0C0C0" d="M630.942,312.434L630.942,312.434l-0.819,1.933L630.942,312.434z"/>
+ <path id="path3067" fill="#C0C0C0" d="M858.669,313.547L858.669,313.547l0.058-0.118L858.669,313.547z"/>
+ <path id="path3069" fill="#C0C0C0" d="M858.61,313.547L858.61,313.547l0.06-0.118l0.058,0.059L858.61,313.547z"/>
+ <path id="path3071" fill="#C0C0C0" d="M1012.611,313.547L1012.611,313.547h0.408H1012.611z"/>
+ <path id="path3073" fill="#C0C0C0" d="M972.853,314.075L972.853,314.075l0.117-0.293L972.853,314.075z"/>
+ <path id="path3075" fill="#C0C0C0" d="M1207.253,314.192L1207.253,314.192l0.059-0.117L1207.253,314.192z"/>
+ <path id="path3077" fill="#C0C0C0" d="M857.554,314.016L857.554,314.016l0.12,0.116L857.554,314.016z"/>
+ <path id="path3079" fill="#C0C0C0" d="M972.795,314.542L972.795,314.542l-0.06-0.293L972.795,314.542z"/>
+ <path id="path3081" fill="#C0C0C0" d="M855.976,314.717L855.976,314.717l0.059-0.116L855.976,314.717z"/>
+ <path id="path3083" fill="#C0C0C0" d="M1206.958,314.776L1206.958,314.776l0.115-0.06L1206.958,314.776z"/>
+ <path id="path3085" fill="#C0C0C0" d="M1206.608,315.07L1206.608,315.07l0.408-0.235L1206.608,315.07z"/>
+ <path id="path3087" fill="#C0C0C0" d="M978.181,315.127L978.181,315.127v-0.117V315.127z"/>
+ <path id="path3089" fill="#C0C0C0" d="M858.082,315.304L858.082,315.304l0.059-0.118l0.058,0.059L858.082,315.304z"/>
+ <path id="path3091" fill="#C0C0C0" d="M856.092,315.304L856.092,315.304l0.059-0.118L856.092,315.304z"/>
+ <path id="path3093" fill="#C0C0C0" d="M971.038,315.655L971.038,315.655l-0.12-0.761L971.038,315.655z"/>
+ <path id="path3095" fill="#C0C0C0" d="M981.812,315.421L981.812,315.421l0.232-0.352L981.812,315.421z"/>
+ <path id="path3097" fill="#C0C0C0" d="M858.023,315.421L858.023,315.421l0.06-0.058L858.023,315.421z"/>
+ <path id="path3099" fill="#C0C0C0" d="M857.262,315.479L857.262,315.479l0.06-0.115l0.059,0.058L857.262,315.479z"/>
+ <path id="path3101" fill="#C0C0C0" d="M965.647,315.538L965.647,315.538l0.12,0.468L965.647,315.538z"/>
+ <path id="path3103" fill="#C0C0C0" d="M857.262,315.889L857.262,315.889l0.06-0.117L857.262,315.889z"/>
+ <path id="path3105" fill="#C0C0C0" d="M972.853,316.005L972.853,316.005l-0.116-0.233L972.853,316.005z"/>
+ <path id="path3107" fill="#C0C0C0" d="M1040.368,315.889L1040.368,315.889v0.06V315.889z"/>
+ <path id="path3109" fill="#C0C0C0" d="M972.853,316.005L972.853,316.005v-0.058V316.005z"/>
+ <path id="path3111" fill="#C0C0C0" d="M856.092,316.064L856.092,316.064l0.059-0.115l0.059,0.058L856.092,316.064z"/>
+ <path id="path3113" fill="#C0C0C0" d="M1040.368,315.889L1040.368,315.889l-0.179,0.175L1040.368,315.889z"/>
+ <path id="path3115" fill="#C0C0C0" d="M855.622,316.123L855.622,316.123l0.115,0.06L855.622,316.123z"/>
+ <path id="path3117" fill="#C0C0C0" d="M938.48,317.352L938.48,317.352l-2.343-1.053L938.48,317.352z"/>
+ <path id="path3119" fill="#C0C0C0" d="M990.711,316.884L990.711,316.884l0.059-1.053L990.711,316.884z"/>
+ <path id="path3121" fill="#C0C0C0" d="M982.456,316.709L982.456,316.709h0.524H982.456z"/>
+ <path id="path3123" fill="#C0C0C0" d="M982.456,316.709L982.456,316.709l0.175-0.119L982.456,316.709z"/>
+ <path id="path3125" fill="#C0C0C0" d="M857.087,316.884L857.087,316.884l0.059-0.117l0.059,0.059L857.087,316.884z"/>
+ <path id="path3127" fill="#C0C0C0" d="M857.262,317.12L857.262,317.12l0.06-0.118L857.262,317.12z"/>
+ <path id="path3129" fill="#C0C0C0" d="M857.262,317.411L857.262,317.411l0.06-0.116L857.262,317.411z"/>
+ <path id="path3131" fill="#C0C0C0" d="M1040.368,317.411L1040.368,317.411l-0.12,0.059L1040.368,317.411z"/>
+ <path id="path3133" fill="#C0C0C0" d="M855.797,317.469L855.797,317.469l0.12-0.059L855.797,317.469z"/>
+ <path id="path3135" fill="#C0C0C0" d="M1050.321,318.524L1050.321,318.524l0.525-1.934L1050.321,318.524z"/>
+ <path id="path3137" fill="#C0C0C0" d="M855.855,317.587L855.855,317.587l0.063-0.118L855.855,317.587z"/>
+ <path id="path3139" fill="#C0C0C0" d="M1016.183,317.469L1016.183,317.469l0.292,0.47L1016.183,317.469z"/>
+ <path id="path3141" fill="#C0C0C0" d="M422.308,317.705L422.308,317.705l0.235,0.117l-0.06,0.118l-0.234,0.117L422.308,317.705z"/>
+ <path id="path3143" fill="#C0C0C0" d="M856.384,317.998L856.384,317.998l0.058-0.118l0.06,0.06L856.384,317.998z"/>
+ <path id="path3145" fill="#C0C0C0" d="M941.583,318.408L941.583,318.408l-0.82-0.587L941.583,318.408z"/>
+ <path id="path3147" fill="#C0C0C0" d="M858.023,318.29L858.023,318.29l0.06-0.117l0.059,0.059L858.023,318.29z"/>
+ <path id="path3149" fill="#C0C0C0" d="M940.938,318.408L940.938,318.408l-0.116,0.116L940.938,318.408z"/>
+ <path id="path3151" fill="#C0C0C0" d="M941.524,318.465L941.524,318.465l0.06-0.118l0.058,0.061L941.524,318.465z"/>
+ <path id="path3153" fill="#C0C0C0" d="M857.379,318.524L857.379,318.524l0.058-0.116L857.379,318.524z"/>
+ <path id="path3155" fill="#C0C0C0" d="M857.965,318.524L857.965,318.524l0.059-0.116L857.965,318.524z"/>
+ <path id="path3157" fill="#C0C0C0" d="M422.659,317.939L422.659,317.939l0.293,0.761L422.659,317.939z"/>
+ <path id="path3159" fill="#C0C0C0" d="M857.146,318.7L857.146,318.7l0.059-0.117L857.146,318.7z"/>
+ <path id="path3161" fill="#C0C0C0" d="M857.965,318.7L857.965,318.7l0.059-0.117L857.965,318.7z"/>
+ <path id="path3163" fill="#C0C0C0" d="M857.965,318.876L857.965,318.876l0.059-0.119L857.965,318.876z"/>
+ <path id="path3165" fill="#C0C0C0" d="M957.159,318.817L957.159,318.817l-0.588,0.761L957.159,318.817z"/>
+ <path id="path3167" fill="#C0C0C0" d="M856.911,318.993L856.911,318.993l0.116-0.06L856.911,318.993z"/>
+ <path id="path3169" fill="#C0C0C0" d="M47.374,319.578L47.374,319.578l-1.348-0.468L47.374,319.578z"/>
+ <path id="path3171" fill="#C0C0C0" d="M1206.841,319.167L1206.841,319.167l0.117-0.058L1206.841,319.167z"/>
+ <path id="path3173" fill="#C0C0C0" d="M857.849,319.167L857.849,319.167l0.059-0.117L857.849,319.167z"/>
+ <path id="path3175" fill="#C0C0C0" d="M857.028,319.226L857.028,319.226l0.117-0.059L857.028,319.226z"/>
+ <path id="path3177" fill="#C0C0C0" d="M857.437,319.344L857.437,319.344l0.06-0.118L857.437,319.344z"/>
+ <path id="path3179" fill="#C0C0C0" d="M1207.428,319.635L1207.428,319.635l0.117-0.175L1207.428,319.635z"/>
+ <path id="path3181" fill="#C0C0C0" d="M857.32,319.403L857.32,319.403l0.06-0.117L857.32,319.403z"/>
+ <path id="path3183" fill="#C0C0C0" d="M1207.37,319.696L1207.37,319.696l0.058-0.118l0.059,0.058L1207.37,319.696z"/>
+ <path id="path3185" fill="#C0C0C0" d="M945.975,319.929L945.975,319.929l-0.467-0.293L945.975,319.929z"/>
+ <path id="path3187" fill="#C0C0C0" d="M625.673,319.696L625.673,319.696l-0.06-0.061L625.673,319.696z"/>
+ <path id="path3189" fill="#C0C0C0" d="M1039.84,320.222L1039.84,320.222h-0.06H1039.84z"/>
+ <path id="path3191" fill="#C0C0C0" d="M959.736,320.575L959.736,320.575v0.585V320.575z"/>
+ <path id="path3193" fill="#C0C0C0" d="M1004.178,308.394L1004.178,308.394l1.407-0.586l-0.587-1.17l1.64-0.587l2.285-3.22
+ l0.82-1.815h1.461l1.114,3.982l1.933-0.704l4.449,2.519l-0.762,0.995l-3.279,0.646l-1.933,2.518l-1.932,1.99l1.466,0.586
+ l-0.646,0.76l1.229,0.468l1.698,2.693l-1.229,0.997l0.408,0.175l-0.058,0.293l4.1,3.221l-3.925-0.469l0.47,1.113l-0.995,0.233
+ l-0.995,2.167l0.584,1.873l-0.059,1.229l-2.811,1.814l-2.106,1.758h0.819l-0.586,1.346l-0.996,4.861l-0.115,0.234l-4.688,1.99
+ l-0.292-2.928l-0.412,0.525l-0.758-0.408l-0.354-0.645l-1.582,0.994l-0.175-1.113l-0.938,0.354l-1.111-1.172l-4.101,2.227
+ l-0.233-2.049l-0.175-0.82l-0.411,0.82h-4.917l0.175-1.582l-1.349-2.459l0.528-1.756l-3.279-2.93l0.646-1.757l-1.35-1.112
+ l-0.232-1.758l2.811-4.392l0.995,1.348l5.095,1.17l0.237-4.683l0.758-0.587l4.745-1.111l3.219-3.807l0.528-1.172l3.279-0.995
+ l0.059,0.175L1004.178,308.394z"/>
+ <path id="path3195" fill="#C0C0C0" d="M964.89,320.75L964.89,320.75l0.059,0.058L964.89,320.75z"/>
+ <path id="path3197" fill="#C0C0C0" d="M964.948,320.75L964.948,320.75l-1.174,0.293L964.948,320.75z"/>
+ <path id="path3199" fill="#C0C0C0" d="M1207.778,320.924L1207.778,320.924l0.116-0.059L1207.778,320.924z"/>
+ <path id="path3201" fill="#C0C0C0" d="M959.678,321.392L959.678,321.392l-0.995-0.292L959.678,321.392z"/>
+ <path id="path3203" fill="#C0C0C0" d="M965.473,321.686L965.473,321.686l0.06-0.116l0.058,0.058L965.473,321.686z"/>
+ <path id="path3205" fill="#C0C0C0" d="M965.532,321.627L965.532,321.627l-0.88,0.175L965.532,321.627z"/>
+ <path id="path3207" fill="#C0C0C0" d="M963.013,321.979L963.013,321.979l0.063,0.176L963.013,321.979z"/>
+ <path id="path3209" fill="#C0C0C0" d="M943.631,322.332L943.631,322.332l-0.351,1.347L943.631,322.332z"/>
+ <path id="path3211" fill="#C0C0C0" d="M967.346,322.038L967.346,322.038l-0.291,0.702L967.346,322.038z"/>
+ <path id="path3213" fill="#C0C0C0" d="M967.288,322.038L967.288,322.038h0.058H967.288z"/>
+ <path id="path3215" fill="#C0C0C0" d="M977.419,322.038L977.419,322.038l0.059-0.059L977.419,322.038z"/>
+ <path id="path3217" fill="#C0C0C0" d="M962.075,322.623L962.075,322.623l-1.932-0.585L962.075,322.623z"/>
+ <path id="path3219" fill="#C0C0C0" d="M967.991,322.212L967.991,322.212l-0.175-0.175L967.991,322.212z"/>
+ <path id="path3221" fill="#C0C0C0" d="M964.831,322.271L964.831,322.271v0.061V322.271z"/>
+ <path id="path3223" fill="#C0C0C0" d="M964.831,322.271L964.831,322.271v0.061V322.271z"/>
+ <path id="path3225" fill="#C0C0C0" d="M496.439,322.332L496.439,322.332v0.058V322.332z"/>
+ <path id="path3227" fill="#C0C0C0" d="M1207.428,322.038L1207.428,322.038l-0.058,0.644L1207.428,322.038z"/>
+ <path id="path3229" fill="#C0C0C0" d="M961.668,322.857L961.668,322.857l-2.285-0.352L961.668,322.857z"/>
+ <path id="path3231" fill="#C0C0C0" d="M962.075,322.623L962.075,322.623h-0.059H962.075z"/>
+ <path id="path3233" fill="#C0C0C0" d="M856.5,322.74L856.5,322.74l0.059-0.117l0.06,0.059L856.5,322.74z"/>
+ <path id="path3235" fill="#C0C0C0" d="M857.262,322.74L857.262,322.74l0.06-0.117l0.059,0.059L857.262,322.74z"/>
+ <path id="path3237" fill="#C0C0C0" d="M963.308,322.799L963.308,322.799h0.059H963.308z"/>
+ <path id="path3239" fill="#C0C0C0" d="M964.419,322.799L964.419,322.799v0.059V322.799z"/>
+ <path id="path3241" fill="#C0C0C0" d="M1243.79,322.799L1243.79,322.799l0.115-0.06L1243.79,322.799z"/>
+ <path id="path3243" fill="#C0C0C0" d="M1046.983,322.623L1046.983,322.623l0.116,0.117L1046.983,322.623z"/>
+ <path id="path3245" fill="#C0C0C0" d="M856.616,322.857L856.616,322.857l0.059-0.117L856.616,322.857z"/>
+ <path id="path3247" fill="#C0C0C0" d="M963.308,322.799L963.308,322.799h0.059H963.308z"/>
+ <path id="path3249" fill="#C0C0C0" d="M423.831,322.564L423.831,322.564l-0.235,0.41l-0.526,0.117L423.831,322.564z"/>
+ <path id="path3251" fill="#C0C0C0" d="M963.249,323.033L963.249,323.033l-0.295,0.293L963.249,323.033z"/>
+ <path id="path3253" fill="#C0C0C0" d="M966.001,323.149L966.001,323.149l-0.116-0.35L966.001,323.149z"/>
+ <path id="path3255" fill="#C0C0C0" d="M966.001,323.149L966.001,323.149h-0.06H966.001z"/>
+ <path id="path3257" fill="#C0C0C0" d="M1047.333,323.033L1047.333,323.033l0.063,0.234L1047.333,323.033z"/>
+ <path id="path3259" fill="#C0C0C0" d="M1052.486,324.906L1052.486,324.906h-3.454l1.814,3.922l-2.573-2.283l-0.47-2.399
+ l-0.587-2.812l2.285-3.455l-1.466,4.51L1052.486,324.906z"/>
+ <path id="path3261" fill="#C0C0C0" d="M962.546,323.501L962.546,323.501v0.058V323.501z"/>
+ <path id="path3263" fill="#C0C0C0" d="M280.603,323.327L280.603,323.327l0.175,0.352L280.603,323.327z"/>
+ <path id="path3265" fill="#C0C0C0" d="M855.797,323.912L855.797,323.912l0.12-0.06L855.797,323.912z"/>
+ <path id="path3267" fill="#C0C0C0" d="M857.79,323.912L857.79,323.912l0.059-0.117L857.79,323.912z"/>
+ <path id="path3269" fill="#C0C0C0" d="M423.713,323.327L423.713,323.327l0.118,0.41l-0.587,0.701h-0.176l-0.116-0.058l-0.118-0.527
+ l0.234-0.352L423.713,323.327z"/>
+ <path id="path3271" fill="#C0C0C0" d="M1210.296,324.087L1210.296,324.087l0.059-0.119L1210.296,324.087z"/>
+ <path id="path3273" fill="#C0C0C0" d="M855.917,324.262L855.917,324.262l0.115-0.059L855.917,324.262z"/>
+ <path id="path3275" fill="#C0C0C0" d="M422.659,323.501L422.659,323.501l0.059,0.703L422.659,323.501z"/>
+ <path id="path3277" fill="#C0C0C0" d="M857.849,324.321L857.849,324.321l0.059-0.117L857.849,324.321z"/>
+ <path id="path3279" fill="#C0C0C0" d="M966.234,324.321L966.234,324.321l0.292,0.175L966.234,324.321z"/>
+ <path id="path3281" fill="#C0C0C0" d="M1047.217,324.262L1047.217,324.262l-0.117,0.41L1047.217,324.262z"/>
+ <path id="path3283" fill="#C0C0C0" d="M281.715,324.321L281.715,324.321l0.293,0.175L281.715,324.321z"/>
+ <path id="path3285" fill="#C0C0C0" d="M281.715,324.321L281.715,324.321v0.352V324.321z"/>
+ <path id="path3287" fill="#C0C0C0" d="M855.976,324.615L855.976,324.615l0.116-0.059L855.976,324.615z"/>
+ <path id="path3289" fill="#C0C0C0" d="M857.379,324.672L857.379,324.672l0.058-0.117L857.379,324.672z"/>
+ <path id="path3291" fill="#C0C0C0" d="M856.15,324.731L856.15,324.731l0.116-0.058L856.15,324.731z"/>
+ <path id="path3293" fill="#C0C0C0" d="M856.795,324.847L856.795,324.847l0.059-0.117L856.795,324.847z"/>
+ <path id="path3295" fill="#C0C0C0" d="M856.384,324.847L856.384,324.847l0.116-0.058L856.384,324.847z"/>
+ <path id="path3297" fill="#C0C0C0" d="M1244.377,324.847L1244.377,324.847l0.116-0.058L1244.377,324.847z"/>
+ <path id="path3299" fill="#C0C0C0" d="M623.096,324.205L623.096,324.205l-0.292,1.17l0.059-1.17H623.096z"/>
+ <path id="path3301" fill="#C0C0C0" d="M421.956,324.965L421.956,324.965l0.06-0.118l0.06,0.059L421.956,324.965z"/>
+ <path id="path3303" fill="#C0C0C0" d="M1209.593,324.965L1209.593,324.965l0.059-0.118l0.06,0.059L1209.593,324.965z"/>
+ <path id="path3305" fill="#C0C0C0" d="M424.299,324.497L424.299,324.497l0.585,0.177L424.299,324.497z"/>
+ <path id="path3307" fill="#C0C0C0" d="M966.938,324.847L966.938,324.847l0.467,0.646l-0.524-0.646H966.938z"/>
+ <path id="path3309" fill="#C0C0C0" d="M966.468,325.024L966.468,325.024l0.236,0.292L966.468,325.024z"/>
+ <path id="path3311" fill="#C0C0C0" d="M421.956,324.906L421.956,324.906v0.704l-0.233-0.235L421.956,324.906z"/>
+ <path id="path3313" fill="#C0C0C0" d="M425.939,325.375L425.939,325.375l-0.41,0.703L425.939,325.375z"/>
+ <path id="path3315" fill="#C0C0C0" d="M1053.952,325.493L1053.952,325.493l0.762,0.878L1053.952,325.493z"/>
+ <path id="path3317" fill="#C0C0C0" d="M934.206,306.05L934.206,306.05l4.097,1.23l3.925-0.117l2.693,2.929l-0.354,1.111
+ l0.998,0.177l0.117,0.175l4.333,2.87l0.938,2.048l1.054,0.117l2.224,2.577l-0.351-1.58h0.819l3.747,3.162l2.811,2.399l-1.757,1.582
+ l4.569-0.116l2.281,4.625l0.354,3.16l0.175,2.93l1.171-1.699l2.635,0.41l1.641,2.928l-0.938,1.58l0.47,0.588l-0.47,1.404l0.35,2.4
+ l-0.466,3.162l-3.926,0.352l-3.335-3.396l-1.057-0.352l-3.806-3.045l-2.577-2.752l-2.46-3.16l-0.116-1.352l-1.932-3.861
+ l-2.402-3.222l-1.756-0.643l-1.521-4.569l0.232-0.643l-3.57-1.815l-0.528-2.107l-2.52-2.868l-1.402-0.293l-3.75-3.69
+ L934.206,306.05z"/>
+ <path id="path3319" fill="#C0C0C0" d="M967.171,325.61L967.171,325.61l-0.292,0.937L967.171,325.61z"/>
+ <path id="path3321" fill="#C0C0C0" d="M1027.015,326.135L1027.015,326.135l-0.059,0.177L1027.015,326.135z"/>
+ <path id="path3323" fill="#C0C0C0" d="M421.605,325.667L421.605,325.667l-1.347,0.703L421.605,325.667z"/>
+ <path id="path3325" fill="#C0C0C0" d="M945.857,326.722L945.857,326.722v0.232V326.722z"/>
+ <path id="path3327" fill="#C0C0C0" d="M1059.222,325.667L1059.222,325.667l1.873,0.994L1059.222,325.667z"/>
+ <path id="path3329" fill="#C0C0C0" d="M1046.634,326.488L1046.634,326.488v0.059V326.488z"/>
+ <path id="path3331" fill="#C0C0C0" d="M280.603,326.135L280.603,326.135h0.117l0.762,0.587l-0.235,0.232L280.603,326.135z"/>
+ <path id="path3333" fill="#C0C0C0" d="M1029.534,326.546L1029.534,326.546l-0.351-0.176L1029.534,326.546z"/>
+ <path id="path3335" fill="#C0C0C0" d="M857.554,326.662L857.554,326.662l0.059-0.115l0.063,0.059L857.554,326.662z"/>
+ <path id="path3337" fill="#C0C0C0" d="M964.011,326.546L964.011,326.546l-0.878,0.352L964.011,326.546z"/>
+ <path id="path3339" fill="#C0C0C0" d="M419.966,326.135L419.966,326.135l-0.059,0.468l-0.41,0.41L419.966,326.135z"/>
+ <path id="path3341" fill="#C0C0C0" d="M1028.713,326.781L1028.713,326.781v0.176V326.781z"/>
+ <path id="path3343" fill="#C0C0C0" d="M1028.713,326.781L1028.713,326.781v0.059V326.781z"/>
+ <path id="path3345" fill="#C0C0C0" d="M1028.422,326.957L1028.422,326.957l-0.471,0.115L1028.422,326.957z"/>
+ <path id="path3347" fill="#C0C0C0" d="M277.558,326.603L277.558,326.603h0.878H277.558z"/>
+ <path id="path3349" fill="#C0C0C0" d="M1028.422,326.957L1028.422,326.957h-0.704H1028.422z"/>
+ <path id="path3351" fill="#C0C0C0" d="M965.71,326.957L965.71,326.957h0.058H965.71z"/>
+ <path id="path3353" fill="#C0C0C0" d="M37.361,327.013L37.361,327.013l0.059-0.117L37.361,327.013z"/>
+ <path id="path3355" fill="#C0C0C0" d="M965.71,326.957L965.71,326.957h0.058H965.71z"/>
+ <path id="path3357" fill="#C0C0C0" d="M712.511,327.482L712.511,327.482l-0.292-1.053l0.762,0.762L712.511,327.482z"/>
+ <path id="path3359" fill="#C0C0C0" d="M1046.691,326.546L1046.691,326.546l-0.116,0.877L1046.691,326.546z"/>
+ <path id="path3361" fill="#C0C0C0" d="M945.683,327.25L945.683,327.25v0.291V327.25z"/>
+ <path id="path3363" fill="#C0C0C0" d="M278.143,325.257L278.143,325.257l2.519,2.986L278.143,325.257z"/>
+ <path id="path3365" fill="#C0C0C0" d="M1027.95,327.25L1027.95,327.25h-0.818H1027.95z"/>
+ <path id="path3367" fill="#C0C0C0" d="M1058.577,327.072L1058.577,327.072l0.115,0.352l-0.292,0.059L1058.577,327.072z"/>
+ <path id="path3369" fill="#C0C0C0" d="M1027.95,327.25L1027.95,327.25l-0.115,0.174L1027.95,327.25z"/>
+ <path id="path3371" fill="#C0C0C0" d="M966.704,326.839L966.704,326.839l0.351,0.352L966.704,326.839z"/>
+ <path id="path3373" fill="#C0C0C0" d="M1186.111,327.367L1186.111,327.367l0.063,0.115L1186.111,327.367z"/>
+ <path id="path3375" fill="#C0C0C0" d="M856.911,327.716L856.911,327.716l0.059-0.115L856.911,327.716z"/>
+ <path id="path3377" fill="#C0C0C0" d="M1212.228,327.716L1212.228,327.716l0.059-0.115l0.06,0.059L1212.228,327.716z"/>
+ <path id="path3379" fill="#C0C0C0" d="M856.384,327.775L856.384,327.775l0.116-0.059L856.384,327.775z"/>
+ <path id="path3381" fill="#C0C0C0" d="M1046.575,327.775L1046.575,327.775l0.06-0.115l0.058,0.059L1046.575,327.775z"/>
+ <path id="path3383" fill="#C0C0C0" d="M1047.687,326.722L1047.687,326.722l1.287,1.639L1047.687,326.722z"/>
+ <path id="path3385" fill="#C0C0C0" d="M856.854,327.892L856.854,327.892l0.06-0.117L856.854,327.892z"/>
+ <path id="path3387" fill="#C0C0C0" d="M282.477,327.306L282.477,327.306l0.293,0.234L282.477,327.306z"/>
+ <path id="path3389" fill="#C0C0C0" d="M856.441,327.951L856.441,327.951l0.06-0.117L856.441,327.951z"/>
+ <path id="path3391" fill="#C0C0C0" d="M856.733,328.009L856.733,328.009l0.063-0.117L856.733,328.009z"/>
+ <path id="path3393" fill="#C0C0C0" d="M1212.523,328.009L1212.523,328.009l0.059-0.117L1212.523,328.009z"/>
+ <path id="path3395" fill="#C0C0C0" d="M856.616,328.07L856.616,328.07l0.059-0.119L856.616,328.07z"/>
+ <path id="path3397" fill="#C0C0C0" d="M421.02,327.601L421.02,327.601v0.525V327.601z"/>
+ <path id="path3399" fill="#C0C0C0" d="M1046.634,327.775L1046.634,327.775l0.291,0.586L1046.634,327.775z"/>
+ <path id="path3401" fill="#C0C0C0" d="M285.638,328.009L285.638,328.009l0.41,0.061l-1.289,0.701L285.638,328.009z"/>
+ <path id="path3403" fill="#C0C0C0" d="M1059.339,328.302L1059.339,328.302l-0.059,0.352l-1.111-0.059L1059.339,328.302z"/>
+ <path id="path3405" fill="#C0C0C0" d="M1075.502,327.951L1075.502,327.951l3.275,1.582L1075.502,327.951z"/>
+ <path id="path3407" fill="#C0C0C0" d="M429.569,326.546L429.569,326.546l-0.762,2.811l-1.054,0.234l0.292,0.994l-0.526-0.41
+ l-4.919,1.875l-1.463-1.406l0.76-4.332l0.82-0.351l2.46,0.526L429.569,326.546z"/>
+ <path id="path3409" fill="#C0C0C0" d="M418.034,329.181L418.034,329.181l1.17-1.699l-1.698,3.279L418.034,329.181z"/>
+ <path id="path3411" fill="#C0C0C0" d="M1073.566,328.886L1073.566,328.886l0.354,0.529L1073.566,328.886z"/>
+ <path id="path3413" fill="#C0C0C0" d="M1059.455,328.771L1059.455,328.771l0.527,0.059L1059.455,328.771z"/>
+ <path id="path3415" fill="#C0C0C0" d="M1107.297,329.589L1107.297,329.589l0.059-0.115L1107.297,329.589z"/>
+ <path id="path3417" fill="#C0C0C0" d="M985.208,329.24L985.208,329.24l0.115,0.352L985.208,329.24z"/>
+ <path id="path3419" fill="#C0C0C0" d="M1055.884,329.648L1055.884,329.648h0.058H1055.884z"/>
+ <path id="path3421" fill="#C0C0C0" d="M1055.884,329.648L1055.884,329.648l0.354,0.059L1055.884,329.648z"/>
+ <path id="path3423" fill="#C0C0C0" d="M1213.518,329.648L1213.518,329.648l0.117,0.41L1213.518,329.648z"/>
+ <path id="path3425" fill="#C0C0C0" d="M1106.36,329.943L1106.36,329.943l0.06-0.117L1106.36,329.943z"/>
+ <path id="path3427" fill="#C0C0C0" d="M1047.804,329.765L1047.804,329.765l0.408,0.293l-0.76-0.059L1047.804,329.765z"/>
+ <path id="path3429" fill="#C0C0C0" d="M281.598,330.175L281.598,330.175l0.526-0.117L281.598,330.175z"/>
+ <path id="path3431" fill="#C0C0C0" d="M1219.313,330.351L1219.313,330.351l0.059-0.115l0.059,0.059L1219.313,330.351z"/>
+ <path id="path3433" fill="#C0C0C0" d="M1217.852,330.117L1217.852,330.117l0.233,0.352L1217.852,330.117z"/>
+ <path id="path3435" fill="#C0C0C0" d="M948.143,331.816L948.143,331.816l-1.115-2.986L948.143,331.816z"/>
+ <path id="path3437" fill="#C0C0C0" d="M284.643,330.351L284.643,330.351l0.175,0.117L284.643,330.351z"/>
+ <path id="path3439" fill="#C0C0C0" d="M1107.297,330.527L1107.297,330.527l0.059-0.115L1107.297,330.527z"/>
+ <path id="path3441" fill="#C0C0C0" d="M1033.691,330.175L1033.691,330.175l-2.635,0.529L1033.691,330.175z"/>
+ <path id="path3443" fill="#C0C0C0" d="M619.407,330.585L619.407,330.585l-0.059,0.119L619.407,330.585z"/>
+ <path id="path3445" fill="#C0C0C0" d="M1125.155,330.351L1125.155,330.351l0.704,0.82l-0.879-0.41L1125.155,330.351z"/>
+ <path id="path3447" fill="#C0C0C0" d="M1074.327,330.82L1074.327,330.82h0.06H1074.327z"/>
+ <path id="path3449" fill="#C0C0C0" d="M1214.63,330.644L1214.63,330.644l-0.176,0.41L1214.63,330.644z"/>
+ <path id="path3451" fill="#C0C0C0" d="M1074.327,330.82L1074.327,330.82h0.763H1074.327z"/>
+ <path id="path3453" fill="#C0C0C0" d="M1047.452,330.644L1047.452,330.644l2.398,0.645L1047.452,330.644z"/>
+ <path id="path3455" fill="#C0C0C0" d="M982.397,331.115L982.397,331.115l-0.411,0.35L982.397,331.115z"/>
+ <path id="path3457" fill="#C0C0C0" d="M1101.44,331.582L1101.44,331.582l0.117,0.059L1101.44,331.582z"/>
+ <path id="path3459" fill="#C0C0C0" d="M1033.104,331.521L1033.104,331.521l-0.408,0.354L1033.104,331.521z"/>
+ <path id="path3461" fill="#C0C0C0" d="M1075.677,331.23L1075.677,331.23l4.917,0.645L1075.677,331.23z"/>
+ <path id="path3463" fill="#C0C0C0" d="M1036.735,331.406L1036.735,331.406l3.163,0.82L1036.735,331.406z"/>
+ <path id="path3465" fill="#C0C0C0" d="M1032.284,332.05L1032.284,332.05l-0.232,0.232L1032.284,332.05z"/>
+ <path id="path3467" fill="#C0C0C0" d="M1032.284,332.05L1032.284,332.05v0.059V332.05z"/>
+ <path id="path3469" fill="#C0C0C0" d="M1071.284,331.757L1071.284,331.757l-0.235,0.703L1071.284,331.757z"/>
+ <path id="path3471" fill="#C0C0C0" d="M1216.387,332.05L1216.387,332.05l0.175,0.176L1216.387,332.05z"/>
+ <path id="path3473" fill="#C0C0C0" d="M1040.248,331.875L1040.248,331.875l3.279,0.117L1040.248,331.875z"/>
+ <path id="path3475" fill="#C0C0C0" d="M1057.582,331.521L1057.582,331.521l0.115,1.174L1057.582,331.521z"/>
+ <path id="path3477" fill="#C0C0C0" d="M1034.745,332.46L1034.745,332.46l0.059,0.176L1034.745,332.46z"/>
+ <path id="path3479" fill="#C0C0C0" d="M1021.452,345.226L1021.452,345.226l-1.581,0.115l-0.703-0.115l-0.233-0.879l1.055-4.744
+ l-3.103-3.104l0.058-1.58l1.99-2.521l-0.116-2.457l1.466-2.107l1.054-4.743l0.937-0.937l0.938,0.762l1.17-2.05l1.936,0.234
+ l4.916,1.639l3.867-0.059l4.566-2.342l-2.752,3.688l-0.762,0.293l-2.168,0.353l-1.521-0.353l-0.47-0.525l-4.45,0.352l-0.703-0.468
+ l-4.74,0.702l-0.646,3.396l2.105,2.752h1.582l1.758-2.107h3.925l2.519-0.117l-0.412,0.996l-1.813-0.469l-1.522,1.99l-2.52,1.521
+ l-1.287-0.41l0.117,0.705l1.349,0.643l2.693,3.396l1.461,4.393h-4.8l0.232-1.23l-2.519-1.814l-0.408-3.221l-1.99,1.23l0.525,4.977
+ L1021.452,345.226z"/>
+ <path id="path3481" fill="#C0C0C0" d="M715.674,333.103L715.674,333.103l-0.762-0.762l1.054,0.236L715.674,333.103z"/>
+ <path id="path3483" fill="#C0C0C0" d="M1071.811,332.695L1071.811,332.695l0.058,0.234L1071.811,332.695z"/>
+ <path id="path3485" fill="#C0C0C0" d="M1117.483,332.519L1117.483,332.519l-2.926,0.938L1117.483,332.519z"/>
+ <path id="path3487" fill="#C0C0C0" d="M743.664,333.339L743.664,333.339l0.583-0.41L743.664,333.339z"/>
+ <path id="path3489" fill="#C0C0C0" d="M950.482,333.923L950.482,333.923l-1.17-0.762L950.482,333.923z"/>
+ <path id="path3491" fill="#C0C0C0" d="M1042.125,332.578L1042.125,332.578l0.407,1.756L1042.125,332.578z"/>
+ <path id="path3493" fill="#C0C0C0" d="M971.62,330.82L971.62,330.82l1.523,3.338l0.703,2.344l-1.932-0.996l-2.931-2.635
+ L971.62,330.82z"/>
+ <path id="path3495" fill="#C0C0C0" d="M1119.007,333.457L1119.007,333.457l-0.291,0.41L1119.007,333.457z"/>
+ <path id="path3497" fill="#C0C0C0" d="M1072.455,333.75L1072.455,333.75v0.059V333.75z"/>
+ <path id="path3499" fill="#C0C0C0" d="M1072.455,333.75L1072.455,333.75v0.469V333.75z"/>
+ <path id="path3501" fill="#C0C0C0" d="M1217.793,334.392L1217.793,334.392l0.059-0.117l0.058,0.059L1217.793,334.392z"/>
+ <path id="path3503" fill="#C0C0C0" d="M1126.445,334.275L1126.445,334.275h1.638H1126.445z"/>
+ <path id="path3505" fill="#C0C0C0" d="M1062.032,334.861L1062.032,334.861l0.059-0.117L1062.032,334.861z"/>
+ <path id="path3507" fill="#C0C0C0" d="M1220.72,334.744L1220.72,334.744l0.116,0.176L1220.72,334.744z"/>
+ <path id="path3509" fill="#C0C0C0" d="M1133.647,334.744L1133.647,334.744l-0.117,0.232L1133.647,334.744z"/>
+ <path id="path3511" fill="#C0C0C0" d="M951.657,335.271L951.657,335.271v0.059V335.271z"/>
+ <path id="path3513" fill="#C0C0C0" d="M1133.473,335.154L1133.473,335.154l0.233,0.232L1133.473,335.154z"/>
+ <path id="path3515" fill="#C0C0C0" d="M1261.123,335.33L1261.123,335.33l0.116,0.059L1261.123,335.33z"/>
+ <path id="path3517" fill="#C0C0C0" d="M318.84,335.271L318.84,335.271l-0.646,0.703l0.234-0.998l0.469,0.178L318.84,335.271z"/>
+ <path id="path3519" fill="#C0C0C0" d="M977.243,335.505L977.243,335.505l0.06,0.232l-0.236,0.176L977.243,335.505z"/>
+ <path id="path3521" fill="#C0C0C0" d="M978.064,334.568L978.064,334.568l2.048,1.055L978.064,334.568z"/>
+ <path id="path3523" fill="#C0C0C0" d="M1129.723,335.855L1129.723,335.855l0.47,0.178L1129.723,335.855z"/>
+ <path id="path3525" fill="#C0C0C0" d="M974.959,335.796L974.959,335.796l0.232,0.41L974.959,335.796z"/>
+ <path id="path3527" fill="#C0C0C0" d="M952.593,336.384L952.593,336.384l0.059,0.174L952.593,336.384z"/>
+ <path id="path3529" fill="#C0C0C0" d="M1263.347,336.617L1263.347,336.617l0.059-0.115l0.063,0.059L1263.347,336.617z"/>
+ <path id="path3531" fill="#C0C0C0" d="M1135.929,336.324L1135.929,336.324v0.588V336.324z"/>
+ <path id="path3533" fill="#C0C0C0" d="M1049.969,335.681L1049.969,335.681h3.104h2.344l2.983,0.936l0.88,2.578l-3.34-1.873
+ l-4.916,0.467l-1.994,0.352L1049.969,335.681z"/>
+ <path id="path3535" fill="#C0C0C0" d="M1143.426,337.73L1143.426,337.73l0.116-0.061L1143.426,337.73z"/>
+ <path id="path3537" fill="#C0C0C0" d="M1042.767,336.558L1042.767,336.558l3.925,0.879L1042.767,336.558z"/>
+ <path id="path3539" fill="#C0C0C0" d="M1137.98,337.73L1137.98,337.73l0.117,0.176L1137.98,337.73z"/>
+ <path id="path3541" fill="#C0C0C0" d="M1008.687,337.554L1008.687,337.554l-0.117-0.059L1008.687,337.554z"/>
+ <path id="path3543" fill="#C0C0C0" d="M1051.375,337.906L1051.375,337.906l0.527,0.41L1051.375,337.906z"/>
+ <path id="path3545" fill="#C0C0C0" d="M1050.847,337.964L1050.847,337.964l-0.117,0.41L1050.847,337.964z"/>
+ <path id="path3547" fill="#C0C0C0" d="M1049.385,338.199L1049.385,338.199h0.059H1049.385z"/>
+ <path id="path3549" fill="#C0C0C0" d="M1032.168,338.082L1032.168,338.082h0.116H1032.168z"/>
+ <path id="path3551" fill="#C0C0C0" d="M1008.103,337.144L1008.103,337.144l-0.058,0.41L1008.103,337.144z"/>
+ <path id="path3553" fill="#C0C0C0" d="M1049.443,338.257L1049.443,338.257h0.408H1049.443z"/>
+ <path id="path3555" fill="#C0C0C0" d="M1052.137,338.431L1052.137,338.431v0.117V338.431z"/>
+ <path id="path3557" fill="#C0C0C0" d="M1129.489,334.628L1129.489,334.628l4.334,2.398l3.162,2.635l0.643,0.938l-0.524,1.756
+ l-2.46-4.215l-0.471-0.293l-4.038-2.459l-0.878-0.059L1129.489,334.628z"/>
+ <path id="path3559" fill="#C0C0C0" d="M485.784,339.195L485.784,339.195l-0.235,0.059L485.784,339.195z"/>
+ <path id="path3561" fill="#C0C0C0" d="M1031.818,339.603L1031.818,339.603l0.059-0.115l0.059,0.059L1031.818,339.603z"/>
+ <path id="path3563" fill="#C0C0C0" d="M1061.327,339.546L1061.327,339.546l0.12,0.352L1061.327,339.546z"/>
+ <path id="path3565" fill="#C0C0C0" d="M738.978,339.898L738.978,339.898l-0.117-0.061L738.978,339.898z"/>
+ <path id="path3567" fill="#C0C0C0" d="M55.22,339.837L55.22,339.837v0.176V339.837z"/>
+ <path id="path3569" fill="#C0C0C0" d="M1139.501,339.779L1139.501,339.779l-0.176,0.352L1139.501,339.779z"/>
+ <path id="path3571" fill="#C0C0C0" d="M1109.346,339.837L1109.346,339.837l0.116,0.176L1109.346,339.837z"/>
+ <path id="path3573" fill="#C0C0C0" d="M1031.935,339.603L1031.935,339.603l0.703,0.234L1031.935,339.603z"/>
+ <path id="path3575" fill="#C0C0C0" d="M1068.063,340.013L1068.063,340.013l0.646,0.469L1068.063,340.013z"/>
+ <path id="path3577" fill="#C0C0C0" d="M795.37,340.658L795.37,340.658l0.231,0.234L795.37,340.658z"/>
+ <path id="path3579" fill="#C0C0C0" d="M1141.082,341.009L1141.082,341.009l0.116-0.059L1141.082,341.009z"/>
+ <path id="path3581" fill="#C0C0C0" d="M1262.764,341.244L1262.764,341.244l0.058-0.117l0.06,0.059L1262.764,341.244z"/>
+ <path id="path3583" fill="#C0C0C0" d="M1062.09,341.183L1062.09,341.183h-0.058H1062.09z"/>
+ <path id="path3585" fill="#C0C0C0" d="M1259.366,341.476L1259.366,341.476l0.06-0.115l0.059,0.059L1259.366,341.476z"/>
+ <path id="path3587" fill="#C0C0C0" d="M1055.941,341.419L1055.941,341.419v0.059V341.419z"/>
+ <path id="path3589" fill="#C0C0C0" d="M1055.941,341.419L1055.941,341.419v0.059V341.419z"/>
+ <path id="path3591" fill="#C0C0C0" d="M1112.45,341.593L1112.45,341.593l0.06-0.117l0.059,0.061L1112.45,341.593z"/>
+ <path id="path3593" fill="#C0C0C0" d="M1159.997,341.593L1159.997,341.593l0.059-0.117L1159.997,341.593z"/>
+ <path id="path3595" fill="#C0C0C0" d="M794.371,341.654L794.371,341.654l0.062-0.117l0.059,0.057L794.371,341.654z"/>
+ <path id="path3597" fill="#C0C0C0" d="M1112.567,341.537L1112.567,341.537l-0.175,0.818L1112.567,341.537z"/>
+ <path id="path3599" fill="#C0C0C0" d="M794.491,341.593L794.491,341.593l0.293,0.82L794.491,341.593z"/>
+ <path id="path3601" fill="#C0C0C0" d="M1124.923,341.947L1124.923,341.947l0.175,0.115L1124.923,341.947z"/>
+ <path id="path3603" fill="#C0C0C0" d="M1062.443,342.123L1062.443,342.123v0.059V342.123z"/>
+ <path id="path3605" fill="#C0C0C0" d="M1006.638,342.355L1006.638,342.355v0.059V342.355z"/>
+ <path id="path3607" fill="#C0C0C0" d="M1123.69,342.707L1123.69,342.707l0.06,0.117L1123.69,342.707z"/>
+ <path id="path3609" fill="#C0C0C0" d="M1030.765,341.83L1030.765,341.83l-1.523,2.693L1030.765,341.83z"/>
+ <path id="path3611" fill="#C0C0C0" d="M1031.993,341.068L1031.993,341.068l-0.879,4.508L1031.993,341.068z"/>
+ <path id="path3613" fill="#C0C0C0" d="M739.098,344.697L739.098,344.697l-0.062-1.111l0.178,1.111H739.098z"/>
+ <path id="path3615" fill="#C0C0C0" d="M1116.431,343.878L1116.431,343.878l0.059-0.117l0.059,0.059L1116.431,343.878z"/>
+ <path id="path3617" fill="#C0C0C0" d="M851.7,344.054L851.7,344.054l0.116-0.059L851.7,344.054z"/>
+ <path id="path3619" fill="#C0C0C0" d="M852.403,344.054L852.403,344.054l0.06-0.117L852.403,344.054z"/>
+ <path id="path3621" fill="#C0C0C0" d="M1134.289,340.189L1134.289,340.189l0.762,1.873l-1.521,1.113l-3.278,3.688l-3.572,0.938
+ l-3.455-0.996l-2.343-1.932h2.284h3.279h3.452l1.173-1.758L1134.289,340.189z"/>
+ <path id="path3623" fill="#C0C0C0" d="M1142.839,343.234L1142.839,343.234l0.175,1.463l-0.233-1.404L1142.839,343.234z"/>
+ <path id="path3625" fill="#C0C0C0" d="M852.05,344.113L852.05,344.113l0.059-0.117L852.05,344.113z"/>
+ <path id="path3627" fill="#C0C0C0" d="M1028.188,343.468L1028.188,343.468l0.233,1.289l-0.762-0.996L1028.188,343.468z"/>
+ <path id="path3629" fill="#C0C0C0" d="M851.583,344.228L851.583,344.228l0.059-0.115L851.583,344.228z"/>
+ <path id="path3631" fill="#C0C0C0" d="M1159.061,344.289L1159.061,344.289l0.06-0.117L1159.061,344.289z"/>
+ <path id="path3633" fill="#C0C0C0" d="M1116.547,343.878L1116.547,343.878l0.354,0.527L1116.547,343.878z"/>
+ <path id="path3635" fill="#C0C0C0" d="M853.282,344.406L853.282,344.406l0.116-0.059L853.282,344.406z"/>
+ <path id="path3637" fill="#C0C0C0" d="M853.282,344.523L853.282,344.523l0.059-0.117L853.282,344.523z"/>
+ <path id="path3639" fill="#C0C0C0" d="M959.325,344.875L959.325,344.875l-0.763-0.703L959.325,344.875z"/>
+ <path id="path3641" fill="#C0C0C0" d="M851.934,344.638L851.934,344.638l0.116-0.059L851.934,344.638z"/>
+ <path id="path3643" fill="#C0C0C0" d="M1159.469,344.697L1159.469,344.697l0.059-0.115L1159.469,344.697z"/>
+ <path id="path3645" fill="#C0C0C0" d="M851.7,344.757L851.7,344.757l0.06-0.119L851.7,344.757z"/>
+ <path id="path3647" fill="#C0C0C0" d="M1159.939,344.875L1159.939,344.875l0.059-0.117L1159.939,344.875z"/>
+ <path id="path3649" fill="#C0C0C0" d="M1160.7,344.931L1160.7,344.931l0.059-0.115L1160.7,344.931z"/>
+ <path id="path3651" fill="#C0C0C0" d="M1095,357.697L1095,357.697l-3.571-3.277l0.583-1.113l-4.333,1.463l0.645-2.572l-1.522-1.289
+ l1.994-0.178l-2.344-0.818l2.165,0.176l-1.758-0.879l-2.164-4.627l-2.811-1.641l-0.587-0.115l-0.995,0.115l-3.104-1.52
+ l-2.637-0.176l-4.271-2.107l-0.354-3.223l-1.461,3.279l-1.936,0.762l0.116-1.875l-3.452-2.693h2.868l4.098-2.398l-4.393,0.762
+ l-2.165-0.762l-3.921-2.344l0.994-2.166l4.214-1.639l1.936,0.352l3.572,0.994l0.818,2.459l-0.236,3.105l3.339,3.688l1.466-0.115
+ l3.043-3.924l2.752-0.41l2.343-2.227l0.292,0.059l0.47,0.469l2.049,0.586l3.926,1.992l4.333,0.877l3.746,1.641l5.096,1.287
+ l3.514,1.348l0.175,0.645l4.334,2.93l-0.116,2.283l2.46,0.41l3.571,1.346l1.346,2.4l-2.401,2.811l3.338,2.049l1.64,3.633h2.52
+ l-0.292,1.463l2.752,0.469l3.044,2.107l-1.814,0.293l1.11,0.879l-1.637,0.469l-1.289-0.529l-0.351-0.701l-2.752-0.232l-4.393-0.645
+ l-2.871-2.871l0.236-0.879l-1.349-0.115l-1.698-3.221l-1.111-0.586l-4.449-1.465v0.586l-0.116,0.469l-2.813-1.055l0.939,1.699
+ l-2.053-0.234l-4.332,1.113l4.217,2.809l-2.46,1.057l-1.462-0.586L1095,357.697z"/>
+ <path id="path3653" fill="#C0C0C0" d="M51.824,345.4L51.824,345.4l0.059-0.115L51.824,345.4z"/>
+ <path id="path3655" fill="#C0C0C0" d="M1218.2,345.517L1218.2,345.517l0.117-0.059L1218.2,345.517z"/>
+ <path id="path3657" fill="#C0C0C0" d="M1067.534,344.228L1067.534,344.228l-0.232,1.057l-0.82,0.877l0.82-1.934H1067.534z"/>
+ <path id="path3659" fill="#C0C0C0" d="M1065.898,345.576L1065.898,345.576l0.06-0.117l0.058,0.059L1065.898,345.576z"/>
+ <path id="path3661" fill="#C0C0C0" d="M1119.065,344.931L1119.065,344.931l0.82,0.527l-1.111-0.117L1119.065,344.931z"/>
+ <path id="path3663" fill="#C0C0C0" d="M1218.376,345.636L1218.376,345.636l0.059-0.119L1218.376,345.636z"/>
+ <path id="path3665" fill="#C0C0C0" d="M1065.957,345.576L1065.957,345.576l0.232,0.41L1065.957,345.576z"/>
+ <path id="path3667" fill="#C0C0C0" d="M967.758,345.81L967.758,345.81v0.059V345.81z"/>
+ <path id="path3669" fill="#C0C0C0" d="M995.573,345.753L995.573,345.753v0.408V345.753z"/>
+ <path id="path3671" fill="#C0C0C0" d="M1072.222,344.697L1072.222,344.697l-0.645,2.813L1072.222,344.697z"/>
+ <path id="path3673" fill="#C0C0C0" d="M1222.418,347.041L1222.418,347.041l0.059-0.117l0.058,0.059L1222.418,347.041z"/>
+ <path id="path3675" fill="#C0C0C0" d="M737.279,346.455L737.279,346.455l0.471-0.701L737.279,346.455z"/>
+ <path id="path3677" fill="#C0C0C0" d="M850.88,347.158L850.88,347.158l0.059-0.117L850.88,347.158z"/>
+ <path id="path3679" fill="#C0C0C0" d="M1022.977,345.927L1022.977,345.927l0.233,0.762l-0.351,1.348l-0.12-0.705l0.12-1.463
+ L1022.977,345.927z"/>
+ <path id="path3681" fill="#C0C0C0" d="M1143.134,344.697L1143.134,344.697l3.922,3.281L1143.134,344.697z"/>
+ <path id="path3683" fill="#C0C0C0" d="M851.055,347.332L851.055,347.332l0.06-0.115L851.055,347.332z"/>
+ <path id="path3685" fill="#C0C0C0" d="M850.177,347.451L850.177,347.451l0.117-0.059L850.177,347.451z"/>
+ <path id="path3687" fill="#C0C0C0" d="M850.118,347.568L850.118,347.568l0.059-0.117L850.118,347.568z"/>
+ <path id="path3689" fill="#C0C0C0" d="M1219.021,347.683L1219.021,347.683l0.06-0.115L1219.021,347.683z"/>
+ <path id="path3691" fill="#C0C0C0" d="M849.943,348.093L849.943,348.093l0.117-0.059L849.943,348.093z"/>
+ <path id="path3693" fill="#C0C0C0" d="M1070.815,347.273L1070.815,347.273l1.406,1.467L1070.815,347.273z"/>
+ <path id="path3695" fill="#C0C0C0" d="M969.456,348.562L969.456,348.562l-0.471,0.352L969.456,348.562z"/>
+ <path id="path3697" fill="#C0C0C0" d="M850.235,349.031L850.235,349.031l0.06-0.117L850.235,349.031z"/>
+ <path id="path3699" fill="#C0C0C0" d="M1147.876,349.441L1147.876,349.441l-0.117,0.117L1147.876,349.441z"/>
+ <path id="path3701" fill="#C0C0C0" d="M996.39,349.792L996.39,349.792h3.163H996.39z"/>
+ <path id="path3703" fill="#C0C0C0" d="M1004.647,349.617L1004.647,349.617l0.995,0.234L1004.647,349.617z"/>
+ <path id="path3705" fill="#C0C0C0" d="M1149.399,348.796L1149.399,348.796l3.63,2.752L1149.399,348.796z"/>
+ <path id="path3707" fill="#C0C0C0" d="M1146.765,350.085L1146.765,350.085l0.466,0.469L1146.765,350.085z"/>
+ <path id="path3709" fill="#C0C0C0" d="M996.39,349.851L996.39,349.851l4.217,0.176L996.39,349.851z"/>
+ <path id="path3711" fill="#C0C0C0" d="M1062.443,350.613L1062.443,350.613l0.06-0.117l0.058,0.059L1062.443,350.613z"/>
+ <path id="path3713" fill="#C0C0C0" d="M797.302,350.671L797.302,350.671l0.058-0.117L797.302,350.671z"/>
+ <path id="path3715" fill="#C0C0C0" d="M1051.491,350.437L1051.491,350.437l0.06,0.527L1051.491,350.437z"/>
+ <path id="path3717" fill="#C0C0C0" d="M1221.948,350.845L1221.948,350.845l0.06-0.117l0.058,0.059L1221.948,350.845z"/>
+ <path id="path3719" fill="#C0C0C0" d="M1062.502,350.613L1062.502,350.613l0.762,0.469L1062.502,350.613z"/>
+ <path id="path3721" fill="#C0C0C0" d="M985.732,353.13L985.732,353.13l-1.757-0.41l-1.345,0.059h-4.041l-5.097-1.23l-4.213-2.166
+ l0.938,0.178l1.814-3.164h3.631l4.508,1.23l1.406,1.934l5.149,0.176l0.703,0.408l2.228-1.934l0.467,0.938l4.979,0.586l0.646,2.342
+ l1.52,0.762l4.393,0.176l0.471,3.455l-4.684-1.758l-1.993,0.588l-3.396-0.295l-3.455-0.584L985.732,353.13z"/>
+ <path id="path3723" fill="#C0C0C0" d="M1146.178,351.316L1146.178,351.316l0.175,0.176L1146.178,351.316z"/>
+ <path id="path3725" fill="#C0C0C0" d="M854.099,351.724L854.099,351.724v-0.35V351.724z"/>
+ <path id="path3727" fill="#C0C0C0" d="M854.099,351.724L854.099,351.724v-0.35V351.724z"/>
+ <path id="path3729" fill="#C0C0C0" d="M1153.732,351.548L1153.732,351.548l-0.12,0.117L1153.732,351.548z"/>
+ <path id="path3731" fill="#C0C0C0" d="M1227.394,351.902L1227.394,351.902l0.063-0.117l0.058,0.059L1227.394,351.902z"/>
+ <path id="path3733" fill="#C0C0C0" d="M1155.723,351.841L1155.723,351.841l0.408,0.293L1155.723,351.841z"/>
+ <path id="path3735" fill="#C0C0C0" d="M1062.148,350.613L1062.148,350.613l-1.814,3.16L1062.148,350.613z"/>
+ <path id="path3737" fill="#C0C0C0" d="M1047.274,352.017L1047.274,352.017l0.237,0.059L1047.274,352.017z"/>
+ <path id="path3739" fill="#C0C0C0" d="M1156.073,352.195L1156.073,352.195l0.47,0.291L1156.073,352.195z"/>
+ <path id="path3741" fill="#C0C0C0" d="M981.928,352.603L981.928,352.603h0.059H981.928z"/>
+ <path id="path3743" fill="#C0C0C0" d="M981.928,352.603L981.928,352.603l0.82,0.293L981.928,352.603z"/>
+ <path id="path3745" fill="#C0C0C0" d="M1149.69,352.253L1149.69,352.253l0.82,0.701l-0.291,0.586l-0.704-0.82L1149.69,352.253z"/>
+ <path id="path3747" fill="#C0C0C0" d="M1042.184,352.486L1042.184,352.486l2.927,0.059L1042.184,352.486z"/>
+ <path id="path3749" fill="#C0C0C0" d="M739.156,353.658L739.156,353.658l0.643-1.172L739.156,353.658z"/>
+ <path id="path3751" fill="#C0C0C0" d="M1086.392,351.548L1086.392,351.548l1.229,2.461l-4.393,1.229L1086.392,351.548z"/>
+ <path id="path3753" fill="#C0C0C0" d="M1055.063,353.011L1055.063,353.011l0.471,0.879l-0.646-0.818L1055.063,353.011z"/>
+ <path id="path3755" fill="#C0C0C0" d="M1149.516,353.541L1149.516,353.541l0.06-0.117l0.059,0.057L1149.516,353.541z"/>
+ <path id="path3757" fill="#C0C0C0" d="M549.023,353.658L549.023,353.658l0.353-0.117L549.023,353.658z"/>
+ <path id="path3759" fill="#C0C0C0" d="M108.916,353.716L108.916,353.716l0.059-0.117l0.058,0.059L108.916,353.716z"/>
+ <path id="path3761" fill="#C0C0C0" d="M1151.506,353.189L1151.506,353.189l0.412,0.762L1151.506,353.189z"/>
+ <path id="path3763" fill="#C0C0C0" d="M105.462,353.599L105.462,353.599l-0.178,0.291L105.462,353.599z"/>
+ <path id="path3765" fill="#C0C0C0" d="M1226.223,353.89L1226.223,353.89l0.059-0.117l0.06,0.061L1226.223,353.89z"/>
+ <path id="path3767" fill="#C0C0C0" d="M1156.366,352.076L1156.366,352.076l3.336,1.641L1156.366,352.076z"/>
+ <path id="path3769" fill="#C0C0C0" d="M1149.633,353.541L1149.633,353.541l0.116,0.879L1149.633,353.541z"/>
+ <path id="path3771" fill="#C0C0C0" d="M1048.623,354.068L1048.623,354.068l1.054,0.115l-1.17-0.057L1048.623,354.068z"/>
+ <path id="path3773" fill="#C0C0C0" d="M1017.998,354.183L1017.998,354.183l-0.116,0.469L1017.998,354.183z"/>
+ <path id="path3775" fill="#C0C0C0" d="M1059.983,354.009L1059.983,354.009l-0.703,0.877L1059.983,354.009z"/>
+ <path id="path3777" fill="#C0C0C0" d="M1151.564,354.3L1151.564,354.3l0.354,0.352L1151.564,354.3z"/>
+ <path id="path3779" fill="#C0C0C0" d="M1041.068,354.242L1041.068,354.242l-0.524,0.469L1041.068,354.242z"/>
+ <path id="path3781" fill="#C0C0C0" d="M1151.331,354.419L1151.331,354.419l0.407,0.469L1151.331,354.419z"/>
+ <path id="path3783" fill="#C0C0C0" d="M1153.029,353.599L1153.029,353.599l1.286,2.166L1153.029,353.599z"/>
+ <path id="path3785" fill="#C0C0C0" d="M1087.329,354.3L1087.329,354.3l-0.82,0.762L1087.329,354.3z"/>
+ <path id="path3787" fill="#C0C0C0" d="M1036.913,354.183L1036.913,354.183l2.34,0.703L1036.913,354.183z"/>
+ <path id="path3789" fill="#C0C0C0" d="M1032.052,354.71L1032.052,354.71l0.937-0.059l-0.059,0.41l-0.116,0.059L1032.052,354.71z"/>
+ <path id="path3791" fill="#C0C0C0" d="M1103.139,355.003L1103.139,355.003l0.059-0.115l0.059,0.059L1103.139,355.003z"/>
+ <path id="path3793" fill="#C0C0C0" d="M1035.215,354.947L1035.215,354.947l0.937-0.588l-0.295,1.23L1035.215,354.947z"/>
+ <path id="path3795" fill="#C0C0C0" d="M1171.3,355.062L1171.3,355.062l0.116-0.059L1171.3,355.062z"/>
+ <path id="path3797" fill="#C0C0C0" d="M1033.163,354.652L1033.163,354.652l1.936-0.059L1033.163,354.652z"/>
+ <path id="path3799" fill="#C0C0C0" d="M1103.198,355.003L1103.198,355.003l0.878,0.469l-0.938-0.41L1103.198,355.003z"/>
+ <path id="path3801" fill="#C0C0C0" d="M1001.838,354.009L1001.838,354.009l4.333,1.111L1001.838,354.009z"/>
+ <path id="path3803" fill="#C0C0C0" d="M1160.348,355.062L1160.348,355.062l0.292,0.586L1160.348,355.062z"/>
+ <path id="path3805" fill="#C0C0C0" d="M1229.149,355.296L1229.149,355.296v0.293V355.296z"/>
+ <path id="path3807" fill="#C0C0C0" d="M1022.157,354.652L1022.157,354.652l4.392,1.172l2.692,0.176l2.52-1.404l-1.698,1.641
+ l-3.047,0.643l-2.223,0.178l-3.927-0.293L1022.157,354.652z"/>
+ <path id="path3809" fill="#C0C0C0" d="M1229.212,355.355L1229.212,355.355l-0.063,0.293L1229.212,355.355z"/>
+ <path id="path3811" fill="#C0C0C0" d="M1152.501,355.179L1152.501,355.179l0.059,1.055L1152.501,355.179z"/>
+ <path id="path3813" fill="#C0C0C0" d="M1102.847,355.238L1102.847,355.238l-0.178-0.059L1102.847,355.238z"/>
+ <path id="path3815" fill="#C0C0C0" d="M1008.336,354.478L1008.336,354.478l-1.111,2.457L1008.336,354.478z"/>
+ <path id="path3817" fill="#C0C0C0" d="M1258.313,355.824L1258.313,355.824l0.06-0.115L1258.313,355.824z"/>
+ <path id="path3819" fill="#C0C0C0" d="M1019.288,355.238L1019.288,355.238v0.938V355.238z"/>
+ <path id="path3821" fill="#C0C0C0" d="M1130.542,355.238L1130.542,355.238l-0.06,1.172l-0.231-1.055l0.291-0.176V355.238z"/>
+ <path id="path3823" fill="#C0C0C0" d="M1011.441,355.062L1011.441,355.062l2.636,1.289l3.63-1.289l0.643,1.172l-1.694,0.117
+ l0.815,0.352h-1.815l-4.8,0.938L1011.441,355.062z"/>
+ <path id="path3825" fill="#C0C0C0" d="M1154.728,355.531L1154.728,355.531l0.467,0.178L1154.728,355.531z"/>
+ <path id="path3827" fill="#C0C0C0" d="M1005.585,356.058L1005.585,356.058l0.175,0.467L1005.585,356.058z"/>
+ <path id="path3829" fill="#C0C0C0" d="M1152.796,356.234L1152.796,356.234l0.467-0.059L1152.796,356.234z"/>
+ <path id="path3831" fill="#C0C0C0" d="M1155.489,356.175L1155.489,356.175l0.116,0.352L1155.489,356.175z"/>
+ <path id="path3833" fill="#C0C0C0" d="M1155.489,356.175L1155.489,356.175v0.469V356.175z"/>
+ <path id="path3835" fill="#C0C0C0" d="M111.083,356.644L111.083,356.644l0.059-0.117l0.059,0.059L111.083,356.644z"/>
+ <path id="path3837" fill="#C0C0C0" d="M107.629,356.527L107.629,356.527l-0.646,0.467L107.629,356.527z"/>
+ <path id="path3839" fill="#C0C0C0" d="M112.956,356.935L112.956,356.935l0.059-0.115l0.058,0.059L112.956,356.935z"/>
+ <path id="path3841" fill="#C0C0C0" d="M109.443,356.82L109.443,356.82l-0.352,0.234L109.443,356.82z"/>
+ <path id="path3843" fill="#C0C0C0" d="M1164.272,354.83L1164.272,354.83l2.34,4.625L1164.272,354.83z"/>
+ <path id="path3845" fill="#C0C0C0" d="M44.563,357.228L44.563,357.228l0.058-0.115L44.563,357.228z"/>
+ <path id="path3847" fill="#C0C0C0" d="M1158.591,357.228L1158.591,357.228l0.292,0.061L1158.591,357.228z"/>
+ <path id="path3849" fill="#C0C0C0" d="M1162.279,357.228L1162.279,357.228l0.471,0.41l-0.703-0.234L1162.279,357.228z"/>
+ <path id="path3851" fill="#C0C0C0" d="M1159.061,357.345L1159.061,357.345l-0.058,0.293L1159.061,357.345z"/>
+ <path id="path3853" fill="#C0C0C0" d="M1135.638,357.171L1135.638,357.171l1.581,0.525L1135.638,357.171z"/>
+ <path id="path3855" fill="#C0C0C0" d="M1162.924,357.464L1162.924,357.464l0.292,0.232L1162.924,357.464z"/>
+ <path id="path3857" fill="#C0C0C0" d="M1161.109,357.638L1161.109,357.638l0.116,0.059L1161.109,357.638z"/>
+ <path id="path3859" fill="#C0C0C0" d="M1260.536,358.048L1260.536,358.048l0.116-0.059L1260.536,358.048z"/>
+ <path id="path3861" fill="#C0C0C0" d="M762.226,358.402L762.226,358.402h0.467H762.226z"/>
+ <path id="path3863" fill="#C0C0C0" d="M110.965,358.458L110.965,358.458l0.059-0.115l0.06,0.059L110.965,358.458z"/>
+ <path id="path3865" fill="#C0C0C0" d="M762.226,358.402L762.226,358.402h0.467H762.226z"/>
+ <path id="path3867" fill="#C0C0C0" d="M1039.137,358.869L1039.137,358.869l-2.344,2.459l-3.395,0.703l1.054-0.994l-0.645-0.178
+ l0.291-1.404l1.115-0.996l4.097-2.518l4.979-0.527l2.576-0.293l-2.927,1.934L1039.137,358.869z"/>
+ <path id="path3869" fill="#C0C0C0" d="M1262.764,358.576L1262.764,358.576l0.058-0.117L1262.764,358.576z"/>
+ <path id="path3871" fill="#C0C0C0" d="M1127.44,357.992L1127.44,357.992l0.525,0.584l-0.059,0.352l-0.938-0.525L1127.44,357.992z"
+ />
+ <path id="path3873" fill="#C0C0C0" d="M107.511,358.402L107.511,358.402l-0.06,0.408L107.511,358.402z"/>
+ <path id="path3875" fill="#C0C0C0" d="M762.813,358.458L762.813,358.458l0.233,0.059L762.813,358.458z"/>
+ <path id="path3877" fill="#C0C0C0" d="M1128.377,358.402L1128.377,358.402l1.402,1.227L1128.377,358.402z"/>
+ <path id="path3879" fill="#C0C0C0" d="M1166.554,358.458L1166.554,358.458l0.646,0.996L1166.554,358.458z"/>
+ <path id="path3881" fill="#C0C0C0" d="M1160.7,358.107L1160.7,358.107l2.398,0.645L1160.7,358.107z"/>
+ <path id="path3883" fill="#C0C0C0" d="M114.829,359.865L114.829,359.865l0.06-0.117l0.058,0.059L114.829,359.865z"/>
+ <path id="path3885" fill="#C0C0C0" d="M1168.664,359.748L1168.664,359.748l0.059,0.41L1168.664,359.748z"/>
+ <path id="path3887" fill="#C0C0C0" d="M111.374,359.748L111.374,359.748l0.527,0.117L111.374,359.748z"/>
+ <path id="path3889" fill="#C0C0C0" d="M1017.823,358.751L1017.823,358.751l4.038,0.117l2.228,1.814l-1.229,1.172l-1.936-1.172
+ L1017.823,358.751z"/>
+ <path id="path3891" fill="#C0C0C0" d="M1186.64,360.333L1186.64,360.333l0.059-0.117l0.059,0.059L1186.64,360.333z"/>
+ <path id="path3893" fill="#C0C0C0" d="M71.791,360.449L71.791,360.449l0.059-0.115L71.791,360.449z"/>
+ <path id="path3895" fill="#C0C0C0" d="M114.479,360.449L114.479,360.449l0.058-0.115l0.061,0.057L114.479,360.449z"/>
+ <path id="path3897" fill="#C0C0C0" d="M71.791,360.568L71.791,360.568l0.059-0.119L71.791,360.568z"/>
+ <path id="path3899" fill="#C0C0C0" d="M1186.989,360.626L1186.989,360.626l0.063-0.119L1186.989,360.626z"/>
+ <path id="path3901" fill="#C0C0C0" d="M110.965,360.39L110.965,360.39l0.118,0.059L110.965,360.39z"/>
+ <path id="path3903" fill="#C0C0C0" d="M33.555,360.917L33.555,360.917l0.058-0.117L33.555,360.917z"/>
+ <path id="path3905" fill="#C0C0C0" d="M64.121,361.152L64.121,361.152l0.059-0.115L64.121,361.152z"/>
+ <path id="path3907" fill="#C0C0C0" d="M1098.98,361.386L1098.98,361.386l0.175-0.352L1098.98,361.386z"/>
+ <path id="path3909" fill="#C0C0C0" d="M1098.98,361.386L1098.98,361.386v-0.469V361.386z"/>
+ <path id="path3911" fill="#C0C0C0" d="M1099.45,361.679L1099.45,361.679l-0.232-0.117L1099.45,361.679z"/>
+ <path id="path3913" fill="#C0C0C0" d="M1033.222,361.679L1033.222,361.679l0.059-0.117L1033.222,361.679z"/>
+ <path id="path3915" fill="#C0C0C0" d="M1033.222,361.269L1033.222,361.269l-0.292,0.703L1033.222,361.269z"/>
+ <path id="path3917" fill="#C0C0C0" d="M798.121,361.914L798.121,361.914l0.059-0.117l0.059,0.061L798.121,361.914z"/>
+ <path id="path3919" fill="#C0C0C0" d="M33.906,362.148L33.906,362.148l0.117-0.059L33.906,362.148z"/>
+ <path id="path3921" fill="#C0C0C0" d="M798.296,362.207L798.296,362.207l0.059-0.117L798.296,362.207z"/>
+ <path id="path3923" fill="#C0C0C0" d="M33.789,362.324L33.789,362.324l0.059-0.117L33.789,362.324z"/>
+ <path id="path3925" fill="#C0C0C0" d="M116.002,362.382L116.002,362.382l0.058-0.119l0.059,0.061L116.002,362.382z"/>
+ <path id="path3927" fill="#C0C0C0" d="M112.547,362.324L112.547,362.324l-0.117,0.35L112.547,362.324z"/>
+ <path id="path3929" fill="#C0C0C0" d="M1027.252,362.673L1027.252,362.673l0.995-0.41l-0.879,0.588L1027.252,362.673z"/>
+ <path id="path3931" fill="#C0C0C0" d="M1166.379,361.447L1166.379,361.447l2.811,0.877L1166.379,361.447z"/>
+ <path id="path3933" fill="#C0C0C0" d="M1129.664,362.617L1129.664,362.617l0.115,0.234L1129.664,362.617z"/>
+ <path id="path3935" fill="#C0C0C0" d="M1099.567,362.966L1099.567,362.966h-0.116H1099.567z"/>
+ <path id="path3937" fill="#C0C0C0" d="M1130.366,362.851L1130.366,362.851l-0.059,0.291L1130.366,362.851z"/>
+ <path id="path3939" fill="#C0C0C0" d="M1135.579,362.91L1135.579,362.91l1.11,0.174L1135.579,362.91z"/>
+ <path id="path3941" fill="#C0C0C0" d="M1099.039,363.378L1099.039,363.378l-0.117-0.117L1099.039,363.378z"/>
+ <path id="path3943" fill="#C0C0C0" d="M1031.231,363.435L1031.231,363.435l1.873-1.172L1031.231,363.435z"/>
+ <path id="path3945" fill="#C0C0C0" d="M1182.131,363.378L1182.131,363.378l1.229-0.295l-1.17,0.646L1182.131,363.378z"/>
+ <path id="path3947" fill="#C0C0C0" d="M16.925,363.904L16.925,363.904l0.116-0.059L16.925,363.904z"/>
+ <path id="path3949" fill="#C0C0C0" d="M1065.37,365.369L1065.37,365.369l-0.351-0.996L1065.37,365.369z"/>
+ <path id="path3951" fill="#C0C0C0" d="M1079.19,365.718L1079.19,365.718l0.82-1.287l-0.762,1.406L1079.19,365.718z"/>
+ <path id="path3953" fill="#C0C0C0" d="M1161.051,365.251L1161.051,365.251l0.175,0.117L1161.051,365.251z"/>
+ <path id="path3955" fill="#C0C0C0" d="M1184.591,365.251L1184.591,365.251h0.232H1184.591z"/>
+ <path id="path3957" fill="#C0C0C0" d="M1140.674,365.544L1140.674,365.544l0.059-0.117l0.06,0.061L1140.674,365.544z"/>
+ <path id="path3959" fill="#C0C0C0" d="M1140.791,365.486L1140.791,365.486l0.937,0.176L1140.791,365.486z"/>
+ <path id="path3961" fill="#C0C0C0" d="M66.287,365.896L66.287,365.896l0.059-0.059L66.287,365.896z"/>
+ <path id="path3963" fill="#C0C0C0" d="M1137.864,365.369L1137.864,365.369l1.99,1.055L1137.864,365.369z"/>
+ <path id="path3965" fill="#C0C0C0" d="M18.39,366.248L18.39,366.248l0.058-0.119L18.39,366.248z"/>
+ <path id="path3967" fill="#C0C0C0" d="M1078.075,366.597L1078.075,366.597l0.998-0.525L1078.075,366.597z"/>
+ <path id="path3969" fill="#C0C0C0" d="M1059.63,367.535L1059.63,367.535l-1.933-2.576l3.688,0.352L1059.63,367.535z"/>
+ <path id="path3971" fill="#C0C0C0" d="M1185.353,366.421L1185.353,366.421l0.059-0.115l0.06,0.059L1185.353,366.421z"/>
+ <path id="path3973" fill="#C0C0C0" d="M1058.46,367.244L1058.46,367.244l-1.99-0.117L1058.46,367.244z"/>
+ <path id="path3975" fill="#C0C0C0" d="M1185.411,366.365L1185.411,366.365l0.699,0.232L1185.411,366.365z"/>
+ <path id="path3977" fill="#C0C0C0" d="M751.687,365.603L751.687,365.603l0.646,1.932L751.687,365.603z"/>
+ <path id="path3979" fill="#C0C0C0" d="M1161.813,365.896L1161.813,365.896l1.815,1.23l-0.938-0.646l-1.053-0.41L1161.813,365.896z"
+ />
+ <path id="path3981" fill="#C0C0C0" d="M1065.253,366.775L1065.253,366.775l0.351-0.236L1065.253,366.775z"/>
+ <path id="path3983" fill="#C0C0C0" d="M1077.317,366.775L1077.317,366.775v-0.119V366.775z"/>
+ <path id="path3985" fill="#C0C0C0" d="M1077.9,367.945L1077.9,367.945l0.587-0.234L1077.9,367.945z"/>
+ <path id="path3987" fill="#C0C0C0" d="M939.825,368.353L939.825,368.353l-0.059,0.061L939.825,368.353z"/>
+ <path id="path3989" fill="#C0C0C0" d="M940.06,368.472L940.06,368.472l0.059-0.119L940.06,368.472z"/>
+ <path id="path3991" fill="#C0C0C0" d="M754.909,368.353L754.909,368.353l0.937-0.35L754.909,368.353z"/>
+ <path id="path3993" fill="#C0C0C0" d="M752.914,368.648L752.914,368.648l0.059-0.117l0.06,0.059L752.914,368.648z"/>
+ <path id="path3995" fill="#C0C0C0" d="M752.973,368.648L752.973,368.648l0.703,0.469L752.973,368.648z"/>
+ <path id="path3997" fill="#C0C0C0" d="M1221.715,369.583L1221.715,369.583l-0.175-0.059L1221.715,369.583z"/>
+ <path id="path3999" fill="#C0C0C0" d="M758.596,370.404L758.596,370.404l0.059-0.115l0.06,0.057L758.596,370.404z"/>
+ <path id="path4001" fill="#C0C0C0" d="M758.067,370.169L758.067,370.169l0.472,0.234L758.067,370.169z"/>
+ <path id="path4003" fill="#C0C0C0" d="M1184.825,371.869L1184.825,371.869h-0.116H1184.825z"/>
+ <path id="path4005" fill="#C0C0C0" d="M1245.43,372.513L1245.43,372.513h0.175H1245.43z"/>
+ <path id="path4007" fill="#C0C0C0" d="M1185.116,372.804L1185.116,372.804l0.06,0.061L1185.116,372.804z"/>
+ <path id="path4009" fill="#C0C0C0" d="M1077.958,373.097L1077.958,373.097l-0.059-0.41L1077.958,373.097z"/>
+ <path id="path4011" fill="#C0C0C0" d="M1187.46,373.214L1187.46,373.214l-0.06-0.117L1187.46,373.214z"/>
+ <path id="path4013" fill="#C0C0C0" d="M1258.313,374.091L1258.313,374.091l-0.762-1.053L1258.313,374.091z"/>
+ <path id="path4015" fill="#C0C0C0" d="M1188.63,373.683L1188.63,373.683l0.115-0.234L1188.63,373.683z"/>
+ <path id="path4017" fill="#C0C0C0" d="M1078.137,374.269L1078.137,374.269h0.175H1078.137z"/>
+ <path id="path4019" fill="#C0C0C0" d="M1078.137,374.269L1078.137,374.269v-0.645V374.269z"/>
+ <path id="path4021" fill="#C0C0C0" d="M1187.81,374.328L1187.81,374.328l-0.117-0.117L1187.81,374.328z"/>
+ <path id="path4023" fill="#C0C0C0" d="M1261.065,374.97L1261.065,374.97l-1.054-0.76L1261.065,374.97z"/>
+ <path id="path4025" fill="#C0C0C0" d="M1080.419,375.849L1080.419,375.849l-1.874-0.232L1080.419,375.849z"/>
+ <path id="path4027" fill="#C0C0C0" d="M103.295,375.439L103.295,375.439l-0.059-0.117L103.295,375.439z"/>
+ <path id="path4029" fill="#C0C0C0" d="M103.589,375.439L103.589,375.439l-0.118-0.059L103.589,375.439z"/>
+ <path id="path4031" fill="#C0C0C0" d="M1268.15,375.5L1268.15,375.5l0.116-0.061L1268.15,375.5z"/>
+ <path id="path4033" fill="#C0C0C0" d="M1187.93,375.91L1187.93,375.91l-0.12-0.471L1187.93,375.91z"/>
+ <path id="path4035" fill="#C0C0C0" d="M1268.854,375.732L1268.854,375.732l-0.059-0.115L1268.854,375.732z"/>
+ <path id="path4037" fill="#C0C0C0" d="M1265.104,375.849L1265.104,375.849l0.06-0.117L1265.104,375.849z"/>
+ <path id="path4039" fill="#C0C0C0" d="M1238.52,375.849L1238.52,375.849l0.354,0.061L1238.52,375.849z"/>
+ <path id="path4041" fill="#C0C0C0" d="M1264.521,376.083L1264.521,376.083l-0.296-0.115L1264.521,376.083z"/>
+ <path id="path4043" fill="#C0C0C0" d="M86.958,376.027L86.958,376.027l0.292,0.057l-0.059,0.059l-0.175,0.117l-0.059,0.061
+ l-0.234,0.059L86.958,376.027z"/>
+ <path id="path4045" fill="#C0C0C0" d="M90.004,376.378L90.004,376.378l0.116-0.061L90.004,376.378z"/>
+ <path id="path4047" fill="#C0C0C0" d="M86.43,376.435L86.43,376.435v-0.117V376.435z"/>
+ <path id="path4049" fill="#C0C0C0" d="M86.43,376.435L86.43,376.435v-0.117V376.435z"/>
+ <path id="path4051" fill="#C0C0C0" d="M85.786,376.552L85.786,376.552l-0.059-0.234L85.786,376.552z"/>
+ <path id="path4053" fill="#C0C0C0" d="M90.179,376.611L90.179,376.611v-0.232V376.611z"/>
+ <path id="path4055" fill="#C0C0C0" d="M1039.077,376.962L1039.077,376.962l0.233-0.645L1039.077,376.962z"/>
+ <path id="path4057" fill="#C0C0C0" d="M89.594,376.962L89.594,376.962l-0.059,0.176l-0.177-0.176l0.117-0.059L89.594,376.962z"/>
+ <path id="path4059" fill="#C0C0C0" d="M1076.38,377.958L1076.38,377.958l0.117-0.234L1076.38,377.958z"/>
+ <path id="path4061" fill="#C0C0C0" d="M77.412,377.958L77.412,377.958l-0.175-0.176l0.175,0.059V377.958z"/>
+ <path id="path4063" fill="#C0C0C0" d="M80.342,377.958L80.342,377.958H80.28H80.342z"/>
+ <path id="path4065" fill="#C0C0C0" d="M80.342,377.958L80.342,377.958H80.28H80.342z"/>
+ <path id="path4067" fill="#C0C0C0" d="M78.877,378.074L78.877,378.074l-0.117,0.119L78.877,378.074z"/>
+ <path id="path4069" fill="#C0C0C0" d="M79.521,378.308L79.521,378.308l-0.468-0.293L79.521,378.308z"/>
+ <path id="path4071" fill="#C0C0C0" d="M1038.433,378.369L1038.433,378.369l-0.116-0.117L1038.433,378.369z"/>
+ <path id="path4073" fill="#C0C0C0" d="M81.22,378.369L81.22,378.369l-0.061-0.117L81.22,378.369z"/>
+ <path id="path4075" fill="#C0C0C0" d="M79.932,378.484L79.932,378.484v0.119V378.484z"/>
+ <path id="path4077" fill="#C0C0C0" d="M79.932,378.484L79.932,378.484v0.119V378.484z"/>
+ <path id="path4079" fill="#C0C0C0" d="M1190.27,379.363L1190.27,379.363v-1.348V379.363z"/>
+ <path id="path4081" fill="#C0C0C0" d="M1185.528,378.308L1185.528,378.308l0.524,0.586L1185.528,378.308z"/>
+ <path id="path4083" fill="#C0C0C0" d="M1190.27,379.363L1190.27,379.363l0.06,0.352L1190.27,379.363z"/>
+ <path id="path4085" fill="#C0C0C0" d="M81.979,379.128L81.979,379.128l-0.117-0.115l-0.059-0.061l-0.175-0.176L81.979,379.128z"/>
+ <path id="path4087" fill="#C0C0C0" d="M80.457,379.013L80.457,379.013l0.06,0.115L80.457,379.013z"/>
+ <path id="path4089" fill="#C0C0C0" d="M84.557,379.246L84.557,379.246l-0.117-0.174L84.557,379.246z"/>
+ <path id="path4091" fill="#C0C0C0" d="M82.39,379.187L82.39,379.187l-0.116-0.059L82.39,379.187z"/>
+ <path id="path4093" fill="#C0C0C0" d="M83.736,379.246L83.736,379.246l-0.116,0.059L83.736,379.246z"/>
+ <path id="path4095" fill="#C0C0C0" d="M1185.528,378.251L1185.528,378.251l-0.059,2.107L1185.528,378.251z"/>
+ <path id="path4097" fill="#C0C0C0" d="M1036.502,379.423L1036.502,379.423l0.353-0.061L1036.502,379.423z"/>
+ <path id="path4099" fill="#C0C0C0" d="M85.492,379.363L85.492,379.363l-0.117-0.059L85.492,379.363z"/>
+ <path id="path4101" fill="#C0C0C0" d="M1037.088,379.832L1037.088,379.832l0.232-0.176L1037.088,379.832z"/>
+ <path id="path4103" fill="#C0C0C0" d="M85.903,379.423L85.903,379.423l0.059,0.174L85.903,379.423z"/>
+ <path id="path4105" fill="#C0C0C0" d="M1188.866,380.007L1188.866,380.007l-0.179-0.059L1188.866,380.007z"/>
+ <path id="path4107" fill="#C0C0C0" d="M88.715,379.949L88.715,379.949l-0.469-0.117L88.715,379.949z"/>
+ <path id="path4109" fill="#C0C0C0" d="M85.845,380.007L85.845,380.007v0.176V380.007z"/>
+ <path id="path4111" fill="#C0C0C0" d="M85.845,380.007L85.845,380.007v0.176V380.007z"/>
+ <path id="path4113" fill="#C0C0C0" d="M1080.36,380.476L1080.36,380.476h0.116H1080.36z"/>
+ <path id="path4115" fill="#C0C0C0" d="M1186.873,380.476L1186.873,380.476l-0.117-0.059L1186.873,380.476z"/>
+ <path id="path4117" fill="#C0C0C0" d="M1079.249,380.593L1079.249,380.593l0.231-0.059L1079.249,380.593z"/>
+ <path id="path4119" fill="#C0C0C0" d="M1247.245,380.476L1247.245,380.476l-0.06-0.059L1247.245,380.476z"/>
+ <path id="path4121" fill="#C0C0C0" d="M1187.051,380.945L1187.051,380.945l-0.354-0.176L1187.051,380.945z"/>
+ <path id="path4123" fill="#C0C0C0" d="M1080.011,380.945L1080.011,380.945v-0.352V380.945z"/>
+ <path id="path4125" fill="#C0C0C0" d="M1079.715,381.003L1079.715,381.003l-0.116-0.117L1079.715,381.003z"/>
+ <path id="path4127" fill="#C0C0C0" d="M1190.444,381.414L1190.444,381.414l-0.175-0.82L1190.444,381.414z"/>
+ <path id="path4129" fill="#C0C0C0" d="M1081.122,381.238L1081.122,381.238l-0.412-0.41L1081.122,381.238z"/>
+ <path id="path4131" fill="#C0C0C0" d="M91.467,380.945L91.467,380.945l0.058-0.117l0.059,0.059L91.467,380.945z"/>
+ <path id="path4133" fill="#C0C0C0" d="M56.742,381.06L56.742,381.06v-0.115V381.06z"/>
+ <path id="path4135" fill="#C0C0C0" d="M56.685,381.119L56.685,381.119v-0.115V381.119z"/>
+ <path id="path4137" fill="#C0C0C0" d="M56.685,381.119L56.685,381.119v-0.115V381.119z"/>
+ <path id="path4139" fill="#C0C0C0" d="M84.967,381.179L84.967,381.179l-0.059-0.178L84.967,381.179z"/>
+ <path id="path4141" fill="#C0C0C0" d="M86.723,381.119L86.723,381.119l-0.175-0.059L86.723,381.119z"/>
+ <path id="path4143" fill="#C0C0C0" d="M104.7,381.06L104.7,381.06l-0.117,0.119L104.7,381.06z"/>
+ <path id="path4145" fill="#C0C0C0" d="M78.818,381.296L78.818,381.296h-0.117H78.818z"/>
+ <path id="path4147" fill="#C0C0C0" d="M90.004,381.47L90.004,381.47l-0.41-0.469L90.004,381.47z"/>
+ <path id="path4149" fill="#C0C0C0" d="M86.84,381.238L86.84,381.238l0.177,0.176L86.84,381.238z"/>
+ <path id="path4151" fill="#C0C0C0" d="M89.594,381.648L89.594,381.648l-0.235-0.234L89.594,381.648z"/>
+ <path id="path4153" fill="#C0C0C0" d="M579.53,381.824L579.53,381.824l0.178-0.061L579.53,381.824z"/>
+ <path id="path4155" fill="#C0C0C0" d="M107.394,381.707L107.394,381.707h-0.233H107.394z"/>
+ <path id="path4157" fill="#C0C0C0" d="M107.394,381.763L107.394,381.763h-0.233H107.394z"/>
+ <path id="path4159" fill="#C0C0C0" d="M107.394,381.763L107.394,381.763h-0.233H107.394z"/>
+ <path id="path4161" fill="#C0C0C0" d="M87.719,381.998L87.719,381.998h0.352H87.719z"/>
+ <path id="path4163" fill="#C0C0C0" d="M87.719,381.998L87.719,381.998h0.352H87.719z"/>
+ <path id="path4165" fill="#C0C0C0" d="M99.077,381.88L99.077,381.88l-0.175,0.293L99.077,381.88z"/>
+ <path id="path4167" fill="#C0C0C0" d="M90.472,382.058L90.472,382.058l-0.119,0.059L90.472,382.058z"/>
+ <path id="path4169" fill="#C0C0C0" d="M85.492,382.408L85.492,382.408v-0.176V382.408z"/>
+ <path id="path4171" fill="#C0C0C0" d="M90.179,382.349L90.179,382.349l0.059,0.178L90.179,382.349z"/>
+ <path id="path4173" fill="#C0C0C0" d="M98.846,382.349L98.846,382.349l0.058,0.293L98.846,382.349z"/>
+ <path id="path4175" fill="#C0C0C0" d="M88.012,382.117L88.012,382.117l0.468,0.936L88.012,382.117z"/>
+ <path id="path4177" fill="#C0C0C0" d="M1190.623,382.527L1190.623,382.527l-0.354,0.584l-0.703-0.525L1190.623,382.527z"/>
+ <path id="path4179" fill="#C0C0C0" d="M1187.81,383.404L1187.81,383.404l-0.82-1.934L1187.81,383.404z"/>
+ <path id="path4181" fill="#C0C0C0" d="M92.403,382.994L92.403,382.994l-0.232-0.059L92.403,382.994z"/>
+ <path id="path4183" fill="#C0C0C0" d="M88.831,383.228L88.831,383.228l0.06,0.176L88.831,383.228z"/>
+ <path id="path4185" fill="#C0C0C0" d="M64.765,383.404L64.765,383.404l-0.233,0.059L64.765,383.404z"/>
+ <path id="path4187" fill="#C0C0C0" d="M64.765,383.404L64.765,383.404H64.59H64.765z"/>
+ <path id="path4189" fill="#C0C0C0" d="M92.813,383.521L92.813,383.521l-0.117-0.234L92.813,383.521z"/>
+ <path id="path4191" fill="#C0C0C0" d="M66.579,383.462L66.579,383.462l-0.175-0.119L66.579,383.462z"/>
+ <path id="path4193" fill="#C0C0C0" d="M1232.196,383.697L1232.196,383.697l-0.175-0.117L1232.196,383.697z"/>
+ <path id="path4195" fill="#C0C0C0" d="M66.463,383.697L66.463,383.697l-0.117-0.117L66.463,383.697z"/>
+ <path id="path4197" fill="#C0C0C0" d="M94.334,383.753L94.334,383.753l-0.407-0.35L94.334,383.753z"/>
+ <path id="path4199" fill="#C0C0C0" d="M1088.853,384.4L1088.853,384.4l-0.117-0.703L1088.853,384.4z"/>
+ <path id="path4201" fill="#C0C0C0" d="M1227.455,385.335L1227.455,385.335l-0.587-1.287L1227.455,385.335z"/>
+ <path id="path4203" fill="#C0C0C0" d="M95.858,384.164L95.858,384.164l-0.585-0.115l-0.528-0.176"/>
+ <path id="path4205" fill="#C0C0C0" d="M93.106,384.164L93.106,384.164l-0.118-0.115L93.106,384.164z"/>
+ <path id="path4207" fill="#C0C0C0" d="M640.897,384.632L640.897,384.632l-0.175-0.938L640.897,384.632z"/>
+ <path id="path4209" fill="#C0C0C0" d="M67.399,384.222L67.399,384.222l0.058-0.117l0.06,0.059L67.399,384.222z"/>
+ <path id="path4211" fill="#C0C0C0" d="M1190.503,384.693L1190.503,384.693v-0.82V384.693z"/>
+ <path id="path4213" fill="#C0C0C0" d="M93.456,384.458L93.456,384.458l-0.175-0.117L93.456,384.458z"/>
+ <path id="path4215" fill="#C0C0C0" d="M68.924,384.515L68.924,384.515l0.115-0.115L68.924,384.515z"/>
+ <path id="path4217" fill="#C0C0C0" d="M89.534,384.341L89.534,384.341l0.176,0.115L89.534,384.341z"/>
+ <path id="path4219" fill="#C0C0C0" d="M1223.529,384.341L1223.529,384.341l-0.291,0.291L1223.529,384.341z"/>
+ <path id="path4221" fill="#C0C0C0" d="M640.839,384.632L640.839,384.632l0.059-0.117l0.06,0.059L640.839,384.632z"/>
+ <path id="path4223" fill="#C0C0C0" d="M58.852,384.693L58.852,384.693l-0.06-0.178L58.852,384.693z"/>
+ <path id="path4225" fill="#C0C0C0" d="M69.039,384.751L69.039,384.751l-0.058-0.119L69.039,384.751z"/>
+ <path id="path4227" fill="#C0C0C0" d="M1226.048,384.751L1226.048,384.751l-0.116-0.119L1226.048,384.751z"/>
+ <path id="path4229" fill="#C0C0C0" d="M1190.444,384.751L1190.444,384.751l0.06-0.119l0.062,0.063L1190.444,384.751z"/>
+ <path id="path4231" fill="#C0C0C0" d="M67.517,384.984L67.517,384.984l-0.06-0.584L67.517,384.984z"/>
+ <path id="path4233" fill="#C0C0C0" d="M101.012,384.751L101.012,384.751h-0.118H101.012z"/>
+ <path id="path4235" fill="#C0C0C0" d="M101.012,384.751L101.012,384.751h-0.118H101.012z"/>
+ <path id="path4237" fill="#C0C0C0" d="M1231.727,385.335L1231.727,385.335l0.411-0.877l-0.058,0.643L1231.727,385.335z"/>
+ <path id="path4239" fill="#C0C0C0" d="M774.698,385.628L774.698,385.628l0.528-1.229L774.698,385.628z"/>
+ <path id="path4241" fill="#C0C0C0" d="M74.017,385.279L74.017,385.279l0.117-0.061L74.017,385.279z"/>
+ <path id="path4243" fill="#C0C0C0" d="M97.029,385.279L97.029,385.279l-0.176-0.061L97.029,385.279z"/>
+ <path id="path4245" fill="#C0C0C0" d="M74.193,385.335L74.193,385.335l0.059-0.115L74.193,385.335z"/>
+ <path id="path4247" fill="#C0C0C0" d="M1089.436,385.804L1089.436,385.804l-0.059-0.176L1089.436,385.804z"/>
+ <path id="path4249" fill="#C0C0C0" d="M1222.477,385.687L1222.477,385.687l-0.354,0.234L1222.477,385.687z"/>
+ <path id="path4251" fill="#C0C0C0" d="M1235.651,385.98L1235.651,385.98l-0.115,0.408L1235.651,385.98z"/>
+ <path id="path4253" fill="#C0C0C0" d="M1235.007,386.214L1235.007,386.214l0.116,0.117L1235.007,386.214z"/>
+ <path id="path4255" fill="#C0C0C0" d="M1222.007,386.332L1222.007,386.332l-0.176,0.117L1222.007,386.332z"/>
+ <path id="path4257" fill="#C0C0C0" d="M113.541,386.449L113.541,386.449h-0.116H113.541z"/>
+ <path id="path4259" fill="#C0C0C0" d="M113.541,386.449L113.541,386.449h-0.116H113.541z"/>
+ <path id="path4261" fill="#C0C0C0" d="M1229.853,386.566L1229.853,386.566l0.176-0.352L1229.853,386.566z"/>
+ <path id="path4263" fill="#C0C0C0" d="M113.309,386.449L113.309,386.449l-0.06,0.176L113.309,386.449z"/>
+ <path id="path4265" fill="#C0C0C0" d="M88.187,386.683L88.187,386.683l-0.117-0.234L88.187,386.683z"/>
+ <path id="path4267" fill="#C0C0C0" d="M102.475,386.683L102.475,386.683l-0.06-0.117L102.475,386.683z"/>
+ <path id="path4269" fill="#C0C0C0" d="M88.831,387.035L88.831,387.035l-0.175-0.234L88.831,387.035z"/>
+ <path id="path4271" fill="#C0C0C0" d="M95.8,386.917L95.8,386.917l-0.235-0.061L95.8,386.917z"/>
+ <path id="path4273" fill="#C0C0C0" d="M1235.007,386.857L1235.007,386.857v0.178V386.857z"/>
+ <path id="path4275" fill="#C0C0C0" d="M73.138,387.328L73.138,387.328l-0.292-0.293L73.138,387.328z"/>
+ <path id="path4277" fill="#C0C0C0" d="M98.727,387.503L98.727,387.503l-0.233-0.293L98.727,387.503z"/>
+ <path id="path4279" fill="#C0C0C0" d="M98.377,387.503L98.377,387.503h0.232H98.377z"/>
+ <path id="path4281" fill="#C0C0C0" d="M98.377,387.503L98.377,387.503h0.232H98.377z"/>
+ <path id="path4283" fill="#C0C0C0" d="M70.27,387.736L70.27,387.736l0.058-0.117L70.27,387.736z"/>
+ <path id="path4285" fill="#C0C0C0" d="M1191.734,387.677L1191.734,387.677v0.469V387.677z"/>
+ <path id="path4287" fill="#C0C0C0" d="M1227.979,387.736L1227.979,387.736l-0.35-0.117L1227.979,387.736z"/>
+ <path id="path4289" fill="#C0C0C0" d="M75.246,388.38L75.246,388.38l-1.172-0.469L75.246,388.38z"/>
+ <path id="path4291" fill="#C0C0C0" d="M1234.42,388.029L1234.42,388.029l-0.06-0.059L1234.42,388.029z"/>
+ <path id="path4293" fill="#C0C0C0" d="M104.874,388.207L104.874,388.207l0.061-0.119l0.468-0.291l0.06-0.061l-0.527,0.645
+ l-0.118-0.057L104.874,388.207z"/>
+ <path id="path4295" fill="#C0C0C0" d="M1224.995,389.787L1224.995,389.787l-0.704-3.104l3.164,2.166L1224.995,389.787z"/>
+ <path id="path4297" fill="#C0C0C0" d="M96.854,388.263L96.854,388.263l0.058-0.057L96.854,388.263z"/>
+ <path id="path4299" fill="#C0C0C0" d="M1229.97,388.207L1229.97,388.207v0.117V388.207z"/>
+ <path id="path4301" fill="#C0C0C0" d="M1237.934,388.732L1237.934,388.732l-0.117-0.117L1237.934,388.732z"/>
+ <path id="path4303" fill="#C0C0C0" d="M1235.534,388.791L1235.534,388.791l-0.236-0.059L1235.534,388.791z"/>
+ <path id="path4305" fill="#C0C0C0" d="M99.956,388.732L99.956,388.732l-0.058-0.059L99.956,388.732z"/>
+ <path id="path4307" fill="#C0C0C0" d="M1229.62,389.201L1229.62,389.201l-0.292-0.469L1229.62,389.201z"/>
+ <path id="path4309" fill="#C0C0C0" d="M26.295,389.201L26.295,389.201l0.059-0.115L26.295,389.201z"/>
+ <path id="path4311" fill="#C0C0C0" d="M99.781,389.318L99.781,389.318l0.059-0.059L99.781,389.318z"/>
+ <path id="path4313" fill="#C0C0C0" d="M104.874,389.611L104.874,389.611l-0.35-0.41L104.874,389.611z"/>
+ <path id="path4315" fill="#C0C0C0" d="M1236.354,389.494L1236.354,389.494l0.06,0.176L1236.354,389.494z"/>
+ <path id="path4317" fill="#C0C0C0" d="M118.401,390.08L118.401,390.08l-0.352-0.293L118.401,390.08z"/>
+ <path id="path4319" fill="#C0C0C0" d="M1113.329,390.49L1113.329,390.49l-0.472-0.703L1113.329,390.49z"/>
+ <path id="path4321" fill="#C0C0C0" d="M105.403,390.312L105.403,390.312l-0.41-0.291L105.403,390.312z"/>
+ <path id="path4323" fill="#C0C0C0" d="M1225.403,390.138L1225.403,390.138l0.059-0.059L1225.403,390.138z"/>
+ <path id="path4325" fill="#C0C0C0" d="M1113.271,390.548L1113.271,390.548l0.06-0.117l0.059,0.059L1113.271,390.548z"/>
+ <path id="path4327" fill="#C0C0C0" d="M120.685,390.841L120.685,390.841l-0.526-0.293L120.685,390.841z"/>
+ <path id="path4329" fill="#C0C0C0" d="M1223.763,390.605L1223.763,390.605v0.236V390.605z"/>
+ <path id="path4331" fill="#C0C0C0" d="M1231.609,390.781L1231.609,390.781h0.296H1231.609z"/>
+ <path id="path4333" fill="#C0C0C0" d="M1252.927,391.191L1252.927,391.191l0.525-0.117L1252.927,391.191z"/>
+ <path id="path4335" fill="#C0C0C0" d="M1237.292,391.074L1237.292,391.074l-0.06,0.059L1237.292,391.074z"/>
+ <path id="path4337" fill="#C0C0C0" d="M1252.807,391.369L1252.807,391.369l0.12-0.059L1252.807,391.369z"/>
+ <path id="path4339" fill="#C0C0C0" d="M111.962,391.542L111.962,391.542l-0.119-0.059L111.962,391.542z"/>
+ <path id="path4341" fill="#C0C0C0" d="M751.803,402.435L751.803,402.435l1.757-2.283l2.46-4.451l-0.412-0.645l0.354-1.111
+ l-0.878-1.348v-1.287l-1.115-3.924l1.877-4.92l2.81-0.879l1.229,0.41l0.233-0.938l1.757-0.293l1.057,0.939l-0.412-1.172
+ l2.052-1.521l3.688-1.523l-1.054-1.23l0.759-1.17l0.411,0.643l-0.471-2.342l1.35,0.764l1.813-1.582l1.699-4.977l-0.176,0.994
+ l2.519,2.813l-0.062,0.586l0.179,0.291l0.938,5.152l0.878,1.992l-3.047,0.818l0.762,4.566l-1.403,1.465v3.104l-0.178,0.176
+ l-0.117,0.76l-1.053,2.346l-1.112,3.104l0.117,0.232l-0.646,1.348l-0.524,1.934l-0.062,0.059h0.062l0.058,0.059l-0.354,0.818
+ l-0.059,0.469l-1.054,2.635l-0.411,1.23l-0.232,1.406l-0.292,0.877l-0.06,0.41l-0.411,1.111l-0.175,0.998l-1.641,4.039l-3.276,0.82
+ l-3.575,1.289l-3.922-2.229l-1.286-2.166l0.351-2.691l-1.523-2.637L751.803,402.435z"/>
+ <path id="path4343" fill="#C0C0C0" d="M1250.758,391.779L1250.758,391.779v-0.119V391.779z"/>
+ <path id="path4345" fill="#C0C0C0" d="M1194.312,391.835L1194.312,391.835l-0.646,0.293l0.059-1.111L1194.312,391.835z"/>
+ <path id="path4347" fill="#C0C0C0" d="M38.181,391.953L38.181,391.953v-0.117V391.953z"/>
+ <path id="path4349" fill="#C0C0C0" d="M1226.751,392.128L1226.751,392.128l-0.116-0.176L1226.751,392.128z"/>
+ <path id="path4351" fill="#C0C0C0" d="M1232.488,392.246L1232.488,392.246l0.059-0.117L1232.488,392.246z"/>
+ <path id="path4353" fill="#C0C0C0" d="M1235.651,392.246L1235.651,392.246v-0.117V392.246z"/>
+ <path id="path4355" fill="#C0C0C0" d="M1225.577,392.363L1225.577,392.363l0.763-0.234L1225.577,392.363z"/>
+ <path id="path4357" fill="#C0C0C0" d="M1267.389,392.714L1267.389,392.714l0.175-0.469L1267.389,392.714z"/>
+ <path id="path4359" fill="#C0C0C0" d="M1115.377,392.949L1115.377,392.949l-0.059-0.117L1115.377,392.949z"/>
+ <path id="path4361" fill="#C0C0C0" d="M1236.996,392.832L1236.996,392.832l-0.059,0.059L1236.996,392.832z"/>
+ <path id="path4363" fill="#C0C0C0" d="M105.346,392.888L105.346,392.888l-0.119-0.057L105.346,392.888z"/>
+ <path id="path4365" fill="#C0C0C0" d="M1231.2,393.066L1231.2,393.066v-0.293V393.066z"/>
+ <path id="path4367" fill="#C0C0C0" d="M1237.642,393.005L1237.642,393.005l0.059-0.117L1237.642,393.005z"/>
+ <path id="path4369" fill="#C0C0C0" d="M103.411,393.125L103.411,393.125l-0.116-0.059L103.411,393.125z"/>
+ <path id="path4371" fill="#C0C0C0" d="M1161.638,393.242L1161.638,393.242l-0.059-0.469L1161.638,393.242z"/>
+ <path id="path4373" fill="#C0C0C0" d="M41.107,393.357L41.107,393.357l0.118-0.059L41.107,393.357z"/>
+ <path id="path4375" fill="#C0C0C0" d="M112.02,393.357L112.02,393.357h-0.118H112.02z"/>
+ <path id="path4377" fill="#C0C0C0" d="M112.02,393.357L112.02,393.357h-0.118H112.02z"/>
+ <path id="path4379" fill="#C0C0C0" d="M110.496,393.593L110.496,393.593v-0.059V393.593z"/>
+ <path id="path4381" fill="#C0C0C0" d="M110.496,393.593L110.496,393.593v-0.059V393.593z"/>
+ <path id="path4383" fill="#C0C0C0" d="M1195.015,394.414L1195.015,394.414l-0.412,0.174l-0.232-1.053L1195.015,394.414z"/>
+ <path id="path4385" fill="#C0C0C0" d="M106.281,394.646L106.281,394.646v-0.117V394.646z"/>
+ <path id="path4387" fill="#C0C0C0" d="M106.281,394.646L106.281,394.646v-0.117V394.646z"/>
+ <path id="path4389" fill="#C0C0C0" d="M1252.106,394.705L1252.106,394.705l0.117-0.059L1252.106,394.705z"/>
+ <path id="path4391" fill="#C0C0C0" d="M1252.048,394.939L1252.048,394.939l0.176-0.176L1252.048,394.939z"/>
+ <path id="path4393" fill="#C0C0C0" d="M822.657,394.763L822.657,394.763l-0.471,0.293L822.657,394.763z"/>
+ <path id="path4395" fill="#C0C0C0" d="M1174.634,394.763L1174.634,394.763l0.121,0.293L1174.634,394.763z"/>
+ <path id="path4397" fill="#C0C0C0" d="M1174.634,394.763L1174.634,394.763v0.352V394.763z"/>
+ <path id="path4399" fill="#C0C0C0" d="M1249.293,395.115L1249.293,395.115v-0.234V395.115z"/>
+ <path id="path4401" fill="#C0C0C0" d="M45.499,395.349L45.499,395.349l-0.058-0.117L45.499,395.349z"/>
+ <path id="path4403" fill="#C0C0C0" d="M43.45,395.349L43.45,395.349l0.06-0.117L43.45,395.349z"/>
+ <path id="path4405" fill="#C0C0C0" d="M1238.286,395.408L1238.286,395.408l0.059-0.117L1238.286,395.408z"/>
+ <path id="path4407" fill="#C0C0C0" d="M90.295,395.64L90.295,395.64l0.058-0.115L90.295,395.64z"/>
+ <path id="path4409" fill="#C0C0C0" d="M44.095,395.935L44.095,395.935l-0.06-0.117L44.095,395.935z"/>
+ <path id="path4411" fill="#C0C0C0" d="M1122.695,396.404L1122.695,396.404l0.296-0.354L1122.695,396.404z"/>
+ <path id="path4413" fill="#C0C0C0" d="M1176.569,396.343L1176.569,396.343v0.117V396.343z"/>
+ <path id="path4415" fill="#C0C0C0" d="M46.846,396.519L46.846,396.519v-0.115V396.519z"/>
+ <path id="path4417" fill="#C0C0C0" d="M1196.534,396.58L1196.534,396.58l-0.176-0.176L1196.534,396.58z"/>
+ <path id="path4419" fill="#C0C0C0" d="M1122.991,396.99L1122.991,396.99v-0.119V396.99z"/>
+ <path id="path4421" fill="#C0C0C0" d="M802.513,396.287L802.513,396.287l0.117,0.643l-0.471,0.646l-1.229-0.178l0.408-0.879
+ L802.513,396.287z"/>
+ <path id="path4423" fill="#C0C0C0" d="M95.273,397.398L95.273,397.398v-0.176V397.398z"/>
+ <path id="path4425" fill="#C0C0C0" d="M95.273,397.398L95.273,397.398v-0.176V397.398z"/>
+ <path id="path4427" fill="#C0C0C0" d="M1123.282,397.75L1123.282,397.75l0.06-0.059L1123.282,397.75z"/>
+ <path id="path4429" fill="#C0C0C0" d="M494.741,397.632L494.741,397.632l0.06-0.117l0.059,0.059L494.741,397.632z"/>
+ <path id="path4431" fill="#C0C0C0" d="M493.102,397.691L493.102,397.691l0.061-0.117L493.102,397.691z"/>
+ <path id="path4433" fill="#C0C0C0" d="M1184.708,398.218L1184.708,398.218l0.232-0.996L1184.708,398.218z"/>
+ <path id="path4435" fill="#C0C0C0" d="M1236.413,398.277L1236.413,398.277l0.059-0.117L1236.413,398.277z"/>
+ <path id="path4437" fill="#C0C0C0" d="M1184.237,398.453L1184.237,398.453l0.117-0.059L1184.237,398.453z"/>
+ <path id="path4439" fill="#C0C0C0" d="M1004.706,398.863L1004.706,398.863l0.527-0.645L1004.706,398.863z"/>
+ <path id="path4441" fill="#C0C0C0" d="M110.789,398.685L110.789,398.685h-0.116H110.789z"/>
+ <path id="path4443" fill="#C0C0C0" d="M110.789,398.685L110.789,398.685h-0.116H110.789z"/>
+ <path id="path4445" fill="#C0C0C0" d="M112.898,398.98L112.898,398.98l-0.118-0.352L112.898,398.98z"/>
+ <path id="path4447" fill="#C0C0C0" d="M1187.692,399.214L1187.692,399.214l-0.231,0.643l-1.054-0.762l0.702-0.818L1187.692,399.214
+ z"/>
+ <path id="path4449" fill="#C0C0C0" d="M795.37,399.39L795.37,399.39l0.291,1.229l-1.641-0.293l-0.408-0.879l0.699-0.525
+ L795.37,399.39z"/>
+ <path id="path4451" fill="#C0C0C0" d="M38.063,400.208L38.063,400.208l0.352,0.059L38.063,400.208z"/>
+ <path id="path4453" fill="#C0C0C0" d="M1179.321,398.335L1179.321,398.335l0.763,0.234l1.461,1.814l1.29,0.762l3.339,2.109
+ l0.233,0.762h-2.053v-0.471l-1.11-0.291l-4.158-2.637L1179.321,398.335z"/>
+ <path id="path4455" fill="#C0C0C0" d="M1249.06,400.384L1249.06,400.384l0.059-0.117l0.06,0.059L1249.06,400.384z"/>
+ <path id="path4457" fill="#C0C0C0" d="M119.163,400.503L119.163,400.503l-0.059-0.061L119.163,400.503z"/>
+ <path id="path4459" fill="#C0C0C0" d="M119.515,400.619L119.515,400.619v-0.115V400.619z"/>
+ <path id="path4461" fill="#C0C0C0" d="M119.515,400.619L119.515,400.619v-0.115V400.619z"/>
+ <path id="path4463" fill="#C0C0C0" d="M119.866,400.677L119.866,400.677v-0.115V400.677z"/>
+ <path id="path4465" fill="#C0C0C0" d="M119.866,400.677L119.866,400.677v-0.115V400.677z"/>
+ <path id="path4467" fill="#C0C0C0" d="M1249.821,400.97L1249.821,400.97v-0.527V400.97z"/>
+ <path id="path4469" fill="#C0C0C0" d="M1249.821,400.97L1249.821,400.97l-0.175-0.176L1249.821,400.97z"/>
+ <path id="path4471" fill="#C0C0C0" d="M120.511,400.97L120.511,400.97h-0.117H120.511z"/>
+ <path id="path4473" fill="#C0C0C0" d="M120.511,401.029L120.511,401.029h-0.175H120.511z"/>
+ <path id="path4475" fill="#C0C0C0" d="M120.511,401.029L120.511,401.029h-0.175H120.511z"/>
+ <path id="path4477" fill="#C0C0C0" d="M1190.27,401.322L1190.27,401.322v0.293l-1.054-0.879L1190.27,401.322z"/>
+ <path id="path4479" fill="#C0C0C0" d="M123.729,401.263L123.729,401.263l-0.233-0.176L123.729,401.263z"/>
+ <path id="path4481" fill="#C0C0C0" d="M123.145,401.38L123.145,401.38l-0.058-0.117L123.145,401.38z"/>
+ <path id="path4483" fill="#C0C0C0" d="M724.282,401.908L724.282,401.908l-0.058-0.645L724.282,401.908z"/>
+ <path id="path4485" fill="#C0C0C0" d="M105.637,401.908L105.637,401.908h-0.175H105.637z"/>
+ <path id="path4487" fill="#C0C0C0" d="M1213.165,401.849L1213.165,401.849h-0.177H1213.165z"/>
+ <path id="path4489" fill="#C0C0C0" d="M111.493,402.435L111.493,402.435l0.469-0.176l-0.119,0.176H111.493z"/>
+ <path id="path4491" fill="#C0C0C0" d="M44.62,402.609L44.62,402.609l0.119-0.115L44.62,402.609z"/>
+ <path id="path4493" fill="#C0C0C0" d="M121.155,402.96L121.155,402.96h0.117H121.155z"/>
+ <path id="path4495" fill="#C0C0C0" d="M121.096,403.019L121.096,403.019l0.118-0.059L121.096,403.019z"/>
+ <path id="path4497" fill="#C0C0C0" d="M1126.209,403.722L1126.209,403.722v-0.584V403.722z"/>
+ <path id="path4499" fill="#C0C0C0" d="M1126.209,403.722L1126.209,403.722v-0.584V403.722z"/>
+ <path id="path4501" fill="#C0C0C0" d="M1128.436,404.132L1128.436,404.132l-0.175-0.115L1128.436,404.132z"/>
+ <path id="path4503" fill="#C0C0C0" d="M1201.454,404.132L1201.454,404.132l0.059-0.115L1201.454,404.132z"/>
+ <path id="path4505" fill="#C0C0C0" d="M67.81,404.718L67.81,404.718l0.059-0.234L67.81,404.718z"/>
+ <path id="path4507" fill="#C0C0C0" d="M1188.163,404.894L1188.163,404.894l-0.354,0.293L1188.163,404.894z"/>
+ <path id="path4509" fill="#C0C0C0" d="M62.539,405.187L62.539,405.187l0.06-0.176L62.539,405.187z"/>
+ <path id="path4511" fill="#C0C0C0" d="M125.369,406.884L125.369,406.884v-0.117V406.884z"/>
+ <path id="path4513" fill="#C0C0C0" d="M443.856,407.177L443.856,407.177l0.878-0.176L443.856,407.177z"/>
+ <path id="path4515" fill="#C0C0C0" d="M443.856,407.236L443.856,407.236l0.059-0.117l0.061,0.059L443.856,407.236z"/>
+ <path id="path4517" fill="#C0C0C0" d="M74.427,407.822L74.427,407.822h-0.116H74.427z"/>
+ <path id="path4519" fill="#C0C0C0" d="M1130.837,409.109L1130.837,409.109l-0.646-1.053l0.995,0.82L1130.837,409.109z"/>
+ <path id="path4521" fill="#C0C0C0" d="M440.578,409.812L440.578,409.812l-0.646-0.234L440.578,409.812z"/>
+ <path id="path4523" fill="#C0C0C0" d="M80.752,409.519L80.752,409.519l0.059-0.117l0.058,0.059L80.752,409.519z"/>
+ <path id="path4525" fill="#C0C0C0" d="M440.578,409.812L440.578,409.812l0.058-0.117l0.059,0.061L440.578,409.812z"/>
+ <path id="path4527" fill="#C0C0C0" d="M148.733,411.101L148.733,411.101l0.118,0.059L148.733,411.101z"/>
+ <path id="path4529" fill="#C0C0C0" d="M161.206,412.271L161.206,412.271l0.06-0.117l0.058,0.059L161.206,412.271z"/>
+ <path id="path4531" fill="#C0C0C0" d="M997.034,413.326L997.034,413.326l0.059-0.352L997.034,413.326z"/>
+ <path id="path4533" fill="#C0C0C0" d="M1107.764,460.289L1107.764,460.289l-3.805,1.873l-3.688-1.641h-4.042l-3.455-1.58
+ l-2.4-2.635l-0.7-4.51l-2.052-1.463l-2.811,0.523l1.581-3.045l-1.64-2.225l-1.229,3.455l-3.163,0.586l0.528-1.348l1.578-0.059
+ v-2.693l1.818-2.049l-0.646-3.631v1.641l-1.99,2.283l-2.755,1.346l-1.99,2.227l0.354,1.172l-2.988-1.348l1.406,0.059l-1.053-2.4
+ l-1.818-2.574l-3.16-3.455l-0.704-0.527l-5.036-0.234l-3.335-1.814l-1.29,0.525l-0.819-0.115l-5.212,0.232l-1.462,0.527
+ l-0.179,0.234l-4.857,1.463l-4.51,0.061l-0.878,0.35l-1.23,0.762l-4.334,1.463l-2.281,3.281l-1.698-0.352l-3.28,0.352l-0.35-0.41
+ l-2.402-0.117l-4.508,0.352l-3.926,1.992l-3.334,2.281l-5.212-0.41l-0.295-0.469l-1.346-0.115l-1.231-1.348l-2.456-2.691
+ l2.635-1.467l0.116-4.918l-0.236-0.645l-2.224-4.217l-0.587-4.625l-2.576-3.922l-0.467-2.754l-2.988-4.041l3.81-0.057v-0.938
+ l-0.938-0.994l-2.109-3.865l0.116-1.113l1.289-2.459l0.177-1.641l0.761-4.156l0.409,2.342l1.873-2.461l2.813-1.111l1.403-1.465
+ l3.28-1.932l1.756,0.762l2.165-0.762l4.217-1.992l3.572-0.174l3.104-1.23l2.693-3.98l1.99-1.113l-0.703-3.045l2.692-2.984
+ l0.063,0.643l0.815,0.41l2.053,4.273l-0.588-3.16l0.06-2.986l1.23,0.234l4.51-2.166l-1.29-0.938l-0.233-0.645l2.165-0.059
+ l2.052-4.273l4.916,0.176l2.756,2.691l-1.29,3.105l2.285-2.928l2.048,0.41l3.983,1.756l-1.993-1.111l0.236-4.158l0.407-1.348
+ l1.758-0.41l2.401-4.275l1.111-0.232l4.8,0.293l-2.457-3.455l0.584,0.938v-0.996l1.757,1.287l0.878-0.525l2.11,1.814l1.403-0.469
+ l0.937,1.406l3.513,0.408h1.937l4.45,0.354l-1.815,1.523l0.642,0.701l-0.698,0.818l-0.472-0.643l-1.697,1.813l-1.346,4.861
+ l2.636,1.521l1.757,1.814l1.637,0.176l3.338,2.459l3.224,0.762l3.745,2.871l2.636-1.172l1.932-4.51l1.115-3.045l-0.938-4.859
+ l0.583-1.582l0.295,0.82l-0.41-2.225l1.405-0.879l0.176-0.584h-1.522l0.646-1.76l1.229-3.688l1.406-0.939l-0.116,0.939l2.106,4.1
+ l0.937,2.574l0.646-0.174v3.219l0.818,2.051l2.577-0.762l2.985,2.813l0.115,5.211l1.875,1.521l-0.177,0.646l0.879,2.105
+ l0.528,4.275l2.984,1.873l1.114-0.352l0.525,1.521l4.158,1.756l-0.354,1.465l1.818,1.346l1.054,1.699l0.467,3.57l4.101-0.057
+ l0.232,3.396l-0.762,0.059l4.333,2.4l2.344,3.395l1.286,0.469l0.938,2.344l-0.584,4.744l1.229,1.99l0.878,3.16l-0.937,1.699
+ l-1.17,5.037l0.175,1.287l-1.873,4.92l-2.048,0.76l0.758,0.293l-3.218,2.635l0.175,0.994l-2.285,3.75l-1.521,3.045l-1.114,4.215
+ l0.236,1.934l-1.231,0.818l-0.467,0.176l-0.82,0.178l-0.47-0.119l-4.975,0.234l0.758,0.234l-3.688,2.576l-1.757,1.756l-0.818-1.229
+ l-2.812-0.938L1107.764,460.289z"/>
+ <path id="path4535" fill="#C0C0C0" d="M142.469,413.794L142.469,413.794l0.058-0.117L142.469,413.794z"/>
+ <path id="path4537" fill="#C0C0C0" d="M996.801,414.38L996.801,414.38l0.176-0.82L996.801,414.38z"/>
+ <path id="path4539" fill="#C0C0C0" d="M1137.277,416.136L1137.277,416.136l0.82-3.746L1137.277,416.136z"/>
+ <path id="path4541" fill="#C0C0C0" d="M996.743,414.38L996.743,414.38l0.058-0.117l0.059,0.059L996.743,414.38z"/>
+ <path id="path4543" fill="#C0C0C0" d="M997.151,417.308L997.151,417.308l-0.699-1.113v-0.996l0.994,2.109H997.151z"/>
+ <path id="path4545" fill="#C0C0C0" d="M715.44,417.015L715.44,417.015l0.06-0.176L715.44,417.015z"/>
+ <path id="path4547" fill="#C0C0C0" d="M318.195,417.951L318.195,417.951l0.059-0.115L318.195,417.951z"/>
+ <path id="path4549" fill="#C0C0C0" d="M428.924,418.419L428.924,418.419l-0.409-0.35L428.924,418.419z"/>
+ <path id="path4551" fill="#C0C0C0" d="M318.956,418.187L318.956,418.187l0.059-0.117l0.059,0.059L318.956,418.187z"/>
+ <path id="path4553" fill="#C0C0C0" d="M229.014,418.654L229.014,418.654l0.059-0.115L229.014,418.654z"/>
+ <path id="path4555" fill="#C0C0C0" d="M215.255,421.113L215.255,421.113l0.585-0.291L215.255,421.113z"/>
+ <path id="path4557" fill="#C0C0C0" d="M1138.622,421.699L1138.622,421.699l-0.233-0.994L1138.622,421.699z"/>
+ <path id="path4559" fill="#C0C0C0" d="M1138.563,422.988L1138.563,422.988l0.117-1.113l0.063,1.172L1138.563,422.988z"/>
+ <path id="path4561" fill="#C0C0C0" d="M92.577,422.402L92.577,422.402l-0.116,0.059L92.577,422.402z"/>
+ <path id="path4563" fill="#C0C0C0" d="M428.982,423.339L428.982,423.339l0.528-1.523L428.982,423.339z"/>
+ <path id="path4565" fill="#C0C0C0" d="M95.39,423.748L95.39,423.748l0.117-0.059L95.39,423.748z"/>
+ <path id="path4567" fill="#C0C0C0" d="M1189.743,427.732L1189.743,427.732h-0.178H1189.743z"/>
+ <path id="path4569" fill="#C0C0C0" d="M1239.398,428.492L1239.398,428.492h-0.059H1239.398z"/>
+ <path id="path4571" fill="#C0C0C0" d="M1239.398,428.492L1239.398,428.492h-0.059H1239.398z"/>
+ <path id="path4573" fill="#C0C0C0" d="M1237.175,431.712L1237.175,431.712h-0.059H1237.175z"/>
+ <path id="path4575" fill="#C0C0C0" d="M1237.175,431.712L1237.175,431.712h-0.059H1237.175z"/>
+ <path id="path4577" fill="#C0C0C0" d="M1236.88,433.06L1236.88,433.06v-0.059V433.06z"/>
+ <path id="path4579" fill="#C0C0C0" d="M1236.88,433.06L1236.88,433.06v-0.059V433.06z"/>
+ <path id="path4581" fill="#C0C0C0" d="M1235.825,436.044L1235.825,436.044h-0.058H1235.825z"/>
+ <path id="path4583" fill="#C0C0C0" d="M1235.825,436.044L1235.825,436.044h-0.058H1235.825z"/>
+ <path id="path4585" fill="#C0C0C0" d="M1158.475,436.632L1158.475,436.632l0.058-0.117L1158.475,436.632z"/>
+ <path id="path4587" fill="#C0C0C0" d="M1068.884,439.15L1068.884,439.15l-0.117-0.061L1068.884,439.15z"/>
+ <path id="path4589" fill="#C0C0C0" d="M322.117,443.892L322.117,443.892l0.763-0.059L322.117,443.892z"/>
+ <path id="path4591" fill="#C0C0C0" d="M315.911,444.244L315.911,444.244l-0.059-0.234L315.911,444.244z"/>
+ <path id="path4593" fill="#C0C0C0" d="M1072.047,444.244L1072.047,444.244l0.233-0.234L1072.047,444.244z"/>
+ <path id="path4595" fill="#C0C0C0" d="M1204.381,445.767L1204.381,445.767l0.059-0.119L1204.381,445.767z"/>
+ <path id="path4597" fill="#C0C0C0" d="M1078.075,448.812L1078.075,448.812l-0.291-0.471L1078.075,448.812z"/>
+ <path id="path4599" fill="#C0C0C0" d="M1082.292,450.685L1082.292,450.685l2.344,1.053L1082.292,450.685z"/>
+ <path id="path4601" fill="#C0C0C0" d="M1216.327,453.32L1216.327,453.32l-0.702-0.41L1216.327,453.32z"/>
+ <path id="path4603" fill="#C0C0C0" d="M1215.038,455.019L1215.038,455.019l-0.584-0.119L1215.038,455.019z"/>
+ <path id="path4605" fill="#C0C0C0" d="M556.693,456.013L556.693,456.013v-0.117V456.013z"/>
+ <path id="path4607" fill="#C0C0C0" d="M872.136,458.765L872.136,458.765h-0.117H872.136z"/>
+ <path id="path4609" fill="#C0C0C0" d="M1221.245,465.031L1221.245,465.031l0.645-0.059l-0.878,1.639l-2.812,3.572l-2.927,1.641
+ l0.408-4.977l-0.291,0.291l-0.176-0.059l-0.059-0.232l-0.179-0.352l-0.7-0.646l-4.041-1.756l0.116-0.938l2.635-1.111l0.412-2.518
+ l0.878-3.689l-1.581-0.117l-1.114-1.99l0.879,0.701l0.062-0.701v-1.113l-1.406,0.059l-0.471-1.055l0.998,1.699l-0.998-0.703
+ l-1.814-2.049l-2.456-4.041h1.286l0.703,2.107l0.584-0.762l1.64,0.762l0.878,1.23l0.762-0.584l0.82,2.281l-0.878-0.059l1.873,1.814
+ l-0.703,1.932l4.628,1.992v0.584l3.98,1.348l4.979-1.111l-0.879,2.928l-1.35,2.518L1221.245,465.031z"/>
+ <path id="path4611" fill="#C0C0C0" d="M1110.224,460.58L1110.224,460.58l-0.175-0.059L1110.224,460.58z"/>
+ <path id="path4613" fill="#C0C0C0" d="M1110.107,460.638L1110.107,460.638l0.059-0.117l0.059,0.059L1110.107,460.638z"/>
+ <path id="path4615" fill="#C0C0C0" d="M1110.282,461.109L1110.282,461.109l-0.175-0.119L1110.282,461.109z"/>
+ <path id="path4617" fill="#C0C0C0" d="M871.96,461.693L871.96,461.693l0.059-0.117L871.96,461.693z"/>
+ <path id="path4619" fill="#C0C0C0" d="M1114.79,461.81L1114.79,461.81l-0.583-0.059L1114.79,461.81z"/>
+ <path id="path4621" fill="#C0C0C0" d="M381.493,462.982L381.493,462.982l0.059-0.117l0.061,0.059L381.493,462.982z"/>
+ <path id="path4623" fill="#C0C0C0" d="M381.493,462.923L381.493,462.923l0.763,0.469L381.493,462.923z"/>
+ <path id="path4625" fill="#C0C0C0" d="M1117.251,464.386L1117.251,464.386v-0.117h0.115L1117.251,464.386z"/>
+ <path id="path4627" fill="#C0C0C0" d="M1105.482,464.972L1105.482,464.972l-0.296,1.814L1105.482,464.972z"/>
+ <path id="path4629" fill="#C0C0C0" d="M1119.594,465.439L1119.594,465.439l1.054,1.641L1119.594,465.439z"/>
+ <path id="path4631" fill="#C0C0C0" d="M564.834,467.49L564.834,467.49l-0.47-0.174L564.834,467.49z"/>
+ <path id="path4633" fill="#C0C0C0" d="M1108.7,467.783L1108.7,467.783l-0.232-0.117l0.412,0.059L1108.7,467.783z"/>
+ <path id="path4635" fill="#C0C0C0" d="M1108.116,468.251L1108.116,468.251l-0.115-0.41L1108.116,468.251z"/>
+ <path id="path4637" fill="#C0C0C0" d="M1120.177,468.193L1120.177,468.193l-0.232-0.176l0.471-0.117L1120.177,468.193z"/>
+ <path id="path4639" fill="#C0C0C0" d="M1109.171,468.662L1109.171,468.662l-0.529,0.059L1109.171,468.662z"/>
+ <path id="path4641" fill="#C0C0C0" d="M1210.18,469.363L1210.18,469.363l-0.059-0.232L1210.18,469.363z"/>
+ <path id="path4643" fill="#C0C0C0" d="M1210.121,469.421L1210.121,469.421l0.059-0.117L1210.121,469.421z"/>
+ <path id="path4645" fill="#C0C0C0" d="M1111.747,477.21L1111.747,477.21l-1.933-2.4l-0.12-0.938l1.35,0.586l-3.164-3.982
+ l0.121-1.934l1.401,0.529l0.587-0.352l4.742,1.814l0.411-0.525l1.346,1.111l4.333-1.58l0.116,4.271l-1.401,3.514l-1.232-0.408
+ l-1.17-0.996l-0.587,1.523L1111.747,477.21z"/>
+ <path id="path4647" fill="#C0C0C0" d="M341.617,475.101L341.617,475.101l-0.762-0.584l0.292-0.059L341.617,475.101z"/>
+ <path id="path4649" fill="#C0C0C0" d="M341.677,475.101L341.677,475.101h-0.06H341.677z"/>
+ <path id="path4651" fill="#C0C0C0" d="M339.979,478.031L339.979,478.031l-1.757-0.469l0.82-3.572l2.342-1.346l0.41,1.58
+ L339.979,478.031z"/>
+ <path id="path4653" fill="#C0C0C0" d="M340.974,475.394L340.974,475.394h-0.06H340.974z"/>
+ <path id="path4655" fill="#C0C0C0" d="M340.974,475.394L340.974,475.394h-0.06H340.974z"/>
+ <path id="path4657" fill="#C0C0C0" d="M1119.652,475.748L1119.652,475.748l0.524-0.295L1119.652,475.748z"/>
+ <path id="path4659" fill="#C0C0C0" d="M341.794,476.683L341.794,476.683l-0.704-0.293L341.794,476.683z"/>
+ <path id="path4661" fill="#C0C0C0" d="M341.735,476.683L341.735,476.683l0.06-0.117l0.058,0.059L341.735,476.683z"/>
+ <path id="path4663" fill="#C0C0C0" d="M1117.309,477.562L1117.309,477.562l0.06-0.645L1117.309,477.562z"/>
+ <path id="path4665" fill="#C0C0C0" d="M1116.547,478.382L1116.547,478.382l-0.175-0.236L1116.547,478.382z"/>
+ <path id="path4667" fill="#C0C0C0" d="M1116.489,478.441L1116.489,478.441l0.059-0.117l0.059,0.059L1116.489,478.441z"/>
+ <path id="path4669" fill="#C0C0C0" d="M336.757,478.908L336.757,478.908l0.646-0.115L336.757,478.908z"/>
+ <path id="path4671" fill="#C0C0C0" d="M1211,472.056L1211,472.056l0.762,0.529l-1.29,0.936l0.233,0.352l-2.282,2.637l-1.873,1.111
+ l-1.582-0.059l-4.741,0.174l4.392,2.109l-2.987,0.41l-3.044,2.576l1.054,3.98l-1.522,0.293l-2.281,2.051l-2.461,0.467l-4.566-1.637
+ h-3.396l0.763-0.939l-1.174,0.469l0.704-0.527l-1.172,0.293l-0.058-0.701l1.873-0.354l-0.819-0.408l-0.116-0.471l0.524-0.645
+ l1.173,0.703l-0.235-1.697l1.113-0.762l1.638-0.291l1.582-2.344l3.047-0.234l-0.587-0.525l4.684-1.934l-0.467-0.586l1.64-0.117
+ l2.52-4.625l1.345-0.295l3.047-4.098l0.938,0.117l-1.175,0.41l1.291,1.229L1211,472.056z"/>
+ <path id="path4673" fill="#C0C0C0" d="M339.627,479.962L339.627,479.962l-0.526-0.408L339.627,479.962z"/>
+ <path id="path4675" fill="#C0C0C0" d="M1243.79,480.255L1243.79,480.255l0.175-1.111l1.173,0.232l-0.116,0.938l-1.114,0.176
+ L1243.79,480.255z"/>
+ <path id="path4677" fill="#C0C0C0" d="M339.627,480.021L339.627,480.021l0.059-0.117l0.058,0.059L339.627,480.021z"/>
+ <path id="path4679" fill="#C0C0C0" d="M340.096,480.9L340.096,480.9l-0.06-0.176l0.176,0.057L340.096,480.9z"/>
+ <path id="path4681" fill="#C0C0C0" d="M339.511,481.369L339.511,481.369l-0.06-0.059L339.511,481.369z"/>
+ <path id="path4683" fill="#C0C0C0" d="M1245.313,481.31L1245.313,481.31l0.351-0.176L1245.313,481.31z"/>
+ <path id="path4685" fill="#C0C0C0" d="M338.222,481.25L338.222,481.25h0.352H338.222z"/>
+ <path id="path4687" fill="#C0C0C0" d="M338.28,481.191L338.28,481.191h-0.059H338.28z"/>
+ <path id="path4689" fill="#C0C0C0" d="M338.222,481.25L338.222,481.25v-0.059V481.25z"/>
+ <path id="path4691" fill="#C0C0C0" d="M339.742,481.718L339.742,481.718l-0.408-0.176L339.742,481.718z"/>
+ <path id="path4693" fill="#C0C0C0" d="M339.802,481.718L339.802,481.718l-0.06-0.059L339.802,481.718z"/>
+ <path id="path4695" fill="#C0C0C0" d="M337.812,482.07L337.812,482.07l1.054-0.232L337.812,482.07z"/>
+ <path id="path4697" fill="#C0C0C0" d="M339.451,482.128L339.451,482.128l-0.234-0.059L339.451,482.128z"/>
+ <path id="path4699" fill="#C0C0C0" d="M336.817,482.539L336.817,482.539l0.232-0.291L336.817,482.539z"/>
+ <path id="path4701" fill="#C0C0C0" d="M340.447,482.773L340.447,482.773l0.175,0.059L340.447,482.773z"/>
+ <path id="path4703" fill="#C0C0C0" d="M342.087,483.417L342.087,483.417l1.404-1.639L342.087,483.417z"/>
+ <path id="path4705" fill="#C0C0C0" d="M337.402,482.658L337.402,482.658l0.644-0.061L337.402,482.658z"/>
+ <path id="path4707" fill="#C0C0C0" d="M338.632,483.007L338.632,483.007l1.464-0.41L338.632,483.007z"/>
+ <path id="path4709" fill="#C0C0C0" d="M337.987,483.066L337.987,483.066l-0.232-0.234L337.987,483.066z"/>
+ <path id="path4711" fill="#C0C0C0" d="M335.762,483.417L335.762,483.417v-0.059V483.417z"/>
+ <path id="path4713" fill="#C0C0C0" d="M340.212,483.593L340.212,483.593l-0.292-0.234l0.469,0.176L340.212,483.593z"/>
+ <path id="path4715" fill="#C0C0C0" d="M335.762,483.417L335.762,483.417v-0.059V483.417z"/>
+ <path id="path4717" fill="#C0C0C0" d="M338.573,483.828L338.573,483.828l-0.233-0.059L338.573,483.828z"/>
+ <path id="path4719" fill="#C0C0C0" d="M340.271,483.535L340.271,483.535h-0.059H340.271z"/>
+ <path id="path4721" fill="#C0C0C0" d="M340.389,484.646L340.389,484.646l-0.703-0.057L340.389,484.646z"/>
+ <path id="path4723" fill="#C0C0C0" d="M338.454,484.763L338.454,484.763l-0.292-0.174L338.454,484.763z"/>
+ <path id="path4725" fill="#C0C0C0" d="M338.514,484.705L338.514,484.705h-0.06H338.514z"/>
+ <path id="path4727" fill="#C0C0C0" d="M339.511,484.941L339.511,484.941l0.878-0.059L339.511,484.941z"/>
+ <path id="path4729" fill="#C0C0C0" d="M339.568,484.941L339.568,484.941v-0.059V484.941z"/>
+ <path id="path4731" fill="#C0C0C0" d="M338.28,485.115L338.28,485.115l-0.41-0.174L338.28,485.115z"/>
+ <path id="path4733" fill="#C0C0C0" d="M339.101,485.703L339.101,485.703h0.995H339.101z"/>
+ <path id="path4735" fill="#C0C0C0" d="M340.74,486.345L340.74,486.345l-0.118-1.053l0.293,1.053H340.74z"/>
+ <path id="path4737" fill="#C0C0C0" d="M337.929,486.345L337.929,486.345l-0.06-0.059L337.929,486.345z"/>
+ <path id="path4739" fill="#C0C0C0" d="M339.392,486.169L339.392,486.169l-0.175-0.352L339.392,486.169z"/>
+ <path id="path4741" fill="#C0C0C0" d="M337.166,486.287L337.166,486.287l0.061-0.352L337.166,486.287z"/>
+ <path id="path4743" fill="#C0C0C0" d="M1185.411,485.935L1185.411,485.935l-0.82,0.352L1185.411,485.935z"/>
+ <path id="path4745" fill="#C0C0C0" d="M337.166,486.287L337.166,486.287v-0.059V486.287z"/>
+ <path id="path4747" fill="#C0C0C0" d="M339.862,487.107L339.862,487.107l-0.061-0.119L339.862,487.107z"/>
+ <path id="path4749" fill="#C0C0C0" d="M335.879,487.576L335.879,487.576l-0.117-0.178L335.879,487.576z"/>
+ <path id="path4751" fill="#C0C0C0" d="M339.862,487.166L339.862,487.166l0.059-0.117l0.059,0.059L339.862,487.166z"/>
+ <path id="path4753" fill="#C0C0C0" d="M335.938,487.576L335.938,487.576l-0.06-0.059L335.938,487.576z"/>
+ <path id="path4755" fill="#C0C0C0" d="M776.046,487.634L776.046,487.634l-0.119-0.059L776.046,487.634z"/>
+ <path id="path4757" fill="#C0C0C0" d="M781.491,488.804L781.491,488.804l-0.411-0.293L781.491,488.804z"/>
+ <path id="path4759" fill="#C0C0C0" d="M1191.851,490.033L1191.851,490.033l-0.058-0.115L1191.851,490.033z"/>
+ <path id="path4761" fill="#C0C0C0" d="M1188.808,490.033L1188.808,490.033l0.059-0.115l-0.119,0.115H1188.808z"/>
+ <path id="path4763" fill="#C0C0C0" d="M1188.808,490.033L1188.808,490.033h-0.062H1188.808z"/>
+ <path id="path4765" fill="#C0C0C0" d="M731.893,490.562L731.893,490.562v-0.41V490.562z"/>
+ <path id="path4767" fill="#C0C0C0" d="M1189.861,489.742L1189.861,489.742l-1.697,1.932L1189.861,489.742z"/>
+ <path id="path4769" fill="#C0C0C0" d="M338.807,491.146L338.807,491.146l0.879-0.234L338.807,491.146z"/>
+ <path id="path4771" fill="#C0C0C0" d="M337.987,491.322L337.987,491.322v-0.059V491.322z"/>
+ <path id="path4773" fill="#C0C0C0" d="M338.807,491.205L338.807,491.205l0.059-0.115l0.06,0.057L338.807,491.205z"/>
+ <path id="path4775" fill="#C0C0C0" d="M1188.046,491.498L1188.046,491.498h-0.178H1188.046z"/>
+ <path id="path4777" fill="#C0C0C0" d="M1228.741,493.197L1228.741,493.197l0.06-0.119L1228.741,493.197z"/>
+ <path id="path4779" fill="#C0C0C0" d="M336.287,493.488L336.287,493.488h-0.058H336.287z"/>
+ <path id="path4781" fill="#C0C0C0" d="M335.471,493.666L335.471,493.666h0.291H335.471z"/>
+ <path id="path4783" fill="#C0C0C0" d="M336.287,493.488L336.287,493.488h-0.058H336.287z"/>
+ <path id="path4785" fill="#C0C0C0" d="M335.471,493.666L335.471,493.666h0.058H335.471z"/>
+ <path id="path4787" fill="#C0C0C0" d="M338.396,494.191L338.396,494.191l1.523-0.234l-1.466,0.234H338.396z"/>
+ <path id="path4789" fill="#C0C0C0" d="M335.235,494.367L335.235,494.367l1.347,0.119l-0.525-0.119H335.235z"/>
+ <path id="path4791" fill="#C0C0C0" d="M1184.999,494.308L1184.999,494.308v-0.059V494.308z"/>
+ <path id="path4793" fill="#C0C0C0" d="M335.938,495.771L335.938,495.771l-0.703-1.227l1.463,0.994L335.938,495.771z"/>
+ <path id="path4795" fill="#C0C0C0" d="M335.235,496.71L335.235,496.71l-0.234-0.703L335.235,496.71z"/>
+ <path id="path4797" fill="#C0C0C0" d="M337.46,496.71L337.46,496.71l-0.819-0.234L337.46,496.71z"/>
+ <path id="path4799" fill="#C0C0C0" d="M334.005,496.71L334.005,496.71l0.994-0.352l-0.585,0.291L334.005,496.71z"/>
+ <path id="path4801" fill="#C0C0C0" d="M334.063,496.65L334.063,496.65h-0.059H334.063z"/>
+ <path id="path4803" fill="#C0C0C0" d="M333.889,497.06L333.889,497.06l1.11-0.232L333.889,497.06z"/>
+ <path id="path4805" fill="#C0C0C0" d="M335.177,497.998L335.177,497.998l-0.178-0.408l-0.525,0.35L335.177,497.998z"/>
+ <path id="path4807" fill="#C0C0C0" d="M843.208,498.056L843.208,498.056l-0.408,0.059l0.176-0.645l0.466,0.059L843.208,498.056z"/>
+ <path id="path4809" fill="#C0C0C0" d="M334.299,498.701L334.299,498.701l-0.41-0.234L334.299,498.701z"/>
+ <path id="path4811" fill="#C0C0C0" d="M336.287,498.759L336.287,498.759l-0.993-0.469l0.878-0.41l0.234,0.936L336.287,498.759z"/>
+ <path id="path4813" fill="#C0C0C0" d="M845.844,500.283L845.844,500.283l-0.704-0.059L845.844,500.283z"/>
+ <path id="path4815" fill="#C0C0C0" d="M336.349,498.701L336.349,498.701h-0.062H336.349z"/>
+ <path id="path4817" fill="#C0C0C0" d="M336.874,501.453L336.874,501.453l-0.117-0.117L336.874,501.453z"/>
+ <path id="path4819" fill="#C0C0C0" d="M1227.921,500.046L1227.921,500.046v0.059V500.046z"/>
+ <path id="path4821" fill="#C0C0C0" d="M1227.921,500.105L1227.921,500.105l-0.408,0.059L1227.921,500.105z"/>
+ <path id="path4823" fill="#C0C0C0" d="M334.999,500.867L334.999,500.867l-0.115-0.469L334.999,500.867z"/>
+ <path id="path4825" fill="#C0C0C0" d="M335.061,500.808L335.061,500.808v0.059V500.808z"/>
+ <path id="path4827" fill="#C0C0C0" d="M334.999,502.798L334.999,502.798l-0.468-0.232l0.878,0.232H334.999z"/>
+ <path id="path4829" fill="#C0C0C0" d="M334.999,502.798L334.999,502.798v-0.059V502.798z"/>
+ <path id="path4831" fill="#C0C0C0" d="M1183.829,503.208L1183.829,503.208v0.061V503.208z"/>
+ <path id="path4833" fill="#C0C0C0" d="M338.865,504.263L338.865,504.263l-0.937-0.352l-0.645-0.938l0.995-0.117l0.526,0.818
+ L338.865,504.263z"/>
+ <path id="path4835" fill="#C0C0C0" d="M334.999,504.087L334.999,504.087l-0.059-0.176L334.999,504.087z"/>
+ <path id="path4837" fill="#C0C0C0" d="M1183.829,503.269L1183.829,503.269l-0.528,0.469L1183.829,503.269z"/>
+ <path id="path4839" fill="#C0C0C0" d="M337.108,504.38L337.108,504.38l-0.701-0.117l-0.119-0.41l0.997,0.293v0.176L337.108,504.38z
+ "/>
+ <path id="path4841" fill="#C0C0C0" d="M336.523,504.964L336.523,504.964l0.938,0.119l-0.353,0.117l-0.291-0.117L336.523,504.964z"
+ />
+ <path id="path4843" fill="#C0C0C0" d="M338.105,505.494L338.105,505.494l-0.471-0.119L338.105,505.494z"/>
+ <path id="path4845" fill="#C0C0C0" d="M336.056,506.431L336.056,506.431v-0.119V506.431z"/>
+ <path id="path4847" fill="#C0C0C0" d="M334.999,506.957L334.999,506.957l0.528-1.172l-0.118,1.113L334.999,506.957z"/>
+ <path id="path4849" fill="#C0C0C0" d="M339.568,507.601L339.568,507.601l-0.703-0.293l-0.059-0.117l1.056,0.352L339.568,507.601z"
+ />
+ <path id="path4851" fill="#C0C0C0" d="M385.184,508.363L385.184,508.363l2.987-0.879l3.395-1.289l-2.283,1.934l-2.519,0.996
+ L385.184,508.363z"/>
+ <path id="path4853" fill="#C0C0C0" d="M339.511,507.66L339.511,507.66l0.058-0.117l0.06,0.059L339.511,507.66z"/>
+ <path id="path4855" fill="#C0C0C0" d="M389.809,508.656L389.809,508.656l1.347,0.877l-0.175-0.818l1.111,0.41l4.686-1.875
+ l-1.463-0.527h1.347l-0.526-0.586l-1.113,0.939l-0.585-1.111l-1.934-0.293L389.809,508.656z"/>
+ <path id="path4857" fill="#C0C0C0" d="M335.702,507.953L335.702,507.953l0.527-0.586l-0.117,0.41l-0.233,0.176H335.702z"/>
+ <path id="path4859" fill="#C0C0C0" d="M338.807,508.068L338.807,508.068l0.352,0.061h-0.352V508.068z"/>
+ <path id="path4861" fill="#C0C0C0" d="M384.949,507.953L384.949,507.953l0.819-0.469L384.949,507.953z"/>
+ <path id="path4863" fill="#C0C0C0" d="M336.056,508.597L336.056,508.597l0.175-0.119L336.056,508.597z"/>
+ <path id="path4865" fill="#C0C0C0" d="M384.949,507.953L384.949,507.953v-0.059V507.953z"/>
+ <path id="path4867" fill="#C0C0C0" d="M335.762,507.953L335.762,507.953l-0.06-0.059L335.762,507.953z"/>
+ <path id="path4869" fill="#C0C0C0" d="M336.523,508.771L336.523,508.771l0.41-0.174L336.523,508.771z"/>
+ <path id="path4871" fill="#C0C0C0" d="M340.621,509.125L340.621,509.125l-0.819-0.586l0.938,0.469l-0.118,0.059V509.125z"/>
+ <path id="path4873" fill="#C0C0C0" d="M338.28,508.539L338.28,508.539h-0.059H338.28z"/>
+ <path id="path4875" fill="#C0C0C0" d="M338.222,508.597L338.222,508.597v-0.119V508.597z"/>
+ <path id="path4877" fill="#C0C0C0" d="M338.222,508.597L338.222,508.597v-0.059V508.597z"/>
+ <path id="path4879" fill="#C0C0C0" d="M339.158,509.708L339.158,509.708l0.645-0.291L339.158,509.708z"/>
+ <path id="path4881" fill="#C0C0C0" d="M336.874,509.357L336.874,509.357v0.061V509.357z"/>
+ <path id="path4883" fill="#C0C0C0" d="M1194.017,509.943L1194.017,509.943l0.063-0.117l0.058,0.061L1194.017,509.943z"/>
+ <path id="path4885" fill="#C0C0C0" d="M1194.136,509.943L1194.136,509.943l-0.119,0.41L1194.136,509.943z"/>
+ <path id="path4887" fill="#C0C0C0" d="M339.802,510.822L339.802,510.822l-0.468-0.352l0.995,0.293L339.802,510.822z"/>
+ <path id="path4889" fill="#C0C0C0" d="M341.794,510.88L341.794,510.88v-0.059V510.88z"/>
+ <path id="path4891" fill="#C0C0C0" d="M341.677,510.939L341.677,510.939l0.059-0.117L341.677,510.939z"/>
+ <path id="path4893" fill="#C0C0C0" d="M337.284,510.88L337.284,510.88l0.995,0.469L337.284,510.88z"/>
+ <path id="path4895" fill="#C0C0C0" d="M856.911,511.759L856.911,511.759l1.229,0.115l0.47,0.352l-0.703,0.295L856.911,511.759z"/>
+ <path id="path4897" fill="#C0C0C0" d="M339.451,512.695L339.451,512.695l-0.646,0.236L339.451,512.695z"/>
+ <path id="path4899" fill="#C0C0C0" d="M341.617,513.222L341.617,513.222l-1.112,0.176l1.172-0.176H341.617z"/>
+ <path id="path4901" fill="#C0C0C0" d="M340.74,513.632L340.74,513.632l-0.703,0.059L340.74,513.632z"/>
+ <path id="path4903" fill="#C0C0C0" d="M340.681,513.691L340.681,513.691l0.06-0.117l0.06,0.059L340.681,513.691z"/>
+ <path id="path4905" fill="#C0C0C0" d="M358.539,510.587L358.539,510.587l1.405,1.639l-1.17,0.41l3.453,2.4l4.686,2.168l3.865,0.408
+ l-0.762,0.994l-3.865,0.41l-0.702-0.059l-0.525-0.291l-0.763-0.178l-1.814-0.117l-3.864,0.059l-4.686-0.703l-2.811,0.529
+ l-4.392-1.113l4.215-0.703l0.177,0.996l0.644-0.762l1.229,0.41l4.333-0.117l-3.748-1.346l-1.229-4.627h2.282L358.539,510.587z"/>
+ <path id="path4907" fill="#C0C0C0" d="M346.011,514.568L346.011,514.568l-2.285,1.23L346.011,514.568z"/>
+ <path id="path4909" fill="#C0C0C0" d="M351.982,513.925L351.982,513.925l-0.176,1.873L351.982,513.925z"/>
+ <path id="path4911" fill="#C0C0C0" d="M345.601,515.625L345.601,515.625l0.058-0.119l0.06,0.061L345.601,515.625z"/>
+ <path id="path4913" fill="#C0C0C0" d="M342.437,515.681L342.437,515.681l0.061-0.115L342.437,515.681z"/>
+ <path id="path4915" fill="#C0C0C0" d="M342.496,515.625L342.496,515.625h-0.997H342.496z"/>
+ <path id="path4917" fill="#C0C0C0" d="M347.825,515.156L347.825,515.156l0.06,0.469l-1.057-0.236l0.646,0.879l-1.113-0.352
+ l-0.585-0.701l1.113-0.41l0.937,0.232L347.825,515.156L347.825,515.156z"/>
+ <path id="path4919" fill="#C0C0C0" d="M349.172,515.388L349.172,515.388l0.175,0.527L349.172,515.388z"/>
+ <path id="path4921" fill="#C0C0C0" d="M345.601,515.625L345.601,515.625v0.584V515.625z"/>
+ <path id="path4923" fill="#C0C0C0" d="M345.248,516.443L345.248,516.443l0.353,0.059L345.248,516.443z"/>
+ <path id="path4925" fill="#C0C0C0" d="M611.386,516.97L611.386,516.97v-0.119V516.97z"/>
+ <path id="path4927" fill="#C0C0C0" d="M472.841,518.433L472.841,518.433l-1.873-1.287l-3.865-1.289l0.997-0.41l1.58,0.178
+ L472.841,518.433z"/>
+ <path id="path4929" fill="#C0C0C0" d="M469.505,517.146L469.505,517.146l-0.235-0.117L469.505,517.146z"/>
+ <path id="path4931" fill="#C0C0C0" d="M1157.654,517.964L1157.654,517.964l0.411-0.936L1157.654,517.964z"/>
+ <path id="path4933" fill="#C0C0C0" d="M346.536,517.556L346.536,517.556l0.41,0.234L346.536,517.556z"/>
+ <path id="path4935" fill="#C0C0C0" d="M373.766,517.908L373.766,517.908l1.111,0.115l-0.995,0.295l-1.171,0.057L373.766,517.908z"
+ />
+ <path id="path4937" fill="#C0C0C0" d="M352.509,518.433L352.509,518.433h-0.06H352.509z"/>
+ <path id="path4939" fill="#C0C0C0" d="M350.166,518.375L350.166,518.375h-0.994H350.166z"/>
+ <path id="path4941" fill="#C0C0C0" d="M356.49,518.609L356.49,518.609h0.062H356.49z"/>
+ <path id="path4943" fill="#C0C0C0" d="M356.432,518.726L356.432,518.726l0.059-0.117L356.432,518.726z"/>
+ <path id="path4945" fill="#C0C0C0" d="M356.49,518.669L356.49,518.669l0.118,0.057L356.49,518.669z"/>
+ <path id="path4947" fill="#C0C0C0" d="M352.45,518.492L352.45,518.492l-0.115,0.117L352.45,518.492z"/>
+ <path id="path4949" fill="#C0C0C0" d="M364.046,519.195L364.046,519.195l-4.627-0.525L364.046,519.195z"/>
+ <path id="path4951" fill="#C0C0C0" d="M365.978,519.429L365.978,519.429l-0.527,0.293L365.978,519.429z"/>
+ <path id="path4953" fill="#C0C0C0" d="M364.688,519.664L364.688,519.664l-0.643,0.352L364.688,519.664z"/>
+ <path id="path4955" fill="#C0C0C0" d="M359.36,518.726L359.36,518.726l1.054,2.637l-2.984-0.879l-3.865-1.055l1.58-0.469
+ L359.36,518.726z"/>
+ <path id="path4957" fill="#C0C0C0" d="M362.932,520.953L362.932,520.953l0.059-0.117l0.06,0.059L362.932,520.953z"/>
+ <path id="path4959" fill="#C0C0C0" d="M362.99,520.894L362.99,520.894l0.353,0.584L362.99,520.894z"/>
+ <path id="path4961" fill="#C0C0C0" d="M362.405,521.773L362.405,521.773l0.06-0.119L362.405,521.773z"/>
+ <path id="path4963" fill="#C0C0C0" d="M362.464,521.714L362.464,521.714l-0.117,0.232L362.464,521.714z"/>
+ <path id="path4965" fill="#C0C0C0" d="M363.868,521.773L363.868,521.773l0.116,0.232L363.868,521.773z"/>
+ <path id="path4967" fill="#C0C0C0" d="M502.705,523.47L502.705,523.47l-0.06-0.119L502.705,523.47z"/>
+ <path id="path4969" fill="#C0C0C0" d="M504.17,524.933L504.17,524.933l-0.177-0.059L504.17,524.933z"/>
+ <path id="path4971" fill="#C0C0C0" d="M505.927,526.164L505.927,526.164l-0.235-0.059L505.927,526.164z"/>
+ <path id="path4973" fill="#C0C0C0" d="M506.747,528.74L506.747,528.74l-0.235-0.059L506.747,528.74z"/>
+ <path id="path4975" fill="#C0C0C0" d="M507.332,531.14L507.332,531.14l-0.585-0.41L507.332,531.14z"/>
+ <path id="path4977" fill="#C0C0C0" d="M507.332,531.14L507.332,531.14l0.058-0.117l0.059,0.059L507.332,531.14z"/>
+ <path id="path4979" fill="#C0C0C0" d="M506.159,533.132L506.159,533.132l-0.232-0.119L506.159,533.132z"/>
+ <path id="path4981" fill="#C0C0C0" d="M503.524,534.537L503.524,534.537l-0.231-0.117L503.524,534.537z"/>
+ <path id="path4983" fill="#C0C0C0" d="M440.753,538.988L440.753,538.988l-2.049-0.527l1.289-0.119l0.878,0.41L440.753,538.988z"/>
+ <path id="path4985" fill="#C0C0C0" d="M405.15,540.802L405.15,540.802l-0.116-0.643L405.15,540.802z"/>
+ <path id="path4987" fill="#C0C0C0" d="M409.426,540.861L409.426,540.861l0.469-0.586L409.426,540.861z"/>
+ <path id="path4989" fill="#C0C0C0" d="M392.386,544.14L392.386,544.14l2.05-0.938L392.386,544.14z"/>
+ <path id="path4991" fill="#C0C0C0" d="M391.623,544.433L391.623,544.433l1.113-0.059L391.623,544.433z"/>
+ <path id="path4993" fill="#C0C0C0" d="M389.985,544.726L389.985,544.726h1.17l-0.701,0.232L389.985,544.726z"/>
+ <path id="path4995" fill="#C0C0C0" d="M389.165,545.251L389.165,545.251l-0.294-0.232L389.165,545.251z"/>
+ <path id="path4997" fill="#C0C0C0" d="M389.165,545.251L389.165,545.251h1.229H389.165z"/>
+ <path id="path4999" fill="#C0C0C0" d="M384.831,545.662L384.831,545.662l3.688-0.584L384.831,545.662z"/>
+ <path id="path5001" fill="#C0C0C0" d="M386.473,546.951L386.473,546.951l0.058-0.117L386.473,546.951z"/>
+ <path id="path5003" fill="#C0C0C0" d="M401.754,547.535L401.754,547.535l0.762-0.643L401.754,547.535z"/>
+ <path id="path5005" fill="#C0C0C0" d="M401.404,548.472L401.404,548.472l1.405-1.053L401.404,548.472z"/>
+ <path id="path5007" fill="#C0C0C0" d="M402.866,549.001L402.866,549.001l0.938-0.588L402.866,549.001z"/>
+ <path id="path5009" fill="#C0C0C0" d="M398.008,550.054L398.008,550.054l-1.114-0.234h2.285L398.008,550.054z"/>
+ <path id="path5011" fill="#C0C0C0" d="M396.016,552.046L396.016,552.046l-1.696-1.289L396.016,552.046z"/>
+ <path id="path5013" fill="#C0C0C0" d="M396.016,551.986L396.016,551.986l-0.76-1.99L396.016,551.986z"/>
+ <path id="path5015" fill="#C0C0C0" d="M379.619,551.986L379.619,551.986l0.294-1.053l0.995-0.352l0.819,0.645l-0.468,0.469
+ l-1.348,0.584L379.619,551.986z"/>
+ <path id="path5017" fill="#C0C0C0" d="M397.714,552.337L397.714,552.337l2.107-0.701l-0.703,0.643l-0.351,0.117L397.714,552.337z"
+ />
+ <path id="path5019" fill="#C0C0C0" d="M373.882,552.923L373.882,552.923l4.04-1.465L373.882,552.923z"/>
+ <path id="path5021" fill="#C0C0C0" d="M376.342,553.568L376.342,553.568l0.938-0.295L376.342,553.568z"/>
+ <path id="path5023" fill="#C0C0C0" d="M390.513,554.855L390.513,554.855l-1.057-0.525h0.88L390.513,554.855z"/>
+ <path id="path5025" fill="#C0C0C0" d="M962.604,555.617L962.604,555.617l-1.054-0.525l-0.819-0.529l1.286-0.059l0.354,0.588
+ L962.604,555.617z"/>
+ <path id="path5027" fill="#C0C0C0" d="M952.709,556.376L952.709,556.376l0.292-0.936l0.937-0.117l1.407,0.352l-0.938,0.646
+ L952.709,556.376z"/>
+ <path id="path5029" fill="#C0C0C0" d="M367.148,557.023L367.148,557.023l0.761-0.82l1.288-0.469l-1.054,0.703L367.148,557.023z"/>
+ <path id="path5031" fill="#C0C0C0" d="M924.249,556.376L924.249,556.376l1.174,0.352L924.249,556.376z"/>
+ <path id="path5033" fill="#C0C0C0" d="M938.831,558.369L938.831,558.369l1.053-0.469L938.831,558.369z"/>
+ <path id="path5035" fill="#C0C0C0" d="M364.924,558.544L364.924,558.544l0.76-0.76L364.924,558.544z"/>
+ <path id="path5037" fill="#C0C0C0" d="M1170.421,558.427L1170.421,558.427l0.059-0.117l0.059,0.059L1170.421,558.427z"/>
+ <path id="path5039" fill="#C0C0C0" d="M1170.538,558.427L1170.538,558.427l0.115,0.586L1170.538,558.427z"/>
+ <path id="path5041" fill="#C0C0C0" d="M1172.702,559.658L1172.702,559.658l-0.584-0.176L1172.702,559.658z"/>
+ <path id="path5043" fill="#C0C0C0" d="M769.369,560.537L769.369,560.537l1.641-0.41L769.369,560.537z"/>
+ <path id="path5045" fill="#C0C0C0" d="M356.432,562.876L356.432,562.876l3.632-2.809l2.049-0.469l-1.58,3.277H356.432
+ L356.432,562.876z"/>
+ <path id="path5047" fill="#C0C0C0" d="M1178.793,562.585L1178.793,562.585l-0.82,0.176l-0.175-0.82L1178.793,562.585z"/>
+ <path id="path5049" fill="#C0C0C0" d="M766.147,563.171L766.147,563.171l1.058-0.117L766.147,563.171z"/>
+ <path id="path5051" fill="#C0C0C0" d="M361.644,563.755L361.644,563.755l0.41-0.584l1.288-0.059l-0.819,0.699L361.644,563.755z"/>
+ <path id="path5053" fill="#C0C0C0" d="M385.535,567.093L385.535,567.093l-0.528-0.115L385.535,567.093z"/>
+ <path id="path5055" fill="#C0C0C0" d="M385.535,567.093L385.535,567.093h0.878H385.535z"/>
+ <path id="path5057" fill="#C0C0C0" d="M385.476,567.152L385.476,567.152l0.061-0.115l0.059,0.057L385.476,567.152z"/>
+ <path id="path5059" fill="#C0C0C0" d="M381.201,570.373L381.201,570.373l-0.118-0.879l1.229-0.291l0.41,0.41l-0.819,0.584
+ L381.201,570.373z"/>
+ <path id="path5061" fill="#C0C0C0" d="M344.254,570.607L344.254,570.607l-0.938-0.469l0.938-0.352l1.11,0.059l1.055,0.527
+ l-0.702,0.293L344.254,570.607z"/>
+ <path id="path5063" fill="#C0C0C0" d="M337.344,571.486L337.344,571.486l-4.509-0.178L337.344,571.486z"/>
+ <path id="path5065" fill="#C0C0C0" d="M383.659,571.544L383.659,571.544l0.646-0.176L383.659,571.544z"/>
+ <path id="path5067" fill="#C0C0C0" d="M656.297,572.07L656.297,572.07l-0.995,0.059l-0.82-0.059l0.938-0.994h0.586l0.995,0.41
+ L656.297,572.07z"/>
+ <path id="path5069" fill="#C0C0C0" d="M645.816,572.128L645.816,572.128l-1.17,0.119l-1.114-0.234l2.343-0.232L645.816,572.128z"/>
+ <path id="path5071" fill="#C0C0C0" d="M590.07,573.126L590.07,573.126l-1.638,0.174l-0.529-0.059l0.704-0.584l1.463-0.061V573.126z
+ "/>
+ <path id="path5073" fill="#C0C0C0" d="M851.991,573.476L851.991,573.476l-0.058-0.996l1.053,1.23L851.991,573.476z"/>
+ <path id="path5075" fill="#C0C0C0" d="M578.534,573.537L578.534,573.537h-0.818l0.937-0.529L578.534,573.537z"/>
+ <path id="path5077" fill="#C0C0C0" d="M609.862,573.769L609.862,573.769l-1.053-0.352l1.288-0.469h0.701L609.862,573.769z"/>
+ <path id="path5079" fill="#C0C0C0" d="M385.007,573.828L385.007,573.828l1.172-0.586L385.007,573.828z"/>
+ <path id="path5081" fill="#C0C0C0" d="M346.36,580.796L346.36,580.796l1.172-3.631l-1.992,0.879l-3.514-0.234l-0.701,1.346
+ l-0.469-0.35l-5.036-0.82l-2.049-1.346l3.396,0.643l-0.409-1.463l4.92,0.76l-1.523-0.996l5.153,0.41l-2.811-0.643l1.696-0.469
+ h3.396h3.981l-3.162-1.992l-1.99-4.625l2.227-0.586l3.22-0.469l1.698,0.996l-0.234,0.762l2.051,0.703l3.63,3.746l1.404,3.865
+ l-1.17,2.281l-2.929,1.057l-0.469,0.059l-0.938,0.232l-1.697,0.059l-0.763-0.059l-0.762,0.119l-0.818-0.119L346.36,580.796z"/>
+ <path id="path5083" fill="#C0C0C0" d="M589.896,575.173L589.896,575.173l-0.585-0.057L589.896,575.173z"/>
+ <path id="path5085" fill="#C0C0C0" d="M330.784,575.701L330.784,575.701l-0.234-0.643l4.686-0.586l4.743-0.703l1.054,0.469
+ l-2.399,0.82l-4.101,0.41L330.784,575.701z"/>
+ <path id="path5087" fill="#C0C0C0" d="M386.296,575.173L386.296,575.173l-0.41-0.057L386.296,575.173z"/>
+ <path id="path5089" fill="#C0C0C0" d="M262.274,580.445L262.274,580.445l-0.645,0.059l-2.049-0.059l-0.761,0.059l-0.937-0.059
+ l-0.178-0.176l-5.093,0.117l-2.692-0.234l0.994-0.467h-2.576l-0.06-0.119h-1.463l-0.762-0.234l-3.63-0.057l-2.226-0.178l0.233-0.41
+ l2.107-0.352l4.157-0.525l0.878,0.877l4.803-1.521l3.045,0.527l-0.117,1.346l0.526-1.229l1.757,1.346L262.274,580.445z"/>
+ <path id="path5091" fill="#C0C0C0" d="M387.232,579.449L387.232,579.449l-0.175-0.174L387.232,579.449z"/>
+ <path id="path5093" fill="#C0C0C0" d="M387.232,579.449L387.232,579.449h0.468H387.232z"/>
+ <path id="path5095" fill="#C0C0C0" d="M245.292,580.855L245.292,580.855l0.235-0.176l2.518-0.117l3.396,0.117l0.586,0.232
+ l-2.46,0.527L245.292,580.855z"/>
+ <path id="path5097" fill="#C0C0C0" d="M280.603,580.679L280.603,580.679l-2.167,1.873L280.603,580.679z"/>
+ <path id="path5099" fill="#C0C0C0" d="M328.207,581.148L328.207,581.148l-4.508,1.639L328.207,581.148z"/>
+ <path id="path5101" fill="#C0C0C0" d="M282.066,582.259L282.066,582.259l1.23-0.291l0.585-0.41l1.289,0.115l-0.704,0.586H282.066z"
+ />
+ <path id="path5103" fill="#C0C0C0" d="M230.069,582.552L230.069,582.552l0.702-0.469l1.463,0.586l-1.112,0.234L230.069,582.552z"/>
+ <path id="path5105" fill="#C0C0C0" d="M338.865,582.025L338.865,582.025l-0.878,2.342L338.865,582.025z"/>
+ <path id="path5107" fill="#C0C0C0" d="M341.384,582.728L341.384,582.728l-0.47,0.469l-1.403,0.176l0.994-0.703L341.384,582.728z"/>
+ <path id="path5109" fill="#C0C0C0" d="M324.401,583.548L324.401,583.548l1.407-0.703l0.76,0.176l-0.878,0.584L324.401,583.548z"/>
+ <path id="path5111" fill="#C0C0C0" d="M1196.534,583.548L1196.534,583.548l-0.351,0.645l-0.879-0.762L1196.534,583.548z"/>
+ <path id="path5113" fill="#C0C0C0" d="M154.297,583.957L154.297,583.957l0.526-1.521L154.297,583.957z"/>
+ <path id="path5115" fill="#C0C0C0" d="M169.286,586.476L169.286,586.476l-0.585-2.342L169.286,586.476z"/>
+ <path id="path5117" fill="#C0C0C0" d="M192.123,585.539L192.123,585.539l-1.111,0.41l-0.586,0.293l-2.458-0.117l0.175-0.291
+ l2.928-0.588l0.82-0.059L192.123,585.539z"/>
+ <path id="path5119" fill="#C0C0C0" d="M139.717,587.529L139.717,587.529h-0.763l-1.404-0.174l-0.938-0.705l0.938-0.057l0.468,0.234
+ l2.05,0.059L139.717,587.529z"/>
+ <path id="path5121" fill="#C0C0C0" d="M134.563,587.238L134.563,587.238l-1.053-0.178L134.563,587.238z"/>
+ <path id="path5123" fill="#C0C0C0" d="M153.009,587.412L153.009,587.412l-0.938,0.236l-0.645-0.236l-1.286-0.408l0.408-0.527
+ l2.576,0.41L153.009,587.412z"/>
+ <path id="path5125" fill="#C0C0C0" d="M528.295,588.642L528.295,588.642l-1.523-2.049L528.295,588.642z"/>
+ <path id="path5127" fill="#C0C0C0" d="M88.129,591.572L88.129,591.572l-0.938-0.236l0.704-0.293l1.405,0.293L88.129,591.572z"/>
+ <path id="path5129" fill="#C0C0C0" d="M75.363,596.605L75.363,596.605l-3.337-0.174l-1.522-0.645l2.986-0.117h0.645l1.229,0.527
+ L75.363,596.605L75.363,596.605z"/>
+ <path id="path5131" fill="#C0C0C0" d="M79.638,596.605L79.638,596.605l1.112,0.996l-1.522,0.059l-2.635-0.586l1.053-0.701
+ l0.762,0.059L79.638,596.605z"/>
+ <path id="path5133" fill="#C0C0C0" d="M1186.698,598.832L1186.698,598.832l-2.106-1.172L1186.698,598.832z"/>
+ <path id="path5135" fill="#C0C0C0" d="M343.608,597.542L343.608,597.542l-0.995,1.113l-2.576,0.82l-2.869,0.41l-2.283-0.119
+ l-4.919-0.469l-1.933-0.057l-2.693-0.205l-2.693-0.205l-1.699-0.996h-0.76l-4.802-0.061l0.175-0.645l1.172-0.76l2.678,0.059
+ l2.681,0.061l2.68,0.059l2.678,0.057l3.382,0.146l3.384,0.146l3.382,0.146l3.381,0.145L343.608,597.542z"/>
+ <path id="path5137" fill="#C0C0C0" d="M466.812,601.935L466.812,601.935l-4.452,0.057l-1.286-0.174l-4.158-0.059h-4.978l3.337-0.41
+ l3.178,0.133l3.178,0.129l3.177,0.133l3.176,0.133L466.812,601.935z"/>
+ <path id="path5139" fill="#C0C0C0" d="M365.684,601.173L365.684,601.173l-1.288,0.703l-2.049,0.293l-1.814,0.469l-2.226,0.701
+ l-3.631,1.172l0.818,1.053l-4.977-0.291l-0.703-1.055l0.82-0.879l4.448-0.76l1.582-0.529l4.216-0.584l2.05-0.41L365.684,601.173z"
+ />
+ <path id="path5141" fill="#C0C0C0" d="M347.532,605.095L347.532,605.095l1.873-1.932l1.056-0.234l1.054-0.232l1.054-0.236
+ l1.055-0.174l1.055-0.117l1.112-0.178l4.393-0.701l1.11-0.117h1.056l-0.586,0.877l-1.112,0.236l-1.055,0.293l-1.055,0.35
+ l-1.053,0.234l-1.056,0.352l-4.04,1.643L347.532,605.095z"/>
+ <path id="path5143" fill="#C0C0C0" d="M34.022,603.164L34.022,603.164l4.392,1.758L34.022,603.164z"/>
+ <path id="path5145" fill="#C0C0C0" d="M435.482,599.476L435.482,599.476l4.627,0.469l3.63,0.82l-0.352,1.346l-4.802,0.234
+ l-2.048,0.525l0.408,0.119h2.985l4.568,0.059l2.692,3.455l-3.045,0.291l-2.692,1.465l-2.781,0.32l-2.782,0.322l-4.918,0.234
+ l-3.688,0.176l-4.275,0.408l-4.568,0.178l-3.98,0.115l-5.151-0.115l-2.577-0.939l0.526-0.762l4.099-2.809l3.748-2.461l3.222-0.994
+ l2.46-0.469l4.508-0.701l3.162-0.879l3.222-0.471L435.482,599.476z"/>
+ <path id="path5147" fill="#C0C0C0" d="M390.103,606.384L390.103,606.384l-1.992,3.924h-1.58l-5.211-0.41l-3.046-0.938l-4.156,0.293
+ l-2.929-0.408l-3.864-0.996l0.763-0.234l0.761,0.117l0.644,0.293l2.577,0.293l4.274,0.117l4.859,0.059l3.162-0.176l2.05-0.645
+ L390.103,606.384z"/>
+ <path id="path5149" fill="#C0C0C0" d="M1270.452,642.71v-19.582l-0.004-0.01l-0.366-0.045l-2.868-0.117l-2.869-0.117l-1.698-0.117
+ l-2.796-0.117l-2.797-0.117l-2.796-0.117l-2.796-0.117h-3.34h-3.338l-4.334-0.117l-2.983,0.117l-0.117-0.586l-5.153,0.293
+ l-1.11-0.057l-2.052-0.705l-4.038-0.174l-3.397-0.059l-1.873-0.234l-4.158-0.176l-0.937-0.352l-1.642-0.117l-2.81,0.117
+ l-1.465-0.18l-0.292-0.23l-3.455-0.176l-3.28-0.703l-1.698,0.059l-0.35-0.174l-1.757-0.061l-1.054-0.178l-1.523-0.059l-1.813-0.115
+ l-1.698-1.113l-3.747,0.115l-0.178-0.877l-3.688-0.117l-3.339-1.172l-4.45-0.176l-1.873,0.059l-0.523-0.059l1.111-1.111
+ l-4.979-1.406l-4.8-0.23l-0.762-0.178l4.92-0.818l0.232-0.293l-4.274-0.059h-0.995l-0.411-0.061l1.993-1.992l-5.037-0.23
+ l4.039-0.703l-4.917,0.174l-1.29-0.643l4.979-1.057l-4.857-0.117l2.81-3.395l3.219,0.41l5.212-0.701l0.528,0.291l0.819,0.061
+ l4.917-1.23l4.569-0.059l2.457-0.234l3.866,0.352l-4.274-0.586l-1.349-0.176l-0.233-0.938l-4.976,0.059l1.287-1.463l-4.158-2.109
+ l-3.688-0.643l2.751-3.514l-0.646-1.697l4.57,0.174l1.873,0.178l0.175-0.529l-1.932-0.584l-5.212-0.176l-1.873-1.287l2.46-0.705
+ l3.451,0.939l1.058-0.879l4.392-0.061l-2.344-1.695l3.863-0.291h1.406l-1.757-0.881l4.158-0.818l1.933-0.119l0.646-0.174
+ l0.059-0.117l1.229-0.293l0.995,0.584l2.752-0.291l4.041-3.105l1.699-3.221l-1.933-0.059l-4.688-1.463l-2.398-0.295l-1.813-1.346
+ l-3.338-0.527l-4.862-0.174l-4.917-0.119h-0.528l-0.995-0.232l-0.115,0.701l-2.693-1.348l-3.163,0.293l-2.812-0.352l-2.4-1.697
+ l-4.741-1.699l-3.867-0.584l-1.402,0.174l-1.054-0.525l-1.115,0.586l-2.811-0.762l-0.175,0.586l-2.168-0.352l-2.282,0.352
+ l-0.232-2.109l-3.163-0.818l0.703,1.58l-3.339,0.41l-4.801-0.117h-0.587l-1.23-1.639l-4.741,0.057l-2.285-0.291l-1.814,0.291
+ l-0.699,0.117l-1.523-0.117l0.408-1.402h-2.752l-4.333-1.348h-3.103l2.049-1.465l-1.641-0.645l-2.752,0.82l-4.158-1.404
+ l-2.927,0.525l-4.274-0.584l-5.036-0.645l-2.049-0.41l-1.99,0.057l-0.295-0.174l-0.759,0.117l-0.646-0.234h-0.703l-1.229-0.352
+ h-4.333l-3.867-1.23l-4.333,0.703l-1.112-0.408l-4.683,0.115l-0.995,0.059l-0.938,0.178l-1.992-0.061l-1.055-0.176h-0.878
+ l-3.16,0.762l-2.052,2.4l-4.858-0.176l-1.582-1.463l-4.508-1.055l-4.334,1.582l-2.168-0.764l-4.858,0.994l-3.162-0.82l-3.863,0.998
+ l-4.509,0.176l-0.82,0.176l-3.047-0.176l-0.583,0.059l-0.528,0.293l-1.286-0.115l-0.646,0.115l-4.625-1.814l-1.877-0.41
+ l-4.916,0.41l-3.927-2.635l-4.565,0.586l-2.635,0.293l-1.642,0.352l-1.228,1.639l-4.217,1.23l-1.642,0.115l-2.867-1.17
+ l-4.625-0.525l-2.988-0.586l-0.878-0.061l-2.282-0.469l-1.057-0.057l-2.573-0.527l0.175-0.529l-4.333,0.18l-5.096,0.469
+ l-0.938,0.057l-0.116,0.82l-2.46-0.293l-0.995-1.756l-3.63,2.518l-3.926,0.762l-2.926-0.352l-4.394,0.41l-2.46-1.404l0.529,0.877
+ l-3.688,0.76l-5.036-0.115l-2.753-0.469l-4.86,0.703l-0.467,0.232l-0.646,0.059l-1.17-0.059l-1.231,0.236l-2.983-0.41l-1.815-2.402
+ l-2.635,3.045l-4.979,0.588l-0.471,0.232h-4.742l-4.274,0.117l-2.519,0.818l-1.578-0.645l-2.576,0.996l2.048,0.584l-2.635,0.469
+ l-3.571,0.352l-4.684,0.82l-3.691,1.523l-0.762,1.873l-4.742,0.938l-0.528,0.174l-0.059-0.117l-0.408,0.061l-1.29,1.113
+ l-3.393,0.059l-1.937-0.059l-1.345,0.293l-1.112,0.059l-4.333,1.348l-1.23,0.232l1.522,1.758l-3.222,1.814l-0.762-0.994
+ l-4.567-0.176l-2.693-0.586l-3.921-1.99l2.928-3.865l3.453-0.645l-2.983,0.115l3.275-0.936l-0.878-3.281l-4.392,0.41l-4.858-0.352
+ h-0.879l-5.152-0.41h-1.582l-3.806-0.525l-3.571,0.467l-4.449-0.643l-2.872-0.234l-4.271-0.176l-1.173,0.234l-0.584-0.762
+ l-2.635-0.467l-4.979-0.061l1.757-1.758l-3.57-0.525l-3.28-1.58l-4.45-0.234l-0.995-0.117l-4.565,0.291l-1.815,0.178l-4.687,1.111
+ l-1.229,0.762l1.933,2.225l-2.984-0.059l-2.636-1.053l-2.813,0.41l-0.059,0.818l3.047,0.352l-2.927,1.055l-3.983-0.762L762.932,562
+ l-0.646,1.287l-4.565,0.295l-1.757,0.877l-4.861,0.234l-2.927,1.113l-4.158,0.523l-4.742,1.582l-0.116,2.4l-4.334,1.23l-4.86-0.703
+ l-4.102-1.17l-3.921-2.635l-0.587-0.646l-2.398-0.115l-3.633,2.693l-4.509,1.17l-1.815,0.586l-4.975,0.176l-0.82,0.059
+ l-4.979,0.762l-1.873,0.408l-2.048-0.059l-2.402,0.236l-1.053,0.291l-1.699,0.061l-3.66,0.379l-3.661,0.381l-2.164,0.061
+ l-3.28-0.527h-2.281l-1.349-0.059l-4.566-0.764l-3.455-0.291l-1.757-0.408l-3.661,0.496l-3.657,0.498l-3.809,0.115l-2.459-0.41
+ l-5.035,0.41l-2.752,1.582l-4.217-0.234l-2.519-0.994l-2.517-0.938l-2.228-0.176l-3.981,0.35l-2.167,1.289l-3.805,0.234
+ l-5.036,0.293l-3.455,0.469l-1.933,0.061l-2.283,0.35l-4.333,0.762l-1.055,0.236l-2.46,0.994l-2.928-0.527l-4.45,0.469
+ l-0.585-1.113l-4.802,0.588l-0.995-0.178l-0.997,0.178l-1.813-0.178l-4.566,0.469l0.352-2.518l-3.924,1.055l-2.283,1.404
+ l1.229,1.055l-3.63,0.469l-1.815-1.992l-4.685-1.109l-3.278,2.518l-2.461-1.348l1.405,3.338l-2.751,1.111l-3.222,0.646l-0.468,0.23
+ h-4.161l2.461,0.939l-2.461,0.584l-2.868-0.176l-2.576,0.469l-3.104,1.639l3.865,0.998l4.331-0.879l2.987,0.469l-3.924,0.701
+ l-1.933,0.645l-1.932,0.352l-1.523-0.061l-3.864,0.295l-1.288,0.234l-4.509,1.521l-2.051,0.586l1.289,0.703l-4.393,0.115
+ l-0.994,0.295h-1.582l-1.347,0.232l-0.645-0.178h-0.585l-5.036,0.646l-3.337,0.527l-4.042,0.352l-1.932,0.352h-3.455l1.932,0.586
+ l-2.868,0.527l-2.46-0.41l-0.232,1.172l-0.82,0.174l-3.571,0.645l-3.571,0.646l-0.878,0.23l-1.348,0.293l-1.465-0.293l-1.405,0.998
+ l-3.22,0.467l-3.807,0.703l-1.99,0.527l-2.753,0.117l-1.639,3.396l4.04,0.35l4.449,0.469l2.825,0.09l2.825,0.086l2.825,0.088
+ l2.826,0.088l2.166,0.293l-4.217,1.111l0.703,3.164l-2.87,0.117l-4.099-0.352l-2.167-0.059l-4.685-0.117l-3.104,0.117l-4.566,0.703
+ l-4.802,0.994l-3.177,0.453l-3.178,0.453l-3.178,0.453l-3.176,0.455l-3.455,1.348l-2.166,0.352l-4.04,0.117l-5.036-0.232
+ l-5.035-0.061l-4.04,0.145l-4.042,0.146l-4.215,0.176l-4.274,0.354l-1.874,0.057l-4.333,0.295l-2.752,0.352l-2.753,0.352
+ l-1.99,0.41l-3.72,0.965l-3.718,0.967l-1.288,0.115l-1.873-1.404l-2.986-0.703l-3.426-0.35l-3.426-0.352l-3.807-0.527l-3.807-0.527
+ l-3.808-0.525l-3.805-0.527l-3.543-0.496l-3.542-0.498l-3.514-0.381l-3.515-0.381l-3.748-0.176l-3.747-0.178l-2.841-0.205
+ l-2.839-0.205l-5.212-0.645l-4.627-1.521l-1.579-0.408l-2.636,0.059l-4.041-0.234l-2.517-0.352l-1.935-0.232l1.113-0.059
+ l4.977,0.232l1.641,0.059l4.566-0.176l1.288-0.176l0.293-1.934l-1.698-0.232l-4.273-0.061h-3.982l-2.519-0.117h-1.696l-0.762,1.756
+ l-4.508-2.166l2.282-1.402l5.213,0.293l3.277-0.178l4.686-1.287l-4.158-0.762l-3.389-0.352l-3.863-0.236l-3.809-0.584l-2.635-0.176
+ l-3.338-0.996l-3.63-0.469l-2.636-0.232l0.703-1.697l3.337-0.764l4.568-0.818l3.249-0.439l3.251-0.438l2.723-0.355l2.724-0.35
+ l4.859-0.469l4.859-0.117l2.929,0.176l3.337,0.234l4.859,0.117l2.109,0.293l1.229,0.115l2.283-0.057l2.108,0.117l2.107-0.178
+ l3.981,0.764l4.743-0.586l1.348,0.059l2.985-0.176l4.332-0.527l0.234-0.41l3.514-0.293l3.104-0.645l1.757-0.525l-4.744-0.117
+ l4.86-0.645l-3.278-0.469l3.337-0.354l-0.76-0.994l3.103,1.287l0.47-1.873l3.98,0.291l1.405-0.584l0.41-4.686l0.352-1.289h-3.514
+ l3.162-0.936l-0.175-1.348h-4.45l4.098-0.936l-2.691-0.996l0.937-1.99l-2.87,0.057l2.52-1.227l-3.515-3.75l-4.743-1.756
+ l1.757-0.586l-2.283-0.527l3.28-0.76h-3.105l-4.918,0.523l-1.053-4.271l4.625-2.4l1.815-1.758l3.746,1.816l-0.585-1.76l3.747,0.82
+ l0.235-0.762l2.635-0.059l-3.748-3.689l3.279-0.643l2.986-1.641h2.399l0.175-0.76l2.344,0.76l2.577-3.045l2.399-0.701l2.283,0.291
+ l-1.989-1.17l-3.865,0.82l-1.873,0.291l-1.466,1.172l-2.399,0.23l-3.396,0.355l-0.294,1.229l-4.86,0.703l0.354,0.996l-2.4,0.584
+ h-3.162l0.761,1.641l-3.337,0.82l0.701,0.879l-4.333,0.525l0.118,1.463l-2.635,1.818l-0.06,0.936l-3.688-0.996l1.113,4.391
+ l0.818,1.641l-1.991,0.178l2.811,0.645l-2.283,1.229l-5.212,0.232l1.523,2.461l2.459,1.697l0.645,2.578l2.52,3.746l-2.755,1.523
+ l-3.688,0.76l-2.52,0.469l-3.22,0.352h-3.104l-1.172,0.41l-0.88-0.059l-2.166,0.117l-0.879,0.234h-1.64l-0.408,0.115l-0.41,0.178
+ l-0.587-0.119l-1.638,0.645l-4.452-0.178l-4.272,0.41l-2.108,0.293l1.054-1.172l-2.283-0.057l-3.396,0.467h-0.76l-0.293-0.936
+ l-2.812-0.996l-2.693-0.293l-2.05,2.635l-3.864,0.586l-4.859-1.406h-4.275l-3.104-0.584l-1.347-1.289l-3.808,1.113l-4.215-0.703
+ l-1.934-0.234l1.229-1.289l-4.098-0.291l0.232,1.643l-3.455,0.291l-1.932,0.645l-3.63-0.41l-1.934-0.234l-1.639,0.117l0.059,0.117
+ l-1.992-0.176l-0.41,0.059l0.058,0.117h-0.526l-2.458-1.055l0.175,0.879l-4.743,0.234l-0.937,0.408l-4.743-0.645l-1.054-0.176
+ l-0.819,0.176h-0.585l0.585-0.469l-3.63-0.232l-5.212,0.41l-0.585,0.057l-2.519-0.352l-2.987,0.295l-3.98-1.172l0.878,2.049
+ l4.04,0.059l1.465-0.059l3.396,0.117l4.51,0.879l-4.743,0.467l-1.405,0.236l-1.992-0.471l-4.859-0.291l-1.053,0.117l0.76,1.053
+ h4.802l0.235,1.934l5.211,0.059l-0.061,1.23l-4.977-0.762l-0.995,0.996l4.04,1.58l-5.153-0.818h-1.874l-3.57-0.117l-0.235-0.117
+ l-1.053-0.117l-0.117,0.117l-4.802-1.055h-1.523l-2.048,1.229l-1.347-1.99l-3.046,0.117h-2.343l0.118,0.994l-2.695-0.762h-2.81
+ l-1.521-1.404l-3.923-0.293l-0.234,2.107l-4.04,0.293l-1.933-2.811l-2.986-0.76l-2.401,2.225l-3.63-0.352l-3.923,0.525
+ l-3.338-0.994l-2.927,0.994l-4.802,0.178l-1.992-0.178l-1.347,0.295l-3.982-0.061l-2.399,0.232l-1.992-0.059l-1.58,0.117h-3.045
+ l-4.92,0.41l-2.927-0.469l-3.338,0.117l-2.049,0.176l-0.762,0.176h-0.762l-0.878,0.178h-0.762l-1.348,0.115l-2.577-0.293
+ l-3.395,0.059l-1.641-0.234l-1.581,0.176l-0.995-0.176l-3.63,0.41l-1.873-1.113l-4.569-0.174l-4.566,0.82h-1.112l-3.278,2.283
+ l-2.167-0.703h-4.158l-3.395,1.346l-4.979-0.059l-1.347-0.117l-0.644,0.527l-5.095,0.059l0.235,0.586l-3.104,0.234h-3.396
+ l1.053,1.934l-4.977-0.762l-2.987-0.41h-1.23l4.86,1.172l4.979,1.229l-1.699,2.166l-3.455-0.701l-1.641,0.291l-3.924,0.939h-3.045
+ l1.348,0.408l-1.521,0.295l-3.278-0.586l-2.576-0.41l0.175-0.234l-0.353-0.117l-2.048-0.293l-5.153,0.529l-0.177-0.705l-4.566-0.41
+ l-0.995,0.059l-0.469-0.232l-0.703,0.117l-1.933-0.117l-2.46,0.994l-4.215-0.936l-0.587,3.104l4.04,0.762l2.343-0.117l3.514-0.061
+ l2.108-0.291l2.048,0.527l-1.229,0.701l-4.566,0.352l-1.932,0.352l-0.178,1.404l2.987,0.41l4.333,0.059l3.808,0.764l2.225,0.23
+ l5.152,0.41l3.98,0.529l3.368,0.117l3.368,0.115l0.702,0.059l4.742,1.934l2.753,0.469l4.1,0.41l1.288,0.41l-3.572,1.873
+ l-3.104,0.527l-3.631,0.115l-3.308-0.115l-3.309-0.117H72.9l-1.875-0.059l-4.742-0.703l-4.452-0.176l-2.106-0.059l-3.981-0.234
+ h-1.347l-4.51,0.293l-0.878,0.176l-0.586,0.584l5.154,0.295l3.22,0.408l1.464,0.295l-2.868,1.111l1.64,0.586l1.697,0.234
+ l3.632,0.762l2.517,0.41l1.348,0.352l-4.332,2.047l-0.646,2.693l4.393,1.23l4.802,0.645l3.045,0.234l3.045,0.232l3.77,0.133
+ l3.771,0.133l3.77,0.131l3.769,0.133l3.771,0.133l3.77,0.129l3.769,0.133l3.771,0.133l2.81,0.145l2.811,0.148l-4.741,0.994
+ l-3.222-0.059l-4.86-0.145l-4.86-0.148l-3.718-0.059l-3.719-0.061l-4.45-0.027l-4.45-0.029l-4.977,1.172l-2.46,0.117l-2.4-0.061
+ l-4.392-0.408h-4.244h-4.246l-2.868,0.115l-2.753,0.146l-2.752,0.146h-0.937l-3.249-0.205l-3.251-0.205l-2.693-0.059h-4.04
+ l-4.859-0.293l-3.046-0.525l-4.216-0.119l-2.692-0.117l0,0l-5.095-0.467l-2.812-0.117l-0.702-0.016l-0.177-0.004H9.387H9.374
+ l-0.002-0.002H9.37l0,0v19.021"/>
+</g>
+</svg>