+HotelGate product.
authorshort <>
Mon, 12 Dec 2005 17:32:59 +0000 (17:32 +0000)
committershort <>
Mon, 12 Dec 2005 17:32:59 +0000 (17:32 +0000)
25 files changed:
product/hotelgate/Admin-Login-icon.jpeg [new file with mode: 0644]
product/hotelgate/Admin-Login-icon.png [new file with mode: 0644]
product/hotelgate/Case.pm [new file with mode: 0644]
product/hotelgate/Index.pm [new file with mode: 0644]
product/hotelgate/Lib.pm [new file with mode: 0644]
product/hotelgate/Makefile.am [new file with mode: 0644]
product/hotelgate/Order.css [new file with mode: 0644]
product/hotelgate/Order.js [new file with mode: 0644]
product/hotelgate/Order.pm [new file with mode: 0644]
product/hotelgate/OrderSubmit.pm [new file with mode: 0644]
product/hotelgate/Screenshot.pm [new file with mode: 0644]
product/hotelgate/Spec.pm [new file with mode: 0644]
product/hotelgate/cafe.svg [new file with mode: 0644]
product/hotelgate/full.svg [new file with mode: 0644]
product/hotelgate/hotelsevendays.jpeg [new file with mode: 0644]
product/hotelgate/rack-1u.jpeg [new file with mode: 0644]
product/hotelgate/rooms.svg [new file with mode: 0644]
product/hotelgate/screenshot/Admin-Ticket.png [new file with mode: 0644]
product/hotelgate/screenshot/Configure.png [new file with mode: 0644]
product/hotelgate/screenshot/Login.png [new file with mode: 0644]
product/hotelgate/screenshot/Makefile.am [new file with mode: 0644]
product/hotelgate/screenshot/Port.png [new file with mode: 0644]
product/hotelgate/screenshot/Staff-Port.png [new file with mode: 0644]
product/hotelgate/screenshot/TicketNewPrint.png [new file with mode: 0644]
product/hotelgate/screenshot/bootstrap.png [new file with mode: 0644]

diff --git a/product/hotelgate/Admin-Login-icon.jpeg b/product/hotelgate/Admin-Login-icon.jpeg
new file mode 100644 (file)
index 0000000..11352cb
Binary files /dev/null and b/product/hotelgate/Admin-Login-icon.jpeg differ
diff --git a/product/hotelgate/Admin-Login-icon.png b/product/hotelgate/Admin-Login-icon.png
new file mode 100644 (file)
index 0000000..3de2b57
Binary files /dev/null and b/product/hotelgate/Admin-Login-icon.png differ
diff --git a/product/hotelgate/Case.pm b/product/hotelgate/Case.pm
new file mode 100644 (file)
index 0000000..a4ceab8
--- /dev/null
@@ -0,0 +1,119 @@
+# $Id$
+# Deployment cases of 'My::Project::hotelgate'
+# Copyright (C) 2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
+# 
+# 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; exactly version 2 of June 1991 is required
+# 
+# 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+
+package product::hotelgate::Case;
+require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway
+our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
+our $CVS_ID=q$Id$;
+use strict;
+use warnings;
+
+use My::Web;
+
+
+sub handler
+{
+Wrequire 'product::hotelgate::Lib';
+my $W=product::hotelgate::Lib->init(
+               "title"=>"HotelGate: Deployment Scenarios",
+               );
+
+print <<"HERE";
+<h1>HotelGate: Deployment Scenarios</h1>
+HERE
+
+
+my @items=(
+
+       { "id"=>"full","title"=>"Ticket access from hotel restaurant with free access from hotel rooms","body"=><<"HERE", },
+<p>Hotel provides Internet access for its rooms over ethernet cable. Charge is
+enlisted on the final hotel receipt - the receptionist can permit/forbid free
+Internet for each specific room of the hotel. Hotel also provides its
+restaurant with public hosts access, Internet provided over WiFi in this
+restaurant requires valid id/password from tickets being sold and printed by
+the staff. The tickets are usually pre-printed in a stock there.</p>
+
+<ul>
+       <li>Rooms Internet access control and tickets printing is provided by regular
+       PC with a web browser.</li>
+
+       <li>WiFi access is provided by additional common access point in bridging
+       mode.</li>
+
+       <li>Segments (each room, restaurant) separation is provided by VLAN
+       functionality of switches with a single HotelGate ethernet
+       interconnection.</li>
+</ul>
+HERE
+
+       { "id"=>"cafe","title"=>"Coffee shop with ticketed Internet access","body"=><<"HERE", },
+<p>Coffee shop provides Internet over WiFi. Access requires valid id/password
+from tickets being sold and printed by the staff. The tickets are usually
+pre-printed in a stock there.</p>
+
+<ul>
+       <li>Tickets printing is provided by regular PC with a web browser.</li>
+
+       <li>WiFi access is provided by additional common access point in bridging
+       mode.</li>
+
+       <li>No additional switches needed.</li>
+</ul>
+HERE
+
+       { "id"=>"rooms","title"=>"Simple free hotel rooms Internet access without any extra charges","body"=><<"HERE", },
+<p>Hotel provides Internet access for its rooms over ethernet cable. Charge is
+covered by general hotel accomodation fees for all hosts.</p>
+
+<ul>
+       <li>Rooms Internet access control and tickets printing is provided by regular
+       PC with a web browser.</li>
+
+       <li>Only the very basic switches needed as there is no VLAN functionality
+       required.</li>
+
+       <li>No control PC or staff training needed.</li>
+</ul>
+HERE
+
+       );
+
+
+print <<"HERE";
+<ul>
+HERE
+for (@items) {
+       print <<"HERE";
+       <li>@{[ a_href '#'.$_->{"id"},$_->{"title"} ]}</li>
+HERE
+       }
+print <<"HERE";
+</ul>
+HERE
+
+for (@items) {
+       print <<"HERE";
+<h2 id="@{[ $_->{"id"} ]}">@{[ $_->{"title"} ]}</h2>
+HERE
+       print leftimg $_->{"body"},$_->{"id"}.".svg",$_->{"title"};
+       }
+
+
+exit;
+}
+1;
diff --git a/product/hotelgate/Index.pm b/product/hotelgate/Index.pm
new file mode 100644 (file)
index 0000000..d3fd3f9
--- /dev/null
@@ -0,0 +1,101 @@
+# $Id$
+# Main page of 'My::Project::hotelgate'
+# Copyright (C) 2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
+# 
+# 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; exactly version 2 of June 1991 is required
+# 
+# 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+
+package product::hotelgate::Index;
+require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway
+our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
+our $CVS_ID=q$Id$;
+use strict;
+use warnings;
+
+use My::Web;
+
+
+our @ListItem=(
+               "name"=>"HotelGate",
+               "priority"=>80,
+               "icon"=>"Admin-Login-icon.jpeg",
+               "summary"=>"Internet Public Access Gateway",
+               "description"=><<"HERE",
+<p>User-friendly Internet access gateway providing separate rooms / areas
+access control with a single central administration point.</p>
+HERE
+               );
+
+sub handler
+{
+Wrequire 'product::hotelgate::Lib';
+my $W=product::hotelgate::Lib->init(
+               "css_push"=>"./Index.css",
+               );
+
+my $ListItem=product::Lib->name_to_hashref("hotelgate");
+
+
+print <<"HERE";
+<h1>@{[ product::Lib->title($ListItem) ]}</h1>
+HERE
+
+print rightimg <<"HERE","./rack-1u.jpeg","Rack mountable 1U cased";
+<p>Unique feature of this product is its control of Internet access for each
+individual network segment connected through remotely located switches. One
+example of such feature is its utilization for enabling/disabling Internet
+specifically in each room of your hotel. No need to complicate the clients'
+access by the usual tickets. Still even the ticketed access is provided.</p>
+HERE
+
+print <<"HERE";
+<h2>Features List</h2>
+
+<p>(@{[ a_href 'Spec.pm#feature','see more' ]} with descriptions included)</p>
+<ul>
+HERE
+Wrequire 'product::hotelgate::Spec';
+my @features_local=@product::hotelgate::Spec::Features;
+while (@features_local) {
+       my $key=shift @features_local;
+       my $val=shift @features_local;
+       print <<"HERE";
+       <li>$key</li>
+HERE
+       }
+print <<"HERE";
+</ul>
+
+
+HERE
+
+sub hotel_href($)
+{
+my($content)=@_;
+
+       return a_href_cc {""=>'http://www.hotelsevendays.com/',
+                       "CZ"=>'http://www.hotelsevendays.cz/',
+                       "RU"=>'http://www.hotelsevendays.ru/'},$content;
+}
+
+print rightimg <<"HERE",hotel_href(img 'hotelsevendays.jpeg','Hotel Seven Days photo');
+<h2>Pilot Deployment</h2>
+<p>The initial pilot deployment of this gateway is running since 2004 in
+@{[ hotel_href 'Hotel Seven Days' ]}.</p>
+HERE
+
+
+exit;
+}
+1;
diff --git a/product/hotelgate/Lib.pm b/product/hotelgate/Lib.pm
new file mode 100644 (file)
index 0000000..552217b
--- /dev/null
@@ -0,0 +1,95 @@
+# $Id$
+# Common functions for the HotelGate project
+# Copyright (C) 2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
+# 
+# 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; exactly version 2 of June 1991 is required
+# 
+# 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+
+package product::hotelgate::Lib;
+require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway
+our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
+our $CVS_ID=q$Id$;
+use strict;
+use warnings;
+
+use My::Web;
+use Carp qw(cluck confess);
+
+use Exporter;
+our @EXPORT=qw();
+Wrequire 'product::Lib';
+our @ISA=qw(product::Lib Exporter);
+
+
+sub menu($;%)
+{
+my($class,%args)=@_;
+
+       my $r="";
+       $r.='<table border="0" class="margin-center"><tr>'."\n";
+               $r.='<td>';
+                       $r.='<table border="1" style="border-collapse: collapse; border-style: solid; border-width: 1px;">'."\n";
+                               $r.='<tr>'."\n";
+                                       $r.='<td style="padding: 5px; font-weight: bold;">'."\n";
+                                               my $ListItem=product::Lib->name_to_hashref($W->{"product_name"});
+                                               $r.=product::Lib->title($ListItem);
+                                       $r.='</td>'."\n";
+                               $r.='</tr>'."\n";
+                       $r.='</table>';
+               $r.='</td>';
+               $r.='<td>';
+                       $r.='<table border="1" style="border-collapse: collapse; border-style: solid;" class="margin-center">'."\n";
+                               $r.='<tr>'."\n";
+                                       my @sections=(
+                                                       "Index"=>"Overview",
+                                                       "Case"=>"Deployment",
+                                                       "Screenshot"=>"Screenshots",
+                                                       "Spec"=>"Specification",
+                                                       "Order"=>"Order",
+                                                       );
+                                       while (@sections) {
+                                               my $section_path=shift @sections;
+                                               my $section_name=shift @sections;
+                                               my $chosen=($My::Web::W->{"__PACKAGE__"} eq "product::hotelgate::".$section_path);
+                                               $r.='<td style="padding: 5px;">';
+                                                       $r.=(($chosen || "") ? "<b>$section_name</b>"
+                                                                       : My::Web::a_href("./".($section_path eq "Index" ? "" : $section_path.".pm"),$section_name,
+                                                                                       "attr"=>'style="text-decoration: inherit; /* revoke underline */;"'));
+                                               $r.="</td>\n";
+                                               }
+                               $r.='</tr>'."\n";
+                       $r.='</table>'."\n";
+               $r.='</td>'."\n";
+       $r.='</tr></table>'."\n";
+       if (!$args{"novskip"}) {
+               Wrequire 'WebConfig';
+               $r.=WebConfig->vskip_hr();
+               }
+       return $r;
+}
+
+sub init($%)
+{
+my($class,%args)=@_;
+
+       $args{"__PACKAGE__"}||=caller();
+       my $W=$class->SUPER::init(
+                       %args,
+                       "novskip"=>1,
+                       );
+       print $class->menu(%args);
+       return $W;
+}
+
+1;
diff --git a/product/hotelgate/Makefile.am b/product/hotelgate/Makefile.am
new file mode 100644 (file)
index 0000000..8a2499a
--- /dev/null
@@ -0,0 +1,44 @@
+# $Id$
+# automake source for the Makefile of product/hotelgate/ subdir
+# Copyright (C) 2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
+# 
+# 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; exactly version 2 of June 1991 is required
+# 
+# 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+
+include $(top_srcdir)/Makefile-head.am
+
+SUBDIRS= \
+               screenshot
+
+EXTRA_DIST+= \
+               full.svg \
+               cafe.svg \
+               rooms.svg \
+               Lib.pm \
+               Order.css \
+               Order.js \
+               rack-1u.jpeg \
+               hotelsevendays.jpeg
+
+MODPERL_PM+= \
+               Index.pm \
+               Case.pm \
+               Spec.pm \
+               Order.pm \
+               OrderSubmit.pm \
+               Screenshot.pm
+
+full_svg_DPI=30
+cafe_svg_DPI=30
+rooms_svg_DPI=30
diff --git a/product/hotelgate/Order.css b/product/hotelgate/Order.css
new file mode 100644 (file)
index 0000000..d877fb9
--- /dev/null
@@ -0,0 +1,21 @@
+/* $Id$
+ * CSS of HotelGate ordering
+ * Copyright (C) 2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
+ * 
+ * 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; exactly version 2 of June 1991 is required
+ * 
+ * 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+
+.order[-lace-inherit="margin-center"] {}
+table.order td { padding: 5px; }
diff --git a/product/hotelgate/Order.js b/product/hotelgate/Order.js
new file mode 100644 (file)
index 0000000..f0e0e93
--- /dev/null
@@ -0,0 +1,70 @@
+/* $Id$
+ * HotelGate Order helper.
+ * Copyright (C) 2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
+ * 
+ * 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; exactly version 2 of June 1991 is required
+ * 
+ * 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+
+// Double-run protection due to the My::Web "text/javascript" compatibility hack.
+if (!window.var_product_hotelgate_Order_done) {
+       var var_product_hotelgate_Order_done=1;
+
+function Order_validate(form)
+{
+       var e_types_array=form.elements["type"];
+       var checked=0;
+       for (var typei=0;typei<e_types_array.length;typei++)
+               if (e_types_array[typei].checked)
+                       checked++;
+       if (1!=checked) {
+               // FIXME: Unify with: $product::hotelgate::Order::error{"type_missing"}
+               alert("Please fill in the {Device casing type} field!");
+               return false;
+               }
+       return true;
+}
+
+function Order_error_check()
+{
+       var e_error;
+       if (document.getElementById)
+               e_error=document.getElementById("error");
+       if (e_error && e_error.textContent)
+               alert(e_error.textContent);
+}
+
+function Order_error_check_delayed()
+{
+       // HACK: 0ms - wait for 'css_inherit.js' finalization.
+       setTimeout('Order_error_check();',0);
+}
+
+/* Origin: http://simon.incutio.com/archive/2004/05/26/addLoadEvent */
+function addLoadEvent(func)
+{
+       var onload_orig=window.onload;
+       if (typeof(onload_orig)!='function')
+               window.onload = func;
+       else
+               window.onload = function()
+               {
+                       onload_orig();
+                       func();
+               };
+}
+
+addLoadEvent(Order_error_check_delayed);
+
+}
diff --git a/product/hotelgate/Order.pm b/product/hotelgate/Order.pm
new file mode 100644 (file)
index 0000000..965b81d
--- /dev/null
@@ -0,0 +1,135 @@
+# $Id$
+# Ordering form of 'My::Project::hotelgate'
+# Copyright (C) 2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
+# 
+# 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; exactly version 2 of June 1991 is required
+# 
+# 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+
+package product::hotelgate::Order;
+require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway
+our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
+our $CVS_ID=q$Id$;
+use strict;
+use warnings;
+
+use My::Web;
+use Hash::Util qw(lock_hash);
+
+
+my %error=(
+       "email_missing"=>"Your e-mail address is required, please fill it in.",
+       "type_missing"=>"Please fill in the {Device casing type} field.",
+       "ok"=>"Order has been accepted. Please wait to be contacted.",
+       );
+lock_hash(%error);
+sub error($$)
+{
+my($self,$keyword)=@_;
+
+       my $trash=$error{$keyword};     # existence check;
+       return $keyword;
+}
+
+sub handler
+{
+Wrequire 'product::hotelgate::Lib';
+my $W=product::hotelgate::Lib->init(
+               "title"=>"HotelGate: Order Form",
+               "css_push"=>"./Order.css",
+               "js_push"=>"./Order.js",
+               );
+
+
+my $COLS=50;
+
+print <<"HERE";
+<h1>HotelGate Order</h1>
+
+<p>Price offer will be provided according to your order specification.
+You may also contact us directly at the e-mail address:
+@{[ a_href 'mailto:hotelgate@jankratochvil.net' ]}</p>
+HERE
+
+if (my $error=$W->{"args"}{"error"}) {
+       print <<"HERE";
+<p align="center" class="error" id="error">@{[ $error{$error} ]}</p>
+HERE
+       }
+
+print <<"HERE";
+<form action="OrderSubmit.pm" @{[ form_method "post" ]} onsubmit="return Order_validate(this);">
+       <table border="1" class="order">
+               <tr><td>
+                       Your e-mail contact address (required).
+                       <br />
+                       <input type="text" size="@{[ $COLS ]}" name="email" value="@{[ escapeHTML($W->{"args"}{"email"}||"") ]}" />
+               </td></tr>
+               <tr><td>
+                       Contact person, shipping address.
+                       <br />
+                       <input type="text" size="@{[ $COLS ]}" name="address" value="@{[ escapeHTML($W->{"args"}{"address"}||"") ]}" />
+               </td></tr>
+               <tr><td>
+                       Installation location - leave empty if you install the device on your own.<br />
+                       European facility installations provided by @{[ a_href 'http://www.jklabs.cz/','JK&nbsp;Labs' ]}.
+                       <br />
+                       <input type="text" size="@{[ $COLS ]}" name="location" value="@{[ escapeHTML($W->{"args"}{"location"}||"") ]}" />
+               </td></tr>
+               <tr><td>
+                       Device casing type and available ports:
+HERE
+
+for (
+       { "case"=>"1U","internal"=>1 },
+       { "case"=>"4U","internal"=>1 },
+       { "case"=>"4U","internal"=>2 },
+       { "case"=>"4U","internal"=>3 },
+       { "case"=>"4U","internal"=>4 },
+       ) {
+       print <<"HERE";
+       <br />
+       <input type="radio" name="type" value="@{[ $_->{"case"} ]}-1+@{[ $_->{"internal"} ]}"
+                       @{[ ($W->{"args"}{"type"}||"") ne $_->{"case"} ? '' : 'checked="checked"' ]}
+                       />
+                       Rack mountable @{[ $_->{"case"} ]}; ethernet ports: 1 external + @{[ $_->{"internal"} ]} internal
+HERE
+       }
+
+print <<"HERE";
+               </td></tr>
+               <tr><td>
+                       Required internal network port(s).<br />
+                       Please specify any WiFi 802.11b or 802.11g access points to bundle with.
+                       <br />
+                       <textarea rows="4" cols="@{[ $COLS ]}" name="downlink">@{[ escapeHTML($W->{"args"}{"downlink"}||"") ]}</textarea>
+               </td></tr>
+               <tr><td>
+                       Available type of the uplink (public Internet) connection:
+                       <br />
+                       <textarea rows="2" cols="@{[ $COLS ]}" name="uplink">@{[ escapeHTML($W->{"args"}{"uplink"}||"") ]}</textarea>
+               </td></tr>
+               <tr><td>
+                       Additional notes:
+                       <br />
+                       <textarea rows="8" cols="@{[ $COLS ]}" name="comment">@{[ escapeHTML($W->{"args"}{"comment"}||"") ]}</textarea>
+               </td></tr>
+               <tr><td align="center"><input type="submit" value="Send Order" /></td></tr>
+       </table>
+</form>
+HERE
+
+
+exit;
+}
+1;
diff --git a/product/hotelgate/OrderSubmit.pm b/product/hotelgate/OrderSubmit.pm
new file mode 100644 (file)
index 0000000..553f247
--- /dev/null
@@ -0,0 +1,100 @@
+# $Id$
+# Ordering form processor of 'My::Project::hotelgate'
+# Copyright (C) 2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
+# 
+# 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; exactly version 2 of June 1991 is required
+# 
+# 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+
+package product::hotelgate::OrderSubmit;
+require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway
+our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
+our $CVS_ID=q$Id$;
+use strict;
+use warnings;
+
+use My::Web;
+use Apache2::Const qw(HTTP_MOVED_TEMPORARILY);
+use Carp qw(confess cluck);
+require MIME::Entity;
+
+
+my $SENDER='HotelGate of www.jankratochvil.net <project-hotelgate@jankratochvil.net>';
+my $FROM=$SENDER;
+my $TO=$SENDER;
+
+our $HTML_TEST="download";
+our $HTML_TEST_RC=HTTP_MOVED_TEMPORARILY;
+
+sub handler
+{
+my $W=My::Web->init(
+               "http_safe"=>0,
+               );
+
+
+my @fields=qw(
+               email
+               address
+               location
+               type
+               downlink
+               uplink
+               comment
+               );
+my %fields=map(($_=>1),@fields);
+
+# Required fields:
+for my $field (qw(
+               type
+               email
+               )) {
+       cluck if !$fields{$field};
+       next if $W->{"args"}{$field};
+       $W->{"args_persistent"}{$_}=1 for @fields;
+       My::Web->http_moved("./Order.pm?error=".product::hotelgate::Order->error("${field}_missing"),HTTP_MOVED_TEMPORARILY);
+       confess "NOTREACHED";
+       }
+
+my $data="";
+$data.=<<"HERE" for @fields;
+$_:
+@{[ $W->{"args"}{$_} ]}
+
+HERE
+for (qw(
+       User-Agent
+       Referer
+       _remote_ip
+       )) {
+       $data.=<<"HERE"
+headers_in::$_=@{[ $W->{"headers_in"}{$_} ]}
+HERE
+       }
+$data.=<<"HERE";
+EOF
+HERE
+
+my $top=MIME::Entity->build(
+               "Sender"=>$SENDER,
+               "From"=>$FROM,
+               "To"=>$TO,
+               "Data"=>$data,
+               );
+$top->smtpsend();
+
+
+My::Web->http_moved("./Order.pm?error=".product::hotelgate::Order->error("ok"),HTTP_MOVED_TEMPORARILY);
+confess "NOTREACHED";
+}
+1;
diff --git a/product/hotelgate/Screenshot.pm b/product/hotelgate/Screenshot.pm
new file mode 100644 (file)
index 0000000..9e98528
--- /dev/null
@@ -0,0 +1,74 @@
+# $Id$
+# Screenshots of 'My::Project::hotelgate'
+# Copyright (C) 2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
+# 
+# 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; exactly version 2 of June 1991 is required
+# 
+# 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+
+package product::hotelgate::Screenshot;
+require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway
+our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
+our $CVS_ID=q$Id$;
+use strict;
+use warnings;
+
+use My::Web;
+
+
+sub handler
+{
+Wrequire 'product::hotelgate::Lib';
+my $W=product::hotelgate::Lib->init(
+               "title"=>"HotelGate: Screenshots",
+               );
+
+print <<"HERE";
+<h1>HotelGate: Administration Screenshots</h1>
+HERE
+
+
+my @items=(
+       { "id"=>"Login","title"=>"Login page for the administrative staff", },
+       { "id"=>"Staff-Port","title"=>"Reception targetted ticket control", },
+       { "id"=>"Port","title"=>"Setup of the ports and connected switches", },
+       { "id"=>"TicketNewPrint","title"=>"Single printed ticket", },
+       { "id"=>"Admin-Ticket","title"=>"Existing tickets overview", },
+       { "id"=>"bootstrap","title"=>"Initial network connection local setup", },
+       { "id"=>"Configure","title"=>"Initial system deployment configuration", },
+       );
+
+
+print <<"HERE";
+<ul>
+HERE
+for (@items) {
+       print <<"HERE";
+       <li>@{[ a_href '#'.$_->{"id"},$_->{"title"} ]}</li>
+HERE
+       }
+print <<"HERE";
+</ul>
+HERE
+
+for (@items) {
+       print <<"HERE";
+<h2 id="@{[ $_->{"id"} ]}">@{[ $_->{"title"} ]}</h2>
+HERE
+       print centerimg "screenshot/".$_->{"id"}.".png",$_->{"title"};
+       }
+
+
+exit;
+}
+1;
diff --git a/product/hotelgate/Spec.pm b/product/hotelgate/Spec.pm
new file mode 100644 (file)
index 0000000..d33224e
--- /dev/null
@@ -0,0 +1,163 @@
+# $Id$
+# Featurelist of 'My::Project::hotelgate'
+# Copyright (C) 2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
+# 
+# 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; exactly version 2 of June 1991 is required
+# 
+# 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+
+package product::hotelgate::Spec;
+require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway
+our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
+our $CVS_ID=q$Id$;
+use strict;
+use warnings;
+
+use My::Web;
+
+
+our @Features=(
+       q{Segments control separation}=><<"HERE",
+Enable/disable Internet access in each network segment (hotel room, building
+area) separately from the central control point.
+No need to complicate the clients' access by the usual tickets.
+HERE
+       q{Plug&nbsp;&amp;&nbsp;Play networking}=><<"HERE",
+Transparent clients network connectivity. HotelGate automatically adapts
+to any home or company network settings the client may be using. Both
+cable and wireless networking uses this technology.
+HERE
+       q{Centralized control access}=><<"HERE",
+Central access control over web for both cable and wireless network segments
+and also the system settings.
+HERE
+       q{Welcome page redirection}=><<"HERE",
+Clients get the specified welcome page possibly showing restaurant menu
+and other facility services offer.
+HERE
+       q{Staff and administrator control separation}=><<"HERE",
+Administration separates access to the simple reception personnel
+operations (tickets printing, hotel room free access permissions) and the
+full configuration for system installation and administration.
+HERE
+       q{Optional ISP connectivity bandwidth limitation}=><<"HERE",
+Possibility to limit the clients connectivity throughput to protect
+existing Internet performance of your intranet machines.
+HERE
+       q{Web access acceleration (transparent proxy)}=><<"HERE",
+Integrated transparent cache both accelerates the client Internet
+connections and also saves the bandwidth of your ISP link.
+HERE
+       q{Language localization}=><<"HERE",
+Web administration interface provided in multiple languages. Translation for
+your country upon request.
+HERE
+       );
+
+sub handler
+{
+Wrequire 'product::hotelgate::Lib';
+my $W=product::hotelgate::Lib->init(
+               "title"=>"HotelGate: Specification",
+               );
+
+
+print <<"HERE";
+<h1>HotelGate Specification</h1>
+
+<h2 id="feature">Features</h2>
+
+<dl>
+HERE
+my @features_local=@Features;
+while (@features_local) {
+       my $key=shift @features_local;
+       my $val=shift @features_local;
+       print <<"HERE";
+       <dt>$key</dt>
+       <dd>$val</dd>
+HERE
+       }
+
+print <<"HERE";
+</dl>
+
+<h2>Specifications</h2>
+
+<h3>Interfaces</h3>
+
+<ul>
+       <li>1&nbsp;&times; external 100Mbit ethernet</li>
+
+       <li>1 (1U case) or 1&nbsp;&times;-4&nbsp;&times; (4U case) 100Mbit ethernet port(s)
+       for clients (up to 4000 virtual ports using VLAN managed switches)</li>
+
+       <li>1&nbsp;&times; PS/2 PC keyboard for the initial network configuration</li>
+
+       <li>1&nbsp;&times; D-SUB VGA monitor for the initial network configuration</li>
+
+       <li>1&nbsp;&times; AC 230V power cord</li>
+</ul>
+
+<h3>Protocols</h3>
+
+<ul>
+       <li>HTTP web caching transparent proxy server</li>
+
+       <li>DHCP server for clients network configuration</li>
+
+       <li>SMTP redirection for transparent outgoing mails</li>
+
+       <li>NTP redirection for transparent time synchronization</li>
+
+       <li>DNS redirection for Plug&nbsp;&amp;&nbsp;Play client Internet access</li>
+
+       <li>SOCKS5 redirection for Plug&nbsp;&amp;&nbsp;Play client Internet access</li>
+
+       <li>Specific protocols requiring provided NAT (Network Address Translation)
+       support:
+               <ul>
+                       <li>FTP</li>
+                       <li>IRC</li>
+               </ul>
+       </li>
+</ul>
+
+<h3>Authorization</h3>
+
+<ul>
+       <li>Port (physical or VLAN) based (free) or ticket based access</li>
+
+       <li>Custom ticket database with printing for reception personnel</li>
+</ul>
+
+<h3>Web Server storage</h3>
+
+<ul>
+       <li>Optional possibility for the welcome web content provisioning</li>
+</ul>
+
+<h3>Physical Characteristics</h3>
+
+<ul>
+       <li>Dimensions: 19" rack 4U (width&nbsp;&times;&nbsp;depth&nbsp;&times;&nbsp;height:
+                       483&nbsp;&times;&nbsp;450&nbsp;&times;&nbsp;177&nbsp;mm / 19"&nbsp;&times;&nbsp;17.72"&nbsp;&times;&nbsp;6.96")
+       </li>
+</ul>
+
+HERE
+
+
+exit;
+}
+1;
diff --git a/product/hotelgate/cafe.svg b/product/hotelgate/cafe.svg
new file mode 100644 (file)
index 0000000..2f3bb97
--- /dev/null
@@ -0,0 +1,10210 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="1300.0000pt"
+   height="850.00000pt"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.42"
+   sodipodi:docbase="/home/lace/www/www.jankratochvil.net/product/hotelgate"
+   sodipodi:docname="cafe.svg">
+  <defs
+     id="defs4">
+    <marker
+       inkscape:stockid="Arrow2Lstart"
+       orient="auto"
+       refY="0.0"
+       refX="0.0"
+       id="Arrow2Lstart"
+       style="overflow:visible">
+      <path
+         sodipodi:nodetypes="cccc"
+         id="path5097"
+         style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
+         d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+         transform="scale(1.1) translate(-5,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Lend"
+       orient="auto"
+       refY="0.0"
+       refX="0.0"
+       id="Arrow2Lend"
+       style="overflow:visible;">
+      <path
+         sodipodi:nodetypes="cccc"
+         id="path5106"
+         style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
+         d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+         transform="scale(1.1) rotate(180) translate(-5,0)" />
+    </marker>
+    <linearGradient
+       y2="0.46093750"
+       y1="0.46093750"
+       xlink:href="#linearGradient650"
+       x2="1.16666818"
+       x1="1.22222710"
+       spreadMethod="repeat"
+       id="linearGradient654"
+       gradientUnits="objectBoundingBox" />
+    <linearGradient
+       y2="0.53906250"
+       y1="0.53125000"
+       xlink:href="#linearGradient650"
+       x2="1.16666901"
+       x1="1.00000548"
+       spreadMethod="repeat"
+       id="linearGradient653"
+       gradientUnits="objectBoundingBox" />
+    <linearGradient
+       id="linearGradient650">
+      <stop
+         style="stop-color:#000;stop-opacity:1;"
+         offset="0"
+         id="stop651" />
+      <stop
+         style="stop-color:#fff;stop-opacity:1;"
+         offset="1"
+         id="stop652" />
+    </linearGradient>
+    <linearGradient
+       y2="-0.12500010"
+       y1="0.60155678"
+       xlink:href="#linearGradient1164"
+       x2="-0.13106795"
+       x1="0.47572812"
+       spreadMethod="reflect"
+       id="linearGradient1167"
+       gradientUnits="objectBoundingBox" />
+    <linearGradient
+       id="linearGradient1164">
+      <stop
+         style="stop-color:#263d42;stop-opacity:1;"
+         offset="0.000000"
+         id="stop1165" />
+      <stop
+         style="stop-color:#9acde7;stop-opacity:1;"
+         offset="1.000000"
+         id="stop1166" />
+    </linearGradient>
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="27.789434"
+       id="radialGradient6764"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(2.561113,0.390455)"
+       fy="253.38283"
+       fx="47.074745"
+       cy="253.38283"
+       cx="47.074745" />
+    <radialGradient
+       xlink:href="#linearGradient12744"
+       r="22.012070"
+       id="radialGradient6763"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(2.746613,0.364085)"
+       fy="234.79250"
+       fx="41.158657"
+       cy="234.79250"
+       cx="41.158657" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6762"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6761"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6760"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6759"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6758"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6757"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6756"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6755"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6754"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6753"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6752"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6751"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6750"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6749"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6748"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6747"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6746"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="97.536598"
+       cy="113.72600"
+       cx="97.536598" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6745"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="97.536598"
+       cy="126.99414"
+       cx="97.536598" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6744"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="100.67591"
+       cy="113.72600"
+       cx="100.67591" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6743"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="100.67591"
+       cy="126.99414"
+       cx="100.67591" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6742"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="104.00187"
+       cy="113.72600"
+       cx="104.00187" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6741"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="104.00187"
+       cy="126.99414"
+       cx="104.00187" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6740"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="107.14119"
+       cy="113.72600"
+       cx="107.14119" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6739"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="107.14119"
+       cy="126.99414"
+       cx="107.14119" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6738"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="110.13468"
+       cy="113.72600"
+       cx="110.13468" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6737"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="110.13468"
+       cy="126.99414"
+       cx="110.13468" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6736"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="113.27399"
+       cy="113.72600"
+       cx="113.27399" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6735"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="113.27399"
+       cy="126.99414"
+       cx="113.27399" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6734"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="116.42374"
+       cy="113.72600"
+       cx="116.42374" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6733"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="116.42374"
+       cy="126.99414"
+       cx="116.42374" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6732"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="119.56305"
+       cy="113.72600"
+       cx="119.56305" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6731"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="119.56305"
+       cy="126.99414"
+       cx="119.56305" />
+    <radialGradient
+       xlink:href="#linearGradient12744"
+       r="19.324974"
+       id="radialGradient6730"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(3.448440,0.289986)"
+       fy="247.99883"
+       fx="34.697765"
+       cy="247.99883"
+       cx="34.697765" />
+    <radialGradient
+       xlink:href="#linearGradient12744"
+       r="9.3962202"
+       id="radialGradient6729"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(0.705209,1.418019)"
+       fy="56.345604"
+       fx="255.34476"
+       cy="56.345604"
+       cx="255.34476" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6728"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.75461"
+       fx="39.188126"
+       cy="126.75461"
+       cx="39.188126" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6727"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="124.37913"
+       fx="39.188126"
+       cy="124.37913"
+       cx="39.188126" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6726"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="122.00374"
+       fx="39.188126"
+       cy="122.00374"
+       cx="39.188126" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6725"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="119.71113"
+       fx="39.188126"
+       cy="119.71113"
+       cx="39.188126" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6724"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6723"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6722"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6721"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6720"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6719"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6718"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6717"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6716"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6715"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6714"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6713"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6712"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6711"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6710"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6709"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6708"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="71.480988"
+       cy="113.72600"
+       cx="71.480988" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6707"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="71.480988"
+       cy="126.99414"
+       cx="71.480988" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6706"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="74.620308"
+       cy="113.72600"
+       cx="74.620308" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6705"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="74.620308"
+       cy="126.99414"
+       cx="74.620308" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6704"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="77.946259"
+       cy="113.72600"
+       cx="77.946259" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6703"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="77.946259"
+       cy="126.99414"
+       cx="77.946259" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6702"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="81.085587"
+       cy="113.72600"
+       cx="81.085587" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6701"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="81.085587"
+       cy="126.99414"
+       cx="81.085587" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6700"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="84.079071"
+       cy="113.72600"
+       cx="84.079071" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6699"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="84.079071"
+       cy="126.99414"
+       cx="84.079071" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6698"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="87.218399"
+       cy="113.72600"
+       cx="87.218399" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6697"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="87.218399"
+       cy="126.99414"
+       cx="87.218399" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6696"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="90.368126"
+       cy="113.72600"
+       cx="90.368126" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6695"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="90.368126"
+       cy="126.99414"
+       cx="90.368126" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6694"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="93.507462"
+       cy="113.72600"
+       cx="93.507462" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6693"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="93.507462"
+       cy="126.99414"
+       cx="93.507462" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6692"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6691"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6690"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6689"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6688"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6687"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6686"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6685"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6684"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6683"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6682"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6681"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6680"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6679"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6678"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6677"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6676"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="45.452175"
+       cy="113.72600"
+       cx="45.452175" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6675"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="45.452175"
+       cy="126.99414"
+       cx="45.452175" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6674"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="48.591496"
+       cy="113.72600"
+       cx="48.591496" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6673"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="48.591496"
+       cy="126.99414"
+       cx="48.591496" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6672"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="51.917450"
+       cy="113.72600"
+       cx="51.917450" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6671"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="51.917450"
+       cy="126.99414"
+       cx="51.917450" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6670"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="55.056770"
+       cy="113.72600"
+       cx="55.056770" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6669"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="55.056770"
+       cy="126.99414"
+       cx="55.056770" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6668"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="58.050255"
+       cy="113.72600"
+       cx="58.050255" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6667"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="58.050255"
+       cy="126.99414"
+       cx="58.050255" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6666"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="61.189575"
+       cy="113.72600"
+       cx="61.189575" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6665"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="61.189575"
+       cy="126.99414"
+       cx="61.189575" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6664"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="64.339317"
+       cy="113.72600"
+       cx="64.339317" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6663"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="64.339317"
+       cy="126.99414"
+       cx="64.339317" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6662"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="67.478638"
+       cy="113.72600"
+       cx="67.478638" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6661"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="67.478638"
+       cy="126.99414"
+       cx="67.478638" />
+    <radialGradient
+       xlink:href="#linearGradient13376"
+       r="31.620827"
+       id="radialGradient6036"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.671462,0.000000,0.000000,0.500968,169.5594,-31.08157)"
+       fy="254.35735"
+       fx="-19.038713"
+       cy="253.63734"
+       cx="-19.261518" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient6035"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.681494,0.000000,0.000000,0.399114,149.8356,-15.39627)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6034"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028579e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6033"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6032"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028394e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6031"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6030"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029314e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6029"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6028"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029170e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6027"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6026"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029185e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6025"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6024"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029166e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6023"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6022"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028733e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6021"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6020"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029128e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6019"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6018"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027107e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6017"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6016"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026922e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6015"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6014"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028328e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6013"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6012"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028184e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6011"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6010"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028199e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6009"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6008"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028180e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6007"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6006"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028142e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6005"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6004"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028179e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6003"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient6002"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,163.6663,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient6001"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,163.6662,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient6000"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,168.1059,60.95613)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5999"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,168.1059,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5998"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,172.8091,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5997"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,172.8091,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5996"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,177.2488,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5995"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,177.2488,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5994"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,181.4822,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5993"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,181.4822,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5992"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,185.9219,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5991"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,185.9219,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5990"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,190.3763,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5989"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,190.3763,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5988"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,194.8160,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5987"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,194.8159,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient14835"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient5986"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.500039,0.000000,0.000000,0.399114,143.6876,-33.39267)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient5985"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.505549,0.000000,0.000000,0.350818,264.3597,-4.249573)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5984"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,81.14952,70.16883)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5983"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,81.14952,68.48913)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5982"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,81.14952,66.80943)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5981"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,81.14942,65.18833)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5980"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025590e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5979"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5978"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025405e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5977"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5976"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026325e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5975"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5974"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026181e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5973"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5972"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026196e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5971"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5970"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026177e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5969"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5968"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025744e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5967"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5966"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026139e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5965"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5964"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.024340e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5963"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5962"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.024155e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5961"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5960"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025561e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5959"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5958"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025417e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5957"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5956"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025432e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5955"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5954"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025413e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5953"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5952"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025375e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5951"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5950"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025412e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5949"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5948"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,126.8181,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5947"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,126.8180,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5946"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,131.2577,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5945"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,131.2577,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5944"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,135.9609,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5943"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,135.9609,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5942"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,140.4006,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5941"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,140.4006,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5940"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,144.6340,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5939"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,144.6340,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5938"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,149.0736,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5937"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,149.0736,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5936"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,153.5280,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5935"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,153.5280,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5934"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,157.9677,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5933"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,157.9676,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5932"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026202e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5931"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5930"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026017e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5929"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5928"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026937e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5927"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5926"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026793e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5925"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5924"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026808e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5923"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5922"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026789e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5921"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5920"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026356e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5919"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5918"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026751e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5917"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5916"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.024695e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5915"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5914"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.024510e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5913"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5912"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025916e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5911"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5910"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025772e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5909"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5908"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025787e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5907"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5906"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025768e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5905"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5904"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025730e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5903"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5902"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025767e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5901"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5900"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,90.00792,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5899"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,90.00782,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5898"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,94.44748,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5897"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,94.44748,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5896"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,99.15068,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5895"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,99.15068,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5894"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,103.5904,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5893"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,103.5904,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5892"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,107.8238,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5891"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,107.8238,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5890"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,112.2635,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5889"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,112.2635,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5888"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,116.7179,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5887"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,116.7179,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5886"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,121.1576,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5885"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,121.1575,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       id="linearGradient14160">
+      <stop
+         style="stop-color:#4af853;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop14161" />
+      <stop
+         style="stop-color:#68b96d;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop14162" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient10810">
+      <stop
+         style="stop-color:#0e0000;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop10811" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1.0000000;"
+         offset="0.50000000"
+         id="stop10814" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop10812" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11442">
+      <stop
+         style="stop-color:#6e6e6e;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop11443" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop11444" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient12744">
+      <stop
+         style="stop-color:#839da4;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop12745" />
+      <stop
+         style="stop-color:#496d77;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop12746" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient13376">
+      <stop
+         style="stop-color:#c0c0c0;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop13377" />
+      <stop
+         style="stop-color:#c7c7c7;stop-opacity:0.49803922;"
+         offset="0.50000000"
+         id="stop13380" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.0000000;"
+         offset="1.0000000"
+         id="stop13378" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient14835">
+      <stop
+         style="stop-color:#bed1d0;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop14836" />
+      <stop
+         style="stop-color:#52727b;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop14837" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6658">
+      <stop
+         style="stop-color:#677883;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop6659" />
+      <stop
+         style="stop-color:#677883;stop-opacity:0.0000000;"
+         offset="1.0000000"
+         id="stop6660" />
+    </linearGradient>
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient10048"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient10046"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,215.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient10044"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient10036"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient10028"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient7293"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,215.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient7287"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient7281"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,169.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient7275"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,143.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient4929"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,118.9307,88.97860)" />
+    <radialGradient
+       xlink:href="#linearGradient1851"
+       r="125.20509"
+       id="radialGradient1875"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1.270510,0.000000,0.000000,0.218761,-207.1544,6.085000e-2)"
+       fy="552.23833"
+       fx="-285.65439"
+       cy="598.36652"
+       cx="-289.09140"
+       collect="always" />
+    <linearGradient
+       id="linearGradient1851"
+       collect="always">
+      <stop
+         style="stop-color:#000000;stop-opacity:0.37241378;"
+         offset="0.0000000"
+         id="stop1852" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0.11034483;"
+         offset="0.50000000"
+         id="stop1854" />
+      <stop
+         style="stop-color:#adadad;stop-opacity:0.0000000;"
+         offset="1.0000000"
+         id="stop1853" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8468"
+       collect="always">
+      <stop
+         style="stop-color:#000000;stop-opacity:0.58620691;"
+         offset="0.0000000"
+         id="stop8469" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0.0068965517;"
+         offset="1.0000000"
+         id="stop8470" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient1806">
+      <stop
+         style="stop-color:#000000;stop-opacity:0.53103447;"
+         offset="0.0000000"
+         id="stop1807" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0.073446326;"
+         offset="0.64777780"
+         id="stop3276" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0.0000000;"
+         offset="1.0000000"
+         id="stop1808" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8474"
+       collect="always">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop8475" />
+      <stop
+         style="stop-color:#a2a2a2;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop8476" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8481"
+       collect="always">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop8482" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.0039215689;"
+         offset="1.0000000"
+         id="stop8483" />
+    </linearGradient>
+    <linearGradient
+       y2="-0.12500010"
+       y1="0.60155678"
+       xlink:href="#linearGradient1164"
+       x2="-0.13106795"
+       x1="0.47572812"
+       spreadMethod="reflect"
+       id="linearGradient3917"
+       gradientUnits="objectBoundingBox" />
+    <linearGradient
+       id="linearGradient3911">
+      <stop
+         style="stop-color:#263d42;stop-opacity:1;"
+         offset="0.000000"
+         id="stop3913" />
+      <stop
+         style="stop-color:#9acde7;stop-opacity:1;"
+         offset="1.000000"
+         id="stop3915" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4239"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.335120,0.000000,0.000000,-0.596114,-231.8379,185.4951)"
+       x1="312.61248"
+       y1="135.90253"
+       x2="339.46602"
+       y2="316.70622" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1806"
+       id="linearGradient4241"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.335120,0.000000,0.000000,-0.596114,-231.8379,185.4951)"
+       x1="310.44888"
+       y1="142.43878"
+       x2="311.96148"
+       y2="261.76054" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8468"
+       id="linearGradient4243"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.423388,0.000000,0.000000,-0.464941,-231.8379,154.7338)"
+       x1="282.27411"
+       y1="419.36390"
+       x2="282.27411"
+       y2="211.77074" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4245"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.423388,0.000000,0.000000,-0.464941,-231.8379,154.7338)"
+       x1="151.97781"
+       y1="82.293232"
+       x2="200.30677"
+       y2="418.78640" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8468"
+       id="linearGradient4247"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.050391,0.000000,0.000000,1.342646,-91.51548,-60.79889)"
+       x1="68.268656"
+       y1="164.80815"
+       x2="70.638656"
+       y2="87.802278" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8481"
+       id="linearGradient4249"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.427745,0.000000,0.000000,-0.463522,-231.8379,154.7338)"
+       x1="280.30070"
+       y1="418.04542"
+       x2="283.50529"
+       y2="212.07808" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1851"
+       id="radialGradient4251"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1.270510,0.000000,0.000000,0.218761,-207.1544,6.085000e-2)"
+       cx="-289.09140"
+       cy="598.36652"
+       fx="-285.65439"
+       fy="552.23833"
+       r="125.20509" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4253"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)"
+       x1="68.268654"
+       y1="164.80815"
+       x2="70.638657"
+       y2="87.802277" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4255"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,215.0464,89.10950)"
+       x1="68.268654"
+       y1="164.80815"
+       x2="70.638657"
+       y2="87.802277" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4257"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)"
+       x1="68.268654"
+       y1="164.80815"
+       x2="70.638657"
+       y2="87.802277" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4259"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)"
+       x1="68.268654"
+       y1="164.80815"
+       x2="70.638657"
+       y2="87.802277" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4261"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)"
+       x1="68.268654"
+       y1="164.80815"
+       x2="70.638657"
+       y2="87.802277" />
+    <linearGradient
+       id="linearGradient6508">
+      <stop
+         style="stop-color:#ff0000;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop6509" />
+      <stop
+         style="stop-color:#ffb900;stop-opacity:1.0000000;"
+         offset="0.64370060"
+         id="stop6511" />
+      <stop
+         style="stop-color:#ffff00;stop-opacity:0.84102565;"
+         offset="0.79038113"
+         id="stop6512" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.21568628;"
+         offset="1.0000000"
+         id="stop6510" />
+    </linearGradient>
+    <radialGradient
+       xlink:href="#linearGradient3017"
+       r="32.400997"
+       inkscape:collect="always"
+       id="radialGradient3020"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.017812,0.982500)"
+       fy="39.714470"
+       fx="67.252083"
+       cy="39.714470"
+       cx="67.252083" />
+    <linearGradient
+       id="linearGradient1696">
+      <stop
+         style="stop-color:#d7d4d5;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop1697" />
+      <stop
+         style="stop-color:#f2f2f2;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop1698" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient1727">
+      <stop
+         style="stop-color:#00c042;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop1728" />
+      <stop
+         style="stop-color:#6cff49;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop1729" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient1731">
+      <stop
+         style="stop-color:#606060;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop1732" />
+      <stop
+         style="stop-color:#f0f0f0;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop1733" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient1739">
+      <stop
+         style="stop-color:#d0f0f0;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop1740" />
+      <stop
+         style="stop-color:#faffff;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop1741" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3017">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.52577317;"
+         offset="0.0000000"
+         id="stop3018" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop3019" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1696"
+       id="linearGradient47963"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(0.831022,1.203337)"
+       x1="52.039398"
+       y1="93.432655"
+       x2="38.779137"
+       y2="73.709610" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1696"
+       id="linearGradient47965"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.141840,0.875779)"
+       x1="101.58556"
+       y1="123.73905"
+       x2="68.683929"
+       y2="94.950119" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1696"
+       id="linearGradient47967"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.444200,0.692425)"
+       x1="61.318573"
+       y1="69.988159"
+       x2="43.187496"
+       y2="113.94408" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1731"
+       id="linearGradient47969"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.360554,0.734995)"
+       x1="69.758781"
+       y1="149.86493"
+       x2="49.088371"
+       y2="125.84365" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1731"
+       id="linearGradient47971"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.491631,0.670407)"
+       x1="38.475441"
+       y1="76.877792"
+       x2="50.980556"
+       y2="97.393562" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1727"
+       id="linearGradient47973"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.033879,0.967231)"
+       x1="106.06989"
+       y1="68.346664"
+       x2="103.55814"
+       y2="66.288597" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1739"
+       id="linearGradient47975"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.022308,0.978179)"
+       x1="68.967087"
+       y1="61.385227"
+       x2="48.944408"
+       y2="32.755234" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1696"
+       id="linearGradient47977"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.106451,0.903791)"
+       x1="56.598106"
+       y1="146.75134"
+       x2="75.084007"
+       y2="133.35785" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1696"
+       id="linearGradient47979"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.383369,0.722873)"
+       x1="91.206520"
+       y1="122.64465"
+       x2="76.282440"
+       y2="169.12962" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1696"
+       id="linearGradient47981"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.306220,0.765568)"
+       x1="107.47197"
+       y1="172.93613"
+       x2="80.993660"
+       y2="152.92480" />
+    <linearGradient
+       id="linearGradient5022">
+      <stop
+         style="stop-color:#d4d4d4;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop5024" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.49803922;"
+         offset="0.50000000"
+         id="stop5026" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.0000000;"
+         offset="1.0000000"
+         id="stop5028" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5016">
+      <stop
+         style="stop-color:#839da4;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop5018" />
+      <stop
+         style="stop-color:#496d77;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop5020" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5008">
+      <stop
+         style="stop-color:#0e0000;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop5010" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1.0000000;"
+         offset="0.50000000"
+         id="stop5012" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop5014" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5002">
+      <stop
+         style="stop-color:#6e6e6e;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop5004" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop5006" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4996">
+      <stop
+         style="stop-color:#4af853;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop4998" />
+      <stop
+         style="stop-color:#68b96d;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop5000" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4990">
+      <stop
+         style="stop-color:#bed1d0;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop4992" />
+      <stop
+         style="stop-color:#52727b;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop4994" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient29203">
+      <stop
+         style="stop-color:#d3d3d3;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop29205" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop29207" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4981">
+      <stop
+         style="stop-color:#677883;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop4983" />
+      <stop
+         style="stop-color:#677883;stop-opacity:0.0000000;"
+         offset="1.0000000"
+         id="stop4985" />
+    </linearGradient>
+    <radialGradient
+       xlink:href="#linearGradient13376"
+       r="31.620827"
+       id="radialGradient32223"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.406487,0.000000,0.000000,1.203260,-97.64080,46.36617)"
+       fy="254.35735"
+       fx="-19.038713"
+       cy="253.63734"
+       cx="-19.261518" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32220"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.515689,0.000000,0.000000,1.150508,-137.5541,-43.81501)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32217"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.505549,0.000000,0.000000,2.080336,-137.8628,-216.3766)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient14835"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32214"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.500039,0.000000,0.000000,0.399114,-137.7513,113.5911)" />
+    <linearGradient
+       y2="232.23291"
+       y1="267.04773"
+       xlink:href="#linearGradient41493"
+       x2="30.608046"
+       x1="66.153191"
+       id="linearGradient32211"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.038476,0.000000,0.000000,0.962950,-247.3571,5.821430)" />
+    <linearGradient
+       id="linearGradient41493">
+      <stop
+         style="stop-color:#181818;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop41495" />
+      <stop
+         style="stop-color:#5e5e5e;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop41497" />
+    </linearGradient>
+    <linearGradient
+       y2="232.23291"
+       y1="267.04773"
+       xlink:href="#linearGradient41493"
+       x2="30.608046"
+       x1="66.153191"
+       id="linearGradient32208"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.038476,0.000000,0.000000,0.962950,-186.4643,5.821435)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32205"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.505549,0.000000,0.000000,0.324136,-13.01420,148.1464)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32202"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.229222,0.000000,0.000000,0.297185,-134.1312,199.6513)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32199"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.229222,0.000000,0.000000,0.299657,-134.1312,210.6030)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32196"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.229222,0.000000,0.000000,0.299657,-134.1311,222.1030)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32193"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.229222,0.000000,0.000000,0.299657,-134.1312,233.6030)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32190"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.229222,0.000000,0.000000,0.299657,-134.1312,245.1030)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32187"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.229222,0.000000,0.000000,0.299657,-134.1311,256.6030)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32184"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.229222,0.000000,0.000000,0.299657,-134.1311,268.3530)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32181"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-114.7782,37.26488)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32178"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-126.7684,37.26487)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient32175"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-186.6780,258.5642)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient32172"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-186.6780,257.2634)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient32169"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-186.6780,256.0888)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient32166"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-186.6779,254.7020)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient32163"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-186.6778,253.4259)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient32160"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-186.6778,251.9992)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient41493"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32157"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.378708,0.000000,0.000000,0.180665,-159.3178,192.0174)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32154"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-197.6440,59.68751)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42556"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32147"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-107.8837,59.68751)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42560"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32140"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-143.7878,59.68751)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42564"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32133"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-125.8358,59.68751)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42568"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32126"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-161.7399,59.68751)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42572"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32119"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-179.6920,59.68751)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42576"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32112"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-196.9848,70.81251)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42580"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32105"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-183.7827,71.06251)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42584"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32098"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,25.76900,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32095"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-82.03920,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32092"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,21.39650,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32089"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-86.41170,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32086"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,17.02410,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32083"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-90.78410,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32080"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,12.65160,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32077"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-95.15660,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32074"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,8.279100,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32071"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-99.52910,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32068"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,3.906600,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32065"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-103.9016,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32062"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,52.00380,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32059"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-55.80440,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32056"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,47.63140,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32053"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-60.17680,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32050"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,43.25890,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32047"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-64.54930,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32044"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,38.88640,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32041"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-68.92180,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32038"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,30.14150,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32035"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-77.66670,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32032"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,34.51400,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32029"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-73.29420,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32026"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-0.465800,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32023"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-108.2740,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32020"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-4.838300,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32017"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-112.6465,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32014"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-9.210800,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32011"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-117.0190,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32008"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-13.58330,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32005"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-121.3915,267.4325)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient32002"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-151.0295,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31999"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-146.6475,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31996"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-142.2655,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31993"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-137.8836,294.1509)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31990"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-115.9737,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31987"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-107.2098,294.1509)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31984"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-102.8279,294.1509)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31981"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-94.06390,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31978"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-98.44590,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31975"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-89.68200,294.1509)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31972"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-85.30000,294.5045)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31969"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-111.5918,294.1509)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31966"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-133.5016,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31963"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-129.1196,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31960"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-124.7377,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31957"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-120.3557,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31954"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,25.60230,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31951"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-82.20590,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31948"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,21.22990,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31945"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-86.57830,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31942"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,16.85740,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31939"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-90.95080,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31936"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,12.48490,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31933"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-95.32330,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31930"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,8.112400,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31927"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-99.69580,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31924"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,3.740000,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31921"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-104.0682,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31918"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,51.83710,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31915"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-55.97110,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31912"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,47.46470,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31909"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-60.34350,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31906"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,43.09220,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31903"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-64.71600,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31900"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,38.71970,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31897"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-69.08850,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31894"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,29.97480,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31891"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-77.83340,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31888"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,34.34730,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31885"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-73.46090,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31882"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-0.632500,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31879"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-108.4407,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31876"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-5.005000,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31873"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-112.8132,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31870"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-9.377500,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31867"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-117.1857,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31864"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-13.74990,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31861"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-121.5581,263.6863)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31858"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-151.3911,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31855"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-147.0092,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31852"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-142.6272,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31849"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-138.2452,285.3549)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31846"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-116.3354,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31843"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-107.5715,285.3549)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31840"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-103.1895,285.3549)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31837"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-94.42560,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31834"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-98.80760,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31831"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-90.04360,285.3549)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31828"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-85.66170,285.7085)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31825"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-111.9535,285.3549)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31822"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-133.8633,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31819"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-129.4813,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31816"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-125.0994,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31813"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-120.7174,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31810"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,27.58400,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31807"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-80.22420,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31804"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,23.21150,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31801"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-84.59670,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31798"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,18.83900,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31795"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-88.96920,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31792"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,14.46650,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31789"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-93.34170,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31786"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,10.09410,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31783"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-97.71410,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31780"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,5.721600,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31777"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-102.0866,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31774"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,53.81880,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31771"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-53.98940,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31768"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,49.44630,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31765"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-58.36190,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31762"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,45.07380,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31759"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-62.73440,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31756"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,40.70140,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31753"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-67.10680,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31750"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,31.95640,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31747"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-75.85180,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31744"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,36.32890,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31741"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-71.47930,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31738"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,1.349100,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31735"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-106.4591,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31732"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-3.023400,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31729"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-110.8316,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31726"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-7.395800,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31723"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-115.2040,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31720"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-11.76830,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31717"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-119.5765,279.0341)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31714"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-149.2145,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31711"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-144.8326,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31708"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-140.4506,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31705"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-136.0686,305.9066)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31702"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-114.1588,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31699"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-105.3949,305.9066)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31696"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-101.0129,305.9066)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31693"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-92.24900,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31690"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-96.63090,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31687"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-87.86700,305.9066)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31684"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-83.48510,305.9066)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31681"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-109.7768,305.9066)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31678"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-131.6867,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31675"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-127.3047,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31672"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-122.9227,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31669"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-118.5408,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31666"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,27.41730,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31663"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-80.39090,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31660"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,23.04480,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31657"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-84.76340,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31654"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,18.67230,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31651"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-89.13590,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31648"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,14.29990,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31645"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-93.50830,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31642"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,9.927400,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31639"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-97.88080,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31636"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,5.554900,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31633"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-102.2533,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31630"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,53.65210,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31627"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-54.15610,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31624"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,49.27960,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31621"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-58.52860,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31618"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,44.90720,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31615"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-62.90100,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31612"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,40.53470,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31609"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-67.27350,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31606"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,31.78970,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31603"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-76.01850,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31600"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,36.16220,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31597"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-71.64600,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31594"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,1.182400,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31591"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-106.6258,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31588"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-3.190000,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31585"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-110.9982,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31582"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-7.562500,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31579"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-115.3707,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31576"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-11.93500,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31573"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-119.7432,275.2879)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31570"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-149.5762,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31567"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-145.1942,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31564"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-140.8123,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31561"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-136.4303,297.1106)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31558"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-114.5205,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31555"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-105.7565,297.1106)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31552"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-101.3746,297.1106)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31549"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-92.61070,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31546"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-96.99260,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31543"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-88.22870,297.1106)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31540"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-83.84670,297.1106)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31537"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-110.1385,297.1106)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31534"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-132.0483,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31531"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-127.6664,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31528"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-123.2844,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31525"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-118.9024,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31522"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-16.43390,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31519"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-124.2421,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31516"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-20.80640,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31513"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-128.6146,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31510"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-25.17890,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31507"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-132.9871,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31504"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-29.55130,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31501"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-137.3595,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31498"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-33.92380,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31495"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-141.7320,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31492"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-38.29630,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31489"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-146.1045,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31486"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-42.66880,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31483"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-150.4770,279.0341)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31480"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-184.4874,305.9068)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31477"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-180.1055,305.9068)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31474"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-175.7235,305.9068)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31471"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-171.3416,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31468"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-166.9596,305.9068)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31465"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-162.5776,305.9068)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31462"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-158.1957,305.9068)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31459"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-153.8137,305.9068)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31456"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-16.60060,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31453"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-124.4088,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31450"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-20.97310,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31447"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-128.7813,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31444"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-25.34550,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31441"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-133.1537,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31438"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-29.71800,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31435"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-137.5262,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31432"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-34.09050,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31429"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-141.8987,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31426"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-38.46300,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31423"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-146.2712,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31420"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-42.83550,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31417"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-150.6437,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31414"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-47.20790,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31411"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-155.0161,275.2879)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31408"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-184.8491,297.1108)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31405"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-180.4672,297.1108)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31402"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-176.0852,297.1108)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31399"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-171.7033,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31396"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-167.3213,297.1108)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31393"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-162.9393,297.1108)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31390"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-158.5573,297.1108)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31387"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-154.1754,297.1108)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31383"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-47.19847,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31380"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-155.0067,279.0341)" />
+    <radialGradient
+       xlink:href="#linearGradient13376"
+       r="31.620827"
+       id="radialGradient52163"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.406487,0.000000,0.000000,1.203260,155.9766,239.3125)"
+       fy="254.35735"
+       fx="-19.038713"
+       cy="253.63734"
+       cx="-19.261518" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient52165"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.505549,0.000000,0.000000,1.098874,112.8796,242.7912)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient14835"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient52167"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.500039,0.000000,0.000000,0.399114,113.0498,274.1564)" />
+    <linearGradient
+       y2="232.23291"
+       y1="267.04773"
+       xlink:href="#linearGradient41493"
+       x2="30.608046"
+       x1="66.153191"
+       id="linearGradient52169"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.038476,0.000000,0.000000,0.962950,3.444000,280.3867)" />
+    <linearGradient
+       y2="232.23291"
+       y1="267.04773"
+       xlink:href="#linearGradient41493"
+       x2="30.608046"
+       x1="66.153191"
+       id="linearGradient52171"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.038476,0.000000,0.000000,0.962950,64.33680,280.3867)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient14835"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient52173"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.470326,0.000000,0.000000,0.399114,111.8541,432.6787)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient52175"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.505549,0.000000,0.000000,0.408796,237.7869,297.6224)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient52177"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.505549,0.000000,0.000000,2.776405,112.8758,-256.1552)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient52179"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.505549,0.000000,0.000000,0.393631,113.3054,407.4747)" />
+    <radialGradient
+       xlink:href="#linearGradient18155"
+       r="20.140131"
+       id="radialGradient19735"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.035725,0.000000,0.000000,0.965507,2.474874,3.535534)"
+       fy="685.42749"
+       fx="-156.00693"
+       cy="685.42743"
+       cx="-156.58647" />
+    <linearGradient
+       id="linearGradient18155">
+      <stop
+         style="stop-color:#000000;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop18157" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0.0000000;"
+         offset="1.0000000"
+         id="stop18159" />
+    </linearGradient>
+    <linearGradient
+       y2="605.07910"
+       y1="633.65204"
+       xlink:href="#linearGradient12759"
+       x2="-158.15326"
+       x1="-191.02443"
+       id="linearGradient19737"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(0.942809,1.060660)" />
+    <linearGradient
+       id="linearGradient12759">
+      <stop
+         style="stop-color:#b4b4b4;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop12761" />
+      <stop
+         style="stop-color:#d7d8de;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop12763" />
+    </linearGradient>
+    <linearGradient
+       y2="638.04340"
+       y1="605.33868"
+       xlink:href="#linearGradient12759"
+       x2="-157.56822"
+       x1="-190.57690"
+       id="linearGradient19739"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(0.944312,1.058972)" />
+    <linearGradient
+       y2="3027.5479"
+       y1="3026.5081"
+       xlink:href="#linearGradient12759"
+       x2="-37.858898"
+       x1="-33.914631"
+       id="linearGradient19741"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671070e-2,-2.232191)" />
+    <linearGradient
+       y2="3027.5479"
+       y1="3026.5081"
+       xlink:href="#linearGradient12759"
+       x2="-37.858898"
+       x1="-33.914631"
+       id="linearGradient19743"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.670770e-2,-0.250690)" />
+    <linearGradient
+       y2="3027.5479"
+       y1="3026.5081"
+       xlink:href="#linearGradient12759"
+       x2="-37.858898"
+       x1="-33.914631"
+       id="linearGradient19745"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,3.712324)" />
+    <linearGradient
+       y2="3027.5479"
+       y1="3026.5081"
+       xlink:href="#linearGradient12759"
+       x2="-37.858898"
+       x1="-33.914631"
+       id="linearGradient19747"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,5.693830)" />
+    <linearGradient
+       y2="3027.5479"
+       y1="3026.5081"
+       xlink:href="#linearGradient12759"
+       x2="-37.858898"
+       x1="-33.914631"
+       id="linearGradient19749"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,7.675337)" />
+    <linearGradient
+       y2="3027.5479"
+       y1="3026.5081"
+       xlink:href="#linearGradient12759"
+       x2="-37.858898"
+       x1="-33.914631"
+       id="linearGradient19751"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,9.656847)" />
+    <linearGradient
+       y2="3027.5479"
+       y1="3026.5081"
+       xlink:href="#linearGradient12759"
+       x2="-37.858898"
+       x1="-33.914631"
+       id="linearGradient19753"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,1.730818)" />
+    <linearGradient
+       y2="605.07910"
+       y1="633.65204"
+       xlink:href="#linearGradient12759"
+       x2="-158.15326"
+       x1="-191.02443"
+       id="linearGradient19755"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.381659,0.000000,0.000000,0.176842,-98.06087,537.6347)" />
+    <linearGradient
+       y2="638.04340"
+       y1="605.33868"
+       xlink:href="#linearGradient12759"
+       x2="-157.56822"
+       x1="-190.57690"
+       id="linearGradient19757"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.382268,0.000000,0.000000,0.176560,-98.06087,537.6347)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient18155"
+       id="radialGradient5074"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.035725,0.000000,0.000000,0.965507,2.474874,3.535534)"
+       cx="-156.58647"
+       cy="685.42743"
+       fx="-156.00693"
+       fy="685.42749"
+       r="20.140131" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5076"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(0.942809,1.060660)"
+       x1="-191.02443"
+       y1="633.65204"
+       x2="-158.15326"
+       y2="605.07910" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5078"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(0.944312,1.058972)"
+       x1="-190.57690"
+       y1="605.33868"
+       x2="-157.56822"
+       y2="638.04340" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5080"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671070e-2,-2.232191)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5082"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.670770e-2,-0.250690)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5084"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,3.712324)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5086"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,5.693830)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5088"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,7.675337)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5090"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,9.656847)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5092"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,1.730818)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5094"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.381659,0.000000,0.000000,0.176842,-98.06087,537.6347)"
+       x1="-191.02443"
+       y1="633.65204"
+       x2="-158.15326"
+       y2="605.07910" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5096"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.382268,0.000000,0.000000,0.176560,-98.06087,537.6347)"
+       x1="-190.57690"
+       y1="605.33868"
+       x2="-157.56822"
+       y2="638.04340" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5099"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.764555,0.000000,0.000000,0.351895,1316.329,1337.145)"
+       x1="-191.02443"
+       y1="633.65204"
+       x2="-158.15326"
+       y2="605.07910" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5101"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.765775,0.000000,0.000000,0.351334,1316.329,1337.145)"
+       x1="-190.57690"
+       y1="605.33868"
+       x2="-157.56822"
+       y2="638.04340" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5110"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(9.196475,0.000000,0.000000,0.433450,1512.635,270.7592)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5113"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(9.196475,0.000000,0.000000,0.433450,1512.635,286.5311)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5116"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(9.196475,0.000000,0.000000,0.433450,1512.635,282.5881)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5119"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(9.196475,0.000000,0.000000,0.433450,1512.635,278.6451)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5122"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(9.196475,0.000000,0.000000,0.433450,1512.635,274.7022)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5125"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(9.196475,0.000000,0.000000,0.433450,1512.635,266.8163)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5128"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(9.196475,0.000000,0.000000,0.433450,1512.635,262.8733)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5131"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.888674,0.000000,0.000000,2.110588,1512.769,267.3151)"
+       x1="-191.02443"
+       y1="633.65204"
+       x2="-158.15326"
+       y2="605.07910" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5133"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.891685,0.000000,0.000000,2.107229,1512.769,267.3151)"
+       x1="-190.57690"
+       y1="605.33868"
+       x2="-157.56822"
+       y2="638.04340" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient18155"
+       id="radialGradient5140"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.074807,0.000000,0.000000,1.921245,1517.727,274.3504)"
+       cx="-156.58647"
+       cy="685.42743"
+       fx="-156.00693"
+       fy="685.42749"
+       r="20.140131" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1851"
+       id="radialGradient4312"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.597418,0.000000,0.000000,0.102866,259.1690,1177.855)"
+       cx="-289.09140"
+       cy="598.36652"
+       fx="-285.65439"
+       fy="552.23833"
+       r="125.20509" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8481"
+       id="linearGradient4315"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.671353,0.000000,0.000000,-0.217957,247.5623,1250.585)"
+       x1="280.30070"
+       y1="418.04542"
+       x2="283.50529"
+       y2="212.07808" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8468"
+       id="linearGradient4318"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.904571,0.000000,0.000000,0.631338,313.5446,1149.237)"
+       x1="68.268656"
+       y1="164.80815"
+       x2="70.638656"
+       y2="87.802278" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4321"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.669304,0.000000,0.000000,-0.218624,247.5623,1250.585)"
+       x1="151.97781"
+       y1="82.293232"
+       x2="200.30677"
+       y2="418.78640" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8468"
+       id="linearGradient4324"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.669304,0.000000,0.000000,-0.218624,247.5623,1250.585)"
+       x1="282.27411"
+       y1="419.36390"
+       x2="282.27411"
+       y2="211.77074" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4327"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.627799,0.000000,0.000000,-0.280304,247.5623,1265.049)"
+       x1="312.61248"
+       y1="135.90253"
+       x2="339.46602"
+       y2="316.70622" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1806"
+       id="linearGradient4329"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.627799,0.000000,0.000000,-0.280304,247.5623,1265.049)"
+       x1="310.44888"
+       y1="142.43878"
+       x2="311.96148"
+       y2="261.76054" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.39272727"
+     inkscape:cx="937.50000"
+     inkscape:cy="485.32407"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     inkscape:window-width="1280"
+     inkscape:window-height="977"
+     inkscape:window-x="0"
+     inkscape:window-y="25" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <rect
+       style="fill:#ffff00;fill-opacity:1.0000000;stroke:#000000;stroke-width:0.0000000;stroke-linecap:butt;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+       id="rect45470"
+       width="255.82741"
+       height="112.40988"
+       x="363.32068"
+       y="810.01959" />
+    <path
+       sodipodi:nodetypes="cc"
+       id="path46952"
+       d="M 452.41155,497.96336 L 452.41155,821.20966"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#ffff00;stroke-width:6.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#ffff00;stroke-width:6.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       d="M 662.21808,478.35696 L 480.74095,478.35696"
+       id="path46212" />
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       d="M 1171.0487,468.35696 L 907.47273,468.35696"
+       id="path19238" />
+    <path
+       id="path19227"
+       d="M 673.53972,468.35696 L 480.74095,468.35696"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       sodipodi:nodetypes="cc" />
+    <path
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       d="M 427.80525,446.03406 L 309.18979,221.07015"
+       id="path12258"
+       sodipodi:nodetypes="cc" />
+    <g
+       id="g3919"
+       transform="matrix(0.537179,0.000000,0.000000,0.537179,70.11473,60.99696)">
+      <path
+         transform="matrix(0.961691,0.000000,0.000000,1.000000,12.63789,0.000000)"
+         style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+         sodipodi:nodetypes="cccccccccccccccccc"
+         id="path1503"
+         d="M 127.50000,106.25000 C 127.50000,106.25000 126.25000,18.750100 231.25000,45.000000 C 336.25000,71.250000 317.50000,115.00000 318.75000,115.00000 C 320.00000,115.00000 300.00000,61.250000 380.00000,51.250000 C 452.50000,57.500000 486.25000,71.250000 482.50000,117.50000 C 478.75000,163.75000 443.75000,175.00000 443.75000,175.00000 C 443.75000,175.00000 507.50000,181.25000 490.00000,275.00000 C 462.50000,340.00000 462.50000,333.75000 398.75000,341.25000 C 370.00000,330.00000 368.75000,320.00000 368.75000,320.00000 C 368.75000,320.00000 421.25000,368.75000 342.50000,400.00000 C 253.75000,423.75000 242.50000,402.50000 205.00000,391.25000 C 168.75000,368.75000 176.25000,341.25000 176.25000,341.25000 C 176.25000,341.25000 198.75000,387.50000 122.50000,396.25000 C 46.250000,405.00000 17.500000,387.50000 3.7500000,316.25000 C 2.0861600e-06,262.50000 67.500000,257.50000 67.500000,257.50000 C 67.500000,257.50000 26.250000,258.75000 15.000000,231.25000 C 3.7500000,203.75000 -3.7500000,167.50000 30.000000,118.75000 C 92.500000,60.000000 135.00000,98.750000 127.50000,106.25000 z " />
+      <g
+         transform="matrix(0.298665,0.000000,0.000000,0.283273,76.42833,82.09869)"
+         style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+         id="g1556">
+        <g
+           transform="translate(107.0886,1.392441)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g770">
+          <path
+             style="fill:#b3b2b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+             sodipodi:nodetypes="ccccc"
+             id="path743"
+             d="M 299.84200,180.38000 L 177.21500,74.367000 L 250.79100,71.993600 L 385.28500,162.18300 C 385.28500,162.18300 353.63900,191.45600 299.84200,180.38000 z " />
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g761">
+            <path
+               style="fill:#b3b2b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path744"
+               d="M 176.42400,74.367000 L 178.00600,238.92400 L 300.63300,364.71500 L 301.42400,181.96200 L 176.42400,74.367000 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g754">
+              <path
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccc"
+                 id="path742"
+                 d="M 302.21600,181.17100 C 302.21600,181.17100 328.32300,184.33500 348.10200,180.38000 C 375.00000,170.09500 386.07600,163.76600 386.07600,163.76600 L 386.86700,342.56300 C 386.86700,342.56300 371.83500,353.63900 353.64000,360.75900 C 323.57600,367.08800 300.63300,364.71500 300.63300,364.71500 L 302.21600,181.17100 z " />
+              <g
+                 style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="g749">
+                <path
+                   transform="translate(-1.582260,0.000000)"
+                   style="fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   id="path745"
+                   d="M 315.66500,205.69600 C 315.66500,205.69600 378.95600,192.24700 378.95600,193.03800 C 378.95600,193.82900 378.16500,218.35400 378.16500,218.35400 C 378.16500,218.35400 316.45600,231.80400 315.66500,231.80400 C 314.87400,231.80400 314.87400,207.27800 315.66500,205.69600 z " />
+                <path
+                   style="fill:#000100;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path746"
+                   d="M 323.57600,246.83500 L 370.25300,237.34200 L 370.25300,241.29800 L 323.57600,251.58200 L 323.57600,246.83500 z " />
+                <path
+                   style="fill:#00b300;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path747"
+                   d="M 360.76000,268.98700 L 372.62700,267.40500 L 372.62700,279.27200 L 360.76000,281.64600 L 360.76000,268.98700 z " />
+                <path
+                   style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path748"
+                   d="M 365.50600,298.25900 L 373.41800,297.46800 L 373.41800,306.96200 L 365.50600,308.54400 L 365.50600,298.25900 z " />
+              </g>
+            </g>
+          </g>
+        </g>
+        <g
+           transform="matrix(0.868723,0.000000,0.000000,0.841809,-27.91207,15.52193)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g818">
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g801">
+            <path
+               transform="translate(-0.847921,19.50222)"
+               style="font-size:12.000000px;fill:#b3b3b3;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path607"
+               d="M 119.55700,425.38300 L 119.55700,438.10200 L 435.83200,344.83000 L 436.68000,329.56800 L 119.55700,425.38300 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g798">
+              <path
+                 transform="translate(-0.847921,19.50222)"
+                 style="font-size:12.000000px;fill:#cccccc;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path606"
+                 d="M 166.19300,347.37400 L 119.55700,426.23100 L 436.68000,329.56800 L 345.10400,298.19400 L 166.19300,347.37400 z " />
+              <path
+                 transform="matrix(0.708121,0.000000,0.000000,0.825311,71.30738,59.20586)"
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path605"
+                 d="M 139.05900,335.50300 C 139.05900,335.50300 127.18800,354.15700 132.27500,369.42000 C 136.51500,388.07500 150.08200,392.31400 153.47400,392.31400 C 156.86600,392.31400 377.17700,334.88400 377.17700,334.88400 C 377.17700,334.88400 383.26000,322.78400 386.65200,303.28200 C 379.86900,279.54000 367.15000,276.99600 352.73500,276.99600 C 328.99300,263.43000 353.58400,276.99600 353.58400,276.99600 L 139.05900,335.50300 z " />
+            </g>
+          </g>
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g811">
+            <path
+               style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="cccccccc"
+               id="path602"
+               d="M 420.57000,16.684400 C 420.57000,17.532300 399.37100,11.596800 377.32500,9.9009300 C 367.15000,10.748900 66.137900,65.863800 63.594200,65.863800 C 67.833800,65.015900 54.267000,65.863800 50.875300,73.495100 C 47.483600,81.126400 47.483600,343.13400 47.483600,343.13400 C 47.483600,343.13400 47.483700,350.76600 52.571200,356.70100 C 60.202500,360.09300 80.552600,360.94100 72.921300,360.94100 L 420.57000,16.684400 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g806">
+              <path
+                 transform="matrix(0.995445,0.000000,0.000000,0.910163,2.817975,-20.11005)"
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path600"
+                 d="M 71.233200,108.00900 L 418.87300,40.426100 C 423.96100,43.817800 429.04900,41.274100 431.59300,51.449200 C 434.13700,61.624100 430.74500,304.97800 430.74500,304.97800 C 430.74500,304.97800 432.44000,312.60900 426.50500,316.84900 C 420.56900,321.08800 79.669900,416.90400 79.669900,416.90400 C 79.669900,416.90400 69.494600,421.14300 63.559300,412.66400 C 55.080300,410.12100 60.202500,124.37000 60.202500,124.37000 C 60.202500,124.37000 61.027100,110.72000 71.233200,108.00900 z " />
+              <g
+                 style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="g795">
+                <path
+                   style="fill:url(#linearGradient614);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccccccccc"
+                   id="path603"
+                   d="M 89.031800,98.084400 L 394.28400,38.730300 C 394.28400,38.730300 401.91500,36.186500 407.85100,45.513700 C 413.78600,54.840800 412.09000,59.080400 412.09000,59.080400 L 412.09000,234.60000 C 411.24200,243.92700 412.93800,240.53500 407.85100,250.71100 C 397.67500,254.10200 105.14200,333.80700 105.14200,333.80700 C 105.14200,333.80700 105.14200,335.50300 94.967300,333.80700 C 84.792200,332.11100 81.400500,316.00100 81.400500,315.15300 C 81.400500,314.30500 78.008800,115.89100 78.008800,115.89100 C 78.008800,115.89100 79.704800,101.47600 89.031800,98.084400 z " />
+                <path
+                   style="fill:#00feb3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path604"
+                   d="M 368.84600,266.82100 L 398.52300,258.34200 L 398.52300,271.90900 C 398.52300,271.90900 368.84600,279.54000 368.84600,280.38800 C 368.84600,281.23600 368.84600,266.82100 368.84600,266.82100 z " />
+              </g>
+            </g>
+          </g>
+        </g>
+        <g
+           transform="matrix(1.060794,0.000000,0.000000,0.913679,-36.36050,196.9337)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g878">
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g875">
+            <path
+               transform="translate(3.955698,-6.329117)"
+               style="fill:#b2b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path831"
+               d="M 35.601300,306.96200 L 454.11400,242.08800 L 454.11400,266.61400 L 35.601200,332.27900 L 35.601300,306.96200 z " />
+            <path
+               style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path832"
+               d="M 39.557000,300.63300 C 41.930400,296.67700 90.981000,199.36700 90.981000,199.36700 L 371.04400,173.25900 L 458.07000,235.75900 L 39.557000,300.63300 z " />
+          </g>
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g859">
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g844">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path841"
+                 d="M 331.48700,184.33500 C 331.48700,184.33500 332.27900,193.03800 332.27900,193.82900 C 332.27900,194.62000 366.29800,234.17700 366.29800,234.17700 L 424.05100,224.68300 L 423.26000,218.35400 L 422.46800,218.35400 L 331.48700,184.33500 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path840"
+                 d="M 332.27900,184.33600 L 369.46200,180.38000 L 424.05100,218.35400 L 370.25300,225.47500 L 332.27900,184.33600 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g847">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path843"
+                 d="M 297.46800,195.41100 C 297.46800,195.41100 297.46800,203.32300 297.46800,204.11400 C 297.46800,204.90500 318.03800,241.29700 318.82900,241.29700 C 319.62000,241.29700 353.63900,236.55100 353.63900,236.55100 L 352.05700,227.05700" />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path842"
+                 d="M 298.26000,195.41100 C 299.05100,195.41100 322.78500,193.03800 322.78500,193.03800 L 352.84800,227.05700 L 321.99400,231.80400 L 298.26000,195.41100 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g850">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path833"
+                 d="M 90.189900,208.86100 L 98.101300,195.41100 L 272.94300,178.00600 L 282.43700,189.08200 L 90.189900,208.86100 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path834"
+                 d="M 90.189900,209.65200 L 89.398800,215.19000 L 282.43700,194.62000 L 282.43700,188.29100 L 90.189900,209.65200 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g853">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path835"
+                 d="M 90.981000,215.98100 L 287.18400,194.62000 L 309.33600,229.43000 L 71.993600,261.86700 L 90.981000,215.98100 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path836"
+                 d="M 71.993700,261.07600 L 71.202600,268.98700 L 309.33600,236.55100 C 310.12700,236.55100 308.54400,230.22100 308.54400,229.43000 C 308.54400,228.63900 71.993700,263.44900 71.993700,261.07600 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g856">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path838"
+                 d="M 82.278500,274.52500 L 301.42400,242.08900 L 306.17100,250.79100 L 79.905100,284.01900 L 82.278500,274.52500 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path839"
+                 d="M 79.113900,284.81000 L 79.113900,291.93000 L 306.17100,255.53800 L 305.38000,250.00000 L 79.113900,284.81000 z " />
+            </g>
+          </g>
+        </g>
+      </g>
+      <g
+         transform="matrix(0.298665,0.000000,0.000000,0.283273,290.1783,87.09869)"
+         style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+         id="g1647">
+        <g
+           transform="translate(107.0886,1.392441)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g1648">
+          <path
+             style="fill:#b3b2b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+             sodipodi:nodetypes="ccccc"
+             id="path1649"
+             d="M 299.84200,180.38000 L 177.21500,74.367000 L 250.79100,71.993600 L 385.28500,162.18300 C 385.28500,162.18300 353.63900,191.45600 299.84200,180.38000 z " />
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1650">
+            <path
+               style="fill:#b3b2b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1651"
+               d="M 176.42400,74.367000 L 178.00600,238.92400 L 300.63300,364.71500 L 301.42400,181.96200 L 176.42400,74.367000 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1652">
+              <path
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccc"
+                 id="path1653"
+                 d="M 302.21600,181.17100 C 302.21600,181.17100 328.32300,184.33500 348.10200,180.38000 C 375.00000,170.09500 386.07600,163.76600 386.07600,163.76600 L 386.86700,342.56300 C 386.86700,342.56300 371.83500,353.63900 353.64000,360.75900 C 323.57600,367.08800 300.63300,364.71500 300.63300,364.71500 L 302.21600,181.17100 z " />
+              <g
+                 style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="g1654">
+                <path
+                   transform="translate(-1.582260,0.000000)"
+                   style="fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   id="path1655"
+                   d="M 315.66500,205.69600 C 315.66500,205.69600 378.95600,192.24700 378.95600,193.03800 C 378.95600,193.82900 378.16500,218.35400 378.16500,218.35400 C 378.16500,218.35400 316.45600,231.80400 315.66500,231.80400 C 314.87400,231.80400 314.87400,207.27800 315.66500,205.69600 z " />
+                <path
+                   style="fill:#000100;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1656"
+                   d="M 323.57600,246.83500 L 370.25300,237.34200 L 370.25300,241.29800 L 323.57600,251.58200 L 323.57600,246.83500 z " />
+                <path
+                   style="fill:#00b300;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1657"
+                   d="M 360.76000,268.98700 L 372.62700,267.40500 L 372.62700,279.27200 L 360.76000,281.64600 L 360.76000,268.98700 z " />
+                <path
+                   style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1658"
+                   d="M 365.50600,298.25900 L 373.41800,297.46800 L 373.41800,306.96200 L 365.50600,308.54400 L 365.50600,298.25900 z " />
+              </g>
+            </g>
+          </g>
+        </g>
+        <g
+           transform="matrix(0.868723,0.000000,0.000000,0.841809,-27.91207,15.52193)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g1659">
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1660">
+            <path
+               transform="translate(-0.847921,19.50222)"
+               style="font-size:12.000000px;fill:#b3b3b3;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1661"
+               d="M 119.55700,425.38300 L 119.55700,438.10200 L 435.83200,344.83000 L 436.68000,329.56800 L 119.55700,425.38300 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1662">
+              <path
+                 transform="translate(-0.847921,19.50222)"
+                 style="font-size:12.000000px;fill:#cccccc;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1663"
+                 d="M 166.19300,347.37400 L 119.55700,426.23100 L 436.68000,329.56800 L 345.10400,298.19400 L 166.19300,347.37400 z " />
+              <path
+                 transform="matrix(0.708121,0.000000,0.000000,0.825311,71.30738,59.20586)"
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path1664"
+                 d="M 139.05900,335.50300 C 139.05900,335.50300 127.18800,354.15700 132.27500,369.42000 C 136.51500,388.07500 150.08200,392.31400 153.47400,392.31400 C 156.86600,392.31400 377.17700,334.88400 377.17700,334.88400 C 377.17700,334.88400 383.26000,322.78400 386.65200,303.28200 C 379.86900,279.54000 367.15000,276.99600 352.73500,276.99600 C 328.99300,263.43000 353.58400,276.99600 353.58400,276.99600 L 139.05900,335.50300 z " />
+            </g>
+          </g>
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1665">
+            <path
+               style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="cccccccc"
+               id="path1666"
+               d="M 420.57000,16.684400 C 420.57000,17.532300 399.37100,11.596800 377.32500,9.9009300 C 367.15000,10.748900 66.137900,65.863800 63.594200,65.863800 C 67.833800,65.015900 54.267000,65.863800 50.875300,73.495100 C 47.483600,81.126400 47.483600,343.13400 47.483600,343.13400 C 47.483600,343.13400 47.483700,350.76600 52.571200,356.70100 C 60.202500,360.09300 80.552600,360.94100 72.921300,360.94100 L 420.57000,16.684400 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1667">
+              <path
+                 transform="matrix(0.995445,0.000000,0.000000,0.910163,2.817975,-20.11005)"
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path1668"
+                 d="M 71.233200,108.00900 L 418.87300,40.426100 C 423.96100,43.817800 429.04900,41.274100 431.59300,51.449200 C 434.13700,61.624100 430.74500,304.97800 430.74500,304.97800 C 430.74500,304.97800 432.44000,312.60900 426.50500,316.84900 C 420.56900,321.08800 79.669900,416.90400 79.669900,416.90400 C 79.669900,416.90400 69.494600,421.14300 63.559300,412.66400 C 55.080300,410.12100 60.202500,124.37000 60.202500,124.37000 C 60.202500,124.37000 61.027100,110.72000 71.233200,108.00900 z " />
+              <g
+                 style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="g1669">
+                <path
+                   style="fill:url(#linearGradient614);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccccccccc"
+                   id="path1670"
+                   d="M 89.031800,98.084400 L 394.28400,38.730300 C 394.28400,38.730300 401.91500,36.186500 407.85100,45.513700 C 413.78600,54.840800 412.09000,59.080400 412.09000,59.080400 L 412.09000,234.60000 C 411.24200,243.92700 412.93800,240.53500 407.85100,250.71100 C 397.67500,254.10200 105.14200,333.80700 105.14200,333.80700 C 105.14200,333.80700 105.14200,335.50300 94.967300,333.80700 C 84.792200,332.11100 81.400500,316.00100 81.400500,315.15300 C 81.400500,314.30500 78.008800,115.89100 78.008800,115.89100 C 78.008800,115.89100 79.704800,101.47600 89.031800,98.084400 z " />
+                <path
+                   style="fill:#00feb3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1671"
+                   d="M 368.84600,266.82100 L 398.52300,258.34200 L 398.52300,271.90900 C 398.52300,271.90900 368.84600,279.54000 368.84600,280.38800 C 368.84600,281.23600 368.84600,266.82100 368.84600,266.82100 z " />
+              </g>
+            </g>
+          </g>
+        </g>
+        <g
+           transform="matrix(1.060794,0.000000,0.000000,0.913679,-36.36050,196.9337)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g1672">
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1673">
+            <path
+               transform="translate(3.955698,-6.329117)"
+               style="fill:#b2b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1674"
+               d="M 35.601300,306.96200 L 454.11400,242.08800 L 454.11400,266.61400 L 35.601200,332.27900 L 35.601300,306.96200 z " />
+            <path
+               style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1675"
+               d="M 39.557000,300.63300 C 41.930400,296.67700 90.981000,199.36700 90.981000,199.36700 L 371.04400,173.25900 L 458.07000,235.75900 L 39.557000,300.63300 z " />
+          </g>
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1676">
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1677">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1678"
+                 d="M 331.48700,184.33500 C 331.48700,184.33500 332.27900,193.03800 332.27900,193.82900 C 332.27900,194.62000 366.29800,234.17700 366.29800,234.17700 L 424.05100,224.68300 L 423.26000,218.35400 L 422.46800,218.35400 L 331.48700,184.33500 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1679"
+                 d="M 332.27900,184.33600 L 369.46200,180.38000 L 424.05100,218.35400 L 370.25300,225.47500 L 332.27900,184.33600 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1680">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1681"
+                 d="M 297.46800,195.41100 C 297.46800,195.41100 297.46800,203.32300 297.46800,204.11400 C 297.46800,204.90500 318.03800,241.29700 318.82900,241.29700 C 319.62000,241.29700 353.63900,236.55100 353.63900,236.55100 L 352.05700,227.05700" />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1682"
+                 d="M 298.26000,195.41100 C 299.05100,195.41100 322.78500,193.03800 322.78500,193.03800 L 352.84800,227.05700 L 321.99400,231.80400 L 298.26000,195.41100 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1683">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1684"
+                 d="M 90.189900,208.86100 L 98.101300,195.41100 L 272.94300,178.00600 L 282.43700,189.08200 L 90.189900,208.86100 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1685"
+                 d="M 90.189900,209.65200 L 89.398800,215.19000 L 282.43700,194.62000 L 282.43700,188.29100 L 90.189900,209.65200 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1686">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1687"
+                 d="M 90.981000,215.98100 L 287.18400,194.62000 L 309.33600,229.43000 L 71.993600,261.86700 L 90.981000,215.98100 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1688"
+                 d="M 71.993700,261.07600 L 71.202600,268.98700 L 309.33600,236.55100 C 310.12700,236.55100 308.54400,230.22100 308.54400,229.43000 C 308.54400,228.63900 71.993700,263.44900 71.993700,261.07600 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1689">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1690"
+                 d="M 82.278500,274.52500 L 301.42400,242.08900 L 306.17100,250.79100 L 79.905100,284.01900 L 82.278500,274.52500 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1691"
+                 d="M 79.113900,284.81000 L 79.113900,291.93000 L 306.17100,255.53800 L 305.38000,250.00000 L 79.113900,284.81000 z " />
+            </g>
+          </g>
+        </g>
+      </g>
+      <g
+         transform="matrix(0.298665,0.000000,0.000000,0.283273,177.6783,218.3487)"
+         style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+         id="g1692">
+        <g
+           transform="translate(107.0886,1.392441)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g1693">
+          <path
+             style="fill:#b3b2b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+             sodipodi:nodetypes="ccccc"
+             id="path1694"
+             d="M 299.84200,180.38000 L 177.21500,74.367000 L 250.79100,71.993600 L 385.28500,162.18300 C 385.28500,162.18300 353.63900,191.45600 299.84200,180.38000 z " />
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1695">
+            <path
+               style="fill:#b3b2b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1696"
+               d="M 176.42400,74.367000 L 178.00600,238.92400 L 300.63300,364.71500 L 301.42400,181.96200 L 176.42400,74.367000 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1697">
+              <path
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccc"
+                 id="path1698"
+                 d="M 302.21600,181.17100 C 302.21600,181.17100 328.32300,184.33500 348.10200,180.38000 C 375.00000,170.09500 386.07600,163.76600 386.07600,163.76600 L 386.86700,342.56300 C 386.86700,342.56300 371.83500,353.63900 353.64000,360.75900 C 323.57600,367.08800 300.63300,364.71500 300.63300,364.71500 L 302.21600,181.17100 z " />
+              <g
+                 style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="g1699">
+                <path
+                   transform="translate(-1.582260,0.000000)"
+                   style="fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   id="path1700"
+                   d="M 315.66500,205.69600 C 315.66500,205.69600 378.95600,192.24700 378.95600,193.03800 C 378.95600,193.82900 378.16500,218.35400 378.16500,218.35400 C 378.16500,218.35400 316.45600,231.80400 315.66500,231.80400 C 314.87400,231.80400 314.87400,207.27800 315.66500,205.69600 z " />
+                <path
+                   style="fill:#000100;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1701"
+                   d="M 323.57600,246.83500 L 370.25300,237.34200 L 370.25300,241.29800 L 323.57600,251.58200 L 323.57600,246.83500 z " />
+                <path
+                   style="fill:#00b300;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1702"
+                   d="M 360.76000,268.98700 L 372.62700,267.40500 L 372.62700,279.27200 L 360.76000,281.64600 L 360.76000,268.98700 z " />
+                <path
+                   style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1703"
+                   d="M 365.50600,298.25900 L 373.41800,297.46800 L 373.41800,306.96200 L 365.50600,308.54400 L 365.50600,298.25900 z " />
+              </g>
+            </g>
+          </g>
+        </g>
+        <g
+           transform="matrix(0.868723,0.000000,0.000000,0.841809,-27.91207,15.52193)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g1704">
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1705">
+            <path
+               transform="translate(-0.847921,19.50222)"
+               style="font-size:12.000000px;fill:#b3b3b3;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1706"
+               d="M 119.55700,425.38300 L 119.55700,438.10200 L 435.83200,344.83000 L 436.68000,329.56800 L 119.55700,425.38300 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1707">
+              <path
+                 transform="translate(-0.847921,19.50222)"
+                 style="font-size:12.000000px;fill:#cccccc;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1708"
+                 d="M 166.19300,347.37400 L 119.55700,426.23100 L 436.68000,329.56800 L 345.10400,298.19400 L 166.19300,347.37400 z " />
+              <path
+                 transform="matrix(0.708121,0.000000,0.000000,0.825311,71.30738,59.20586)"
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path1709"
+                 d="M 139.05900,335.50300 C 139.05900,335.50300 127.18800,354.15700 132.27500,369.42000 C 136.51500,388.07500 150.08200,392.31400 153.47400,392.31400 C 156.86600,392.31400 377.17700,334.88400 377.17700,334.88400 C 377.17700,334.88400 383.26000,322.78400 386.65200,303.28200 C 379.86900,279.54000 367.15000,276.99600 352.73500,276.99600 C 328.99300,263.43000 353.58400,276.99600 353.58400,276.99600 L 139.05900,335.50300 z " />
+            </g>
+          </g>
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1710">
+            <path
+               style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="cccccccc"
+               id="path1711"
+               d="M 420.57000,16.684400 C 420.57000,17.532300 399.37100,11.596800 377.32500,9.9009300 C 367.15000,10.748900 66.137900,65.863800 63.594200,65.863800 C 67.833800,65.015900 54.267000,65.863800 50.875300,73.495100 C 47.483600,81.126400 47.483600,343.13400 47.483600,343.13400 C 47.483600,343.13400 47.483700,350.76600 52.571200,356.70100 C 60.202500,360.09300 80.552600,360.94100 72.921300,360.94100 L 420.57000,16.684400 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1712">
+              <path
+                 transform="matrix(0.995445,0.000000,0.000000,0.910163,2.817975,-20.11005)"
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path1713"
+                 d="M 71.233200,108.00900 L 418.87300,40.426100 C 423.96100,43.817800 429.04900,41.274100 431.59300,51.449200 C 434.13700,61.624100 430.74500,304.97800 430.74500,304.97800 C 430.74500,304.97800 432.44000,312.60900 426.50500,316.84900 C 420.56900,321.08800 79.669900,416.90400 79.669900,416.90400 C 79.669900,416.90400 69.494600,421.14300 63.559300,412.66400 C 55.080300,410.12100 60.202500,124.37000 60.202500,124.37000 C 60.202500,124.37000 61.027100,110.72000 71.233200,108.00900 z " />
+              <g
+                 style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="g1714">
+                <path
+                   style="fill:url(#linearGradient614);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccccccccc"
+                   id="path1715"
+                   d="M 89.031800,98.084400 L 394.28400,38.730300 C 394.28400,38.730300 401.91500,36.186500 407.85100,45.513700 C 413.78600,54.840800 412.09000,59.080400 412.09000,59.080400 L 412.09000,234.60000 C 411.24200,243.92700 412.93800,240.53500 407.85100,250.71100 C 397.67500,254.10200 105.14200,333.80700 105.14200,333.80700 C 105.14200,333.80700 105.14200,335.50300 94.967300,333.80700 C 84.792200,332.11100 81.400500,316.00100 81.400500,315.15300 C 81.400500,314.30500 78.008800,115.89100 78.008800,115.89100 C 78.008800,115.89100 79.704800,101.47600 89.031800,98.084400 z " />
+                <path
+                   style="fill:#00feb3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1716"
+                   d="M 368.84600,266.82100 L 398.52300,258.34200 L 398.52300,271.90900 C 398.52300,271.90900 368.84600,279.54000 368.84600,280.38800 C 368.84600,281.23600 368.84600,266.82100 368.84600,266.82100 z " />
+              </g>
+            </g>
+          </g>
+        </g>
+        <g
+           transform="matrix(1.060794,0.000000,0.000000,0.913679,-36.36050,196.9337)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g1717">
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1718">
+            <path
+               transform="translate(3.955698,-6.329117)"
+               style="fill:#b2b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1719"
+               d="M 35.601300,306.96200 L 454.11400,242.08800 L 454.11400,266.61400 L 35.601200,332.27900 L 35.601300,306.96200 z " />
+            <path
+               style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1720"
+               d="M 39.557000,300.63300 C 41.930400,296.67700 90.981000,199.36700 90.981000,199.36700 L 371.04400,173.25900 L 458.07000,235.75900 L 39.557000,300.63300 z " />
+          </g>
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1721">
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1722">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1723"
+                 d="M 331.48700,184.33500 C 331.48700,184.33500 332.27900,193.03800 332.27900,193.82900 C 332.27900,194.62000 366.29800,234.17700 366.29800,234.17700 L 424.05100,224.68300 L 423.26000,218.35400 L 422.46800,218.35400 L 331.48700,184.33500 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1724"
+                 d="M 332.27900,184.33600 L 369.46200,180.38000 L 424.05100,218.35400 L 370.25300,225.47500 L 332.27900,184.33600 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1725">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1726"
+                 d="M 297.46800,195.41100 C 297.46800,195.41100 297.46800,203.32300 297.46800,204.11400 C 297.46800,204.90500 318.03800,241.29700 318.82900,241.29700 C 319.62000,241.29700 353.63900,236.55100 353.63900,236.55100 L 352.05700,227.05700" />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1727"
+                 d="M 298.26000,195.41100 C 299.05100,195.41100 322.78500,193.03800 322.78500,193.03800 L 352.84800,227.05700 L 321.99400,231.80400 L 298.26000,195.41100 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1728">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1729"
+                 d="M 90.189900,208.86100 L 98.101300,195.41100 L 272.94300,178.00600 L 282.43700,189.08200 L 90.189900,208.86100 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1730"
+                 d="M 90.189900,209.65200 L 89.398800,215.19000 L 282.43700,194.62000 L 282.43700,188.29100 L 90.189900,209.65200 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1731">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1732"
+                 d="M 90.981000,215.98100 L 287.18400,194.62000 L 309.33600,229.43000 L 71.993600,261.86700 L 90.981000,215.98100 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1733"
+                 d="M 71.993700,261.07600 L 71.202600,268.98700 L 309.33600,236.55100 C 310.12700,236.55100 308.54400,230.22100 308.54400,229.43000 C 308.54400,228.63900 71.993700,263.44900 71.993700,261.07600 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1734">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1735"
+                 d="M 82.278500,274.52500 L 301.42400,242.08900 L 306.17100,250.79100 L 79.905100,284.01900 L 82.278500,274.52500 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1736"
+                 d="M 79.113900,284.81000 L 79.113900,291.93000 L 306.17100,255.53800 L 305.38000,250.00000 L 79.113900,284.81000 z " />
+            </g>
+          </g>
+        </g>
+      </g>
+    </g>
+    <text
+       xml:space="preserve"
+       style="font-size:48.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="203.45128"
+       y="335.76468"
+       id="text4057"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan4059"
+         x="203.45128"
+         y="335.76468">Internet</tspan></text>
+    <g
+       id="g4331"
+       transform="translate(0.000000,-733.3333)">
+      <path
+         style="fill:url(#linearGradient4327);fill-opacity:1.0000000;fill-rule:evenodd;stroke:url(#linearGradient4329);stroke-width:0.28469722pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.32704404"
+         id="path8486"
+         d="M 378.64586,1186.1097 L 371.10769,1219.6950 C 369.90235,1225.0652 376.38196,1233.1291 383.87233,1233.1291 L 478.55177,1233.1291 C 486.08041,1233.1291 492.65005,1225.1017 491.51743,1219.6950 L 484.48180,1186.1097 C 483.62900,1182.0388 475.87817,1179.3927 470.20953,1179.3927 L 393.01864,1179.3927 C 387.32185,1179.3927 379.56258,1182.0254 378.64586,1186.1097 z " />
+      <path
+         style="fill:url(#linearGradient4324);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.67866912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+         id="path8477"
+         d="M 381.13123,1184.9851 L 373.94885,1208.4599 C 372.80039,1212.2135 378.97418,1217.8498 386.11101,1217.8498 L 476.32176,1217.8498 C 483.49506,1217.8498 489.75462,1212.2389 488.67546,1208.4599 L 481.97190,1184.9851 C 481.15935,1182.1396 473.77434,1180.2901 468.37325,1180.2901 L 394.82564,1180.2901 C 389.39773,1180.2901 382.00468,1182.1303 381.13123,1184.9851 z " />
+      <path
+         style="fill:url(#linearGradient4321);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.67866912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+         id="path8463"
+         d="M 379.88855,1184.6362 L 372.52827,1208.6924 C 371.35136,1212.5390 377.67806,1218.3149 384.99167,1218.3149 L 477.43677,1218.3149 C 484.78773,1218.3149 491.20233,1212.5651 490.09645,1208.6924 L 483.22685,1184.6362 C 482.39417,1181.7203 474.82626,1179.8249 469.29139,1179.8249 L 393.92214,1179.8249 C 388.35979,1179.8249 380.78363,1181.7107 379.88855,1184.6362 z " />
+      <path
+         style="fill:url(#linearGradient4318);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+         id="path1717"
+         d="M 381.83356,1183.5926 L 374.64393,1207.4394 C 373.49432,1211.2525 379.67433,1216.9781 386.81838,1216.9781 L 477.12019,1216.9781 C 484.30073,1216.9781 490.56663,1211.2784 489.48637,1207.4394 L 482.77605,1183.5926 C 481.96268,1180.7021 474.57021,1178.8232 469.16366,1178.8232 L 395.54180,1178.8232 C 390.10841,1178.8232 382.70789,1180.6926 381.83356,1183.5926 z " />
+      <path
+         style="fill:url(#linearGradient4315);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+         id="path8462"
+         d="M 383.94458,1185.6550 L 377.05716,1208.0287 C 375.95586,1211.6062 381.87611,1216.9781 388.71987,1216.9781 L 475.22599,1216.9781 C 482.10471,1216.9781 488.10722,1211.6305 487.07238,1208.0287 L 480.64411,1185.6550 C 479.86493,1182.9431 472.78320,1181.1803 467.60391,1181.1803 L 397.07662,1181.1803 C 391.87161,1181.1803 384.78216,1182.9342 383.94458,1185.6550 z " />
+      <g
+         transform="matrix(0.470219,0.000000,0.000000,0.470219,360.9633,1177.826)"
+         id="g10119">
+        <path
+           style="fill:#82ce7c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path7267"
+           d="M 99.661870,105.15823 L 99.184006,109.04052 C 99.107595,109.66129 99.518355,110.59343 99.993190,110.59343 L 105.99517,110.59343 C 106.47243,110.59343 106.88890,109.66550 106.81710,109.04052 L 106.37110,105.15823 C 106.31703,104.68765 105.82569,104.38177 105.46634,104.38177 L 100.57300,104.38177 C 100.21187,104.38177 99.719983,104.68610 99.661870,105.15823 z " />
+        <path
+           style="fill:#82ce7c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path7269"
+           d="M 99.661870,90.183030 L 99.184010,94.065320 C 99.107600,94.686090 99.518350,95.618230 99.993190,95.618230 L 105.99517,95.618230 C 106.47243,95.618230 106.88890,94.690300 106.81710,94.065320 L 106.37110,90.183030 C 106.31703,89.712450 105.82569,89.406570 105.46634,89.406570 L 100.57300,89.406570 C 100.21187,89.406570 99.719980,89.710900 99.661870,90.183030 z " />
+        <g
+           transform="translate(-3.625000,-0.500000)"
+           id="g10018">
+          <path
+             style="fill:url(#linearGradient4253);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path7283"
+             d="M 202.81540,100.25878 L 201.78690,107.99783 C 201.62244,109.23528 202.50651,111.09343 203.52849,111.09343 L 216.44646,111.09343 C 217.47366,111.09343 218.37001,109.24368 218.21548,107.99783 L 217.25555,100.25878 C 217.13919,99.320720 216.08168,98.710970 215.30825,98.710970 L 204.77640,98.710970 C 203.99914,98.710970 202.94047,99.317630 202.81540,100.25878 z " />
+          <path
+             style="fill:#82ce7c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path7285"
+             d="M 206.66187,90.683030 L 206.18400,94.565310 C 206.10759,95.186080 206.51835,96.118220 206.99319,96.118220 L 212.99517,96.118220 C 213.47243,96.118220 213.88890,95.190290 213.81710,94.565310 L 213.37109,90.683030 C 213.31703,90.212450 212.82569,89.906570 212.46633,89.906570 L 207.57300,89.906570 C 207.21186,89.906570 206.71998,90.210890 206.66187,90.683030 z " />
+        </g>
+        <g
+           transform="translate(0.000000,-0.500000)"
+           id="g10014">
+          <path
+             style="fill:url(#linearGradient4255);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path7289"
+             d="M 224.81540,100.25878 L 223.78690,107.99783 C 223.62244,109.23528 224.50651,111.09343 225.52849,111.09343 L 238.44646,111.09343 C 239.47366,111.09343 240.37001,109.24368 240.21548,107.99783 L 239.25555,100.25878 C 239.13919,99.320720 238.08168,98.710970 237.30825,98.710970 L 226.77640,98.710970 C 225.99914,98.710970 224.94047,99.317630 224.81540,100.25878 z " />
+          <path
+             style="fill:#ce7c85;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path7291"
+             d="M 228.66187,90.683030 L 228.18400,94.565310 C 228.10759,95.186080 228.51835,96.118220 228.99319,96.118220 L 234.99517,96.118220 C 235.47243,96.118220 235.88890,95.190290 235.81710,94.565310 L 235.37109,90.683030 C 235.31703,90.212450 234.82569,89.906570 234.46633,89.906570 L 229.57300,89.906570 C 229.21186,89.906570 228.71998,90.210890 228.66187,90.683030 z " />
+        </g>
+        <text
+           y="110.48015"
+           xml:space="preserve"
+           x="58.5"
+           style="font-size:8.0000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+           sodipodi:linespacing="100.00000%"
+           id="text7299"><tspan
+             y="110.48015"
+             x="58.500000"
+             sodipodi:role="line"
+             id="tspan7301">Collision</tspan></text>
+        <text
+           y="95.238602"
+           xml:space="preserve"
+           x="66.5"
+           style="font-size:8.0000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+           sodipodi:linespacing="100.00000%"
+           id="text7303"><tspan
+             y="95.238602"
+             x="66.500000"
+             sodipodi:role="line"
+             id="tspan7305">Power</tspan></text>
+        <g
+           transform="translate(-29.25000,-0.500000)"
+           id="g10022">
+          <path
+             style="fill:url(#linearGradient4257);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path10024"
+             d="M 202.81540,100.25878 L 201.78690,107.99783 C 201.62244,109.23528 202.50651,111.09343 203.52849,111.09343 L 216.44646,111.09343 C 217.47366,111.09343 218.37001,109.24368 218.21548,107.99783 L 217.25555,100.25878 C 217.13919,99.320720 216.08168,98.710970 215.30825,98.710970 L 204.77640,98.710970 C 203.99914,98.710970 202.94047,99.317630 202.81540,100.25878 z " />
+          <path
+             style="fill:#82ce7c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path10026"
+             d="M 206.66187,90.683030 L 206.18400,94.565310 C 206.10759,95.186080 206.51835,96.118220 206.99319,96.118220 L 212.99517,96.118220 C 213.47243,96.118220 213.88890,95.190290 213.81710,94.565310 L 213.37109,90.683030 C 213.31703,90.212450 212.82569,89.906570 212.46633,89.906570 L 207.57300,89.906570 C 207.21186,89.906570 206.71998,90.210890 206.66187,90.683030 z " />
+        </g>
+        <g
+           transform="translate(-54.87500,-0.500000)"
+           id="g10030">
+          <path
+             style="fill:url(#linearGradient4259);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path10032"
+             d="M 202.81540,100.25878 L 201.78690,107.99783 C 201.62244,109.23528 202.50651,111.09343 203.52849,111.09343 L 216.44646,111.09343 C 217.47366,111.09343 218.37001,109.24368 218.21548,107.99783 L 217.25555,100.25878 C 217.13919,99.320720 216.08168,98.710970 215.30825,98.710970 L 204.77640,98.710970 C 203.99914,98.710970 202.94047,99.317630 202.81540,100.25878 z " />
+          <path
+             style="fill:#82ce7c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path10034"
+             d="M 206.66187,90.683030 L 206.18400,94.565310 C 206.10759,95.186080 206.51835,96.118220 206.99319,96.118220 L 212.99517,96.118220 C 213.47243,96.118220 213.88890,95.190290 213.81710,94.565310 L 213.37109,90.683030 C 213.31703,90.212450 212.82569,89.906570 212.46633,89.906570 L 207.57300,89.906570 C 207.21186,89.906570 206.71998,90.210890 206.66187,90.683030 z " />
+        </g>
+        <g
+           transform="translate(-80.50000,-0.500000)"
+           id="g10038">
+          <path
+             style="fill:url(#linearGradient4261);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path10040"
+             d="M 202.81540,100.25878 L 201.78690,107.99783 C 201.62244,109.23528 202.50651,111.09343 203.52849,111.09343 L 216.44646,111.09343 C 217.47366,111.09343 218.37001,109.24368 218.21548,107.99783 L 217.25555,100.25878 C 217.13919,99.320720 216.08168,98.710970 215.30825,98.710970 L 204.77640,98.710970 C 203.99914,98.710970 202.94047,99.317630 202.81540,100.25878 z " />
+          <path
+             style="fill:#82ce7c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path10042"
+             d="M 206.66187,90.683030 L 206.18400,94.565310 C 206.10759,95.186080 206.51835,96.118220 206.99319,96.118220 L 212.99517,96.118220 C 213.47243,96.118220 213.88890,95.190290 213.81710,94.565310 L 213.37109,90.683030 C 213.31703,90.212450 212.82569,89.906570 212.46633,89.906570 L 207.57300,89.906570 C 207.21186,89.906570 206.71998,90.210890 206.66187,90.683030 z " />
+        </g>
+      </g>
+    </g>
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="236.90706"
+       y="487.60892"
+       id="text4202"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan4204"
+         x="236.90706"
+         y="487.60892">ADSL modem</tspan></text>
+    <path
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       d="M 442.41155,497.96336 L 442.41155,826.68736"
+       id="path11842"
+       sodipodi:nodetypes="cc" />
+    <text
+       y="691.18127"
+       x="891.64758"
+       style="font-size:30.101904px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       space="preserve"
+       id="text20002">
+      <tspan
+         y="691.18127"
+         x="891.64758"
+         id="tspan20004" />
+    </text>
+    <text
+       id="text4699"
+       space="preserve"
+       style="font-size:30.101904px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="891.64758"
+       y="1019.8821">
+      <tspan
+         id="tspan4700"
+         x="891.64758"
+         y="1019.8821" />
+    </text>
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="1334.8218"
+       y="729.07526"
+       id="text14622"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan14624"
+         x="1334.8218"
+         y="729.07526">Cafe hosts</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="1408.9828"
+       y="449.17459"
+       id="text14593"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan14595"
+         x="1408.9828"
+         y="449.17459">802.11g - WiFi</tspan><tspan
+         sodipodi:role="line"
+         x="1408.9828"
+         y="489.17459"
+         id="tspan14597">access point</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="359.83081"
+       y="951.9726"
+       id="text47692"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         x="359.83081"
+         y="951.97260"
+         id="tspan47696">Cafe management:</tspan><tspan
+         sodipodi:role="line"
+         x="359.83081"
+         y="991.97260"
+         id="tspan49493">Tickets pre-printing</tspan></text>
+    <g
+       id="g47843"
+       transform="translate(-95.33660,53.82216)">
+      <g
+         id="g45450"
+         transform="matrix(0.252775,0.000000,0.000000,0.259878,464.0203,689.3932)">
+        <path
+           d="M 105.37590,499.56408 L 62.264953,366.13485 L 227.47681,309.43459 L 270.85338,311.77757 L 300.64063,316.93214 L 308.40381,357.70010 L 522.47417,385.47181 L 536.92211,397.77981 L 536.84352,446.16980 L 527.39300,516.58386 L 508.10193,601.99303 L 487.40506,614.76963 L 446.08992,604.11636 L 434.29641,618.76735 L 414.45526,631.47805 L 394.61412,635.28540 L 375.71016,635.34398 L 355.40042,629.31079 L 337.90226,619.99742 L 324.62147,607.40386 L 322.11843,596.68470 L 338.51933,564.69909 L 276.66449,544.89700 L 195.00328,609.09483 L 128.33717,578.63600 L 105.37590,499.56408 z "
+           id="path45452"
+           style="fill:#fcfcfd" />
+        <path
+           d="M 366.29132,636.36125 C 352.72087,633.06944 340.57499,627.11098 331.52240,619.30449 C 321.49709,610.65919 319.36015,605.75294 320.18807,593.28186 C 320.74157,584.94442 321.75044,582.24288 326.85569,575.42709 L 332.87114,567.39619 L 328.41078,565.74038 C 325.95759,564.82968 313.45556,560.35628 300.62848,555.79947 L 277.30655,547.51438 L 266.55634,556.32474 C 260.64373,561.17044 242.98250,575.76199 227.30919,588.75040 C 206.43848,606.04587 197.69703,612.36569 194.64503,612.36569 C 192.35306,612.36569 176.05439,605.35475 158.42576,596.78582 L 126.37371,581.20596 L 120.69086,564.65355 C 108.83895,530.13250 58.362719,371.97699 58.362719,369.36282 C 58.362719,367.85828 59.634155,365.54980 61.188121,364.23285 C 62.742094,362.91591 99.933978,349.91628 143.83676,335.34480 L 223.65998,308.85118 L 238.28588,308.97620 C 264.52814,309.20052 302.16884,312.56206 303.61779,314.81071 C 304.34668,315.94187 305.42109,322.55480 306.00540,329.50611 C 306.58970,336.45742 307.48989,345.31709 308.00582,349.19427 L 308.94385,356.24368 L 339.05033,359.73255 C 457.39954,373.44735 512.55345,380.39695 520.09401,382.54477 C 530.59220,385.53500 538.45599,392.52463 540.92726,401.06217 C 544.68097,414.03019 542.77569,437.45698 532.87293,500.09629 C 526.43807,540.79953 516.35838,589.32948 512.03968,600.40059 C 510.14245,605.26419 506.40469,611.33967 503.73353,613.90167 C 496.83619,620.51720 486.41739,620.30905 463.97887,613.10745 C 454.63522,610.10864 446.85916,607.84389 446.69873,608.07469 C 446.53830,608.30548 444.78564,611.08097 442.80394,614.24242 C 438.22301,621.55047 429.30582,628.32671 417.37635,633.56505 C 409.59749,636.98079 405.24874,637.76098 391.80905,638.15188 C 381.37865,638.45525 372.29649,637.81793 366.29132,636.36125 z M 413.21952,630.22440 C 424.36324,625.78369 420.96774,624.07628 398.89564,623.02177 C 382.34967,622.23125 376.16233,621.19983 363.50604,617.12232 C 355.07020,614.40453 343.69090,609.78351 338.21873,606.85338 C 325.88851,600.25106 323.90702,600.10190 327.09566,606.01608 C 332.38808,615.83230 350.09523,626.84235 368.34958,631.66718 C 380.05561,634.76120 403.74632,633.99944 413.21952,630.22440 z M 488.37317,606.26551 C 491.16184,605.24858 493.32660,602.33675 495.56838,596.58711 C 503.16902,577.09335 522.80309,466.40434 528.32024,411.94530 C 530.46987,390.72652 530.61974,391.03185 516.07769,387.00197 C 507.11354,384.51782 286.42663,358.41386 274.34130,358.40816 C 260.94474,358.40186 261.10775,357.57651 262.31599,419.28783 C 262.88602,448.40190 264.11893,484.06886 265.05580,498.54774 C 266.94699,527.77537 268.77440,533.68963 277.38084,538.43688 C 282.85359,541.45561 307.69873,550.31451 396.60359,580.94760 C 475.12701,608.00364 479.95454,609.33548 488.37317,606.26551 z M 453.03868,584.46710 C 436.14179,580.10863 299.89191,535.66353 291.54096,531.78610 C 287.58048,529.94720 283.44423,526.94263 282.34930,525.10928 C 279.78073,520.80845 279.46377,390.55605 282.00985,385.61297 C 283.06108,383.57209 285.54648,382.23123 288.84895,381.92336 C 293.56837,381.48339 341.63001,388.30586 434.54469,402.60525 C 487.04801,410.68539 489.43820,412.04043 489.43820,433.72527 C 489.43820,460.63141 475.60052,574.29202 471.39041,581.96697 C 469.64024,585.15749 466.88437,587.61609 465.22048,587.47135 C 464.77649,587.43271 459.29467,586.08082 453.03868,584.46710 z M 164.30963,528.58534 C 161.24419,517.20463 159.12602,507.28803 159.60256,506.54846 C 161.50366,503.59814 167.32030,512.22986 171.63293,524.40118 C 177.87051,542.00515 176.33108,534.58771 161.44649,475.31960 C 154.38794,447.21353 146.32261,414.46184 143.52356,402.53806 C 140.72449,390.61427 138.39989,380.77011 138.35778,380.66213 C 138.04295,379.85488 65.679566,367.96103 64.681746,368.55252 C 63.216388,369.42116 64.998726,375.70811 76.511611,410.28077 C 81.049532,423.90795 85.041109,433.88852 85.381767,432.45978 C 86.150142,429.23727 91.779172,429.83083 112.44897,435.31395 C 134.17943,441.07844 140.20626,444.01884 143.38163,450.40558 C 145.62829,454.92436 145.76286,456.59850 144.15199,459.98950 C 142.35799,463.76602 141.65014,464.01743 135.39715,463.09894 C 112.34161,459.71238 107.69180,460.18210 114.06349,465.25406 C 115.66677,466.53029 116.48526,469.99624 116.48526,475.50920 C 116.48526,483.78853 116.51413,483.83658 121.48843,483.83658 C 137.98993,483.83658 154.83897,504.92057 165.11851,538.43294 C 170.91591,557.33306 170.41705,551.25964 164.30963,528.58534 z M 105.77740,421.97958 C 95.892151,419.54857 85.975808,416.41051 83.741089,415.00609 C 78.023163,411.41265 75.289306,404.60174 77.776007,400.14515 C 79.558272,396.95104 80.490102,396.76508 90.423693,397.62117 C 96.321719,398.12945 107.08535,400.32463 114.34287,402.49934 C 129.68457,407.09647 135.85944,412.47453 135.85944,421.23940 C 135.85944,426.34525 135.63647,426.53787 129.80501,426.47004 C 126.47507,426.43131 115.66265,424.41060 105.77740,421.97958 z M 127.78686,419.47023 C 127.78686,413.86287 119.40860,410.05620 97.409160,405.66814 C 83.175277,402.82901 84.194958,402.84970 84.194958,405.39997 C 84.194958,407.94253 92.091628,411.40983 109.21994,416.38801 C 122.21566,420.16511 127.78686,421.08995 127.78686,419.47023 z M 131.01590,412.60359 C 131.01590,411.75189 130.24648,411.05504 129.30610,411.05504 C 128.36571,411.05504 128.04531,411.75189 128.59412,412.60359 C 129.87272,414.58786 131.01590,414.58786 131.01590,412.60359 z M 154.29014,532.93532 C 152.88842,528.98960 148.84334,522.77404 145.30107,519.12296 C 138.50045,512.11345 138.57547,513.45037 145.50138,522.69275 C 147.79396,525.75211 151.03526,531.15976 152.70429,534.70975 C 156.64607,543.09388 157.54260,542.09074 154.29014,532.93532 z M 135.85944,452.14592 C 135.85944,448.97728 131.39000,446.99728 112.62504,441.85288 C 93.828797,436.69988 92.283499,436.51071 95.691941,439.77987 C 97.767657,441.77077 130.69672,454.07326 134.64855,454.33428 C 135.31454,454.37827 135.85944,453.39350 135.85944,452.14592 z "
+           id="path45454"
+           style="fill:#d2d2d2" />
+        <path
+           d="M 375.61490,637.61072 C 367.25780,636.54760 353.45472,632.37189 345.47131,628.49169 C 318.82423,615.54035 312.33815,593.70859 328.93647,572.83628 C 331.32571,569.83183 332.99760,567.17601 332.65177,566.93449 C 332.30594,566.69296 319.74051,562.19873 304.72856,556.94735 L 277.43413,547.39934 L 264.36569,557.97671 C 257.17806,563.79426 239.34337,578.41169 224.73307,590.45988 C 210.12278,602.50808 196.77418,612.36569 195.06953,612.36569 C 192.12448,612.36569 142.33069,589.39109 131.59715,583.07986 C 125.55362,579.52632 125.18550,578.51388 89.037432,466.02833 C 75.626143,424.29509 63.601162,387.06399 62.315254,383.29254 C 59.051576,373.72050 59.262211,365.06993 62.802641,363.27640 C 64.356607,362.48918 101.90268,349.79098 146.23836,335.05818 L 226.84869,308.27127 L 263.85944,310.54276 C 295.39558,312.47826 301.17349,313.21212 302.92069,315.50392 C 304.04847,316.98323 305.45178,323.93104 306.03918,330.94349 C 306.62655,337.95594 307.51621,346.57745 308.01621,350.10239 L 308.92528,356.51138 L 323.70318,358.23818 C 459.45631,374.10103 511.25673,380.58259 519.06058,382.68238 C 536.46445,387.36529 542.69054,396.69348 542.70819,418.11224 C 542.73105,445.85080 522.85971,567.16062 513.56527,596.02292 C 511.32719,602.97287 508.36053,608.12455 504.15386,612.36598 C 498.69693,617.86801 497.16797,618.55986 490.46560,618.55986 C 486.20846,618.55986 475.08560,616.13052 464.94151,612.98515 C 448.05457,607.74904 446.86410,607.57918 445.34159,610.18861 C 442.14449,615.66808 430.57189,626.59009 424.12137,630.21589 C 412.34920,636.83293 392.85843,639.80431 375.61490,637.61072 z M 415.17052,629.19693 C 420.05442,627.01912 426.48997,623.03661 429.47173,620.34691 C 433.96116,616.29722 434.70739,614.72505 433.81269,611.20117 C 432.23713,604.99574 426.98334,600.88671 415.52701,596.89980 L 405.38917,593.37175 L 400.04217,599.30456 L 394.69517,605.23737 L 377.47158,598.73600 C 367.99859,595.16024 359.68944,592.23462 359.00679,592.23462 C 356.04355,592.23462 352.20443,585.55107 352.20443,580.39237 L 352.20443,574.77967 L 344.91130,575.73847 C 330.29494,577.65999 323.83647,584.37477 324.18674,597.28553 C 324.52301,609.68139 340.19579,623.34159 362.03961,630.27764 C 378.67991,635.56142 401.95958,635.08789 415.17052,629.19693 z M 494.37117,612.31979 C 496.07958,611.44283 498.53395,608.76558 499.82534,606.37035 C 506.01144,594.89657 532.22212,439.78743 533.43935,407.44988 C 533.82007,397.33555 533.61640,396.68664 528.75032,392.51064 C 525.31498,389.56248 519.97203,387.33976 512.29485,385.66495 C 501.25604,383.25683 281.66597,356.86535 272.61619,356.85913 C 269.90068,356.85726 266.42423,358.46609 263.88868,360.89803 L 259.67449,364.94004 L 260.70834,427.87253 C 261.85957,497.94787 263.67230,526.39729 267.43025,533.36741 C 270.60427,539.25452 273.96795,540.86341 310.18378,553.81708 C 355.42458,569.99881 475.41301,611.90825 479.00929,612.78430 C 484.62646,614.15266 491.18698,613.95427 494.37117,612.31979 z M 453.11162,581.87290 C 451.33565,581.44275 414.78037,569.95953 371.87767,556.35467 C 311.52006,537.21467 292.75097,530.65718 288.91430,527.36919 C 284.02873,523.18232 283.93648,522.82553 282.63670,503.09110 C 281.01874,478.52586 280.81217,427.25128 282.23570,403.55469 C 283.18806,387.70132 283.62324,385.84358 286.69953,384.49920 C 290.30113,382.92526 317.94753,386.73627 412.50776,401.84169 C 479.33287,412.51661 482.53589,413.38915 486.22089,421.92199 C 489.97659,430.61855 485.72516,481.36297 475.67141,547.83917 C 470.95577,579.01935 469.74467,582.07753 461.97998,582.41204 C 458.87834,582.54567 454.88758,582.30305 453.11162,581.87290 z M 195.59649,607.04999 C 195.59649,606.68144 192.71401,595.00929 189.19098,581.11188 C 174.83044,524.46344 145.47821,407.50696 143.01570,397.12254 C 141.56621,391.01001 140.71539,384.32739 141.12499,382.27225 C 141.72075,379.28307 141.18787,378.52932 138.46095,378.50407 C 136.58613,378.48671 119.62499,375.82554 100.76953,372.59035 C 81.914071,369.35517 65.649031,367.20486 64.624986,367.81189 C 63.316822,368.58735 69.837554,390.95520 86.550690,443.02292 C 122.48756,554.97984 127.82104,571.02692 130.34246,574.78128 C 131.61756,576.67988 134.93291,579.36022 137.70990,580.73757 L 142.75899,583.24187 L 139.49869,578.83412 C 134.19618,571.66540 126.31876,553.82287 121.25497,537.51164 C 115.45177,518.81869 113.08062,491.11169 116.87466,486.32769 C 123.16752,478.39287 142.23396,490.98520 152.47321,509.83858 C 160.93766,525.42403 177.04003,575.10787 178.14838,589.05925 C 178.43095,592.61611 177.68290,594.80143 175.79098,595.94605 C 173.42380,597.37822 174.48924,598.34799 183.09719,602.59625 C 192.95571,607.46170 195.59649,608.40265 195.59649,607.04999 z M 122.13606,456.13537 C 114.14421,453.77178 105.00292,450.75996 101.82207,449.44240 C 94.843471,446.55176 88.718299,439.52026 89.370334,435.14823 C 89.769058,432.47470 90.887691,432.01023 96.303821,432.26930 C 105.44664,432.70666 139.55763,443.82821 140.47702,446.67154 C 141.12491,448.67527 140.85397,448.69812 138.50475,446.83801 C 137.00691,445.65201 135.37347,445.07292 134.87489,445.55114 C 133.90626,446.48019 138.81949,449.42235 141.51024,449.52453 C 143.40732,449.59659 145.31981,455.87763 144.29573,458.67276 C 143.25866,461.50336 138.40883,460.94803 122.13606,456.13537 z M 137.47396,454.58581 C 137.47396,449.32795 127.31729,444.55928 104.00153,438.87014 C 95.069751,436.69074 92.862068,437.24289 94.467156,441.25477 C 95.627191,444.15426 103.05994,447.38534 119.71429,452.22993 C 132.98679,456.09078 137.47396,456.68602 137.47396,454.58581 z M 114.87074,422.53192 C 93.917741,417.20818 88.983280,415.45616 84.302330,411.67833 C 78.723390,407.17579 77.409755,399.28413 81.960407,397.60925 C 87.372970,395.61712 122.11578,403.86502 128.61709,408.68548 C 131.21023,410.60820 131.28300,410.88222 128.99775,410.11889 C 127.44378,409.59983 126.17235,409.86123 126.17235,410.69976 C 126.17235,413.04046 130.66998,416.08851 132.51235,414.99638 C 134.43873,413.85447 136.64802,420.96678 135.10889,423.35537 C 133.67553,425.57984 125.56835,425.24997 114.87074,422.53192 z M 127.76214,419.18490 C 127.70579,413.00799 124.74292,411.50369 102.77863,406.50033 C 86.390762,402.76725 82.580445,402.55878 82.580445,405.39513 C 82.580445,410.30151 93.378777,414.99285 115.05315,419.50291 C 128.46173,422.29298 127.79065,422.30978 127.76214,419.18490 z M 165.95209,577.52167 C 167.05374,574.76812 163.10613,558.29479 156.62256,538.58964 C 152.92168,527.34173 150.61446,523.09826 145.39500,517.93974 C 133.74255,506.42330 119.71429,503.73579 119.71429,513.01985 C 119.71429,519.24531 128.78134,549.35865 133.59338,559.11481 C 137.88213,567.81005 142.40495,571.73471 153.90545,576.74053 C 162.34514,580.41407 164.73294,580.56889 165.95209,577.52167 z "
+           id="path45456"
+           style="fill:#aaaaaa" />
+        <path
+           d="M 369.50001,636.30956 C 348.13040,632.23328 328.67613,620.65425 322.97752,608.61973 C 317.23911,596.50120 319.95545,582.44475 329.94970,572.54023 C 333.70019,568.82342 334.39743,567.35300 332.69328,566.75424 C 331.43664,566.31272 318.55510,561.76095 304.06765,556.63917 C 289.58019,551.51741 277.46249,547.32686 277.13942,547.32686 C 276.81636,547.32686 258.90856,561.96060 237.34433,579.84627 C 215.78009,597.73195 196.80150,612.36569 195.16968,612.36569 C 190.46539,612.36569 129.22875,582.50623 126.89005,579.07200 C 125.73003,577.36861 114.84873,545.31376 102.70937,507.83901 C 55.594030,362.39181 56.693156,366.37345 62.802641,363.27462 C 64.356607,362.48643 101.87814,349.81187 146.18382,335.10895 L 226.73961,308.37637 L 263.71431,310.69837 C 286.67927,312.14056 301.40445,313.70655 302.57717,314.83135 C 303.61564,315.82740 305.34556,325.40743 306.42143,336.12030 C 307.49729,346.83319 308.65912,355.86836 309.00331,356.19847 C 309.34748,356.52858 342.63918,360.64272 382.98485,365.34100 C 517.11297,380.96031 522.58595,381.79656 531.78026,388.07596 C 542.94833,395.70337 544.79659,410.91340 539.55915,452.09144 C 535.77447,481.84750 525.60424,542.72138 520.15543,568.23220 C 514.39716,595.19186 510.42415,606.04388 503.90627,612.61560 C 498.71054,617.85430 497.11516,618.55986 490.46560,618.55986 C 486.20846,618.55986 475.08560,616.13052 464.94151,612.98515 C 447.87216,607.69247 446.87850,607.55450 445.30111,610.25799 C 441.44234,616.87148 429.18680,627.58746 421.26944,631.27078 C 405.27160,638.71329 389.92960,640.20655 369.50001,636.30956 z M 403.00521,633.22006 C 408.23120,631.91448 416.08900,628.97638 420.46700,626.69094 C 428.31467,622.59424 441.00275,610.48409 441.00275,607.09060 C 441.00275,605.53415 404.03030,591.19117 403.34297,592.48098 C 399.76121,599.20238 397.08084,602.38370 394.70087,602.73820 C 393.08342,602.97913 384.13147,600.41771 374.80764,597.04616 C 356.79258,590.53181 352.57500,586.95420 352.32244,577.97275 C 352.22287,574.43219 351.16338,573.47726 345.54258,571.86203 C 338.97257,569.97405 338.80900,570.02272 333.67818,575.39265 C 325.75051,583.68974 322.44841,593.30032 324.73130,601.43192 C 328.56945,615.10329 349.07620,628.70570 372.61184,633.19174 C 387.42211,636.01465 391.80259,636.01874 403.00521,633.22006 z M 497.02221,612.43220 C 500.91722,610.15430 502.81151,607.39974 504.73885,601.21105 C 511.87423,578.29934 536.25914,430.61214 536.25914,410.30840 C 536.25914,395.11871 529.90687,388.81519 510.65517,384.90087 C 499.61413,382.65598 280.93384,356.84809 273.22117,356.87974 C 260.04153,356.93382 259.29950,359.57784 259.75551,404.86087 C 260.24210,453.18174 263.14810,518.15604 265.22697,527.19518 C 267.25005,535.99187 271.26157,540.08493 281.73956,544.04339 C 323.08873,559.66463 463.44676,608.57737 478.13660,612.48491 C 491.40835,616.01523 490.89307,616.01667 497.02221,612.43220 z M 430.50840,572.12657 C 391.18960,560.58148 297.06265,530.22822 292.20133,527.52647 C 289.83504,526.21139 287.08848,523.42922 286.09786,521.34388 C 281.42786,511.51316 280.09405,398.63167 284.55345,390.63965 C 287.04160,386.18048 296.12949,387.01663 354.80466,397.10318 C 411.44511,406.83996 430.41008,410.70506 463.60596,419.27710 C 489.46179,425.95377 488.85410,425.01800 486.26599,454.17084 C 482.13499,500.70275 471.91384,570.54054 468.28200,577.04940 C 465.86910,581.37372 458.91446,580.46736 430.50840,572.12657 z M 196.43227,603.46156 C 192.36530,588.11839 177.42778,521.67530 174.58658,506.29047 C 167.54635,468.16836 168.73092,438.80480 178.64649,405.65180 C 180.68708,398.82904 183.20091,389.27051 184.23278,384.41060 C 187.14535,370.69308 196.84099,363.16246 235.09587,344.90525 C 251.99849,336.83845 264.73809,330.57349 263.40612,330.98311 C 262.07414,331.39274 234.19024,342.01796 201.44191,354.59473 L 141.89948,377.46157 L 128.78874,375.55689 C 121.57784,374.50932 105.65205,371.89676 93.398103,369.75121 C 81.144161,367.60566 69.286187,366.29123 67.047058,366.83025 C 63.416974,367.70411 63.099142,368.34933 64.113339,372.78583 C 65.408405,378.45091 120.80770,550.20447 126.61384,566.55512 C 130.20559,576.66983 130.90618,577.52899 139.19286,581.98149 L 147.96830,586.69660 L 142.49205,580.64450 C 133.77077,571.00614 127.75920,555.75063 118.96899,520.95028 C 111.14500,489.97517 114.62133,478.95211 129.88518,486.33618 C 143.25111,492.80213 152.79317,506.96411 162.44071,534.65400 C 170.94646,559.06677 178.71665,589.35046 177.35073,592.76456 C 176.74756,594.27218 174.47027,595.36334 171.83306,595.40835 C 168.15842,595.47106 169.54267,596.58262 179.45134,601.52588 C 194.45384,609.01036 198.01054,609.41581 196.43227,603.46156 z M 133.43767,458.86572 C 111.34064,454.02457 94.893131,446.84451 91.504974,440.56026 C 88.969987,435.85845 89.637540,431.18529 92.843901,431.18721 C 98.924661,431.19086 138.48982,443.35464 132.93876,443.51385 C 131.74231,443.54816 131.33184,444.36053 131.99272,445.38616 C 132.77630,446.60220 132.28193,446.87464 130.48907,446.21477 C 124.61802,444.05388 100.90787,437.54203 97.261151,437.08889 C 92.151283,436.45396 91.251973,439.44925 95.431224,443.18371 C 98.770391,446.16749 129.16847,456.05290 134.82358,455.99403 C 137.20448,455.96925 137.61716,455.17233 136.82221,452.13441 C 135.91788,448.67855 136.17577,448.43213 139.47259,449.60186 C 142.07546,450.52539 143.12475,452.14436 143.12475,455.23688 C 143.12475,460.34141 142.03559,460.74940 133.43767,458.86572 z M 109.01786,420.43381 C 99.138896,418.00432 89.549608,415.24325 87.708332,414.29810 C 80.341925,410.51680 76.498083,399.61969 81.837482,397.65448 C 84.983759,396.49648 101.13340,399.34075 115.20844,403.53176 C 124.17429,406.20145 125.67372,407.10889 123.91171,408.79891 C 122.14969,410.48893 119.17088,410.19753 106.62160,407.10755 C 89.614861,402.92002 82.568465,402.37442 82.605168,405.24801 C 82.674295,410.66025 89.543656,414.00741 110.44625,418.81388 C 127.72978,422.78816 128.33570,422.75989 127.39171,418.02349 C 126.61902,414.14659 128.31896,412.76804 130.22491,415.72593 C 130.78267,416.59152 131.86303,416.92983 132.62573,416.47772 C 134.36586,415.44621 136.42247,421.31681 135.06111,423.42953 C 133.52458,425.81410 128.58526,425.24593 109.01786,420.43381 z M 166.92093,577.96216 C 168.77384,572.63056 155.04249,528.65062 149.20682,521.22590 C 143.91486,514.49293 131.63910,507.06474 125.80423,507.06474 C 118.36692,507.06474 117.86622,511.61212 123.20082,530.70933 C 132.06304,562.43491 135.32816,567.78735 150.39007,575.27998 C 159.92538,580.02338 165.86941,580.98781 166.92093,577.96216 z "
+           id="path45458"
+           style="fill:#919191" />
+        <path
+           d="M 373.43663,636.90133 C 353.82564,634.20899 333.14475,623.62928 325.31777,612.28521 C 317.25652,600.60159 318.81300,584.45232 329.04755,573.58680 L 334.77818,567.50285 L 330.17157,565.79200 C 317.17343,560.96462 278.22986,547.32686 277.44309,547.32686 C 276.94437,547.32686 259.28250,561.63071 238.19450,579.11320 C 217.10648,596.59569 198.25394,611.28439 196.29996,611.75477 C 193.81769,612.35232 182.84021,607.79087 159.86557,596.61526 L 126.98385,580.62055 L 123.45228,570.55501 C 110.70412,534.22080 59.977239,373.53068 59.977239,369.48192 C 59.977239,363.49348 53.296525,366.25743 126.17235,342.09558 C 157.69575,331.64405 193.29580,319.80123 205.28358,315.77822 L 227.07953,308.46364 L 264.05636,310.90705 C 284.39362,312.25093 301.73554,314.02412 302.59396,314.84747 C 303.45238,315.67081 305.11444,325.18576 306.28742,335.99179 C 307.46042,346.79782 308.73296,355.93917 309.11533,356.30591 C 309.49769,356.67265 348.22880,361.46795 395.18445,366.96213 C 521.08597,381.69361 521.45098,381.75061 531.60550,388.26606 C 540.35158,393.87780 542.99873,403.25658 541.97136,424.99194 C 540.53626,455.35370 523.50329,559.63885 515.20607,588.86375 C 506.50585,619.50808 498.23810,623.52234 465.38338,613.05432 C 447.78672,607.44776 447.00650,607.33512 445.35652,610.16302 C 444.41224,611.78140 440.49209,616.33304 436.64507,620.27775 C 428.16225,628.97601 415.00832,634.95898 399.70237,637.08087 C 387.12606,638.82435 387.46041,638.82664 373.43663,636.90133 z M 400.96404,633.87873 C 417.18010,630.62798 432.22782,621.34873 439.54202,610.08941 L 442.52966,605.49029 L 423.72108,598.86246 C 402.94374,591.54086 402.27768,591.39563 402.20068,594.17030 C 402.12480,596.90487 396.48370,603.07442 394.05925,603.07442 C 392.94452,603.07442 384.22699,600.20489 374.68696,596.69769 L 357.34145,590.32095 L 354.34517,581.74721 C 351.72055,574.23700 350.61285,572.92904 345.41541,571.20317 C 339.52434,569.24698 339.43587,569.28085 333.02871,575.94777 C 316.94483,592.68373 322.47032,611.94015 346.92765,624.38577 C 365.28575,633.72769 384.70203,637.13868 400.96404,633.87873 z M 501.05632,609.34154 C 503.45035,606.82232 506.92992,600.03854 508.78868,594.26646 C 516.00831,571.84718 535.71562,455.92241 537.35785,426.21357 C 538.91201,398.09764 534.71332,390.73763 514.21321,385.64258 C 503.53314,382.98819 285.18553,356.85603 273.68673,356.85603 C 258.36001,356.85603 257.52842,362.02752 260.11552,441.25164 C 262.91176,526.87977 263.90776,534.23627 273.51932,540.25203 C 281.13974,545.02158 470.06132,611.83229 483.18253,614.39787 C 490.26714,615.78312 496.65100,613.97718 501.05632,609.34154 z M 455.53339,575.07232 C 443.09843,573.13597 304.20291,530.58392 293.90939,525.55718 C 286.87419,522.12160 284.93491,517.76488 283.61012,502.41910 C 281.86252,482.17574 282.28503,402.90279 284.16492,398.32281 C 285.11653,396.00443 287.55551,393.71261 289.58488,393.22989 C 293.90869,392.20137 394.52194,409.99541 430.17678,418.09437 C 461.33773,425.17254 481.11877,430.61039 483.97427,432.88339 C 485.39346,434.01310 486.20898,437.84311 486.20862,443.37692 C 486.20749,461.25447 472.16775,567.58595 469.20029,572.19119 C 467.27710,575.17583 462.57027,576.16808 455.53339,575.07232 z M 262.12719,552.89428 C 270.61670,545.80999 271.11021,545.04809 268.39209,543.22205 C 259.56234,537.29015 257.49358,517.88317 255.86820,425.73515 C 254.91425,371.65250 255.05940,366.39519 257.65107,361.15681 C 261.64431,353.08552 267.14444,351.67340 286.99971,353.62173 C 295.70670,354.47612 303.03435,354.97974 303.28337,354.74089 C 304.17239,353.88821 300.06497,319.91088 298.84376,318.01568 C 297.88623,316.52966 294.95417,316.98719 286.15313,319.99600 C 279.85815,322.14805 274.70772,323.67891 274.70772,323.39791 C 274.70772,323.11690 276.70568,321.78501 279.14764,320.43815 C 283.39100,318.09773 283.01577,318.03041 270.67143,318.91743 C 263.56757,319.42788 239.12996,322.23785 216.36564,325.16181 L 174.97598,330.47809 L 128.37458,345.85765 C 68.084825,365.75469 63.206266,367.54832 63.206266,369.81702 C 63.206266,372.41334 125.34112,565.23696 128.51035,572.47573 C 130.54148,577.11500 133.05157,579.23696 141.12176,583.13701 L 151.19733,588.00619 L 144.58969,581.84160 C 138.43924,576.10357 127.65803,555.67387 127.86238,550.14447 C 127.90391,549.02063 129.32989,551.52010 131.03120,555.69885 C 134.98258,565.40416 141.04195,571.55087 151.19733,576.15564 C 159.70382,580.01278 165.70673,580.83629 167.29937,578.36463 C 168.32138,576.77857 163.96379,559.06802 157.53656,538.68570 C 154.83947,530.13255 151.75241,524.11303 147.78075,519.66263 C 138.11790,508.83505 123.48909,503.63724 119.91561,509.76178 C 117.56219,513.79526 116.50907,511.66000 115.44815,500.70383 C 114.62242,492.17648 114.94961,490.26866 117.80972,486.93367 L 121.12983,483.06231 L 129.80814,487.35949 C 138.80065,491.81225 147.07347,500.70158 153.33755,512.64239 C 160.96709,527.18606 175.78648,575.36548 176.62837,588.36326 L 177.02957,594.55744 L 170.57151,594.34691 C 164.40976,594.14605 164.81488,594.47431 179.40119,601.50118 L 194.68894,608.86596 L 223.80035,584.72515 C 239.81163,571.44770 257.05871,557.12382 262.12719,552.89428 z M 118.22723,517.25931 C 118.15713,515.62690 118.53872,514.71228 119.07521,515.22684 C 119.61170,515.74142 119.66906,517.07703 119.20267,518.19489 C 118.68727,519.43021 118.30471,519.06328 118.22723,517.25931 z M 121.04641,455.21026 C 107.44959,451.21032 93.882051,445.80904 93.882051,444.39604 C 93.882051,443.90042 95.880011,444.47348 98.321966,445.66950 C 104.33964,448.61682 129.85520,455.96281 134.07478,455.96281 C 136.09033,455.96281 137.47396,454.97108 137.47396,453.52645 C 137.47396,449.73701 143.04745,451.60340 143.64068,455.59149 C 144.08854,458.60242 143.44970,459.04642 138.79713,458.95771 C 135.84943,458.90152 127.86160,457.21517 121.04641,455.21026 z M 110.02720,439.65532 C 94.411114,435.01982 91.637887,434.90365 92.735919,438.93096 C 93.200668,440.63554 92.922139,441.63968 92.116968,441.16238 C 91.311796,440.68509 90.653018,438.23190 90.653018,435.71084 C 90.653018,430.47783 90.485521,430.47316 110.83446,436.27335 C 117.05034,438.04510 122.65481,439.37575 123.28884,439.23036 C 123.92288,439.08495 124.02678,440.00288 123.51974,441.27022 C 123.01270,442.53755 122.49395,443.50140 122.36695,443.41209 C 122.23997,443.32279 116.68708,441.63224 110.02720,439.65532 z M 125.36509,424.02668 C 114.78241,421.86231 95.534895,416.69627 96.085625,416.16804 C 96.443953,415.82436 102.57294,416.97229 109.70560,418.71900 C 125.84537,422.67147 127.78686,422.68349 127.78686,418.83096 C 127.78686,416.11224 128.24869,415.96889 131.88610,417.55849 C 139.67995,420.96450 134.67348,425.93042 125.36509,424.02668 z M 89.038504,414.15213 C 87.706529,413.32651 87.343266,412.65102 88.231248,412.65102 C 89.119229,412.65102 90.935562,413.32651 92.267538,414.15213 C 93.599513,414.97775 93.962776,415.65324 93.074794,415.65324 C 92.186813,415.65324 90.370480,414.97775 89.038504,414.15213 z M 80.278207,405.17369 C 79.569480,403.06069 79.851864,400.72849 80.973359,399.43239 C 83.020189,397.06688 85.374118,397.26091 104.82111,401.39820 C 114.18715,403.39079 116.15014,404.28280 114.50820,405.80016 C 112.87731,407.30727 109.71370,407.12592 99.299394,404.92833 C 85.909060,402.10273 83.678317,402.29672 82.268197,406.40942 C 81.687067,408.10431 81.149115,407.77026 80.278207,405.17369 z "
+           id="path45460"
+           style="fill:#707071" />
+        <path
+           d="M 363.94924,634.83727 C 336.84825,627.58513 319.85912,612.02909 319.95860,594.55744 C 319.99283,588.54647 325.40898,577.13267 330.78959,571.73258 C 333.11446,569.39929 334.70632,567.25964 334.32707,566.97782 C 332.19976,565.39696 277.82625,547.11450 276.58616,547.56310 C 275.76810,547.85902 258.29277,562.03803 237.75207,579.07200 C 217.21137,596.10598 198.87980,610.70636 197.01523,611.51728 C 194.24554,612.72187 187.54978,610.02957 160.42846,596.80612 L 127.23182,580.62055 L 124.20787,572.10356 C 113.89413,543.05483 59.977239,372.67440 59.977239,369.13112 C 59.977239,365.30519 61.019605,364.44505 69.260700,361.47060 C 82.491400,356.69525 217.93855,311.82724 224.33658,310.10041 C 230.12197,308.53892 300.36932,312.81015 302.56811,314.85710 C 303.23960,315.48222 304.65411,325.14964 305.71146,336.34026 L 307.63393,356.68684 L 313.37039,357.56185 C 316.52546,358.04310 360.74007,363.30773 411.62509,369.26102 C 462.51011,375.21431 509.20823,381.19011 515.39868,382.54057 C 526.65915,384.99706 534.57954,389.66602 538.05630,395.89694 C 541.41795,401.92156 542.57686,417.68541 540.92901,434.97214 C 537.48816,471.06802 521.69782,564.48847 515.13301,587.58899 C 505.85778,620.22705 499.04050,623.42097 462.98974,612.01824 L 447.03040,606.97036 L 444.42020,610.81553 C 438.35744,619.74682 430.30701,626.58483 420.27979,631.32035 C 410.31062,636.02845 408.33965,636.39256 390.98863,636.73149 C 378.54999,636.97447 369.59036,636.34682 363.94924,634.83727 z M 414.18728,630.45040 C 419.14216,628.27468 425.66674,624.68712 428.68635,622.47806 C 434.42582,618.27923 443.66932,606.66438 442.30943,605.36007 C 441.87629,604.94463 432.87464,601.55756 422.30577,597.83327 L 403.08965,591.06182 L 401.30490,595.13304 C 397.58410,603.62058 396.16616,603.68726 376.23320,596.31198 L 357.85524,589.51208 L 357.37664,581.84222 L 356.89804,574.17236 L 347.95572,571.46873 C 339.36948,568.87275 338.88283,568.87780 335.73458,571.59573 C 329.88874,576.64247 323.17436,589.56271 323.15831,595.79575 C 323.13808,603.65218 326.35675,609.17780 335.40134,616.81386 C 356.15829,634.33828 391.43012,640.44326 414.18728,630.45040 z M 500.58749,610.48464 C 507.33549,603.86468 512.21841,588.64267 519.25419,552.29323 C 532.23689,485.21985 540.69456,422.15131 538.54787,408.42108 C 537.27628,400.28796 532.31109,392.81731 525.75930,389.17923 C 523.09837,387.70168 515.10899,385.39980 508.00512,384.06395 C 489.63963,380.61041 285.74876,356.85603 274.47137,356.85603 C 260.89873,356.85603 259.54184,359.32737 258.78121,385.43317 C 258.07642,409.62241 261.39592,504.65200 263.51253,520.87958 C 265.93901,539.48307 265.60689,539.23743 308.76751,554.35202 C 321.72852,558.89088 339.89181,565.50681 349.13038,569.05410 C 358.36897,572.60138 381.18498,580.72973 399.83263,587.11709 C 493.50000,619.20085 492.04640,618.86373 500.58749,610.48464 z M 455.53339,575.07458 C 446.84751,573.72474 385.78215,555.41845 332.02300,538.04841 C 305.13547,529.36082 292.06645,524.37706 289.32759,521.76690 C 286.27880,518.86138 285.10354,515.61505 284.16332,507.50226 C 282.36613,491.99457 282.50844,402.65121 284.33770,398.03649 C 285.19428,395.87559 287.55551,393.71261 289.58488,393.22989 C 297.14422,391.43175 429.61280,416.75990 468.23274,427.38755 C 487.27648,432.62811 486.83202,432.03781 485.51748,450.34394 C 483.46209,478.96735 473.32793,555.25265 469.91149,567.81872 C 467.97040,574.95828 464.86595,576.52493 455.53339,575.07458 z M 235.70951,576.03748 L 273.07066,545.12918 L 268.21143,540.32057 C 265.53884,537.67584 262.68089,533.26699 261.86044,530.52310 C 259.68643,523.25253 256.82774,458.78736 256.45965,408.73223 C 256.03443,350.90863 255.15765,352.44627 287.41102,354.45127 L 304.75084,355.52919 L 302.86418,337.51022 C 301.82651,327.59978 300.19994,318.74545 299.24957,317.83391 C 298.29922,316.92239 282.26882,315.13113 263.62646,313.85335 L 229.73126,311.53011 L 149.29417,338.23198 C 105.05376,352.91801 67.585640,365.57982 66.031667,366.36933 C 64.477694,367.15884 63.206266,369.15567 63.206266,370.80673 C 63.206266,373.56779 109.05843,518.04665 122.42155,557.39240 C 125.60346,566.76108 129.32091,575.65237 130.68253,577.15082 C 134.65294,581.52017 193.85348,609.50078 196.24795,608.13971 C 197.40319,607.48305 215.16089,593.03705 235.70951,576.03748 z "
+           id="path45462"
+           style="fill:#2b2bb0" />
+        <path
+           d="M 363.94924,634.83727 C 336.84825,627.58513 319.85912,612.02909 319.95860,594.55744 C 319.99283,588.54647 325.40898,577.13267 330.78959,571.73258 C 333.11446,569.39929 334.70632,567.25964 334.32707,566.97782 C 332.19976,565.39696 277.82625,547.11450 276.58616,547.56310 C 275.76810,547.85902 258.29277,562.03803 237.75207,579.07200 C 217.21137,596.10598 198.87980,610.70636 197.01523,611.51728 C 194.24554,612.72187 187.54978,610.02957 160.42846,596.80612 L 127.23182,580.62055 L 124.20787,572.10356 C 113.89413,543.05483 59.977239,372.67440 59.977239,369.13112 C 59.977239,365.30519 61.019605,364.44505 69.260700,361.47060 C 82.491400,356.69525 217.93855,311.82724 224.33658,310.10041 C 230.12197,308.53892 300.36932,312.81015 302.56811,314.85710 C 303.23960,315.48222 304.65411,325.14964 305.71146,336.34026 L 307.63393,356.68684 L 313.37039,357.56185 C 316.52546,358.04310 360.74007,363.30773 411.62509,369.26102 C 462.51011,375.21431 509.20823,381.19011 515.39868,382.54057 C 526.65915,384.99706 534.57954,389.66602 538.05630,395.89694 C 541.41795,401.92156 542.57686,417.68541 540.92901,434.97214 C 537.48816,471.06802 521.69782,564.48847 515.13301,587.58899 C 505.85778,620.22705 499.04050,623.42097 462.98974,612.01824 L 447.03040,606.97036 L 444.42020,610.81553 C 438.35744,619.74682 430.30701,626.58483 420.27979,631.32035 C 410.31062,636.02845 408.33965,636.39256 390.98863,636.73149 C 378.54999,636.97447 369.59036,636.34682 363.94924,634.83727 z M 414.18728,630.45040 C 419.14216,628.27468 425.66674,624.68712 428.68635,622.47806 C 434.42582,618.27923 443.66932,606.66438 442.30943,605.36007 C 441.87629,604.94463 432.87464,601.55756 422.30577,597.83327 L 403.08965,591.06182 L 401.30490,595.13304 C 397.58410,603.62058 396.16616,603.68726 376.23320,596.31198 L 357.85524,589.51208 L 357.37664,581.84222 L 356.89804,574.17236 L 347.95572,571.46873 C 339.36948,568.87275 338.88283,568.87780 335.73458,571.59573 C 329.88874,576.64247 323.17436,589.56271 323.15831,595.79575 C 323.13808,603.65218 326.35675,609.17780 335.40134,616.81386 C 356.15829,634.33828 391.43012,640.44326 414.18728,630.45040 z M 500.58749,610.48464 C 507.33549,603.86468 512.21841,588.64267 519.25419,552.29323 C 532.23689,485.21985 540.69456,422.15131 538.54787,408.42108 C 537.27628,400.28796 532.31109,392.81731 525.75930,389.17923 C 523.09837,387.70168 515.10899,385.39980 508.00512,384.06395 C 489.63963,380.61041 285.74876,356.85603 274.47137,356.85603 C 260.89873,356.85603 259.54184,359.32737 258.78121,385.43317 C 258.07642,409.62241 261.39592,504.65200 263.51253,520.87958 C 265.93901,539.48307 265.60689,539.23743 308.76751,554.35202 C 321.72852,558.89088 339.89181,565.50681 349.13038,569.05410 C 358.36897,572.60138 381.18498,580.72973 399.83263,587.11709 C 493.50000,619.20085 492.04640,618.86373 500.58749,610.48464 z M 440.19550,559.77610 C 394.68077,548.35022 303.09882,520.94563 293.34432,515.83299 C 289.55227,513.84545 286.50092,510.91127 285.83631,508.61328 C 283.74698,501.38900 284.19633,411.86482 286.33223,409.81621 C 287.39781,408.79417 290.50781,407.95796 293.24337,407.95796 C 297.49440,407.95796 371.01886,423.68900 387.72376,428.17266 C 395.47321,430.25265 421.15694,452.06380 436.95186,469.97816 C 457.08665,492.81475 467.58713,502.63931 470.65374,501.51062 C 473.93978,500.30118 477.16629,489.51192 480.55746,468.39316 C 483.13826,452.32105 484.59466,447.32554 484.59466,454.54537 C 484.59466,467.58748 472.22787,557.31320 469.83244,561.65089 C 467.73344,565.45179 461.14401,565.03495 440.19550,559.77610 z M 235.70951,576.03748 L 273.07066,545.12918 L 268.21143,540.32057 C 265.53884,537.67584 262.68089,533.26699 261.86044,530.52310 C 259.68643,523.25253 256.82774,458.78736 256.45965,408.73223 C 256.03443,350.90863 255.15765,352.44627 287.41102,354.45127 L 304.75084,355.52919 L 302.86418,337.51022 C 301.82651,327.59978 300.19994,318.74545 299.24957,317.83391 C 298.29922,316.92239 282.26882,315.13113 263.62646,313.85335 L 229.73126,311.53011 L 149.29417,338.23198 C 105.05376,352.91801 67.585640,365.57982 66.031667,366.36933 C 64.477694,367.15884 63.206266,369.15567 63.206266,370.80673 C 63.206266,373.56779 109.05843,518.04665 122.42155,557.39240 C 125.60346,566.76108 129.32091,575.65237 130.68253,577.15082 C 134.65294,581.52017 193.85348,609.50078 196.24795,608.13971 C 197.40319,607.48305 215.16089,593.03705 235.70951,576.03748 z "
+           id="path45464"
+           style="fill:#1919a4" />
+        <path
+           d="M 363.94924,634.83727 C 336.84825,627.58513 319.85912,612.02909 319.95860,594.55744 C 319.99283,588.54647 325.40898,577.13267 330.78959,571.73258 C 333.11446,569.39929 334.70632,567.25964 334.32707,566.97782 C 332.19976,565.39696 277.82625,547.11450 276.58616,547.56310 C 275.76810,547.85902 258.29277,562.03803 237.75207,579.07200 C 217.21137,596.10598 198.87980,610.70636 197.01523,611.51728 C 194.24554,612.72187 187.54978,610.02957 160.42846,596.80612 L 127.23182,580.62055 L 124.20787,572.10356 C 113.89413,543.05483 59.977239,372.67440 59.977239,369.13112 C 59.977239,365.30519 61.019605,364.44505 69.260700,361.47060 C 82.491400,356.69525 217.93855,311.82724 224.33658,310.10041 C 230.12197,308.53892 300.36932,312.81015 302.56811,314.85710 C 303.23960,315.48222 304.65411,325.14964 305.71146,336.34026 L 307.63393,356.68684 L 313.37039,357.56185 C 316.52546,358.04310 360.74007,363.30773 411.62509,369.26102 C 462.51011,375.21431 509.20823,381.19011 515.39868,382.54057 C 526.65915,384.99706 534.57954,389.66602 538.05630,395.89694 C 541.41795,401.92156 542.57686,417.68541 540.92901,434.97214 C 537.48816,471.06802 521.69782,564.48847 515.13301,587.58899 C 505.85778,620.22705 499.04050,623.42097 462.98974,612.01824 L 447.03040,606.97036 L 444.42020,610.81553 C 438.35744,619.74682 430.30701,626.58483 420.27979,631.32035 C 410.31062,636.02845 408.33965,636.39256 390.98863,636.73149 C 378.54999,636.97447 369.59036,636.34682 363.94924,634.83727 z M 414.18728,630.45040 C 419.14216,628.27468 425.66674,624.68712 428.68635,622.47806 C 434.42582,618.27923 443.66932,606.66438 442.30943,605.36007 C 441.87629,604.94463 432.87464,601.55756 422.30577,597.83327 L 403.08965,591.06182 L 401.30490,595.13304 C 397.58410,603.62058 396.16616,603.68726 376.23320,596.31198 L 357.85524,589.51208 L 357.37664,581.84222 L 356.89804,574.17236 L 347.95572,571.46873 C 339.36948,568.87275 338.88283,568.87780 335.73458,571.59573 C 329.88874,576.64247 323.17436,589.56271 323.15831,595.79575 C 323.13808,603.65218 326.35675,609.17780 335.40134,616.81386 C 356.15829,634.33828 391.43012,640.44326 414.18728,630.45040 z M 500.58749,610.48464 C 507.33549,603.86468 512.21841,588.64267 519.25419,552.29323 C 532.23689,485.21985 540.69456,422.15131 538.54787,408.42108 C 537.27628,400.28796 532.31109,392.81731 525.75930,389.17923 C 523.09837,387.70168 515.10899,385.39980 508.00512,384.06395 C 489.63963,380.61041 285.74876,356.85603 274.47137,356.85603 C 260.89873,356.85603 259.54184,359.32737 258.78121,385.43317 C 258.07642,409.62241 261.39592,504.65200 263.51253,520.87958 C 265.93901,539.48307 265.60689,539.23743 308.76751,554.35202 C 321.72852,558.89088 339.89181,565.50681 349.13038,569.05410 C 358.36897,572.60138 381.18498,580.72973 399.83263,587.11709 C 493.50000,619.20085 492.04640,618.86373 500.58749,610.48464 z M 456.34064,558.64063 C 408.33561,548.00633 306.17148,519.28172 292.84526,512.67206 C 284.97733,508.76965 284.03023,503.24447 284.65486,464.89124 C 285.36741,421.14003 284.33714,422.44927 308.42552,434.68384 C 318.04618,439.57019 336.53114,448.01287 349.50324,453.44537 C 391.61717,471.08196 406.58593,482.26446 437.12905,518.90674 C 447.32369,531.13715 457.45516,542.26904 459.64344,543.64426 C 467.24621,548.42224 469.38704,544.09081 475.80961,510.93609 C 478.98454,494.54646 479.55303,492.81965 478.86844,501.64483 C 477.88832,514.27964 472.06248,553.85662 470.67061,557.33555 C 469.73587,559.67191 463.54232,560.23598 456.34064,558.64063 z M 480.12568,485.38513 C 480.12568,482.40418 480.45795,481.18471 480.86405,482.67517 C 481.27013,484.16565 481.27013,486.60461 480.86405,488.09508 C 480.45795,489.58555 480.12568,488.36608 480.12568,485.38513 z M 481.68037,472.22251 C 481.64747,469.66742 481.98239,468.43468 482.42465,469.48309 C 482.86690,470.53150 482.89382,472.62204 482.48447,474.12872 C 482.07512,475.63540 481.71328,474.77761 481.68037,472.22251 z M 235.70951,576.03748 L 273.07066,545.12918 L 268.21143,540.32057 C 265.53884,537.67584 262.68089,533.26699 261.86044,530.52310 C 259.68643,523.25253 256.82774,458.78736 256.45965,408.73223 C 256.03443,350.90863 255.15765,352.44627 287.41102,354.45127 L 304.75084,355.52919 L 302.86418,337.51022 C 301.82651,327.59978 300.19994,318.74545 299.24957,317.83391 C 298.29922,316.92239 282.26882,315.13113 263.62646,313.85335 L 229.73126,311.53011 L 149.29417,338.23198 C 105.05376,352.91801 67.585640,365.57982 66.031667,366.36933 C 64.477694,367.15884 63.206266,369.15567 63.206266,370.80673 C 63.206266,373.56779 109.05843,518.04665 122.42155,557.39240 C 125.60346,566.76108 129.32091,575.65237 130.68253,577.15082 C 134.65294,581.52017 193.85348,609.50078 196.24795,608.13971 C 197.40319,607.48305 215.16089,593.03705 235.70951,576.03748 z "
+           id="path45466"
+           style="fill:#0c0c95" />
+        <path
+           d="M 363.94924,634.83727 C 336.84825,627.58513 319.85912,612.02909 319.95860,594.55744 C 319.99283,588.54647 325.40898,577.13267 330.78959,571.73258 C 333.11446,569.39929 334.70632,567.25964 334.32707,566.97782 C 332.19976,565.39696 277.82625,547.11450 276.58616,547.56310 C 275.76810,547.85902 258.29277,562.03803 237.75207,579.07200 C 217.21137,596.10598 198.87980,610.70636 197.01523,611.51728 C 194.24554,612.72187 187.54978,610.02957 160.42846,596.80612 L 127.23182,580.62055 L 124.20787,572.10356 C 113.89413,543.05483 59.977239,372.67440 59.977239,369.13112 C 59.977239,365.30519 61.019605,364.44505 69.260700,361.47060 C 82.491400,356.69525 217.93855,311.82724 224.33658,310.10041 C 230.12197,308.53892 300.36932,312.81015 302.56811,314.85710 C 303.23960,315.48222 304.65411,325.14964 305.71146,336.34026 L 307.63393,356.68684 L 313.37039,357.56185 C 316.52546,358.04310 360.74007,363.30773 411.62509,369.26102 C 462.51011,375.21431 509.20823,381.19011 515.39868,382.54057 C 526.65915,384.99706 534.57954,389.66602 538.05630,395.89694 C 541.41795,401.92156 542.57686,417.68541 540.92901,434.97214 C 537.48816,471.06802 521.69782,564.48847 515.13301,587.58899 C 505.85778,620.22705 499.04050,623.42097 462.98974,612.01824 L 447.03040,606.97036 L 444.42020,610.81553 C 438.35744,619.74682 430.30701,626.58483 420.27979,631.32035 C 410.31062,636.02845 408.33965,636.39256 390.98863,636.73149 C 378.54999,636.97447 369.59036,636.34682 363.94924,634.83727 z M 414.18728,630.45040 C 419.14216,628.27468 425.66674,624.68712 428.68635,622.47806 C 434.42582,618.27923 443.66932,606.66438 442.30943,605.36007 C 441.87629,604.94463 432.87464,601.55756 422.30577,597.83327 L 403.08965,591.06182 L 401.30490,595.13304 C 397.58410,603.62058 396.16616,603.68726 376.23320,596.31198 L 357.85524,589.51208 L 357.37664,581.84222 L 356.89804,574.17236 L 347.95572,571.46873 C 339.36948,568.87275 338.88283,568.87780 335.73458,571.59573 C 329.88874,576.64247 323.17436,589.56271 323.15831,595.79575 C 323.13808,603.65218 326.35675,609.17780 335.40134,616.81386 C 356.15829,634.33828 391.43012,640.44326 414.18728,630.45040 z M 500.58749,610.48464 C 507.33549,603.86468 512.21841,588.64267 519.25419,552.29323 C 532.23689,485.21985 540.69456,422.15131 538.54787,408.42108 C 537.27628,400.28796 532.31109,392.81731 525.75930,389.17923 C 523.09837,387.70168 515.10899,385.39980 508.00512,384.06395 C 489.63963,380.61041 285.74876,356.85603 274.47137,356.85603 C 260.89873,356.85603 259.54184,359.32737 258.78121,385.43317 C 258.07642,409.62241 261.39592,504.65200 263.51253,520.87958 C 265.93901,539.48307 265.60689,539.23743 308.76751,554.35202 C 321.72852,558.89088 339.89181,565.50681 349.13038,569.05410 C 358.36897,572.60138 381.18498,580.72973 399.83263,587.11709 C 493.50000,619.20085 492.04640,618.86373 500.58749,610.48464 z M 235.70951,576.03748 L 273.07066,545.12918 L 268.21143,540.32057 C 265.53884,537.67584 262.68089,533.26699 261.86044,530.52310 C 259.68643,523.25253 256.82774,458.78736 256.45965,408.73223 C 256.03443,350.90863 255.15765,352.44627 287.41102,354.45127 L 304.75084,355.52919 L 302.86418,337.51022 C 301.82651,327.59978 300.19994,318.74545 299.24957,317.83391 C 298.29922,316.92239 282.26882,315.13113 263.62646,313.85335 L 229.73126,311.53011 L 149.29417,338.23198 C 105.05376,352.91801 67.585640,365.57982 66.031667,366.36933 C 64.477694,367.15884 63.206266,369.15567 63.206266,370.80673 C 63.206266,373.56779 109.05843,518.04665 122.42155,557.39240 C 125.60346,566.76108 129.32091,575.65237 130.68253,577.15082 C 134.65294,581.52017 193.85348,609.50078 196.24795,608.13971 C 197.40319,607.48305 215.16089,593.03705 235.70951,576.03748 z "
+           id="path45468"
+           style="fill:#030303" />
+      </g>
+      <g
+         transform="matrix(-0.619386,0.000000,0.000000,0.619386,703.3654,769.0874)"
+         id="g47825"
+         inkscape:label="Layer 1">
+        <path
+           d="M 19.080644,63.143320 C 19.080644,63.143320 23.055778,65.130887 24.645831,66.919698 C 26.235885,68.708508 40.745124,81.031424 42.136421,82.820234 C 43.527718,84.609044 45.714042,89.379205 46.509069,91.764286 C 47.304096,94.149366 48.894149,99.714554 49.092906,102.29839 C 49.291663,104.88223 50.682959,109.05612 51.080473,111.24244 C 51.477986,113.42877 54.061823,117.80141 53.266797,117.60266 C 52.471770,117.40390 34.981180,113.42877 33.391126,112.63374 C 31.801073,111.83871 17.093077,105.08098 16.496806,103.68969 C 15.900536,102.29839 15.105509,91.565529 15.304266,89.776719 C 15.503023,87.987908 15.701780,72.087372 16.099293,70.497318 C 16.496806,68.907265 16.496806,64.733374 17.291833,63.938347 C 18.086860,63.143320 18.285617,61.354510 19.080644,63.143320 z "
+           id="path1063"
+           style="fill:url(#linearGradient47963);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        <path
+           d="M 43.328961,83.368278 C 43.328961,83.368278 60.024525,74.074939 62.210848,73.279912 C 64.397172,72.484886 85.067869,63.540834 86.459166,63.342077 C 87.850463,63.143320 109.51494,56.584349 110.90624,57.578133 C 112.29754,58.571916 117.06770,70.894832 117.86273,74.472453 C 118.65775,78.050073 122.03662,86.994125 120.84408,88.584179 C 119.65154,90.174232 63.602145,114.42255 61.813335,115.01882 C 61.289405,115.19346 55.326703,116.77938 52.985713,117.23924 C 52.190686,115.45043 50.484203,109.25488 50.086689,107.86358 C 49.689176,106.47228 47.701609,97.130717 47.105339,95.540663 C 46.509069,93.950610 42.335178,84.362062 43.328961,83.368278 z "
+           id="path1686"
+           sodipodi:nodetypes="ccccccccccc"
+           style="fill:url(#linearGradient47965);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        <path
+           d="M 18.270488,63.004370 C 22.627297,59.069188 28.248985,54.712379 33.308505,53.166415 C 35.697722,52.463704 85.168581,39.814905 86.574003,39.814905 C 93.320029,40.236532 109.76347,54.571838 110.60672,56.961055 C 105.96883,58.788103 92.757860,60.615152 89.947016,61.739490 C 88.682136,62.863828 72.098155,68.063890 70.130564,69.328770 C 68.162973,70.593650 53.124957,77.620760 52.422245,78.323471 C 50.595196,79.307266 45.676220,81.837027 43.146459,84.085702 C 40.476157,81.134315 20.238079,63.425997 18.270488,63.004370 z "
+           id="path47829"
+           sodipodi:nodetypes="ccccccccc"
+           style="fill:url(#linearGradient47967);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        <path
+           d="M 59.027729,112.19414 C 57.903392,111.91306 55.373632,114.30228 55.092548,113.03740 C 54.811463,111.77252 52.422245,104.74541 53.124957,103.62107 C 53.827668,102.49673 57.200681,100.66968 59.730441,99.966972 C 62.260200,99.264261 85.028039,90.691186 85.449666,89.988475 C 85.871292,89.285764 105.96883,80.291062 107.51479,80.150520 C 109.06076,80.009978 115.94733,77.761302 116.36895,79.026182 C 116.79058,80.291062 116.93112,86.474920 117.35275,87.458715 C 117.77437,88.442511 60.292609,112.05360 59.027729,112.19414 z "
+           id="path47831"
+           style="fill:url(#linearGradient47969);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        <path
+           d="M 92.195692,45.296051 C 92.195692,45.296051 95.990332,48.950149 95.006536,49.652860 C 95.006536,50.777198 84.465870,53.025873 83.200990,53.447500 C 81.936110,53.869126 65.071045,60.052984 63.384538,60.755695 C 61.698032,61.458406 50.876281,67.361179 49.470859,67.782805 C 48.065437,68.204432 37.665313,73.685578 36.962602,73.685578 C 36.259891,73.685578 31.621998,69.469312 31.903082,68.344974 C 32.184167,67.220636 33.730131,65.815214 34.995011,65.393588 C 36.259891,64.971961 87.698341,45.717678 88.401052,45.858220 C 89.103763,45.998762 91.211896,45.014967 92.195692,45.296051 z "
+           id="path1689"
+           sodipodi:nodetypes="cccccccccc"
+           style="fill:url(#linearGradient47971);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        <path
+           d="M 105.26612,64.128708 C 105.26612,64.128708 106.24991,66.939552 107.37425,66.517925 C 108.49859,66.096299 110.60672,64.971961 109.90401,63.425997 C 109.20130,61.880032 106.24991,61.177321 105.26612,64.128708 z "
+           id="path47834"
+           style="fill:url(#linearGradient47973);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        <path
+           d="M 73.784662,9.0361603 C 73.784662,9.0361603 52.703330,13.392969 50.876281,13.392969 C 49.049232,13.392969 33.167962,16.625440 31.340914,17.609235 C 29.513865,18.593031 20.940790,21.263333 21.081332,21.966044 C 21.221874,22.668755 27.827358,38.268941 28.248985,39.814905 C 28.670611,41.360869 34.292300,53.869126 34.292300,55.977259 C 34.292300,58.085393 36.540975,72.420698 36.540975,72.982867 C 36.540975,73.545036 44.692424,70.312565 45.816761,69.609854 C 46.941099,68.907143 61.698032,61.317864 63.243996,60.755695 C 64.789960,60.193526 75.892795,55.836717 77.157675,55.555633 C 78.422555,55.274548 86.433462,51.901535 87.979426,51.901535 C 87.838883,50.917740 87.136172,49.512317 87.136172,46.279847 C 86.292919,47.123100 77.157675,18.171404 76.595506,17.047066 C 76.033337,15.922729 73.784662,9.0361603 73.784662,9.0361603 z "
+           id="path47836"
+           sodipodi:nodetypes="cccccccccccccc"
+           style="fill:url(#linearGradient47975);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        <path
+           d="M 58.325018,106.85354 C 58.325018,106.85354 71.114360,114.16174 71.957613,115.42662 C 72.800866,116.69150 92.195692,128.91867 92.476776,130.18355 C 92.757861,131.44843 93.601114,135.10253 92.617318,135.52415 C 91.633523,135.94578 78.984724,130.32409 77.860386,128.63758 C 76.736048,126.95108 66.898093,117.95638 65.633214,117.11312 C 64.368334,116.26987 58.746645,112.47523 58.325018,111.49143 C 57.903392,110.50764 57.762850,107.13463 58.325018,106.85354 z "
+           id="path1692"
+           style="fill:url(#linearGradient47977);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        <path
+           d="M 58.184476,106.43191 C 58.184476,106.43191 86.433461,94.766910 87.557799,94.626368 C 88.682136,94.485826 111.16889,84.366786 112.15269,84.366786 C 113.13648,84.366786 119.88251,89.004680 120.72576,89.566848 C 121.56901,90.129017 145.60173,101.93456 145.74227,102.91836 C 145.88282,103.90215 144.05577,104.60487 142.36926,105.58866 C 140.49731,106.94335 133.65564,111.21035 127.33124,114.58336 C 124.80148,115.00499 100.20660,126.38891 98.660634,127.23216 C 97.114669,128.07541 93.882198,130.60517 92.757861,130.04301 C 91.633523,129.48084 76.454964,118.65909 75.190084,117.81583 C 73.925204,116.97258 59.449356,105.72920 58.184476,106.43191 z "
+           id="path47839"
+           sodipodi:nodetypes="ccccccccccc"
+           style="fill:url(#linearGradient47979);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        <path
+           d="M 145.85372,103.73108 C 145.85372,103.73108 142.14479,105.86372 140.84666,106.69823 C 139.54854,107.53274 131.85251,112.35435 130.73983,112.81796 C 129.62715,113.28158 116.36772,119.30859 115.25504,119.95766 C 114.14236,120.60672 93.835960,129.22999 92.908728,130.15722 C 91.981495,131.08445 93.186897,135.16428 92.816004,135.34972 C 92.445111,135.53517 97.730338,133.03164 98.472124,132.47530 C 99.213911,131.91896 121.83839,122.09029 123.78558,121.44123 C 125.73277,120.79217 134.63420,117.54685 134.91237,117.45413 C 135.19054,117.36141 142.05207,114.48698 142.70113,113.93064 C 143.35019,113.37430 148.26453,110.03627 145.85372,103.73108 z "
+           id="path1695"
+           style="fill:url(#linearGradient47981);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        <path
+           d="M 74.150197,8.3374480 C 71.171005,10.179813 75.991316,14.788417 75.786127,17.611512 C 80.134618,28.541739 84.151002,40.731681 87.681063,51.945193 C 90.184268,51.291671 84.210343,46.003072 91.500364,45.686394 C 91.236640,45.058828 86.715164,46.511763 87.103406,43.275956 C 83.768378,36.969820 92.678016,43.042674 95.114909,44.323664 C 101.52831,48.450245 108.17024,53.110713 111.93468,59.935254 C 113.12466,64.503638 116.00848,69.790731 117.34750,74.783941 C 118.29002,78.563294 121.29268,86.268651 119.63125,88.007825 C 116.26255,87.099693 118.69003,83.962049 117.21324,80.617488 C 118.15843,74.746352 111.89506,80.885134 108.28624,79.460273 C 100.73322,80.782124 94.273521,85.132537 87.581356,88.540046 C 78.724622,92.322298 69.879887,96.118683 60.765492,99.254107 C 57.348688,101.23039 49.041339,101.44327 52.577055,107.20982 C 52.898485,109.34814 55.107509,116.99007 55.523060,111.66682 C 54.394730,107.57053 51.244617,101.82604 58.058164,101.39117 C 67.139797,98.072649 75.883615,94.526443 84.695879,90.538405 C 90.418489,88.400987 93.315542,86.277541 98.152244,84.219360 C 103.39615,81.045042 108.93615,80.753413 114.59794,79.192283 C 116.78090,78.938290 115.40495,84.281047 116.66575,86.230573 C 115.68117,84.054424 110.04128,83.544345 113.61575,85.918434 C 124.09881,92.141391 134.86854,97.880824 145.58608,103.69185 C 149.02125,101.95035 141.05241,100.85522 140.02306,99.311529 C 133.91389,96.100319 127.96170,92.603597 121.89697,89.310650 C 120.92380,78.894169 116.99666,69.025219 113.07045,59.416270 C 112.08584,55.999284 108.26887,52.811675 105.45231,50.212775 C 100.95347,45.987397 94.356346,42.571516 89.822959,39.659065 C 88.576669,38.674488 85.311343,39.756539 85.362369,38.617635 C 82.793465,31.633007 80.174341,24.666792 77.493529,17.724335 C 77.141497,14.861937 74.771636,10.349392 74.150197,8.3374480 z M 74.089437,8.5842685 C 68.448913,9.9920031 60.106365,11.090689 54.367221,12.414594 C 43.708420,14.057374 32.696780,15.824315 22.954398,20.664864 C 18.191054,21.622029 21.650667,25.291344 22.833983,28.357511 C 27.508569,40.293997 33.718137,52.001081 34.586867,65.023574 C 32.243341,66.716715 29.530791,70.892980 33.383419,67.140897 C 35.173243,62.568327 35.806282,73.564937 33.506929,68.565630 C 28.354616,65.920689 35.393887,73.839044 36.813341,73.947871 C 39.050901,72.260401 43.388851,71.367598 46.182798,69.649026 C 55.971252,64.050573 65.888309,59.831165 76.494036,56.089638 C 82.433289,53.640126 88.477240,51.917477 94.784560,50.732222 C 97.964594,49.215458 92.915900,43.601241 91.015200,45.457713 C 93.384024,46.758507 97.257545,50.864079 91.310601,50.811613 C 81.593918,53.037600 72.478936,57.236189 63.107811,60.553000 C 54.192745,64.026211 46.139683,69.330382 37.302144,72.951287 C 36.561272,71.146538 36.290491,65.583346 35.925701,64.222538 C 34.851114,50.575967 27.709141,38.668353 22.948886,26.080838 C 18.243242,20.123854 29.465963,19.849625 33.090226,17.524126 C 42.910282,14.613973 53.131737,13.320827 63.224099,11.730870 C 66.063466,11.603152 74.184013,10.022387 74.089437,8.5842685 z M 32.782688,52.965945 C 26.991101,54.409705 21.561286,58.697543 17.456546,62.861133 C 14.370554,66.644544 15.512772,73.405793 14.671440,78.295068 C 14.358526,86.655715 14.500440,95.064126 15.557356,103.37218 C 17.524322,105.85052 23.908108,109.15021 27.777305,111.25091 C 35.919261,115.00275 55.499749,117.69460 52.799885,118.36638 C 57.594949,116.54808 62.626625,113.12684 66.279748,118.72960 C 71.475825,121.97311 74.667017,127.41842 79.743630,130.76019 C 83.315255,132.18835 88.849412,137.74830 92.674133,135.82802 C 86.213056,133.40571 78.203600,128.87293 73.817675,123.17180 C 68.904058,118.60822 62.714006,114.07154 57.605769,109.72689 C 58.790243,112.24412 54.307087,112.06032 55.039972,112.82633 C 54.614499,114.56762 59.242878,111.89952 60.158426,113.92139 C 63.044041,115.88421 54.564311,116.15189 52.853150,117.43011 C 51.312192,116.33136 47.134263,115.41267 43.806802,114.79362 C 34.292894,111.84234 24.800964,109.09955 16.941320,102.91336 C 15.195634,90.794853 15.209350,78.342795 17.181889,66.255958 C 17.254614,59.573213 23.037717,67.548292 25.867088,68.773917 C 31.976218,73.572648 37.854088,78.764848 42.725179,84.842848 C 45.107873,82.418160 50.141849,79.773816 54.051383,77.835696 C 70.582993,69.053938 90.444589,60.774147 108.98970,57.938921 C 111.57763,58.134061 113.11263,56.045313 110.18461,57.052949 C 105.62104,57.575159 101.34739,58.859440 96.734839,59.820844 C 78.199231,64.313977 59.714558,73.452152 43.466358,83.356987 C 44.061282,83.486018 38.540630,78.340929 36.753276,76.435724 C 31.358615,71.282399 25.467635,66.679180 19.472320,62.251885 C 22.795663,58.509116 28.591752,55.932611 32.882169,53.749803 C 33.903414,53.237468 32.514590,53.177022 32.782688,52.965945 z M 108.15135,60.837842 C 106.41992,61.407099 102.14597,65.977603 105.75713,64.546156 C 106.75329,59.280680 112.07334,64.812017 107.43303,66.072832 C 106.32919,62.477203 102.76135,65.275646 106.10550,66.960380 C 109.77431,67.996845 112.76718,61.926401 108.15135,60.837842 z M 43.616091,83.250850 C 40.779241,85.685802 46.848659,91.563454 46.472316,95.236933 C 47.980658,101.09377 50.193188,107.11366 50.221795,113.18027 C 51.477182,112.45001 52.412009,120.78095 53.691781,117.07588 C 52.747302,113.50170 50.080759,108.91352 49.728833,104.34364 C 48.626680,97.446857 46.789725,89.508470 43.616091,83.250850 z M 112.17261,83.664740 C 95.779614,90.858949 78.719670,97.808942 61.890615,103.93139 C 60.094360,105.03829 56.425042,105.57286 56.839367,108.11827 C 56.868442,113.60218 58.969999,108.68513 58.833660,107.88833 C 68.440720,113.56299 77.557953,119.99865 86.481768,126.68522 C 90.037520,127.33221 92.397102,132.94152 92.388917,135.92203 C 95.100903,134.39077 91.632357,129.17439 96.093201,129.22233 C 106.39110,124.57825 116.64882,119.41053 126.95606,114.80211 C 133.32975,111.49328 139.73845,108.08309 145.42060,103.73322 C 140.45578,106.15618 136.34667,110.14589 131.13475,112.27319 C 121.65116,117.17180 111.58506,120.84830 101.94264,125.43134 C 98.510514,126.03258 94.478246,130.53087 91.896006,128.45557 C 88.689901,125.44682 85.431494,124.77829 82.105166,121.87092 C 74.680282,116.22589 66.777759,111.27623 58.941633,106.23789 C 71.168716,102.16787 82.966375,96.865976 94.911470,92.038580 C 100.20359,89.557196 107.73633,87.662917 112.87915,84.961650 C 114.40098,85.131858 112.00645,83.795781 112.17261,83.664740 z M 146.42394,102.61943 C 143.03257,103.82767 146.74606,110.01080 144.41669,112.01931 C 137.50666,117.55965 128.37231,119.10715 120.27365,122.29490 C 110.67720,125.88281 101.00336,129.97296 92.453477,135.63546 C 96.635187,133.53682 100.99311,131.56259 105.29809,129.62761 C 114.85290,124.68039 125.12371,121.42418 135.11086,117.56464 C 139.34541,114.87808 146.69082,114.12918 146.61805,108.45494 C 146.83242,106.66757 146.44845,104.42298 146.42394,102.61943 z "
+           id="path1062"
+           sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
+           style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+      </g>
+    </g>
+    <g
+       transform="translate(645.1857,1427.574)"
+       id="g48747">
+      <path
+         style="fill:#ffff00;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+         d="M -86.419853,-691.35483 C -76.144661,-694.12138 -64.683870,-695.22800 -55.594278,-689.69490 C -64.091071,-673.09562 -66.659869,-647.36672 -63.300672,-629.93747 C -71.402265,-637.40715 -83.060655,-635.74723 -94.719045,-632.42736 C -98.473443,-651.23989 -96.892644,-670.05241 -86.419853,-691.35483 z "
+         id="path48749"
+         sodipodi:nodetypes="ccccc" />
+      <path
+         style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+         d="M -85.234254,-677.24544 C -79.701458,-679.45868 -75.354262,-680.84195 -68.635867,-676.41547"
+         id="path48751"
+         sodipodi:nodetypes="cc" />
+      <path
+         sodipodi:nodetypes="cc"
+         id="path48753"
+         d="M -87.605452,-667.28587 C -82.072656,-669.49911 -77.725460,-670.88238 -71.007065,-666.45590"
+         style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+    </g>
+    <g
+       id="g49689"
+       transform="translate(321.2698,204.3806)">
+      <rect
+         y="156.89761"
+         x="216.43214"
+         height="271.14737"
+         width="458.32129"
+         id="rect19260"
+         style="fill:#ffffff;fill-opacity:0.0000000;stroke:#ff0000;stroke-width:4.0000000;stroke-linecap:butt;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+      <g
+         transform="translate(22.64328,0.000000)"
+         id="g49670">
+        <g
+           id="g1440"
+           transform="matrix(-0.679077,0.000000,0.000000,0.679077,613.1959,111.1484)">
+          <g
+             id="g731">
+            <path
+               transform="translate(26.10760,-0.791130)"
+               style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path703"
+               d="M 10.284800,152.69000 C 10.284800,152.69000 305.38000,146.36100 306.96200,146.36100 C 308.54400,146.36100 450.15800,253.95600 450.15800,253.95600 L 90.981000,268.98700 C 90.981000,268.98700 10.284800,151.10800 10.284800,152.69000 z " />
+            <g
+               id="g722">
+              <path
+                 transform="translate(26.10760,-0.791130)"
+                 style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path702"
+                 d="M 90.189900,340.98100 L 10.284800,194.62000 L 9.4936800,152.68900 L 90.981000,268.19600 C 94.145600,270.56900 94.936700,337.02500 90.189900,340.98100 z " />
+              <g
+                 id="g715">
+                <path
+                   transform="matrix(1.004310,0.000000,0.000000,1.000000,25.72227,-0.791130)"
+                   style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="cccccc"
+                   id="path701"
+                   d="M 93.354500,268.19600 L 449.36700,253.16400 C 449.36700,253.16400 456.48800,273.73500 456.48800,288.76600 C 456.48800,306.17100 452.53200,321.99400 451.74100,322.78500 L 89.398800,340.19000 C 94.145700,328.32200 94.145500,315.66400 93.354500,268.19600 z " />
+                <g
+                   id="g710">
+                  <path
+                     style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                     sodipodi:nodetypes="ccccc"
+                     id="path706"
+                     d="M 449.36700,298.26000 L 463.60800,297.46800 L 463.60800,309.33500 L 449.36700,310.12700 L 449.36700,298.26000 z " />
+                  <g
+                     id="g707">
+                    <path
+                       style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:2.5000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                       sodipodi:nodetypes="ccccc"
+                       id="path704"
+                       d="M 134.49400,281.64600 L 265.03200,276.10800 L 264.24100,310.12700 L 133.70200,317.24600 L 134.49400,281.64600 z " />
+                    <path
+                       style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                       sodipodi:nodetypes="ccccc"
+                       id="path705"
+                       d="M 443.82900,268.19600 C 444.62000,268.19600 465.98100,267.40500 465.98100,267.40500 L 465.98100,283.22800 L 443.82900,284.01900 L 443.82900,268.19600 z " />
+                  </g>
+                </g>
+              </g>
+            </g>
+          </g>
+          <path
+             style="fill:#000000;fill-opacity:0.25185201;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path567"
+             d="M 228.10400,151.93700 C 228.10400,151.93700 321.70800,150.12000 328.97900,151.02800 C 336.24900,151.93700 403.49900,208.28100 403.49900,208.28100 C 403.49900,208.28100 345.33700,150.11900 228.10400,151.93700 z " />
+          <path
+             style="fill:#ffffff;fill-opacity:0.49999997;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path568"
+             d="M 125.41200,328.24000 C 125.41200,327.33200 120.86800,274.62200 125.41200,274.62200 C 129.95600,274.62200 258.09400,265.53500 258.09400,265.53500 C 258.09400,265.53500 123.59400,279.16600 125.41200,328.24000 z " />
+          <path
+             style="fill:#ffffff;fill-opacity:0.49803898;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path569"
+             d="M 94.513200,243.72400 C 94.513200,243.72400 111.78000,266.44300 112.68900,271.89600 C 113.59800,277.34900 115.41500,323.69700 115.41500,323.69700 C 115.41500,323.69700 111.78000,275.53100 94.513200,243.72400 z " />
+        </g>
+        <text
+           xml:space="preserve"
+           style="font-size:48.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+           x="424.72989"
+           y="395.88855"
+           id="text6614"
+           sodipodi:linespacing="125.00000%"><tspan
+             sodipodi:role="line"
+             id="tspan9784"
+             x="424.72989"
+             y="395.88855">HotelGate server</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g7497"
+       transform="translate(16.69199,-1106.789)">
+      <g
+         id="g5142">
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0643784px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path18927"
+           d="M 1207.3813,1491.0307 C 1224.1769,1497.2363 1227.8281,1511.9747 1227.8281,1511.9747" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.6768856px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path18936"
+           d="M 1209.7952,1478.6913 C 1236.0060,1488.5613 1241.7040,1512.0023 1241.7040,1512.0023" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:2.3075068px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path18941"
+           d="M 1212.2605,1466.3177 C 1249.5475,1479.4553 1257.6533,1510.6571 1257.6533,1510.6571" />
+      </g>
+      <g
+         id="g7477">
+        <path
+           style="stroke:#000000;stroke-width:1.9965503;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="rect14325"
+           d="M 1156.0601,1507.6159 L 1156.0601,1507.6159 L 1162.4343,1518.1688 L 1161.7261,1518.1688 L 1156.0601,1507.6159 z " />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0643784px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path18943"
+           d="M 1156.4687,1491.2187 C 1139.6731,1497.4244 1136.0219,1512.1627 1136.0219,1512.1627" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.6768856px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path18945"
+           d="M 1154.0548,1478.8794 C 1127.8440,1488.7493 1122.1460,1512.1904 1122.1460,1512.1904" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:2.3075068px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path18947"
+           d="M 1151.5895,1466.5057 C 1114.3025,1479.6433 1106.1967,1510.8452 1106.1967,1510.8452" />
+      </g>
+      <g
+         id="g7483">
+        <rect
+           y="1518.8215"
+           x="1161.8298"
+           width="0.70825261"
+           style="stroke:#000000;stroke-width:2.4680953;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="rect14323"
+           height="16.368162" />
+        <rect
+           y="1519.0090"
+           x="1199.7802"
+           width="0.70825261"
+           style="stroke:#000000;stroke-width:2.4680953;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="rect15087"
+           height="16.368162" />
+        <path
+           style="stroke:#000000;stroke-width:2.0792346;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path15089"
+           d="M 1208.0097,1507.8461 L 1208.0097,1507.8461 L 1200.7578,1518.3990 L 1199.9897,1518.3990 L 1208.0097,1507.8461 z " />
+        <rect
+           y="1536.8550"
+           x="1148.7272"
+           width="67.992256"
+           style="fill:url(#linearGradient5131);fill-opacity:1.0000000;fill-rule:evenodd;stroke:url(#linearGradient5133);stroke-width:3.3941357;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="rect11991"
+           height="75.981194" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:url(#linearGradient5128);stroke-width:1.7308000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path13531"
+           d="M 1165.3353,1574.9768 L 1200.1982,1574.9768" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:url(#linearGradient5125);stroke-width:1.7308000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path14299"
+           d="M 1165.3353,1578.9198 L 1200.1982,1578.9198" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:url(#linearGradient5122);stroke-width:1.7308000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path14303"
+           d="M 1165.3353,1586.8057 L 1200.1982,1586.8057" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:url(#linearGradient5119);stroke-width:1.7308000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path14307"
+           d="M 1165.3353,1590.7487 L 1200.1982,1590.7487" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:url(#linearGradient5116);stroke-width:1.7308000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path14311"
+           d="M 1165.3353,1594.6916 L 1200.1982,1594.6916" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:url(#linearGradient5113);stroke-width:1.7308000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path14315"
+           d="M 1165.3353,1598.6346 L 1200.1982,1598.6346" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:url(#linearGradient5110);stroke-width:1.7308000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path14319"
+           d="M 1165.3353,1582.8627 L 1200.1982,1582.8627" />
+        <rect
+           y="1548.8127"
+           x="1168.9612"
+           width="27.524021"
+           style="fill:url(#linearGradient5099);fill-opacity:1.0000000;fill-rule:evenodd;stroke:url(#linearGradient5101);stroke-width:0.88177949;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="rect19707"
+           height="12.668211" />
+      </g>
+    </g>
+    <g
+       id="g6959"
+       transform="translate(16.69199,-1106.789)">
+      <g
+         id="g6184">
+        <g
+           inkscape:label="Layer 1"
+           id="g13521"
+           transform="matrix(0.278462,0.000000,0.000000,0.278462,1084.375,1621.130)">
+          <g
+             id="g13349">
+            <path
+               style="fill:#0c0d0d;fill-opacity:0.46428570;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path1318"
+               d="M 457.69310,531.23993 L 408.33448,567.36840 L 397.13974,576.01888 L 383.40075,576.01888 L 370.17060,572.45692 L 177.82466,522.58945 L 145.25815,513.93897 L 144.74930,510.88586 L 150.34667,508.34160 L 183.42203,498.16457 L 377.80338,524.62486 L 434.79477,524.11600 L 457.69310,531.23993 z " />
+            <path
+               style="fill:#404348;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="cccccccccccscccccccccccccccc"
+               id="path1316"
+               d="M 144.31900,498.16042 C 144.87838,499.97839 145.43775,501.79637 145.99713,503.61434 C 148.09479,503.89403 150.19245,504.17371 152.29011,504.45340 C 238.93475,527.27504 322.01742,549.07897 389.32569,565.28554 C 394.22023,564.02694 399.11477,562.76835 404.00931,561.50975 C 420.93043,549.34332 437.85156,537.17690 454.77268,525.01047 C 455.47190,526.40891 456.17112,527.80735 456.87034,529.20579 C 459.24769,527.52766 461.62503,525.84954 464.00238,524.17141 C 477.00787,514.10264 490.01337,504.03387 503.01886,493.96510 C 503.85792,492.14713 504.69699,490.32916 505.53605,488.51119 C 506.09543,488.09166 506.65480,487.67212 507.21418,487.25259 C 507.21418,487.25259 507.21418,487.25259 507.21418,484.73540 C 507.21418,482.21821 507.21418,480.12055 507.21418,480.12055 C 485.81805,494.66432 464.42191,509.20810 443.02578,523.75187 C 442.60625,523.75187 442.18672,523.75187 441.76719,523.75187 C 441.48750,523.89172 441.20781,524.03156 440.92812,524.17141 C 440.64843,524.73078 440.36875,525.29016 440.08906,525.84953 C 438.97031,526.40891 437.85155,526.96828 436.73280,527.52766 C 436.31327,527.52766 435.89374,527.52766 435.47421,527.52766 C 435.33436,528.22688 435.19452,528.92610 435.05467,529.62532 C 433.51639,530.46438 431.97810,531.30345 430.43982,532.14251 C 429.88044,532.14251 429.32107,532.14251 428.76169,532.14251 C 427.36325,533.40111 425.96482,534.65970 424.56638,535.91830 C 424.28669,536.47768 424.00700,537.03705 423.72731,537.59643 C 417.15464,542.21128 410.58198,546.82614 404.00931,551.44099 C 402.19134,553.53865 400.37336,555.63631 398.55539,557.73397 C 396.03820,558.43319 393.52101,559.13241 391.00382,559.83163 C 307.24899,540.80112 224.00301,520.24405 144.31900,498.16042 z " />
+            <path
+               style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="cccccccccccccccccccccccc"
+               id="path1320"
+               d="M 507.32515,478.88631 C 479.50792,497.03535 451.69070,515.18440 423.87347,533.33344 C 416.57993,538.42196 409.28639,543.51047 401.99285,548.59899 C 399.44859,550.63440 396.90433,552.66981 394.36007,554.70522 C 391.81581,554.70522 389.27156,554.70522 386.72730,554.70522 C 366.03399,552.16096 346.86725,545.54589 326.17394,540.96622 C 265.45097,526.88799 206.76341,512.80976 144.00503,494.15186 C 143.83541,495.50880 143.66580,496.86574 143.49618,498.22268 C 226.09977,518.91598 308.70337,539.60928 391.30696,560.30258 C 393.68160,559.28488 396.05625,558.26717 398.43089,557.24947 C 400.46630,554.70521 402.50170,552.16096 404.53711,549.61670 C 409.28639,547.07244 414.03567,544.52818 418.78495,541.98392 C 420.14189,540.79660 421.49883,539.60928 422.85577,538.42196 C 423.70386,537.06502 424.55194,535.70809 425.40003,534.35115 C 426.75697,533.50306 428.11390,532.65498 429.47084,531.80689 C 430.31893,531.97651 431.16701,532.14612 432.01510,532.31574 C 432.86319,531.46765 433.71127,530.61957 434.55936,529.77148 C 434.72898,529.09301 434.89859,528.41454 435.06821,527.73607 C 435.74668,527.73607 436.42514,527.73607 437.10361,527.73607 C 438.29093,527.05760 439.47826,526.37914 440.66558,525.70067 C 440.66558,525.19182 440.66558,524.68296 440.66558,524.17411 C 441.85290,523.83488 443.04022,523.49564 444.22754,523.15641 C 451.18185,518.40713 458.13615,513.65784 465.09046,508.90856 C 479.16869,498.90114 493.24692,488.89373 507.32515,478.88631 z " />
+            <path
+               style="fill:#cecdc9;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#414746;stroke-width:0.50000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="path2049"
+               d="M 505.98161,478.68538 L 412.86175,541.27414 L 399.63160,549.92462 L 393.52538,553.99543 L 390.98112,554.50428 L 385.38375,553.99543 L 379.78639,554.50428 L 354.85265,548.39806 L 233.23709,518.88466 L 160.47130,499.54830 L 145.20575,494.96863 L 142.66149,492.93323 L 143.67919,491.40667 L 150.29427,488.86241 L 209.82992,467.99949 L 203.21484,471.05260 L 208.30336,473.59686 L 268.34786,485.30045 L 275.47179,483.26504 L 289.21078,485.30045 L 324.83040,493.44208 L 326.35696,495.98634 L 325.33925,497.51289 L 425.07419,518.88466 L 435.25122,520.92007 L 440.33974,517.86696 L 498.85768,480.72078 L 499.36654,479.19423 L 505.98161,478.68538 z " />
+            <path
+               style="fill:#e0e0e2;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#59595e;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path2779"
+               d="M 276.33662,487.33585 L 252.42059,499.03944 L 297.19954,508.19877 L 318.57131,497.00404 L 318.57131,495.47748 L 276.33662,487.33585 z " />
+            <path
+               style="fill:#cbcbcd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#524a50;stroke-width:0.50000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="path2781"
+               d="M 304.83231,510.23418 L 300.25265,513.28729 L 294.14643,513.28729 L 245.29666,503.61911 L 242.75240,501.58370 L 243.26126,499.54829 L 247.33207,497.51289 L 250.89403,497.51289 L 304.83231,510.23418 z " />
+            <path
+               style="fill:#a5a5a5;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#555959;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path2777"
+               d="M 266.66844,504.12797 L 255.47370,508.70763 L 253.94715,511.25189 L 257.50911,512.26960 L 264.12418,512.77845 L 272.77466,509.21649 L 276.33662,506.67223 L 274.30121,504.63682 L 266.66844,504.12797 z " />
+            <path
+               style="fill:#454344;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path4961"
+               d="M 269.72155,519.90236 L 274.81007,521.42892 L 276.84547,520.41122 L 277.35433,518.88466 L 271.24811,517.35811 L 269.72155,519.90236 z " />
+            <path
+               style="fill:#939192;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path4963"
+               d="M 427.43543,513.99708 L 466.61701,492.11646 L 474.75864,488.04564 L 476.79405,483.46598 L 278.34188,448.35521 L 223.89475,468.20043 L 227.96556,471.25354 L 392.32466,505.34660 L 389.27155,506.36430 L 427.43543,513.99708 z M 497.65697,478.88631 L 497.65697,478.88631 z M 494.09501,483.46598 L 445.24524,515.52363 L 437.61247,518.57674 L 430.48854,518.57674 L 410.13447,514.50593 L 326.17394,496.18727 L 325.66509,493.13416 L 322.10313,491.60760 L 278.34188,481.93942 L 270.70911,482.95712 L 266.12944,484.48368 L 205.57609,471.76239 L 203.54068,470.23583 L 204.04953,468.20043 L 282.92155,442.24899 L 288.51892,441.74014 L 343.47490,450.39062 L 467.63472,472.27124 L 493.58615,477.35976 L 499.18352,478.37746 L 498.67467,480.41287 L 494.09501,483.46598 z " />
+            <path
+               style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path4973"
+               d="M 475.85951,484.04815 L 440.93696,506.02069 L 473.20582,487.76331 L 474.90418,487.02027 L 475.85951,484.04815 z " />
+            <path
+               style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path5703"
+               d="M 350.65332,277.68888 L 549.36155,286.18068 L 503.50580,448.37415 L 298.00413,418.65284 L 350.65332,277.68888 z " />
+            <path
+               style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path5701"
+               d="M 351.70743,277.78707 L 550.41566,286.27887 L 504.55991,448.47234 L 299.05824,418.75103 L 351.70743,277.78707 z M 508.80582,472.24940 L 561.45501,282.03297 L 559.75664,277.78707 L 552.96320,275.23953 L 539.37631,273.54116 L 350.00907,266.74772 L 346.61234,269.29526 L 288.01889,434.03627 L 293.11397,439.98054 L 344.06480,447.62316 L 346.61234,437.43300 L 371.23858,441.67890 L 369.54022,449.32152 L 371.23858,454.41661 L 503.71073,473.94776 L 508.80582,472.24940 z " />
+            <path
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,171.4076,234.8891)"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:type="arc"
+               sodipodi:ry="3.3967218"
+               sodipodi:rx="3.3967218"
+               sodipodi:cy="402.73911"
+               sodipodi:cx="413.55090"
+               id="path5710"
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z" />
+            <path
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,179.7138,236.1077)"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:type="arc"
+               sodipodi:ry="3.3967218"
+               sodipodi:rx="3.3967218"
+               sodipodi:cy="402.73911"
+               sodipodi:cx="413.55090"
+               id="path6440"
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z" />
+            <path
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,187.0261,237.1521)"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:type="arc"
+               sodipodi:ry="3.3967218"
+               sodipodi:rx="3.3967218"
+               sodipodi:cy="402.73911"
+               sodipodi:cx="413.55090"
+               id="path6442"
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z" />
+            <path
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,193.5815,238.3358)"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:type="arc"
+               sodipodi:ry="3.3967218"
+               sodipodi:rx="3.3967218"
+               sodipodi:cy="402.73911"
+               sodipodi:cx="413.55090"
+               id="path6444"
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z" />
+            <path
+               style="fill:#78797b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path6446"
+               d="M 285.63627,429.08304 L 288.83668,436.28396 L 292.03708,435.48385 L 292.03708,441.08456 L 287.23647,437.88416 L 285.63627,429.08304 z " />
+            <path
+               style="fill:#1c1b21;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path7174"
+               d="M 297.50241,431.25366 L 294.91197,430.85513 L 293.11859,434.84043 L 292.32153,436.43454 L 292.72006,439.82205 L 293.11859,441.81470 L 295.50977,442.61175 L 296.30683,441.41617 L 296.30683,439.22425 L 295.90830,437.43087 L 295.90830,435.23896 L 297.50241,432.84778 L 297.50241,431.25366 z " />
+            <path
+               style="fill:#6a6a6b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path7176"
+               d="M 296.94250,438.46583 L 340.19282,445.56663 L 340.19282,448.79427 L 298.87908,441.69347 L 296.94250,438.46583 z " />
+            <path
+               style="fill:#424041;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path7904"
+               d="M 342.77493,448.79427 L 342.12941,444.27558 L 346.00257,439.75689 L 369.88707,443.63005 L 368.59602,448.14874 L 368.59602,452.66743 L 342.77493,448.79427 z " />
+            <path
+               style="fill:#f4f3ee;fill-opacity:0.41071430;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path7906"
+               d="M 345.63607,440.61481 L 343.97437,442.51392 L 368.30657,446.19342 L 369.73090,444.53170 L 345.63607,440.61481 z " />
+            <path
+               style="fill:#6a6a6b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path8634"
+               d="M 369.56539,450.47664 L 489.43134,469.90055 L 489.43134,473.22306 L 370.07654,452.52127 L 369.56539,450.47664 z " />
+            <path
+               style="fill:#353533;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path9362"
+               d="M 491.28555,474.61928 L 490.41974,471.77447 L 490.54343,469.79547 L 491.40924,466.45592 L 493.14086,462.86899 L 496.48042,463.36374 L 495.98567,465.96117 L 494.50142,468.31123 C 494.50142,468.31123 493.88299,470.53760 493.88299,471.03235 C 493.88299,471.52710 494.00667,473.75347 494.00667,473.75347 L 494.37773,475.11402 L 491.28555,474.61928 z " />
+            <path
+               transform="matrix(1.555556,0.000000,0.000000,1.555556,-270.0425,-255.0483)"
+               style="opacity:1.0000000;fill:#030000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:type="arc"
+               sodipodi:ry="1.4729594"
+               sodipodi:rx="1.4729594"
+               sodipodi:cy="459.08688"
+               sodipodi:cx="486.07657"
+               id="path9364"
+               d="M 487.54953 459.08688 A 1.4729594 1.4729594 0 1 1  484.60361,459.08688 A 1.4729594 1.4729594 0 1 1  487.54953 459.08688 z" />
+            <path
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,199.8980,239.2676)"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:type="arc"
+               sodipodi:ry="3.3967218"
+               sodipodi:rx="3.3967218"
+               sodipodi:cy="402.73911"
+               sodipodi:cx="413.55090"
+               id="path10092"
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z" />
+            <path
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,207.5076,240.8516)"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:type="arc"
+               sodipodi:ry="3.3967218"
+               sodipodi:rx="3.3967218"
+               sodipodi:cy="402.73911"
+               sodipodi:cx="413.55090"
+               id="path10094"
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z" />
+            <g
+               transform="matrix(1.135954,0.000000,0.000000,0.881004,-272.0857,-176.6878)"
+               id="g11792">
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path10826"
+                 d="M 517.05812,722.17999 L 517.00316,722.99711 L 525.56375,725.05053 L 526.50287,724.68934 L 531.27053,721.58311 L 531.19831,720.57178 L 522.81873,719.19926 L 517.05812,722.17999 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path10828"
+                 d="M 525.55974,724.02550 L 531.25938,720.79265 L 531.17024,721.51561 L 526.31645,724.56907 L 525.59407,724.85802 L 524.87170,724.56907 L 517.14222,722.76312 L 517.21459,722.07553 L 525.55974,724.02550 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11556"
+                 d="M 507.26354,719.73135 L 507.20858,720.54846 L 515.76918,722.60189 L 516.70830,722.24070 L 521.47598,719.13447 L 521.40376,718.12314 L 513.02415,716.75062 L 507.26354,719.73135 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11558"
+                 d="M 515.76517,721.57686 L 521.46483,718.34401 L 521.37569,719.06697 L 516.52187,722.12043 L 515.79950,722.40938 L 515.07713,722.12043 L 507.34765,720.31448 L 507.42002,719.62689 L 515.76517,721.57686 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11560"
+                 d="M 497.16289,717.58879 L 497.10793,718.40590 L 505.66853,720.45932 L 506.60765,720.09813 L 511.37533,716.99191 L 511.30310,715.98058 L 502.92350,714.60805 L 497.16289,717.58879 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11562"
+                 d="M 505.66452,719.43430 L 511.36417,716.20145 L 511.27504,716.92441 L 506.42122,719.97786 L 505.69885,720.26682 L 504.97647,719.97786 L 497.24699,718.17192 L 497.31937,717.48432 L 505.66452,719.43430 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11564"
+                 d="M 487.06224,715.44622 L 487.00728,716.26334 L 495.56787,718.31676 L 496.50700,717.95558 L 501.27468,714.84935 L 501.20245,713.83802 L 492.82285,712.46550 L 487.06224,715.44622 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11566"
+                 d="M 495.56386,717.29174 L 501.26352,714.05889 L 501.17439,714.78185 L 496.32057,717.83531 L 495.59819,718.12426 L 494.87582,717.83531 L 487.14634,716.02936 L 487.21872,715.34177 L 495.56386,717.29174 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11568"
+                 d="M 477.57375,712.99759 L 477.51879,713.81469 L 486.07938,715.86812 L 487.01850,715.50693 L 491.78619,712.40070 L 491.71397,711.38938 L 483.33436,710.01685 L 477.57375,712.99759 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11570"
+                 d="M 486.07537,714.84309 L 491.77503,711.61024 L 491.68589,712.33320 L 486.83208,715.38666 L 486.10970,715.67561 L 485.38733,715.38666 L 477.65785,713.58072 L 477.73022,712.89312 L 486.07537,714.84309 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11572"
+                 d="M 510.32435,726.15904 L 510.26939,726.97614 L 518.82998,729.02958 L 519.76912,728.66838 L 524.53674,725.56215 L 524.46452,724.55083 L 516.08497,723.17831 L 510.32435,726.15904 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11574"
+                 d="M 518.82597,728.00455 L 524.52559,724.77169 L 524.43645,725.49465 L 519.58270,728.54811 L 518.86030,728.83706 L 518.13793,728.54811 L 510.40846,726.74217 L 510.48083,726.05457 L 518.82597,728.00455 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11576"
+                 d="M 500.52977,723.71039 L 500.47482,724.52751 L 509.03541,726.58093 L 509.97453,726.21974 L 514.74222,723.11352 L 514.67000,722.10218 L 506.29039,720.72966 L 500.52977,723.71039 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11578"
+                 d="M 509.03140,725.55590 L 514.73107,722.32306 L 514.64192,723.04601 L 509.78811,726.09947 L 509.06574,726.38842 L 508.34336,726.09947 L 500.61389,724.29352 L 500.68625,723.60593 L 509.03140,725.55590 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11580"
+                 d="M 490.42912,721.56783 L 490.37417,722.38494 L 498.93476,724.43836 L 499.87388,724.07718 L 504.64156,720.97095 L 504.56934,719.95962 L 496.18974,718.58710 L 490.42912,721.56783 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11582"
+                 d="M 498.93075,723.41334 L 504.63041,720.18049 L 504.54127,720.90345 L 499.68746,723.95691 L 498.96508,724.24586 L 498.24270,723.95691 L 490.51323,722.15096 L 490.58560,721.46337 L 498.93075,723.41334 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11584"
+                 d="M 480.32847,719.42527 L 480.27352,720.24238 L 488.83411,722.29581 L 489.77323,721.93462 L 494.54091,718.82839 L 494.46869,717.81706 L 486.08909,716.44454 L 480.32847,719.42527 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11586"
+                 d="M 488.83010,721.27078 L 494.52976,718.03793 L 494.44062,718.76089 L 489.58681,721.81435 L 488.86443,722.10330 L 488.14205,721.81435 L 480.41258,720.00840 L 480.48495,719.32081 L 488.83010,721.27078 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11588"
+                 d="M 470.83998,716.97663 L 470.78503,717.79374 L 479.34561,719.84716 L 480.28474,719.48597 L 485.05242,716.37975 L 484.98020,715.36842 L 476.60060,713.99589 L 470.83998,716.97663 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11590"
+                 d="M 479.34160,718.82213 L 485.04127,715.58929 L 484.95213,716.31225 L 480.09832,719.36571 L 479.37594,719.65466 L 478.65356,719.36571 L 470.92409,717.55976 L 470.99646,716.87216 L 479.34160,718.82213 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11592"
+                 d="M 503.59059,730.75024 L 503.53563,731.56735 L 512.09622,733.62078 L 513.03535,733.25959 L 517.80298,730.15336 L 517.73075,729.14203 L 509.35120,727.76951 L 503.59059,730.75024 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11594"
+                 d="M 512.09220,732.59575 L 517.79182,729.36290 L 517.70269,730.08586 L 512.84893,733.13932 L 512.12654,733.42826 L 511.40417,733.13932 L 503.67469,731.33337 L 503.74706,730.64578 L 512.09220,732.59575 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11596"
+                 d="M 493.79601,728.30160 L 493.74106,729.11871 L 502.30164,731.17213 L 503.24076,730.81095 L 508.00845,727.70472 L 507.93623,726.69338 L 499.55663,725.32086 L 493.79601,728.30160 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11598"
+                 d="M 502.29763,730.14710 L 507.99730,726.91426 L 507.90816,727.63722 L 503.05435,730.69068 L 502.33197,730.97963 L 501.60960,730.69068 L 493.88012,728.88472 L 493.95248,728.19713 L 502.29763,730.14710 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11600"
+                 d="M 483.69536,726.15904 L 483.64040,726.97614 L 492.20099,729.02958 L 493.14011,728.66838 L 497.90780,725.56215 L 497.83558,724.55083 L 489.45597,723.17831 L 483.69536,726.15904 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11602"
+                 d="M 492.19698,728.00455 L 497.89665,724.77169 L 497.80750,725.49465 L 492.95369,728.54811 L 492.23132,728.83706 L 491.50894,728.54811 L 483.77946,726.74217 L 483.85183,726.05457 L 492.19698,728.00455 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11604"
+                 d="M 473.59471,724.01648 L 473.53975,724.83359 L 482.10034,726.88701 L 483.03946,726.52582 L 487.80714,723.41959 L 487.73492,722.40826 L 479.35532,721.03574 L 473.59471,724.01648 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11606"
+                 d="M 482.09633,725.86198 L 487.79599,722.62914 L 487.70685,723.35209 L 482.85304,726.40555 L 482.13067,726.69450 L 481.40829,726.40555 L 473.67881,724.59960 L 473.75118,723.91201 L 482.09633,725.86198 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11608"
+                 d="M 464.10622,721.56783 L 464.05126,722.38494 L 472.61184,724.43836 L 473.55097,724.07718 L 478.31865,720.97095 L 478.24643,719.95962 L 469.86683,718.58710 L 464.10622,721.56783 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11610"
+                 d="M 472.60783,723.41334 L 478.30750,720.18049 L 478.21837,720.90345 L 473.36455,723.95691 L 472.64217,724.24586 L 471.91980,723.95691 L 464.19032,722.15096 L 464.26270,721.46337 L 472.60783,723.41334 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11612"
+                 d="M 565.33192,734.24843 L 565.27691,735.06555 L 573.83757,737.11897 L 574.77667,736.75778 L 579.54429,733.65155 L 579.47207,732.64023 L 571.09250,731.26771 L 565.33192,734.24843 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11614"
+                 d="M 573.83354,736.09395 L 579.53318,732.86109 L 579.44399,733.58405 L 574.59023,736.63751 L 573.86787,736.92646 L 573.14552,736.63751 L 565.41600,734.83157 L 565.48838,734.14398 L 573.83354,736.09395 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11616"
+                 d="M 555.53735,731.79979 L 555.48235,732.61691 L 564.04292,734.67033 L 564.98210,734.30914 L 569.74973,731.20291 L 569.67751,730.19158 L 561.29793,728.81906 L 555.53735,731.79979 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11618"
+                 d="M 564.03897,733.64530 L 569.73861,730.41245 L 569.64951,731.13541 L 564.79567,734.18887 L 564.07331,734.47782 L 563.35087,734.18887 L 555.62143,732.38292 L 555.69382,731.69533 L 564.03897,733.64530 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11620"
+                 d="M 545.43670,729.65723 L 545.38169,730.47434 L 553.94227,732.52776 L 554.88145,732.16658 L 559.64908,729.06035 L 559.57686,728.04902 L 551.19728,726.67649 L 545.43670,729.65723 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11622"
+                 d="M 553.93832,731.50274 L 559.63796,728.26989 L 559.54886,728.99285 L 554.69502,732.04631 L 553.97266,732.33526 L 553.25022,732.04631 L 545.52078,730.24036 L 545.59316,729.55277 L 553.93832,731.50274 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11624"
+                 d="M 535.33602,727.51467 L 535.28107,728.33178 L 543.84162,730.38521 L 544.78080,730.02402 L 549.54842,726.91779 L 549.47620,725.90646 L 541.09663,724.53394 L 535.33602,727.51467 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11626"
+                 d="M 543.83767,729.36018 L 549.53731,726.12733 L 549.44821,726.85029 L 544.59436,729.90375 L 543.87201,730.19270 L 543.14957,729.90375 L 535.42013,728.09780 L 535.49250,727.41021 L 543.83767,729.36018 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11628"
+                 d="M 525.84753,725.06603 L 525.79257,725.88314 L 534.35317,727.93656 L 535.29229,727.57537 L 540.05995,724.46915 L 539.98775,723.45782 L 531.60814,722.08529 L 525.84753,725.06603 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11630"
+                 d="M 534.34916,726.91153 L 540.04881,723.67869 L 539.95968,724.40165 L 535.10587,727.45510 L 534.38349,727.74406 L 533.66111,727.45510 L 525.93163,725.64916 L 526.00401,724.96156 L 534.34916,726.91153 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11632"
+                 d="M 558.59815,738.22748 L 558.54314,739.04459 L 567.10380,741.09802 L 568.04290,740.73682 L 572.81052,737.63059 L 572.73831,736.61927 L 564.35873,735.24675 L 558.59815,738.22748 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11634"
+                 d="M 567.09977,740.07299 L 572.79941,736.84014 L 572.71022,737.56309 L 567.85646,740.61655 L 567.13411,740.90550 L 566.41175,740.61655 L 558.68223,738.81061 L 558.75461,738.12301 L 567.09977,740.07299 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11636"
+                 d="M 548.80359,735.77883 L 548.74858,736.59595 L 557.30916,738.64937 L 558.24834,738.28819 L 563.01596,735.18196 L 562.94374,734.17062 L 554.56416,732.79810 L 548.80359,735.77883 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11638"
+                 d="M 557.30520,737.62434 L 563.00484,734.39150 L 562.91574,735.11446 L 558.06190,738.16792 L 557.33954,738.45687 L 556.61710,738.16792 L 548.88766,736.36196 L 548.96005,735.67437 L 557.30520,737.62434 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11640"
+                 d="M 538.70291,733.63628 L 538.64796,734.45338 L 547.20850,736.50681 L 548.14768,736.14562 L 552.91531,733.03939 L 552.84309,732.02807 L 544.46351,730.65554 L 538.70291,733.63628 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11642"
+                 d="M 547.20455,735.48179 L 552.90419,732.24893 L 552.81509,732.97189 L 547.96125,736.02535 L 547.23889,736.31430 L 546.51645,736.02535 L 538.78702,734.21941 L 538.85939,733.53181 L 547.20455,735.48179 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11644"
+                 d="M 528.60226,731.49371 L 528.54731,732.31083 L 537.10789,734.36425 L 538.04701,734.00306 L 542.81466,730.89683 L 542.74244,729.88550 L 534.36288,728.51298 L 528.60226,731.49371 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11646"
+                 d="M 537.10388,733.33922 L 542.80354,730.10638 L 542.71444,730.82933 L 537.86059,733.88279 L 537.13821,734.17174 L 536.41584,733.88279 L 528.68637,732.07684 L 528.75873,731.38925 L 537.10388,733.33922 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11648"
+                 d="M 519.11376,729.04507 L 519.05881,729.86218 L 527.61940,731.91560 L 528.55852,731.55442 L 533.32620,728.44819 L 533.25398,727.43686 L 524.87438,726.06434 L 519.11376,729.04507 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11650"
+                 d="M 527.61539,730.89058 L 533.31505,727.65773 L 533.22591,728.38069 L 528.37210,731.43415 L 527.64973,731.72310 L 526.92735,731.43415 L 519.19787,729.62820 L 519.27024,728.94061 L 527.61539,730.89058 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11652"
+                 d="M 551.86438,742.81868 L 551.80937,743.63580 L 560.37003,745.68922 L 561.30913,745.32803 L 566.07676,742.22181 L 566.00454,741.21047 L 557.62496,739.83795 L 551.86438,742.81868 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11654"
+                 d="M 560.36600,744.66419 L 566.06564,741.43134 L 565.97646,742.15430 L 561.12270,745.20776 L 560.40034,745.49671 L 559.67798,745.20776 L 551.94846,743.40181 L 552.02084,742.71422 L 560.36600,744.66419 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11656"
+                 d="M 542.06982,740.37004 L 542.01481,741.18715 L 550.57539,743.24057 L 551.51457,742.87939 L 556.28219,739.77316 L 556.20997,738.76183 L 547.83040,737.38931 L 542.06982,740.37004 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11658"
+                 d="M 550.57143,742.21555 L 556.27108,738.98270 L 556.18197,739.70566 L 551.32813,742.75912 L 550.60577,743.04807 L 549.88342,742.75912 L 542.15389,740.95317 L 542.22628,740.26558 L 550.57143,742.21555 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11660"
+                 d="M 531.96915,738.22748 L 531.91419,739.04459 L 540.47473,741.09802 L 541.41391,740.73682 L 546.18154,737.63059 L 546.10932,736.61927 L 537.72976,735.24675 L 531.96915,738.22748 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11662"
+                 d="M 540.47078,740.07299 L 546.17042,736.84014 L 546.08132,737.56309 L 541.22748,740.61655 L 540.50512,740.90550 L 539.78273,740.61655 L 532.05325,738.81061 L 532.12562,738.12301 L 540.47078,740.07299 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11664"
+                 d="M 521.86850,736.08492 L 521.81354,736.90203 L 530.37412,738.95545 L 531.31325,738.59426 L 536.08093,735.48804 L 536.00871,734.47670 L 527.62911,733.10418 L 521.86850,736.08492 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11666"
+                 d="M 530.37011,737.93042 L 536.06978,734.69758 L 535.98064,735.42054 L 531.12683,738.47400 L 530.40445,738.76295 L 529.68208,738.47400 L 521.95260,736.66804 L 522.02497,735.98045 L 530.37011,737.93042 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11668"
+                 d="M 512.38000,733.63628 L 512.32504,734.45338 L 520.88563,736.50681 L 521.82475,736.14562 L 526.59244,733.03939 L 526.52022,732.02807 L 518.14061,730.65554 L 512.38000,733.63628 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11670"
+                 d="M 520.88162,735.48179 L 526.58129,732.24893 L 526.49215,732.97189 L 521.63833,736.02535 L 520.91596,736.31430 L 520.19359,736.02535 L 512.46411,734.21941 L 512.53648,733.53181 L 520.88162,735.48179 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11672"
+                 d="M 497.14518,734.85186 L 497.09022,735.66897 L 505.65081,737.72240 L 506.58993,737.36120 L 511.35759,734.25497 L 511.28537,733.24365 L 502.90579,731.87113 L 497.14518,734.85186 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11674"
+                 d="M 505.64680,736.69737 L 511.34644,733.46451 L 511.25730,734.18747 L 506.40351,737.24093 L 505.68113,737.52988 L 504.95876,737.24093 L 497.22928,735.43499 L 497.30166,734.74740 L 505.64680,736.69737 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11676"
+                 d="M 487.35061,732.40321 L 487.29565,733.22033 L 495.85624,735.27375 L 496.79536,734.91256 L 501.56305,731.80634 L 501.49082,730.79500 L 493.11122,729.42248 L 487.35061,732.40321 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11678"
+                 d="M 495.85223,734.24872 L 501.55189,731.01588 L 501.46275,731.73884 L 496.60894,734.79229 L 495.88656,735.08125 L 495.16419,734.79229 L 487.43471,732.98634 L 487.50708,732.29875 L 495.85223,734.24872 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11680"
+                 d="M 477.24995,730.26065 L 477.19499,731.07776 L 485.75559,733.13119 L 486.69471,732.77000 L 491.46239,729.66377 L 491.39017,728.65245 L 483.01056,727.27992 L 477.24995,730.26065 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11682"
+                 d="M 485.75158,732.10617 L 491.45124,728.87331 L 491.36210,729.59627 L 486.50828,732.64973 L 485.78591,732.93868 L 485.06353,732.64973 L 477.33405,730.84379 L 477.40643,730.15619 L 485.75158,732.10617 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11684"
+                 d="M 467.14930,728.11809 L 467.09434,728.93520 L 475.65494,730.98863 L 476.59406,730.62744 L 481.36174,727.52121 L 481.28951,726.50988 L 472.90991,725.13736 L 467.14930,728.11809 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11686"
+                 d="M 475.65093,729.96360 L 481.35058,726.73075 L 481.26145,727.45371 L 476.40763,730.50717 L 475.68526,730.79612 L 474.96288,730.50717 L 467.23340,728.70122 L 467.30578,728.01363 L 475.65093,729.96360 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11688"
+                 d="M 457.66081,725.66945 L 457.60585,726.48656 L 466.16644,728.53998 L 467.10557,728.17880 L 471.87325,725.07257 L 471.80103,724.06124 L 463.42142,722.68871 L 457.66081,725.66945 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11690"
+                 d="M 466.16243,727.51495 L 471.86209,724.28211 L 471.77296,725.00507 L 466.91915,728.05853 L 466.19676,728.34748 L 465.47439,728.05853 L 457.74491,726.25258 L 457.81729,725.56499 L 466.16243,727.51495 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11692"
+                 d="M 490.41141,738.83090 L 490.35645,739.64801 L 498.91705,741.70144 L 499.85618,741.34024 L 504.62380,738.23402 L 504.55158,737.22269 L 496.17203,735.85017 L 490.41141,738.83090 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11694"
+                 d="M 498.91303,740.67641 L 504.61265,737.44356 L 504.52351,738.16652 L 499.66976,741.21998 L 498.94737,741.50893 L 498.22499,741.21998 L 490.49552,739.41403 L 490.56789,738.72643 L 498.91303,740.67641 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11696"
+                 d="M 480.61684,736.38226 L 480.56189,737.19937 L 489.12247,739.25279 L 490.06159,738.89161 L 494.82928,735.78538 L 494.75706,734.77405 L 486.37746,733.40153 L 480.61684,736.38226 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11698"
+                 d="M 489.11846,738.22777 L 494.81813,734.99492 L 494.72899,735.71788 L 489.87518,738.77134 L 489.15280,739.06029 L 488.43042,738.77134 L 480.70095,736.96539 L 480.77331,736.27780 L 489.11846,738.22777 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11700"
+                 d="M 470.51618,734.23970 L 470.46123,735.05681 L 479.02182,737.11023 L 479.96094,736.74904 L 484.72863,733.64281 L 484.65641,732.63149 L 476.27680,731.25896 L 470.51618,734.23970 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11702"
+                 d="M 479.01781,736.08521 L 484.71748,732.85235 L 484.62833,733.57531 L 479.77452,736.62877 L 479.05214,736.91772 L 478.32977,736.62877 L 470.60029,734.82283 L 470.67266,734.13523 L 479.01781,736.08521 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11704"
+                 d="M 460.41553,732.09713 L 460.36058,732.91425 L 468.92117,734.96767 L 469.86029,734.60648 L 474.62797,731.50026 L 474.55575,730.48892 L 466.17615,729.11640 L 460.41553,732.09713 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11706"
+                 d="M 468.91716,733.94264 L 474.61682,730.70980 L 474.52768,731.43276 L 469.67387,734.48622 L 468.95149,734.77517 L 468.22911,734.48622 L 460.49964,732.68026 L 460.57201,731.99267 L 468.91716,733.94264 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11708"
+                 d="M 450.92704,729.64850 L 450.87209,730.46560 L 459.43267,732.51903 L 460.37180,732.15784 L 465.13948,729.05161 L 465.06726,728.04029 L 456.68766,726.66776 L 450.92704,729.64850 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11710"
+                 d="M 459.42866,731.49400 L 465.12833,728.26115 L 465.03919,728.98411 L 460.18538,732.03757 L 459.46300,732.32652 L 458.74062,732.03757 L 451.01115,730.23163 L 451.08352,729.54403 L 459.42866,731.49400 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11712"
+                 d="M 483.67765,743.42210 L 483.62269,744.23922 L 492.18328,746.29264 L 493.12242,745.93146 L 497.89004,742.82523 L 497.81781,741.81389 L 489.43826,740.44137 L 483.67765,743.42210 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11714"
+                 d="M 492.17927,745.26761 L 497.87888,742.03476 L 497.78975,742.75773 L 492.93600,745.81119 L 492.21361,746.10013 L 491.49123,745.81119 L 483.76175,744.00523 L 483.83412,743.31764 L 492.17927,745.26761 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11716"
+                 d="M 473.88308,740.97347 L 473.82812,741.79057 L 482.38870,743.84400 L 483.32783,743.48281 L 488.09551,740.37658 L 488.02329,739.36525 L 479.64369,737.99273 L 473.88308,740.97347 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11718"
+                 d="M 482.38469,742.81897 L 488.08436,739.58612 L 487.99522,740.30908 L 483.14141,743.36254 L 482.41903,743.65149 L 481.69666,743.36254 L 473.96718,741.55659 L 474.03955,740.86900 L 482.38469,742.81897 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11720"
+                 d="M 463.78242,738.83090 L 463.72747,739.64801 L 472.28805,741.70144 L 473.22717,741.34024 L 477.99486,738.23402 L 477.92264,737.22269 L 469.54304,735.85017 L 463.78242,738.83090 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11722"
+                 d="M 472.28404,740.67641 L 477.98371,737.44356 L 477.89457,738.16652 L 473.04075,741.21998 L 472.31838,741.50893 L 471.59601,741.21998 L 463.86653,739.41403 L 463.93889,738.72643 L 472.28404,740.67641 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11724"
+                 d="M 453.68177,736.68834 L 453.62681,737.50545 L 462.18740,739.55887 L 463.12652,739.19769 L 467.89420,736.09146 L 467.82199,735.08013 L 459.44238,733.70761 L 453.68177,736.68834 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11726"
+                 d="M 462.18339,738.53385 L 467.88305,735.30100 L 467.79391,736.02396 L 462.94010,739.07742 L 462.21773,739.36637 L 461.49535,739.07742 L 453.76587,737.27147 L 453.83824,736.58388 L 462.18339,738.53385 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11728"
+                 d="M 444.19328,734.23970 L 444.13832,735.05681 L 452.69891,737.11023 L 453.63803,736.74904 L 458.40571,733.64281 L 458.33349,732.63149 L 449.95389,731.25896 L 444.19328,734.23970 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11730"
+                 d="M 452.69490,736.08521 L 458.39456,732.85235 L 458.30543,733.57531 L 453.45161,736.62877 L 452.72924,736.91772 L 452.00686,736.62877 L 444.27738,734.82283 L 440.79696,733.43047 L 452.69490,736.08521 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11732"
+                 d="M 545.41900,746.92030 L 545.36399,747.73741 L 553.92465,749.79084 L 554.86375,749.42964 L 559.63137,746.32342 L 559.55915,745.31209 L 551.17957,743.93957 L 545.41900,746.92030 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11734"
+                 d="M 553.92061,748.76581 L 559.62025,745.53296 L 559.53107,746.25592 L 554.67731,749.30937 L 553.95495,749.59833 L 553.23260,749.30937 L 545.50307,747.50343 L 545.57546,746.81584 L 553.92061,748.76581 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11736"
+                 d="M 535.62442,744.47165 L 535.56941,745.28877 L 544.13000,747.34219 L 545.06918,746.98101 L 549.83681,743.87478 L 549.76459,742.86345 L 541.38501,741.49093 L 535.62442,744.47165 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11738"
+                 d="M 544.12605,746.31717 L 549.82569,743.08432 L 549.73659,743.80728 L 544.88275,746.86074 L 544.16039,747.14969 L 543.43795,746.86074 L 535.70849,745.05479 L 535.78088,744.36720 L 544.12605,746.31717 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11740"
+                 d="M 525.52376,742.32910 L 525.46875,743.14620 L 534.02933,745.19963 L 534.96851,744.83844 L 539.73614,741.73221 L 539.66392,740.72089 L 531.28434,739.34836 L 525.52376,742.32910 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11742"
+                 d="M 534.02538,744.17461 L 539.72502,740.94175 L 539.63592,741.66471 L 534.78208,744.71817 L 534.05972,745.00712 L 533.33728,744.71817 L 525.60784,742.91223 L 525.68022,742.22463 L 534.02538,744.17461 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11744"
+                 d="M 515.42309,740.18653 L 515.36813,741.00365 L 523.92868,743.05707 L 524.86786,742.69588 L 529.63549,739.58966 L 529.56327,738.57832 L 521.18369,737.20580 L 515.42309,740.18653 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11746"
+                 d="M 523.92473,742.03204 L 529.62437,738.79920 L 529.53527,739.52216 L 524.68142,742.57561 L 523.95907,742.86457 L 523.23663,742.57561 L 515.50719,740.76966 L 515.57956,740.08207 L 523.92473,742.03204 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11748"
+                 d="M 505.93459,737.73789 L 505.87963,738.55500 L 514.44023,740.60843 L 515.37935,740.24724 L 520.14701,737.14101 L 520.07481,736.12969 L 511.69520,734.75716 L 505.93459,737.73789 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11750"
+                 d="M 514.43622,739.58340 L 520.13588,736.35055 L 520.04674,737.07351 L 515.19293,740.12697 L 514.47055,740.41592 L 513.74818,740.12697 L 506.01870,738.32103 L 506.09107,737.63343 L 514.43622,739.58340 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11752"
+                 d="M 538.68521,750.89934 L 538.63020,751.71645 L 547.19088,753.76988 L 548.12998,753.40869 L 552.89760,750.30246 L 552.82538,749.29113 L 544.44581,747.91861 L 538.68521,750.89934 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11754"
+                 d="M 547.18685,752.74485 L 552.88649,749.51200 L 552.79730,750.23496 L 547.94354,753.28842 L 547.22118,753.57737 L 546.49883,753.28842 L 538.76929,751.48247 L 538.84167,750.79488 L 547.18685,752.74485 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11756"
+                 d="M 528.89065,748.45070 L 528.83564,749.26781 L 537.39622,751.32124 L 538.33540,750.96005 L 543.10304,747.85382 L 543.03082,746.84249 L 534.65123,745.46997 L 528.89065,748.45070 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11758"
+                 d="M 537.39226,750.29621 L 543.09192,747.06336 L 543.00282,747.78632 L 538.14896,750.83978 L 537.42660,751.12873 L 536.70416,750.83978 L 528.97472,749.03383 L 529.04711,748.34624 L 537.39226,750.29621 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11760"
+                 d="M 518.78997,746.30814 L 518.73502,747.12525 L 527.29556,749.17867 L 528.23474,748.81748 L 533.00237,745.71126 L 532.93015,744.69993 L 524.55057,743.32740 L 518.78997,746.30814 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11762"
+                 d="M 527.29161,748.15365 L 532.99125,744.92080 L 532.90215,745.64376 L 528.04831,748.69721 L 527.32595,748.98617 L 526.60351,748.69721 L 518.87408,746.89127 L 518.94645,746.20367 L 527.29161,748.15365 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11764"
+                 d="M 508.68932,744.16557 L 508.63437,744.98269 L 517.19495,747.03611 L 518.13408,746.67493 L 522.90172,743.56870 L 522.82950,742.55737 L 514.44994,741.18485 L 508.68932,744.16557 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11766"
+                 d="M 517.19094,746.01109 L 522.89060,742.77824 L 522.80150,743.50120 L 517.94766,746.55466 L 517.22527,746.84361 L 516.50290,746.55466 L 508.77343,744.74871 L 508.84580,744.06112 L 517.19094,746.01109 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11768"
+                 d="M 499.20082,741.71694 L 499.14587,742.53404 L 507.70646,744.58747 L 508.64558,744.22628 L 513.41327,741.12005 L 513.34105,740.10873 L 504.96144,738.73620 L 499.20082,741.71694 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11770"
+                 d="M 507.70245,743.56244 L 513.40212,740.32959 L 513.31297,741.05255 L 508.45916,744.10601 L 507.73679,744.39496 L 507.01441,744.10601 L 499.28494,742.30007 L 499.35730,741.61247 L 507.70245,743.56244 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11772"
+                 d="M 531.95144,755.49055 L 531.89644,756.30766 L 540.45711,758.36108 L 541.39621,757.99990 L 546.16384,754.89367 L 546.09162,753.88234 L 537.71202,752.50982 L 531.95144,755.49055 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11774"
+                 d="M 540.45308,757.33606 L 546.15272,754.10320 L 546.06354,754.82617 L 541.20977,757.87963 L 540.48742,758.16857 L 539.76504,757.87963 L 532.03552,756.07368 L 532.10790,755.38609 L 540.45308,757.33606 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11776"
+                 d="M 522.15688,753.04191 L 522.10187,753.85902 L 530.66245,755.91244 L 531.60163,755.55125 L 536.36925,752.44502 L 536.29703,751.43369 L 527.91746,750.06117 L 522.15688,753.04191 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11778"
+                 d="M 530.65850,754.88741 L 536.35814,751.65457 L 536.26904,752.37752 L 531.41519,755.43098 L 530.69284,755.71993 L 529.97048,755.43098 L 522.24096,753.62503 L 522.31334,752.93744 L 530.65850,754.88741 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11780"
+                 d="M 512.05621,750.89934 L 512.00125,751.71645 L 520.56180,753.76988 L 521.50098,753.40869 L 526.26860,750.30246 L 526.19638,749.29113 L 517.81682,747.91861 L 512.05621,750.89934 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11782"
+                 d="M 520.55784,752.74485 L 526.25748,749.51200 L 526.16838,750.23496 L 521.31454,753.28842 L 520.59218,753.57737 L 519.86979,753.28842 L 512.14031,751.48247 L 512.21268,750.79488 L 520.55784,752.74485 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11784"
+                 d="M 501.95556,748.75679 L 501.90060,749.57389 L 510.46119,751.62732 L 511.40031,751.26613 L 516.16799,748.15990 L 516.09577,747.14857 L 507.71617,745.77605 L 501.95556,748.75679 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11786"
+                 d="M 510.45718,750.60229 L 516.15684,747.36944 L 516.06770,748.09240 L 511.21389,751.14586 L 510.49151,751.43481 L 509.76914,751.14586 L 502.03966,749.33991 L 502.11203,748.65232 L 510.45718,750.60229 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11788"
+                 d="M 492.46706,746.30814 L 492.41211,747.12525 L 500.97269,749.17867 L 501.91181,748.81748 L 506.67950,745.71126 L 506.60728,744.69993 L 498.22768,743.32740 L 492.46706,746.30814 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11790"
+                 d="M 500.96868,748.15365 L 506.66835,744.92080 L 506.57921,745.64376 L 501.72540,748.69721 L 501.00302,748.98617 L 500.28065,748.69721 L 492.55117,746.89127 L 492.62354,746.20367 L 500.96868,748.15365 z " />
+            </g>
+            <g
+               transform="matrix(1.000000,0.000000,0.000000,1.076560,-146.5725,-175.7068)"
+               id="g12276">
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11916"
+                 d="M 571.83790,609.68864 L 571.77547,610.40852 L 581.49990,612.21760 L 582.56670,611.89939 L 587.98254,609.16279 L 587.90051,608.27180 L 578.38169,607.06260 L 571.83790,609.68864 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11918"
+                 d="M 581.49535,611.31454 L 587.96988,608.46639 L 587.86862,609.10332 L 582.35494,611.79343 L 581.53435,612.04799 L 580.71377,611.79343 L 571.93343,610.20238 L 572.01564,609.59661 L 581.49535,611.31454 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11920"
+                 d="M 560.71171,607.53138 L 560.64928,608.25125 L 570.37372,610.06033 L 571.44052,609.74212 L 576.85639,607.00552 L 576.77435,606.11454 L 567.25550,604.90534 L 560.71171,607.53138 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11922"
+                 d="M 570.36917,609.15728 L 576.84372,606.30913 L 576.74246,606.94606 L 571.22874,609.63617 L 570.40817,609.89073 L 569.58759,609.63617 L 560.80725,608.04512 L 560.88946,607.43935 L 570.36917,609.15728 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11924"
+                 d="M 549.23783,605.64377 L 549.17540,606.36365 L 558.89985,608.17272 L 559.96665,607.85451 L 565.38251,605.11792 L 565.30046,604.22693 L 555.78162,603.01773 L 549.23783,605.64377 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11926"
+                 d="M 558.89529,607.26968 L 565.36983,604.42152 L 565.26859,605.05845 L 559.75487,607.74855 L 558.93429,608.00313 L 558.11370,607.74855 L 549.33337,606.15751 L 549.41559,605.55173 L 558.89529,607.26968 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11928"
+                 d="M 537.76396,603.75616 L 537.70153,604.47605 L 547.42596,606.28512 L 548.49277,605.96692 L 553.90864,603.23032 L 553.82659,602.33933 L 544.30775,601.13013 L 537.76396,603.75616 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11930"
+                 d="M 547.42141,605.38207 L 553.89596,602.53392 L 553.79471,603.17085 L 548.28100,605.86096 L 547.46041,606.11552 L 546.63983,605.86096 L 537.85949,604.26991 L 537.94171,603.66414 L 547.42141,605.38207 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11932"
+                 d="M 526.98547,601.59891 L 526.92304,602.31878 L 536.64748,604.12786 L 537.71427,603.80965 L 543.13015,601.07305 L 543.04811,600.18207 L 533.52926,598.97286 L 526.98547,601.59891 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11934"
+                 d="M 536.64292,603.22480 L 543.11747,600.37665 L 543.01621,601.01358 L 537.50251,603.70369 L 536.68192,603.95825 L 535.86134,603.70369 L 527.08101,602.11265 L 527.16321,601.50687 L 536.64292,603.22480 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11936"
+                 d="M 564.18865,613.19420 L 564.12621,613.91407 L 573.85065,615.72316 L 574.91747,615.40494 L 580.33327,612.66834 L 580.25123,611.77736 L 570.73245,610.56816 L 564.18865,613.19420 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11938"
+                 d="M 573.84610,614.82010 L 580.32060,611.97194 L 580.21934,612.60887 L 574.70571,615.29898 L 573.88509,615.55354 L 573.06451,615.29898 L 564.28419,613.70794 L 564.36640,613.10216 L 573.84610,614.82010 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11940"
+                 d="M 553.06245,611.03693 L 553.00003,611.75681 L 562.72447,613.56588 L 563.79127,613.24767 L 569.20714,610.51108 L 569.12511,609.62009 L 559.60625,608.41089 L 553.06245,611.03693 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11942"
+                 d="M 562.71991,612.66283 L 569.19448,609.81468 L 569.09321,610.45161 L 563.57950,613.14172 L 562.75892,613.39628 L 561.93833,613.14172 L 553.15801,611.55067 L 553.24021,610.94490 L 562.71991,612.66283 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11944"
+                 d="M 541.58858,609.14932 L 541.52616,609.86920 L 551.25060,611.67827 L 552.31739,611.36007 L 557.73326,608.62347 L 557.65122,607.73248 L 548.13238,606.52329 L 541.58858,609.14932 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11946"
+                 d="M 551.24604,610.77523 L 557.72059,607.92707 L 557.61933,608.56400 L 552.10563,611.25411 L 551.28504,611.50868 L 550.46445,611.25411 L 541.68413,609.66306 L 541.76633,609.05729 L 551.24604,610.77523 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11948"
+                 d="M 530.11471,607.26172 L 530.05229,607.98160 L 539.77672,609.79068 L 540.84352,609.47247 L 546.25938,606.73587 L 546.17735,605.84488 L 536.65851,604.63568 L 530.11471,607.26172 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11950"
+                 d="M 539.77217,608.88762 L 546.24672,606.03947 L 546.14546,606.67640 L 540.63176,609.36651 L 539.81116,609.62107 L 538.99057,609.36651 L 530.21025,607.77546 L 530.29246,607.16969 L 539.77217,608.88762 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11952"
+                 d="M 519.33622,605.10446 L 519.27380,605.82434 L 528.99822,607.63341 L 530.06503,607.31520 L 535.48090,604.57860 L 535.39886,603.68762 L 525.88002,602.47841 L 519.33622,605.10446 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11954"
+                 d="M 528.99367,606.73035 L 535.46823,603.88221 L 535.36697,604.51914 L 529.85327,607.20925 L 529.03268,607.46381 L 528.21209,607.20925 L 519.43176,605.61820 L 519.51397,605.01242 L 528.99367,606.73035 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11956"
+                 d="M 556.53941,617.23906 L 556.47697,617.95894 L 566.20141,619.76802 L 567.26822,619.44981 L 572.68403,616.71321 L 572.60198,615.82222 L 563.08319,614.61303 L 556.53941,617.23906 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11958"
+                 d="M 566.19684,618.86497 L 572.67135,616.01681 L 572.57010,616.65374 L 567.05645,619.34385 L 566.23585,619.59841 L 565.41527,619.34385 L 556.63494,617.75280 L 556.71715,617.14703 L 566.19684,618.86497 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11960"
+                 d="M 545.41321,615.08180 L 545.35079,615.80168 L 555.07522,617.61075 L 556.14201,617.29255 L 561.55789,614.55595 L 561.47585,613.66495 L 551.95701,612.45576 L 545.41321,615.08180 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11962"
+                 d="M 555.07066,616.70769 L 561.54522,613.85955 L 561.44397,614.49648 L 555.93026,617.18659 L 555.10967,617.44116 L 554.28909,617.18659 L 545.50876,615.59553 L 545.59096,614.98976 L 555.07066,616.70769 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11964"
+                 d="M 533.93934,613.19420 L 533.87691,613.91407 L 543.60134,615.72316 L 544.66814,615.40494 L 550.08402,612.66834 L 550.00198,611.77736 L 540.48313,610.56816 L 533.93934,613.19420 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11966"
+                 d="M 543.59679,614.82010 L 550.07135,611.97194 L 549.97008,612.60887 L 544.45638,615.29898 L 543.63580,615.55354 L 542.81521,615.29898 L 534.03487,613.70794 L 534.11708,613.10216 L 543.59679,614.82010 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11968"
+                 d="M 522.46547,611.30659 L 522.40303,612.02647 L 532.12747,613.83554 L 533.19427,613.51733 L 538.61013,610.78073 L 538.52809,609.88975 L 529.00925,608.68055 L 522.46547,611.30659 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11970"
+                 d="M 532.12291,612.93249 L 538.59747,610.08434 L 538.49621,610.72126 L 532.98250,613.41137 L 532.16192,613.66594 L 531.34133,613.41137 L 522.56100,611.82032 L 522.64321,611.21456 L 532.12291,612.93249 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11972"
+                 d="M 511.68698,609.14932 L 511.62455,609.86920 L 521.34897,611.67827 L 522.41578,611.36007 L 527.83164,608.62347 L 527.74961,607.73248 L 518.23077,606.52329 L 511.68698,609.14932 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11974"
+                 d="M 521.34441,610.77523 L 527.81898,607.92707 L 527.71773,608.56400 L 522.20401,611.25411 L 521.38342,611.50868 L 520.56284,611.25411 L 511.78251,609.66306 L 511.86473,609.05729 L 521.34441,610.77523 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11984"
+                 d="M 604.07466,616.27612 L 604.01217,616.99599 L 613.73660,618.80507 L 614.80346,618.48686 L 620.21927,615.75026 L 620.13723,614.85928 L 610.61842,613.65007 L 604.07466,616.27612 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11986"
+                 d="M 613.73211,617.90202 L 620.20664,615.05387 L 620.10543,615.69080 L 614.59169,618.38091 L 613.77112,618.63547 L 612.95046,618.38091 L 604.17017,616.78986 L 604.25239,616.18409 L 613.73211,617.90202 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11988"
+                 d="M 592.60075,614.38851 L 592.53833,615.10839 L 602.26272,616.91747 L 603.32959,616.59926 L 608.74539,613.86266 L 608.66335,612.97167 L 599.14454,611.76248 L 592.60075,614.38851 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11990"
+                 d="M 602.25824,616.01442 L 608.73277,613.16626 L 608.63155,613.80319 L 603.11780,616.49330 L 602.29725,616.74787 L 601.47659,616.49330 L 592.69630,614.90225 L 592.77851,614.29648 L 602.25824,616.01442 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11992"
+                 d="M 581.82227,612.23125 L 581.75983,612.95113 L 591.48428,614.76020 L 592.55108,614.44199 L 597.96692,611.70540 L 597.88490,610.81441 L 588.36605,609.60521 L 581.82227,612.23125 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11994"
+                 d="M 591.47973,613.85714 L 597.95427,611.00900 L 597.85302,611.64593 L 592.33931,614.33603 L 591.51872,614.59061 L 590.69813,614.33603 L 581.91780,612.74499 L 582.00002,612.13921 L 591.47973,613.85714 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12004"
+                 d="M 596.42539,619.78168 L 596.36296,620.50154 L 606.08734,622.31062 L 607.15421,621.99241 L 612.57002,619.25581 L 612.48798,618.36484 L 602.96916,617.15563 L 596.42539,619.78168 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12006"
+                 d="M 606.08286,621.40758 L 612.55739,618.55942 L 612.45617,619.19635 L 606.94243,621.88646 L 606.12187,622.14102 L 605.30121,621.88646 L 596.52093,620.29542 L 596.60314,619.68964 L 606.08286,621.40758 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12008"
+                 d="M 584.95151,617.89406 L 584.88909,618.61395 L 594.61352,620.42302 L 595.68031,620.10481 L 601.09614,617.36821 L 601.01411,616.47722 L 591.49531,615.26803 L 584.95151,617.89406 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12010"
+                 d="M 594.60896,619.51997 L 601.08351,616.67182 L 600.98230,617.30874 L 595.46855,619.99885 L 594.64796,620.25342 L 593.82738,619.99885 L 585.04706,618.40780 L 585.12925,617.80203 L 594.60896,619.51997 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12012"
+                 d="M 574.17301,615.73680 L 574.11059,616.45668 L 583.83503,618.26575 L 584.90183,617.94755 L 590.31769,615.21095 L 590.23565,614.31996 L 580.71681,613.11077 L 574.17301,615.73680 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12014"
+                 d="M 583.83047,617.36270 L 590.30502,614.51455 L 590.20377,615.15148 L 584.69006,617.84159 L 583.86948,618.09616 L 583.04889,617.84159 L 574.26856,616.25054 L 574.35077,615.64477 L 583.83047,617.36270 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12024"
+                 d="M 588.77614,623.82654 L 588.71371,624.54642 L 598.43809,626.35550 L 599.50496,626.03728 L 604.92077,623.30068 L 604.83873,622.40970 L 595.31993,621.20051 L 588.77614,623.82654 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12026"
+                 d="M 598.43360,625.45244 L 604.90813,622.60429 L 604.80692,623.24121 L 599.29318,625.93132 L 598.47261,626.18589 L 597.65201,625.93132 L 588.87168,624.34028 L 588.95389,623.73450 L 598.43360,625.45244 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12028"
+                 d="M 577.30227,621.93894 L 577.23984,622.65882 L 586.96426,624.46789 L 588.03107,624.14968 L 593.44694,621.41308 L 593.36490,620.52209 L 583.84606,619.31289 L 577.30227,621.93894 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12030"
+                 d="M 586.95971,623.56483 L 593.43427,620.71669 L 593.33301,621.35362 L 587.81931,624.04373 L 586.99872,624.29829 L 586.17814,624.04373 L 577.39780,622.45267 L 577.48001,621.84690 L 586.95971,623.56483 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12032"
+                 d="M 566.52377,619.78168 L 566.46134,620.50154 L 576.18577,622.31062 L 577.25257,621.99241 L 582.66845,619.25581 L 582.58641,618.36484 L 573.06756,617.15563 L 566.52377,619.78168 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12034"
+                 d="M 576.18122,621.40758 L 582.65578,618.55942 L 582.55452,619.19635 L 577.04081,621.88646 L 576.22023,622.14102 L 575.39965,621.88646 L 566.61932,620.29542 L 566.70152,619.68964 L 576.18122,621.40758 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12036"
+                 d="M 549.21772,620.85261 L 549.15528,621.57248 L 558.87972,623.38156 L 559.94652,623.06335 L 565.36236,620.32674 L 565.28032,619.43577 L 555.76150,618.22657 L 549.21772,620.85261 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12038"
+                 d="M 558.87517,622.47851 L 565.34969,619.63035 L 565.24843,620.26728 L 559.73475,622.95739 L 558.91416,623.21195 L 558.09358,622.95739 L 549.31325,621.36635 L 549.39547,620.76058 L 558.87517,622.47851 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12040"
+                 d="M 538.09153,618.69534 L 538.02910,619.41522 L 547.75354,621.22429 L 548.82034,620.90608 L 554.23621,618.16949 L 554.15416,617.27850 L 544.63532,616.06930 L 538.09153,618.69534 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12042"
+                 d="M 547.74898,620.32124 L 554.22354,617.47309 L 554.12228,618.11002 L 548.60857,620.80013 L 547.78798,621.05470 L 546.96740,620.80013 L 538.18707,619.20908 L 538.26928,618.60331 L 547.74898,620.32124 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12044"
+                 d="M 526.61765,616.80773 L 526.55522,617.52761 L 536.27967,619.33669 L 537.34646,619.01848 L 542.76233,616.28188 L 542.68029,615.39090 L 533.16144,614.18170 L 526.61765,616.80773 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12046"
+                 d="M 536.27511,618.43364 L 542.74966,615.58548 L 542.64840,616.22241 L 537.13469,618.91252 L 536.31411,619.16709 L 535.49352,618.91252 L 526.71318,617.32148 L 526.79540,616.71570 L 536.27511,618.43364 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12048"
+                 d="M 515.14378,614.92013 L 515.08134,615.64001 L 524.80579,617.44909 L 525.87259,617.13088 L 531.28845,614.39428 L 531.20640,613.50329 L 521.68756,612.29409 L 515.14378,614.92013 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12050"
+                 d="M 524.80124,616.54603 L 531.27578,613.69788 L 531.17453,614.33481 L 525.66081,617.02492 L 524.84023,617.27948 L 524.01964,617.02492 L 515.23931,615.43387 L 515.32153,614.82810 L 524.80124,616.54603 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12052"
+                 d="M 504.36529,612.76287 L 504.30286,613.48274 L 514.02729,615.29182 L 515.09410,614.97361 L 520.50997,612.23701 L 520.42793,611.34603 L 510.90908,610.13682 L 504.36529,612.76287 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12054"
+                 d="M 514.02274,614.38876 L 520.49729,611.54062 L 520.39604,612.17755 L 514.88234,614.86766 L 514.06173,615.12222 L 513.24116,614.86766 L 504.46082,613.27661 L 504.54304,612.67084 L 514.02274,614.38876 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12056"
+                 d="M 541.56846,624.35816 L 541.50603,625.07803 L 551.23048,626.88711 L 552.29729,626.56890 L 557.71308,623.83230 L 557.63105,622.94132 L 548.11226,621.73212 L 541.56846,624.35816 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12058"
+                 d="M 551.22591,625.98406 L 557.70042,623.13591 L 557.59916,623.77284 L 552.08552,626.46295 L 551.26492,626.71751 L 550.44433,626.46295 L 541.66401,624.87190 L 541.74622,624.26612 L 551.22591,625.98406 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12060"
+                 d="M 530.44228,622.20090 L 530.37986,622.92077 L 540.10429,624.72984 L 541.17108,624.41164 L 546.58696,621.67504 L 546.50492,620.78406 L 536.98608,619.57486 L 530.44228,622.20090 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12062"
+                 d="M 540.09973,623.82680 L 546.57429,620.97864 L 546.47304,621.61557 L 540.95933,624.30568 L 540.13874,624.56025 L 539.31815,624.30568 L 530.53783,622.71464 L 530.62002,622.10887 L 540.09973,623.82680 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12064"
+                 d="M 518.96840,620.31329 L 518.90598,621.03317 L 528.63041,622.84224 L 529.69721,622.52403 L 535.11309,619.78743 L 535.03105,618.89645 L 525.51220,617.68725 L 518.96840,620.31329 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12066"
+                 d="M 528.62586,621.93919 L 535.10042,619.09103 L 534.99915,619.72796 L 529.48545,622.41807 L 528.66485,622.67264 L 527.84428,622.41807 L 519.06394,620.82703 L 519.14615,620.22125 L 528.62586,621.93919 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12068"
+                 d="M 507.49452,618.42568 L 507.43210,619.14556 L 517.15654,620.95464 L 518.22334,620.63643 L 523.63920,617.89983 L 523.55716,617.00884 L 514.03832,615.79964 L 507.49452,618.42568 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12070"
+                 d="M 517.15198,620.05158 L 523.62654,617.20344 L 523.52528,617.84037 L 518.01157,620.53048 L 517.19098,620.78504 L 516.37039,620.53048 L 507.59007,618.93942 L 507.67228,618.33365 L 517.15198,620.05158 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12072"
+                 d="M 496.71603,616.26843 L 496.65361,616.98829 L 506.37804,618.79737 L 507.44485,618.47916 L 512.86071,615.74256 L 512.77867,614.85159 L 503.25983,613.64238 L 496.71603,616.26843 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12074"
+                 d="M 506.37348,617.89432 L 512.84805,615.04617 L 512.74679,615.68310 L 507.23308,618.37321 L 506.41249,618.62777 L 505.59190,618.37321 L 496.81158,616.78217 L 496.89379,616.17639 L 506.37348,617.89432 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12076"
+                 d="M 533.91922,628.40302 L 533.85679,629.12291 L 543.58123,630.93198 L 544.64805,630.61378 L 550.06384,627.87718 L 549.98179,626.98618 L 540.46301,625.77699 L 533.91922,628.40302 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12078"
+                 d="M 543.57667,630.02892 L 550.05117,627.18077 L 549.94992,627.81771 L 544.43628,630.50782 L 543.61568,630.76238 L 542.79509,630.50782 L 534.01475,628.91676 L 534.09696,628.31099 L 543.57667,630.02892 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12080"
+                 d="M 522.79304,626.24577 L 522.73061,626.96564 L 532.45503,628.77472 L 533.52184,628.45651 L 538.93771,625.71991 L 538.85567,624.82892 L 529.33683,623.61973 L 522.79304,626.24577 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12082"
+                 d="M 532.45048,627.87166 L 538.92504,625.02351 L 538.82378,625.66044 L 533.31008,628.35055 L 532.48949,628.60512 L 531.66891,628.35055 L 522.88857,626.75950 L 522.97078,626.15373 L 532.45048,627.87166 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12084"
+                 d="M 511.31916,624.35816 L 511.25673,625.07803 L 520.98116,626.88711 L 522.04796,626.56890 L 527.46383,623.83230 L 527.38179,622.94132 L 517.86295,621.73212 L 511.31916,624.35816 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12086"
+                 d="M 520.97660,625.98406 L 527.45117,623.13591 L 527.34991,623.77284 L 521.83619,626.46295 L 521.01561,626.71751 L 520.19503,626.46295 L 511.41470,624.87190 L 511.49690,624.26612 L 520.97660,625.98406 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12088"
+                 d="M 499.84528,622.47055 L 499.78285,623.19043 L 509.50729,624.99950 L 510.57408,624.68130 L 515.98995,621.94470 L 515.90792,621.05371 L 506.38907,619.84452 L 499.84528,622.47055 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12090"
+                 d="M 509.50273,624.09645 L 515.97728,621.24830 L 515.87602,621.88523 L 510.36232,624.57534 L 509.54174,624.82991 L 508.72115,624.57534 L 499.94082,622.98429 L 500.02302,622.37852 L 509.50273,624.09645 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12092"
+                 d="M 489.06679,620.31329 L 489.00436,621.03317 L 498.72880,622.84224 L 499.79559,622.52403 L 505.21146,619.78743 L 505.12942,618.89645 L 495.61058,617.68725 L 489.06679,620.31329 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12094"
+                 d="M 498.72424,621.93919 L 505.19879,619.09103 L 505.09755,619.72796 L 499.58383,622.41807 L 498.76325,622.67264 L 497.94266,622.41807 L 489.16233,620.82703 L 489.24455,620.22125 L 498.72424,621.93919 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12104"
+                 d="M 581.45448,627.44009 L 581.39199,628.15995 L 591.11641,629.96903 L 592.18328,629.65082 L 597.59909,626.91422 L 597.51705,626.02325 L 587.99823,624.81404 L 581.45448,627.44009 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12106"
+                 d="M 591.11193,629.06599 L 597.58646,626.21782 L 597.48524,626.85476 L 591.97150,629.54487 L 591.15094,629.79943 L 590.33028,629.54487 L 581.54999,627.95383 L 581.63221,627.34805 L 591.11193,629.06599 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12108"
+                 d="M 569.98058,625.55247 L 569.91815,626.27236 L 579.64254,628.08143 L 580.70941,627.76322 L 586.12521,625.02663 L 586.04317,624.13563 L 576.52436,622.92644 L 569.98058,625.55247 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12110"
+                 d="M 579.63805,627.17837 L 586.11258,624.33023 L 586.01137,624.96716 L 580.49762,627.65726 L 579.67706,627.91184 L 578.85640,627.65726 L 570.07611,626.06621 L 570.15832,625.46044 L 579.63805,627.17837 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12112"
+                 d="M 559.20208,623.39521 L 559.13965,624.11509 L 568.86410,625.92417 L 569.93089,625.60596 L 575.34674,622.86936 L 575.26472,621.97838 L 565.74587,620.76918 L 559.20208,623.39521 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12114"
+                 d="M 568.85954,625.02111 L 575.33409,622.17296 L 575.23283,622.80989 L 569.71913,625.50000 L 568.89854,625.75457 L 568.07796,625.50000 L 559.29763,623.90896 L 559.37984,623.30318 L 568.85954,625.02111 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12124"
+                 d="M 573.80520,630.94564 L 573.74278,631.66551 L 583.46716,633.47458 L 584.53403,633.15637 L 589.94983,630.41978 L 589.86780,629.52880 L 580.34898,628.31959 L 573.80520,630.94564 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12126"
+                 d="M 583.46267,632.57154 L 589.93720,629.72338 L 589.83599,630.36031 L 584.32225,633.05042 L 583.50168,633.30499 L 582.68102,633.05042 L 573.90075,631.45938 L 573.98296,630.85360 L 583.46267,632.57154 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12128"
+                 d="M 562.33133,629.05802 L 562.26891,629.77791 L 571.99333,631.58698 L 573.06014,631.26878 L 578.47596,628.53218 L 578.39392,627.64119 L 568.87513,626.43200 L 562.33133,629.05802 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12130"
+                 d="M 571.98878,630.68393 L 578.46333,627.83578 L 578.36212,628.47271 L 572.84838,631.16282 L 572.02777,631.41739 L 571.20720,631.16282 L 562.42687,629.57177 L 562.50908,628.96600 L 571.98878,630.68393 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12132"
+                 d="M 551.55283,626.90077 L 551.49041,627.62064 L 561.21484,629.42972 L 562.28164,629.11151 L 567.69752,626.37491 L 567.61548,625.48393 L 558.09663,624.27473 L 551.55283,626.90077 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12134"
+                 d="M 561.21029,628.52666 L 567.68485,625.67851 L 567.58358,626.31544 L 562.06988,629.00555 L 561.24930,629.26012 L 560.42871,629.00555 L 551.64838,627.41451 L 551.73058,626.80873 L 561.21029,628.52666 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12144"
+                 d="M 566.15596,634.99050 L 566.09353,635.71038 L 575.81792,637.51946 L 576.88478,637.20125 L 582.30058,634.46465 L 582.21854,633.57366 L 572.69975,632.36447 L 566.15596,634.99050 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12146"
+                 d="M 575.81342,636.61640 L 582.28795,633.76825 L 582.18674,634.40518 L 576.67300,637.09529 L 575.85243,637.34986 L 575.03183,637.09529 L 566.25149,635.50424 L 566.33370,634.89847 L 575.81342,636.61640 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12148"
+                 d="M 554.68209,633.10291 L 554.61965,633.82277 L 564.34409,635.63185 L 565.41089,635.31364 L 570.82675,632.57704 L 570.74471,631.68606 L 561.22587,630.47686 L 554.68209,633.10291 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12150"
+                 d="M 564.33954,634.72880 L 570.81409,631.88065 L 570.71283,632.51758 L 565.19912,635.20769 L 564.37853,635.46225 L 563.55795,635.20769 L 554.77762,633.61664 L 554.85983,633.01087 L 564.33954,634.72880 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12152"
+                 d="M 543.90359,630.94564 L 543.84117,631.66551 L 553.56559,633.47458 L 554.63239,633.15637 L 560.04826,630.41978 L 559.96623,629.52880 L 550.44739,628.31959 L 543.90359,630.94564 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12154"
+                 d="M 553.56104,632.57154 L 560.03560,629.72338 L 559.93434,630.36031 L 554.42064,633.05042 L 553.60004,633.30499 L 552.77947,633.05042 L 543.99913,631.45938 L 544.08134,630.85360 L 553.56104,632.57154 z " />
+            </g>
+            <path
+               style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path12374"
+               d="M 252.70452,458.78596 L 235.94034,467.16805 L 230.97318,469.34118 L 227.24780,467.47850 L 252.70452,458.78596 z " />
+            <text
+               y="307.40585"
+               x="433.62375"
+               transform="matrix(1.152915,6.902673e-2,-0.472362,0.839085,0.000000,0.000000)"
+               style="font-size:10.008980px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#00b800;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans Mono"
+               space="preserve"
+               sodipodi:linespacing="125.00000%"
+               id="text12617">
+              <tspan
+                 y="307.40585"
+                 x="433.62375"
+                 sodipodi:role="line"
+                 id="tspan12621">tux@linux#</tspan>
+            </text>
+          </g>
+        </g>
+        <g
+           transform="translate(1358.023,2415.499)"
+           id="g40705">
+          <path
+             style="fill:#ffff00;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+             d="M -86.419853,-691.35483 C -76.144661,-694.12138 -64.683870,-695.22800 -55.594278,-689.69490 C -64.091071,-673.09562 -66.659869,-647.36672 -63.300672,-629.93747 C -71.402265,-637.40715 -83.060655,-635.74723 -94.719045,-632.42736 C -98.473443,-651.23989 -96.892644,-670.05241 -86.419853,-691.35483 z "
+             id="path40707"
+             sodipodi:nodetypes="ccccc" />
+          <path
+             style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+             d="M -85.234254,-677.24544 C -79.701458,-679.45868 -75.354262,-680.84195 -68.635867,-676.41547"
+             id="path40709"
+             sodipodi:nodetypes="cc" />
+          <path
+             sodipodi:nodetypes="cc"
+             id="path40711"
+             d="M -87.605452,-667.28587 C -82.072656,-669.49911 -77.725460,-670.88238 -71.007065,-666.45590"
+             style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+        </g>
+        <g
+           id="g5147"
+           transform="translate(31.67467,192.2077)">
+          <path
+             style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0643784px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path5149"
+             d="M 1207.3813,1491.0307 C 1224.1769,1497.2363 1227.8281,1511.9747 1227.8281,1511.9747" />
+          <path
+             style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.6768856px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path5151"
+             d="M 1209.7952,1478.6913 C 1236.0060,1488.5613 1241.7040,1512.0023 1241.7040,1512.0023" />
+          <path
+             style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:2.3075068px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path5153"
+             d="M 1212.2605,1466.3177 C 1249.5475,1479.4553 1257.6533,1510.6571 1257.6533,1510.6571" />
+        </g>
+      </g>
+      <g
+         transform="translate(210.9245,0.000000)"
+         id="g6443">
+        <g
+           transform="matrix(0.278462,0.000000,0.000000,0.278462,1084.375,1621.130)"
+           id="g6445"
+           inkscape:label="Layer 1">
+          <g
+             id="g6447">
+            <path
+               d="M 457.69310,531.23993 L 408.33448,567.36840 L 397.13974,576.01888 L 383.40075,576.01888 L 370.17060,572.45692 L 177.82466,522.58945 L 145.25815,513.93897 L 144.74930,510.88586 L 150.34667,508.34160 L 183.42203,498.16457 L 377.80338,524.62486 L 434.79477,524.11600 L 457.69310,531.23993 z "
+               id="path6449"
+               style="fill:#0c0d0d;fill-opacity:0.46428570;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 144.31900,498.16042 C 144.87838,499.97839 145.43775,501.79637 145.99713,503.61434 C 148.09479,503.89403 150.19245,504.17371 152.29011,504.45340 C 238.93475,527.27504 322.01742,549.07897 389.32569,565.28554 C 394.22023,564.02694 399.11477,562.76835 404.00931,561.50975 C 420.93043,549.34332 437.85156,537.17690 454.77268,525.01047 C 455.47190,526.40891 456.17112,527.80735 456.87034,529.20579 C 459.24769,527.52766 461.62503,525.84954 464.00238,524.17141 C 477.00787,514.10264 490.01337,504.03387 503.01886,493.96510 C 503.85792,492.14713 504.69699,490.32916 505.53605,488.51119 C 506.09543,488.09166 506.65480,487.67212 507.21418,487.25259 C 507.21418,487.25259 507.21418,487.25259 507.21418,484.73540 C 507.21418,482.21821 507.21418,480.12055 507.21418,480.12055 C 485.81805,494.66432 464.42191,509.20810 443.02578,523.75187 C 442.60625,523.75187 442.18672,523.75187 441.76719,523.75187 C 441.48750,523.89172 441.20781,524.03156 440.92812,524.17141 C 440.64843,524.73078 440.36875,525.29016 440.08906,525.84953 C 438.97031,526.40891 437.85155,526.96828 436.73280,527.52766 C 436.31327,527.52766 435.89374,527.52766 435.47421,527.52766 C 435.33436,528.22688 435.19452,528.92610 435.05467,529.62532 C 433.51639,530.46438 431.97810,531.30345 430.43982,532.14251 C 429.88044,532.14251 429.32107,532.14251 428.76169,532.14251 C 427.36325,533.40111 425.96482,534.65970 424.56638,535.91830 C 424.28669,536.47768 424.00700,537.03705 423.72731,537.59643 C 417.15464,542.21128 410.58198,546.82614 404.00931,551.44099 C 402.19134,553.53865 400.37336,555.63631 398.55539,557.73397 C 396.03820,558.43319 393.52101,559.13241 391.00382,559.83163 C 307.24899,540.80112 224.00301,520.24405 144.31900,498.16042 z "
+               id="path6451"
+               sodipodi:nodetypes="cccccccccccscccccccccccccccc"
+               style="fill:#404348;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 507.32515,478.88631 C 479.50792,497.03535 451.69070,515.18440 423.87347,533.33344 C 416.57993,538.42196 409.28639,543.51047 401.99285,548.59899 C 399.44859,550.63440 396.90433,552.66981 394.36007,554.70522 C 391.81581,554.70522 389.27156,554.70522 386.72730,554.70522 C 366.03399,552.16096 346.86725,545.54589 326.17394,540.96622 C 265.45097,526.88799 206.76341,512.80976 144.00503,494.15186 C 143.83541,495.50880 143.66580,496.86574 143.49618,498.22268 C 226.09977,518.91598 308.70337,539.60928 391.30696,560.30258 C 393.68160,559.28488 396.05625,558.26717 398.43089,557.24947 C 400.46630,554.70521 402.50170,552.16096 404.53711,549.61670 C 409.28639,547.07244 414.03567,544.52818 418.78495,541.98392 C 420.14189,540.79660 421.49883,539.60928 422.85577,538.42196 C 423.70386,537.06502 424.55194,535.70809 425.40003,534.35115 C 426.75697,533.50306 428.11390,532.65498 429.47084,531.80689 C 430.31893,531.97651 431.16701,532.14612 432.01510,532.31574 C 432.86319,531.46765 433.71127,530.61957 434.55936,529.77148 C 434.72898,529.09301 434.89859,528.41454 435.06821,527.73607 C 435.74668,527.73607 436.42514,527.73607 437.10361,527.73607 C 438.29093,527.05760 439.47826,526.37914 440.66558,525.70067 C 440.66558,525.19182 440.66558,524.68296 440.66558,524.17411 C 441.85290,523.83488 443.04022,523.49564 444.22754,523.15641 C 451.18185,518.40713 458.13615,513.65784 465.09046,508.90856 C 479.16869,498.90114 493.24692,488.89373 507.32515,478.88631 z "
+               id="path6453"
+               sodipodi:nodetypes="cccccccccccccccccccccccc"
+               style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 505.98161,478.68538 L 412.86175,541.27414 L 399.63160,549.92462 L 393.52538,553.99543 L 390.98112,554.50428 L 385.38375,553.99543 L 379.78639,554.50428 L 354.85265,548.39806 L 233.23709,518.88466 L 160.47130,499.54830 L 145.20575,494.96863 L 142.66149,492.93323 L 143.67919,491.40667 L 150.29427,488.86241 L 209.82992,467.99949 L 203.21484,471.05260 L 208.30336,473.59686 L 268.34786,485.30045 L 275.47179,483.26504 L 289.21078,485.30045 L 324.83040,493.44208 L 326.35696,495.98634 L 325.33925,497.51289 L 425.07419,518.88466 L 435.25122,520.92007 L 440.33974,517.86696 L 498.85768,480.72078 L 499.36654,479.19423 L 505.98161,478.68538 z "
+               id="path6455"
+               style="fill:#cecdc9;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#414746;stroke-width:0.50000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+            <path
+               d="M 276.33662,487.33585 L 252.42059,499.03944 L 297.19954,508.19877 L 318.57131,497.00404 L 318.57131,495.47748 L 276.33662,487.33585 z "
+               id="path6457"
+               style="fill:#e0e0e2;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#59595e;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 304.83231,510.23418 L 300.25265,513.28729 L 294.14643,513.28729 L 245.29666,503.61911 L 242.75240,501.58370 L 243.26126,499.54829 L 247.33207,497.51289 L 250.89403,497.51289 L 304.83231,510.23418 z "
+               id="path6459"
+               style="fill:#cbcbcd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#524a50;stroke-width:0.50000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+            <path
+               d="M 266.66844,504.12797 L 255.47370,508.70763 L 253.94715,511.25189 L 257.50911,512.26960 L 264.12418,512.77845 L 272.77466,509.21649 L 276.33662,506.67223 L 274.30121,504.63682 L 266.66844,504.12797 z "
+               id="path6461"
+               style="fill:#a5a5a5;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#555959;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 269.72155,519.90236 L 274.81007,521.42892 L 276.84547,520.41122 L 277.35433,518.88466 L 271.24811,517.35811 L 269.72155,519.90236 z "
+               id="path6463"
+               style="fill:#454344;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 427.43543,513.99708 L 466.61701,492.11646 L 474.75864,488.04564 L 476.79405,483.46598 L 278.34188,448.35521 L 223.89475,468.20043 L 227.96556,471.25354 L 392.32466,505.34660 L 389.27155,506.36430 L 427.43543,513.99708 z M 497.65697,478.88631 L 497.65697,478.88631 z M 494.09501,483.46598 L 445.24524,515.52363 L 437.61247,518.57674 L 430.48854,518.57674 L 410.13447,514.50593 L 326.17394,496.18727 L 325.66509,493.13416 L 322.10313,491.60760 L 278.34188,481.93942 L 270.70911,482.95712 L 266.12944,484.48368 L 205.57609,471.76239 L 203.54068,470.23583 L 204.04953,468.20043 L 282.92155,442.24899 L 288.51892,441.74014 L 343.47490,450.39062 L 467.63472,472.27124 L 493.58615,477.35976 L 499.18352,478.37746 L 498.67467,480.41287 L 494.09501,483.46598 z "
+               id="path6465"
+               style="fill:#939192;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 475.85951,484.04815 L 440.93696,506.02069 L 473.20582,487.76331 L 474.90418,487.02027 L 475.85951,484.04815 z "
+               id="path6467"
+               sodipodi:nodetypes="ccccc"
+               style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 350.65332,277.68888 L 549.36155,286.18068 L 503.50580,448.37415 L 298.00413,418.65284 L 350.65332,277.68888 z "
+               id="path6469"
+               style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 351.70743,277.78707 L 550.41566,286.27887 L 504.55991,448.47234 L 299.05824,418.75103 L 351.70743,277.78707 z M 508.80582,472.24940 L 561.45501,282.03297 L 559.75664,277.78707 L 552.96320,275.23953 L 539.37631,273.54116 L 350.00907,266.74772 L 346.61234,269.29526 L 288.01889,434.03627 L 293.11397,439.98054 L 344.06480,447.62316 L 346.61234,437.43300 L 371.23858,441.67890 L 369.54022,449.32152 L 371.23858,454.41661 L 503.71073,473.94776 L 508.80582,472.24940 z "
+               id="path6471"
+               style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z"
+               id="path6473"
+               sodipodi:cx="413.55090"
+               sodipodi:cy="402.73911"
+               sodipodi:rx="3.3967218"
+               sodipodi:ry="3.3967218"
+               sodipodi:type="arc"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,171.4076,234.8891)" />
+            <path
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z"
+               id="path6475"
+               sodipodi:cx="413.55090"
+               sodipodi:cy="402.73911"
+               sodipodi:rx="3.3967218"
+               sodipodi:ry="3.3967218"
+               sodipodi:type="arc"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,179.7138,236.1077)" />
+            <path
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z"
+               id="path6477"
+               sodipodi:cx="413.55090"
+               sodipodi:cy="402.73911"
+               sodipodi:rx="3.3967218"
+               sodipodi:ry="3.3967218"
+               sodipodi:type="arc"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,187.0261,237.1521)" />
+            <path
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z"
+               id="path6479"
+               sodipodi:cx="413.55090"
+               sodipodi:cy="402.73911"
+               sodipodi:rx="3.3967218"
+               sodipodi:ry="3.3967218"
+               sodipodi:type="arc"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,193.5815,238.3358)" />
+            <path
+               d="M 285.63627,429.08304 L 288.83668,436.28396 L 292.03708,435.48385 L 292.03708,441.08456 L 287.23647,437.88416 L 285.63627,429.08304 z "
+               id="path6481"
+               style="fill:#78797b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 297.50241,431.25366 L 294.91197,430.85513 L 293.11859,434.84043 L 292.32153,436.43454 L 292.72006,439.82205 L 293.11859,441.81470 L 295.50977,442.61175 L 296.30683,441.41617 L 296.30683,439.22425 L 295.90830,437.43087 L 295.90830,435.23896 L 297.50241,432.84778 L 297.50241,431.25366 z "
+               id="path6483"
+               style="fill:#1c1b21;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 296.94250,438.46583 L 340.19282,445.56663 L 340.19282,448.79427 L 298.87908,441.69347 L 296.94250,438.46583 z "
+               id="path6485"
+               style="fill:#6a6a6b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 342.77493,448.79427 L 342.12941,444.27558 L 346.00257,439.75689 L 369.88707,443.63005 L 368.59602,448.14874 L 368.59602,452.66743 L 342.77493,448.79427 z "
+               id="path6487"
+               style="fill:#424041;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 345.63607,440.61481 L 343.97437,442.51392 L 368.30657,446.19342 L 369.73090,444.53170 L 345.63607,440.61481 z "
+               id="path6489"
+               sodipodi:nodetypes="ccccc"
+               style="fill:#f4f3ee;fill-opacity:0.41071430;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 369.56539,450.47664 L 489.43134,469.90055 L 489.43134,473.22306 L 370.07654,452.52127 L 369.56539,450.47664 z "
+               id="path6491"
+               style="fill:#6a6a6b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 491.28555,474.61928 L 490.41974,471.77447 L 490.54343,469.79547 L 491.40924,466.45592 L 493.14086,462.86899 L 496.48042,463.36374 L 495.98567,465.96117 L 494.50142,468.31123 C 494.50142,468.31123 493.88299,470.53760 493.88299,471.03235 C 493.88299,471.52710 494.00667,473.75347 494.00667,473.75347 L 494.37773,475.11402 L 491.28555,474.61928 z "
+               id="path6493"
+               style="fill:#353533;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 487.54953 459.08688 A 1.4729594 1.4729594 0 1 1  484.60361,459.08688 A 1.4729594 1.4729594 0 1 1  487.54953 459.08688 z"
+               id="path6495"
+               sodipodi:cx="486.07657"
+               sodipodi:cy="459.08688"
+               sodipodi:rx="1.4729594"
+               sodipodi:ry="1.4729594"
+               sodipodi:type="arc"
+               style="opacity:1.0000000;fill:#030000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               transform="matrix(1.555556,0.000000,0.000000,1.555556,-270.0425,-255.0483)" />
+            <path
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z"
+               id="path6497"
+               sodipodi:cx="413.55090"
+               sodipodi:cy="402.73911"
+               sodipodi:rx="3.3967218"
+               sodipodi:ry="3.3967218"
+               sodipodi:type="arc"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,199.8980,239.2676)" />
+            <path
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z"
+               id="path6499"
+               sodipodi:cx="413.55090"
+               sodipodi:cy="402.73911"
+               sodipodi:rx="3.3967218"
+               sodipodi:ry="3.3967218"
+               sodipodi:type="arc"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,207.5076,240.8516)" />
+            <g
+               id="g6501"
+               transform="matrix(1.135954,0.000000,0.000000,0.881004,-272.0857,-176.6878)">
+              <path
+                 d="M 517.05812,722.17999 L 517.00316,722.99711 L 525.56375,725.05053 L 526.50287,724.68934 L 531.27053,721.58311 L 531.19831,720.57178 L 522.81873,719.19926 L 517.05812,722.17999 z "
+                 id="path6503"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 525.55974,724.02550 L 531.25938,720.79265 L 531.17024,721.51561 L 526.31645,724.56907 L 525.59407,724.85802 L 524.87170,724.56907 L 517.14222,722.76312 L 517.21459,722.07553 L 525.55974,724.02550 z "
+                 id="path6505"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 507.26354,719.73135 L 507.20858,720.54846 L 515.76918,722.60189 L 516.70830,722.24070 L 521.47598,719.13447 L 521.40376,718.12314 L 513.02415,716.75062 L 507.26354,719.73135 z "
+                 id="path6507"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 515.76517,721.57686 L 521.46483,718.34401 L 521.37569,719.06697 L 516.52187,722.12043 L 515.79950,722.40938 L 515.07713,722.12043 L 507.34765,720.31448 L 507.42002,719.62689 L 515.76517,721.57686 z "
+                 id="path6509"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 497.16289,717.58879 L 497.10793,718.40590 L 505.66853,720.45932 L 506.60765,720.09813 L 511.37533,716.99191 L 511.30310,715.98058 L 502.92350,714.60805 L 497.16289,717.58879 z "
+                 id="path6511"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 505.66452,719.43430 L 511.36417,716.20145 L 511.27504,716.92441 L 506.42122,719.97786 L 505.69885,720.26682 L 504.97647,719.97786 L 497.24699,718.17192 L 497.31937,717.48432 L 505.66452,719.43430 z "
+                 id="path6513"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 487.06224,715.44622 L 487.00728,716.26334 L 495.56787,718.31676 L 496.50700,717.95558 L 501.27468,714.84935 L 501.20245,713.83802 L 492.82285,712.46550 L 487.06224,715.44622 z "
+                 id="path6515"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 495.56386,717.29174 L 501.26352,714.05889 L 501.17439,714.78185 L 496.32057,717.83531 L 495.59819,718.12426 L 494.87582,717.83531 L 487.14634,716.02936 L 487.21872,715.34177 L 495.56386,717.29174 z "
+                 id="path6517"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 477.57375,712.99759 L 477.51879,713.81469 L 486.07938,715.86812 L 487.01850,715.50693 L 491.78619,712.40070 L 491.71397,711.38938 L 483.33436,710.01685 L 477.57375,712.99759 z "
+                 id="path6519"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 486.07537,714.84309 L 491.77503,711.61024 L 491.68589,712.33320 L 486.83208,715.38666 L 486.10970,715.67561 L 485.38733,715.38666 L 477.65785,713.58072 L 477.73022,712.89312 L 486.07537,714.84309 z "
+                 id="path6521"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 510.32435,726.15904 L 510.26939,726.97614 L 518.82998,729.02958 L 519.76912,728.66838 L 524.53674,725.56215 L 524.46452,724.55083 L 516.08497,723.17831 L 510.32435,726.15904 z "
+                 id="path6523"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 518.82597,728.00455 L 524.52559,724.77169 L 524.43645,725.49465 L 519.58270,728.54811 L 518.86030,728.83706 L 518.13793,728.54811 L 510.40846,726.74217 L 510.48083,726.05457 L 518.82597,728.00455 z "
+                 id="path6525"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 500.52977,723.71039 L 500.47482,724.52751 L 509.03541,726.58093 L 509.97453,726.21974 L 514.74222,723.11352 L 514.67000,722.10218 L 506.29039,720.72966 L 500.52977,723.71039 z "
+                 id="path6527"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 509.03140,725.55590 L 514.73107,722.32306 L 514.64192,723.04601 L 509.78811,726.09947 L 509.06574,726.38842 L 508.34336,726.09947 L 500.61389,724.29352 L 500.68625,723.60593 L 509.03140,725.55590 z "
+                 id="path6529"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 490.42912,721.56783 L 490.37417,722.38494 L 498.93476,724.43836 L 499.87388,724.07718 L 504.64156,720.97095 L 504.56934,719.95962 L 496.18974,718.58710 L 490.42912,721.56783 z "
+                 id="path6531"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 498.93075,723.41334 L 504.63041,720.18049 L 504.54127,720.90345 L 499.68746,723.95691 L 498.96508,724.24586 L 498.24270,723.95691 L 490.51323,722.15096 L 490.58560,721.46337 L 498.93075,723.41334 z "
+                 id="path6533"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 480.32847,719.42527 L 480.27352,720.24238 L 488.83411,722.29581 L 489.77323,721.93462 L 494.54091,718.82839 L 494.46869,717.81706 L 486.08909,716.44454 L 480.32847,719.42527 z "
+                 id="path6535"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 488.83010,721.27078 L 494.52976,718.03793 L 494.44062,718.76089 L 489.58681,721.81435 L 488.86443,722.10330 L 488.14205,721.81435 L 480.41258,720.00840 L 480.48495,719.32081 L 488.83010,721.27078 z "
+                 id="path6537"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 470.83998,716.97663 L 470.78503,717.79374 L 479.34561,719.84716 L 480.28474,719.48597 L 485.05242,716.37975 L 484.98020,715.36842 L 476.60060,713.99589 L 470.83998,716.97663 z "
+                 id="path6539"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 479.34160,718.82213 L 485.04127,715.58929 L 484.95213,716.31225 L 480.09832,719.36571 L 479.37594,719.65466 L 478.65356,719.36571 L 470.92409,717.55976 L 470.99646,716.87216 L 479.34160,718.82213 z "
+                 id="path6541"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 503.59059,730.75024 L 503.53563,731.56735 L 512.09622,733.62078 L 513.03535,733.25959 L 517.80298,730.15336 L 517.73075,729.14203 L 509.35120,727.76951 L 503.59059,730.75024 z "
+                 id="path6543"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 512.09220,732.59575 L 517.79182,729.36290 L 517.70269,730.08586 L 512.84893,733.13932 L 512.12654,733.42826 L 511.40417,733.13932 L 503.67469,731.33337 L 503.74706,730.64578 L 512.09220,732.59575 z "
+                 id="path6545"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 493.79601,728.30160 L 493.74106,729.11871 L 502.30164,731.17213 L 503.24076,730.81095 L 508.00845,727.70472 L 507.93623,726.69338 L 499.55663,725.32086 L 493.79601,728.30160 z "
+                 id="path6547"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 502.29763,730.14710 L 507.99730,726.91426 L 507.90816,727.63722 L 503.05435,730.69068 L 502.33197,730.97963 L 501.60960,730.69068 L 493.88012,728.88472 L 493.95248,728.19713 L 502.29763,730.14710 z "
+                 id="path6549"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 483.69536,726.15904 L 483.64040,726.97614 L 492.20099,729.02958 L 493.14011,728.66838 L 497.90780,725.56215 L 497.83558,724.55083 L 489.45597,723.17831 L 483.69536,726.15904 z "
+                 id="path6551"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 492.19698,728.00455 L 497.89665,724.77169 L 497.80750,725.49465 L 492.95369,728.54811 L 492.23132,728.83706 L 491.50894,728.54811 L 483.77946,726.74217 L 483.85183,726.05457 L 492.19698,728.00455 z "
+                 id="path6553"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 473.59471,724.01648 L 473.53975,724.83359 L 482.10034,726.88701 L 483.03946,726.52582 L 487.80714,723.41959 L 487.73492,722.40826 L 479.35532,721.03574 L 473.59471,724.01648 z "
+                 id="path6555"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 482.09633,725.86198 L 487.79599,722.62914 L 487.70685,723.35209 L 482.85304,726.40555 L 482.13067,726.69450 L 481.40829,726.40555 L 473.67881,724.59960 L 473.75118,723.91201 L 482.09633,725.86198 z "
+                 id="path6557"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 464.10622,721.56783 L 464.05126,722.38494 L 472.61184,724.43836 L 473.55097,724.07718 L 478.31865,720.97095 L 478.24643,719.95962 L 469.86683,718.58710 L 464.10622,721.56783 z "
+                 id="path6559"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 472.60783,723.41334 L 478.30750,720.18049 L 478.21837,720.90345 L 473.36455,723.95691 L 472.64217,724.24586 L 471.91980,723.95691 L 464.19032,722.15096 L 464.26270,721.46337 L 472.60783,723.41334 z "
+                 id="path6561"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 565.33192,734.24843 L 565.27691,735.06555 L 573.83757,737.11897 L 574.77667,736.75778 L 579.54429,733.65155 L 579.47207,732.64023 L 571.09250,731.26771 L 565.33192,734.24843 z "
+                 id="path6563"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 573.83354,736.09395 L 579.53318,732.86109 L 579.44399,733.58405 L 574.59023,736.63751 L 573.86787,736.92646 L 573.14552,736.63751 L 565.41600,734.83157 L 565.48838,734.14398 L 573.83354,736.09395 z "
+                 id="path6565"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 555.53735,731.79979 L 555.48235,732.61691 L 564.04292,734.67033 L 564.98210,734.30914 L 569.74973,731.20291 L 569.67751,730.19158 L 561.29793,728.81906 L 555.53735,731.79979 z "
+                 id="path6567"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 564.03897,733.64530 L 569.73861,730.41245 L 569.64951,731.13541 L 564.79567,734.18887 L 564.07331,734.47782 L 563.35087,734.18887 L 555.62143,732.38292 L 555.69382,731.69533 L 564.03897,733.64530 z "
+                 id="path6569"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 545.43670,729.65723 L 545.38169,730.47434 L 553.94227,732.52776 L 554.88145,732.16658 L 559.64908,729.06035 L 559.57686,728.04902 L 551.19728,726.67649 L 545.43670,729.65723 z "
+                 id="path6571"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 553.93832,731.50274 L 559.63796,728.26989 L 559.54886,728.99285 L 554.69502,732.04631 L 553.97266,732.33526 L 553.25022,732.04631 L 545.52078,730.24036 L 545.59316,729.55277 L 553.93832,731.50274 z "
+                 id="path6573"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 535.33602,727.51467 L 535.28107,728.33178 L 543.84162,730.38521 L 544.78080,730.02402 L 549.54842,726.91779 L 549.47620,725.90646 L 541.09663,724.53394 L 535.33602,727.51467 z "
+                 id="path6575"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 543.83767,729.36018 L 549.53731,726.12733 L 549.44821,726.85029 L 544.59436,729.90375 L 543.87201,730.19270 L 543.14957,729.90375 L 535.42013,728.09780 L 535.49250,727.41021 L 543.83767,729.36018 z "
+                 id="path6577"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 525.84753,725.06603 L 525.79257,725.88314 L 534.35317,727.93656 L 535.29229,727.57537 L 540.05995,724.46915 L 539.98775,723.45782 L 531.60814,722.08529 L 525.84753,725.06603 z "
+                 id="path6579"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 534.34916,726.91153 L 540.04881,723.67869 L 539.95968,724.40165 L 535.10587,727.45510 L 534.38349,727.74406 L 533.66111,727.45510 L 525.93163,725.64916 L 526.00401,724.96156 L 534.34916,726.91153 z "
+                 id="path6581"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 558.59815,738.22748 L 558.54314,739.04459 L 567.10380,741.09802 L 568.04290,740.73682 L 572.81052,737.63059 L 572.73831,736.61927 L 564.35873,735.24675 L 558.59815,738.22748 z "
+                 id="path6583"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 567.09977,740.07299 L 572.79941,736.84014 L 572.71022,737.56309 L 567.85646,740.61655 L 567.13411,740.90550 L 566.41175,740.61655 L 558.68223,738.81061 L 558.75461,738.12301 L 567.09977,740.07299 z "
+                 id="path6585"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 548.80359,735.77883 L 548.74858,736.59595 L 557.30916,738.64937 L 558.24834,738.28819 L 563.01596,735.18196 L 562.94374,734.17062 L 554.56416,732.79810 L 548.80359,735.77883 z "
+                 id="path6587"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 557.30520,737.62434 L 563.00484,734.39150 L 562.91574,735.11446 L 558.06190,738.16792 L 557.33954,738.45687 L 556.61710,738.16792 L 548.88766,736.36196 L 548.96005,735.67437 L 557.30520,737.62434 z "
+                 id="path6589"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 538.70291,733.63628 L 538.64796,734.45338 L 547.20850,736.50681 L 548.14768,736.14562 L 552.91531,733.03939 L 552.84309,732.02807 L 544.46351,730.65554 L 538.70291,733.63628 z "
+                 id="path6591"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 547.20455,735.48179 L 552.90419,732.24893 L 552.81509,732.97189 L 547.96125,736.02535 L 547.23889,736.31430 L 546.51645,736.02535 L 538.78702,734.21941 L 538.85939,733.53181 L 547.20455,735.48179 z "
+                 id="path6593"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 528.60226,731.49371 L 528.54731,732.31083 L 537.10789,734.36425 L 538.04701,734.00306 L 542.81466,730.89683 L 542.74244,729.88550 L 534.36288,728.51298 L 528.60226,731.49371 z "
+                 id="path6595"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 537.10388,733.33922 L 542.80354,730.10638 L 542.71444,730.82933 L 537.86059,733.88279 L 537.13821,734.17174 L 536.41584,733.88279 L 528.68637,732.07684 L 528.75873,731.38925 L 537.10388,733.33922 z "
+                 id="path6597"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 519.11376,729.04507 L 519.05881,729.86218 L 527.61940,731.91560 L 528.55852,731.55442 L 533.32620,728.44819 L 533.25398,727.43686 L 524.87438,726.06434 L 519.11376,729.04507 z "
+                 id="path6599"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 527.61539,730.89058 L 533.31505,727.65773 L 533.22591,728.38069 L 528.37210,731.43415 L 527.64973,731.72310 L 526.92735,731.43415 L 519.19787,729.62820 L 519.27024,728.94061 L 527.61539,730.89058 z "
+                 id="path6601"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 551.86438,742.81868 L 551.80937,743.63580 L 560.37003,745.68922 L 561.30913,745.32803 L 566.07676,742.22181 L 566.00454,741.21047 L 557.62496,739.83795 L 551.86438,742.81868 z "
+                 id="path6603"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 560.36600,744.66419 L 566.06564,741.43134 L 565.97646,742.15430 L 561.12270,745.20776 L 560.40034,745.49671 L 559.67798,745.20776 L 551.94846,743.40181 L 552.02084,742.71422 L 560.36600,744.66419 z "
+                 id="path6605"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 542.06982,740.37004 L 542.01481,741.18715 L 550.57539,743.24057 L 551.51457,742.87939 L 556.28219,739.77316 L 556.20997,738.76183 L 547.83040,737.38931 L 542.06982,740.37004 z "
+                 id="path6607"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 550.57143,742.21555 L 556.27108,738.98270 L 556.18197,739.70566 L 551.32813,742.75912 L 550.60577,743.04807 L 549.88342,742.75912 L 542.15389,740.95317 L 542.22628,740.26558 L 550.57143,742.21555 z "
+                 id="path6609"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 531.96915,738.22748 L 531.91419,739.04459 L 540.47473,741.09802 L 541.41391,740.73682 L 546.18154,737.63059 L 546.10932,736.61927 L 537.72976,735.24675 L 531.96915,738.22748 z "
+                 id="path6611"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 540.47078,740.07299 L 546.17042,736.84014 L 546.08132,737.56309 L 541.22748,740.61655 L 540.50512,740.90550 L 539.78273,740.61655 L 532.05325,738.81061 L 532.12562,738.12301 L 540.47078,740.07299 z "
+                 id="path6613"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 521.86850,736.08492 L 521.81354,736.90203 L 530.37412,738.95545 L 531.31325,738.59426 L 536.08093,735.48804 L 536.00871,734.47670 L 527.62911,733.10418 L 521.86850,736.08492 z "
+                 id="path6615"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 530.37011,737.93042 L 536.06978,734.69758 L 535.98064,735.42054 L 531.12683,738.47400 L 530.40445,738.76295 L 529.68208,738.47400 L 521.95260,736.66804 L 522.02497,735.98045 L 530.37011,737.93042 z "
+                 id="path6617"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 512.38000,733.63628 L 512.32504,734.45338 L 520.88563,736.50681 L 521.82475,736.14562 L 526.59244,733.03939 L 526.52022,732.02807 L 518.14061,730.65554 L 512.38000,733.63628 z "
+                 id="path6619"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 520.88162,735.48179 L 526.58129,732.24893 L 526.49215,732.97189 L 521.63833,736.02535 L 520.91596,736.31430 L 520.19359,736.02535 L 512.46411,734.21941 L 512.53648,733.53181 L 520.88162,735.48179 z "
+                 id="path6621"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 497.14518,734.85186 L 497.09022,735.66897 L 505.65081,737.72240 L 506.58993,737.36120 L 511.35759,734.25497 L 511.28537,733.24365 L 502.90579,731.87113 L 497.14518,734.85186 z "
+                 id="path6623"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 505.64680,736.69737 L 511.34644,733.46451 L 511.25730,734.18747 L 506.40351,737.24093 L 505.68113,737.52988 L 504.95876,737.24093 L 497.22928,735.43499 L 497.30166,734.74740 L 505.64680,736.69737 z "
+                 id="path6625"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 487.35061,732.40321 L 487.29565,733.22033 L 495.85624,735.27375 L 496.79536,734.91256 L 501.56305,731.80634 L 501.49082,730.79500 L 493.11122,729.42248 L 487.35061,732.40321 z "
+                 id="path6627"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 495.85223,734.24872 L 501.55189,731.01588 L 501.46275,731.73884 L 496.60894,734.79229 L 495.88656,735.08125 L 495.16419,734.79229 L 487.43471,732.98634 L 487.50708,732.29875 L 495.85223,734.24872 z "
+                 id="path6629"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 477.24995,730.26065 L 477.19499,731.07776 L 485.75559,733.13119 L 486.69471,732.77000 L 491.46239,729.66377 L 491.39017,728.65245 L 483.01056,727.27992 L 477.24995,730.26065 z "
+                 id="path6631"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 485.75158,732.10617 L 491.45124,728.87331 L 491.36210,729.59627 L 486.50828,732.64973 L 485.78591,732.93868 L 485.06353,732.64973 L 477.33405,730.84379 L 477.40643,730.15619 L 485.75158,732.10617 z "
+                 id="path6633"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 467.14930,728.11809 L 467.09434,728.93520 L 475.65494,730.98863 L 476.59406,730.62744 L 481.36174,727.52121 L 481.28951,726.50988 L 472.90991,725.13736 L 467.14930,728.11809 z "
+                 id="path6635"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 475.65093,729.96360 L 481.35058,726.73075 L 481.26145,727.45371 L 476.40763,730.50717 L 475.68526,730.79612 L 474.96288,730.50717 L 467.23340,728.70122 L 467.30578,728.01363 L 475.65093,729.96360 z "
+                 id="path6637"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 457.66081,725.66945 L 457.60585,726.48656 L 466.16644,728.53998 L 467.10557,728.17880 L 471.87325,725.07257 L 471.80103,724.06124 L 463.42142,722.68871 L 457.66081,725.66945 z "
+                 id="path6639"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 466.16243,727.51495 L 471.86209,724.28211 L 471.77296,725.00507 L 466.91915,728.05853 L 466.19676,728.34748 L 465.47439,728.05853 L 457.74491,726.25258 L 457.81729,725.56499 L 466.16243,727.51495 z "
+                 id="path6641"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 490.41141,738.83090 L 490.35645,739.64801 L 498.91705,741.70144 L 499.85618,741.34024 L 504.62380,738.23402 L 504.55158,737.22269 L 496.17203,735.85017 L 490.41141,738.83090 z "
+                 id="path6643"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 498.91303,740.67641 L 504.61265,737.44356 L 504.52351,738.16652 L 499.66976,741.21998 L 498.94737,741.50893 L 498.22499,741.21998 L 490.49552,739.41403 L 490.56789,738.72643 L 498.91303,740.67641 z "
+                 id="path6645"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 480.61684,736.38226 L 480.56189,737.19937 L 489.12247,739.25279 L 490.06159,738.89161 L 494.82928,735.78538 L 494.75706,734.77405 L 486.37746,733.40153 L 480.61684,736.38226 z "
+                 id="path6647"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 489.11846,738.22777 L 494.81813,734.99492 L 494.72899,735.71788 L 489.87518,738.77134 L 489.15280,739.06029 L 488.43042,738.77134 L 480.70095,736.96539 L 480.77331,736.27780 L 489.11846,738.22777 z "
+                 id="path6649"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 470.51618,734.23970 L 470.46123,735.05681 L 479.02182,737.11023 L 479.96094,736.74904 L 484.72863,733.64281 L 484.65641,732.63149 L 476.27680,731.25896 L 470.51618,734.23970 z "
+                 id="path6651"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 479.01781,736.08521 L 484.71748,732.85235 L 484.62833,733.57531 L 479.77452,736.62877 L 479.05214,736.91772 L 478.32977,736.62877 L 470.60029,734.82283 L 470.67266,734.13523 L 479.01781,736.08521 z "
+                 id="path6653"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 460.41553,732.09713 L 460.36058,732.91425 L 468.92117,734.96767 L 469.86029,734.60648 L 474.62797,731.50026 L 474.55575,730.48892 L 466.17615,729.11640 L 460.41553,732.09713 z "
+                 id="path6655"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 468.91716,733.94264 L 474.61682,730.70980 L 474.52768,731.43276 L 469.67387,734.48622 L 468.95149,734.77517 L 468.22911,734.48622 L 460.49964,732.68026 L 460.57201,731.99267 L 468.91716,733.94264 z "
+                 id="path6657"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 450.92704,729.64850 L 450.87209,730.46560 L 459.43267,732.51903 L 460.37180,732.15784 L 465.13948,729.05161 L 465.06726,728.04029 L 456.68766,726.66776 L 450.92704,729.64850 z "
+                 id="path6659"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 459.42866,731.49400 L 465.12833,728.26115 L 465.03919,728.98411 L 460.18538,732.03757 L 459.46300,732.32652 L 458.74062,732.03757 L 451.01115,730.23163 L 451.08352,729.54403 L 459.42866,731.49400 z "
+                 id="path6661"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 483.67765,743.42210 L 483.62269,744.23922 L 492.18328,746.29264 L 493.12242,745.93146 L 497.89004,742.82523 L 497.81781,741.81389 L 489.43826,740.44137 L 483.67765,743.42210 z "
+                 id="path6663"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 492.17927,745.26761 L 497.87888,742.03476 L 497.78975,742.75773 L 492.93600,745.81119 L 492.21361,746.10013 L 491.49123,745.81119 L 483.76175,744.00523 L 483.83412,743.31764 L 492.17927,745.26761 z "
+                 id="path6665"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 473.88308,740.97347 L 473.82812,741.79057 L 482.38870,743.84400 L 483.32783,743.48281 L 488.09551,740.37658 L 488.02329,739.36525 L 479.64369,737.99273 L 473.88308,740.97347 z "
+                 id="path6667"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 482.38469,742.81897 L 488.08436,739.58612 L 487.99522,740.30908 L 483.14141,743.36254 L 482.41903,743.65149 L 481.69666,743.36254 L 473.96718,741.55659 L 474.03955,740.86900 L 482.38469,742.81897 z "
+                 id="path6669"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 463.78242,738.83090 L 463.72747,739.64801 L 472.28805,741.70144 L 473.22717,741.34024 L 477.99486,738.23402 L 477.92264,737.22269 L 469.54304,735.85017 L 463.78242,738.83090 z "
+                 id="path6671"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 472.28404,740.67641 L 477.98371,737.44356 L 477.89457,738.16652 L 473.04075,741.21998 L 472.31838,741.50893 L 471.59601,741.21998 L 463.86653,739.41403 L 463.93889,738.72643 L 472.28404,740.67641 z "
+                 id="path6673"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 453.68177,736.68834 L 453.62681,737.50545 L 462.18740,739.55887 L 463.12652,739.19769 L 467.89420,736.09146 L 467.82199,735.08013 L 459.44238,733.70761 L 453.68177,736.68834 z "
+                 id="path6675"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 462.18339,738.53385 L 467.88305,735.30100 L 467.79391,736.02396 L 462.94010,739.07742 L 462.21773,739.36637 L 461.49535,739.07742 L 453.76587,737.27147 L 453.83824,736.58388 L 462.18339,738.53385 z "
+                 id="path6677"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 444.19328,734.23970 L 444.13832,735.05681 L 452.69891,737.11023 L 453.63803,736.74904 L 458.40571,733.64281 L 458.33349,732.63149 L 449.95389,731.25896 L 444.19328,734.23970 z "
+                 id="path6679"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 452.69490,736.08521 L 458.39456,732.85235 L 458.30543,733.57531 L 453.45161,736.62877 L 452.72924,736.91772 L 452.00686,736.62877 L 444.27738,734.82283 L 440.79696,733.43047 L 452.69490,736.08521 z "
+                 id="path6681"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 545.41900,746.92030 L 545.36399,747.73741 L 553.92465,749.79084 L 554.86375,749.42964 L 559.63137,746.32342 L 559.55915,745.31209 L 551.17957,743.93957 L 545.41900,746.92030 z "
+                 id="path6683"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 553.92061,748.76581 L 559.62025,745.53296 L 559.53107,746.25592 L 554.67731,749.30937 L 553.95495,749.59833 L 553.23260,749.30937 L 545.50307,747.50343 L 545.57546,746.81584 L 553.92061,748.76581 z "
+                 id="path6685"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 535.62442,744.47165 L 535.56941,745.28877 L 544.13000,747.34219 L 545.06918,746.98101 L 549.83681,743.87478 L 549.76459,742.86345 L 541.38501,741.49093 L 535.62442,744.47165 z "
+                 id="path6687"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 544.12605,746.31717 L 549.82569,743.08432 L 549.73659,743.80728 L 544.88275,746.86074 L 544.16039,747.14969 L 543.43795,746.86074 L 535.70849,745.05479 L 535.78088,744.36720 L 544.12605,746.31717 z "
+                 id="path6689"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 525.52376,742.32910 L 525.46875,743.14620 L 534.02933,745.19963 L 534.96851,744.83844 L 539.73614,741.73221 L 539.66392,740.72089 L 531.28434,739.34836 L 525.52376,742.32910 z "
+                 id="path6691"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 534.02538,744.17461 L 539.72502,740.94175 L 539.63592,741.66471 L 534.78208,744.71817 L 534.05972,745.00712 L 533.33728,744.71817 L 525.60784,742.91223 L 525.68022,742.22463 L 534.02538,744.17461 z "
+                 id="path6693"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 515.42309,740.18653 L 515.36813,741.00365 L 523.92868,743.05707 L 524.86786,742.69588 L 529.63549,739.58966 L 529.56327,738.57832 L 521.18369,737.20580 L 515.42309,740.18653 z "
+                 id="path6695"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 523.92473,742.03204 L 529.62437,738.79920 L 529.53527,739.52216 L 524.68142,742.57561 L 523.95907,742.86457 L 523.23663,742.57561 L 515.50719,740.76966 L 515.57956,740.08207 L 523.92473,742.03204 z "
+                 id="path6697"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 505.93459,737.73789 L 505.87963,738.55500 L 514.44023,740.60843 L 515.37935,740.24724 L 520.14701,737.14101 L 520.07481,736.12969 L 511.69520,734.75716 L 505.93459,737.73789 z "
+                 id="path6699"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 514.43622,739.58340 L 520.13588,736.35055 L 520.04674,737.07351 L 515.19293,740.12697 L 514.47055,740.41592 L 513.74818,740.12697 L 506.01870,738.32103 L 506.09107,737.63343 L 514.43622,739.58340 z "
+                 id="path6701"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 538.68521,750.89934 L 538.63020,751.71645 L 547.19088,753.76988 L 548.12998,753.40869 L 552.89760,750.30246 L 552.82538,749.29113 L 544.44581,747.91861 L 538.68521,750.89934 z "
+                 id="path6703"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 547.18685,752.74485 L 552.88649,749.51200 L 552.79730,750.23496 L 547.94354,753.28842 L 547.22118,753.57737 L 546.49883,753.28842 L 538.76929,751.48247 L 538.84167,750.79488 L 547.18685,752.74485 z "
+                 id="path6705"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 528.89065,748.45070 L 528.83564,749.26781 L 537.39622,751.32124 L 538.33540,750.96005 L 543.10304,747.85382 L 543.03082,746.84249 L 534.65123,745.46997 L 528.89065,748.45070 z "
+                 id="path6707"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 537.39226,750.29621 L 543.09192,747.06336 L 543.00282,747.78632 L 538.14896,750.83978 L 537.42660,751.12873 L 536.70416,750.83978 L 528.97472,749.03383 L 529.04711,748.34624 L 537.39226,750.29621 z "
+                 id="path6709"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 518.78997,746.30814 L 518.73502,747.12525 L 527.29556,749.17867 L 528.23474,748.81748 L 533.00237,745.71126 L 532.93015,744.69993 L 524.55057,743.32740 L 518.78997,746.30814 z "
+                 id="path6711"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 527.29161,748.15365 L 532.99125,744.92080 L 532.90215,745.64376 L 528.04831,748.69721 L 527.32595,748.98617 L 526.60351,748.69721 L 518.87408,746.89127 L 518.94645,746.20367 L 527.29161,748.15365 z "
+                 id="path6713"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 508.68932,744.16557 L 508.63437,744.98269 L 517.19495,747.03611 L 518.13408,746.67493 L 522.90172,743.56870 L 522.82950,742.55737 L 514.44994,741.18485 L 508.68932,744.16557 z "
+                 id="path6715"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 517.19094,746.01109 L 522.89060,742.77824 L 522.80150,743.50120 L 517.94766,746.55466 L 517.22527,746.84361 L 516.50290,746.55466 L 508.77343,744.74871 L 508.84580,744.06112 L 517.19094,746.01109 z "
+                 id="path6717"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 499.20082,741.71694 L 499.14587,742.53404 L 507.70646,744.58747 L 508.64558,744.22628 L 513.41327,741.12005 L 513.34105,740.10873 L 504.96144,738.73620 L 499.20082,741.71694 z "
+                 id="path6719"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 507.70245,743.56244 L 513.40212,740.32959 L 513.31297,741.05255 L 508.45916,744.10601 L 507.73679,744.39496 L 507.01441,744.10601 L 499.28494,742.30007 L 499.35730,741.61247 L 507.70245,743.56244 z "
+                 id="path6721"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 531.95144,755.49055 L 531.89644,756.30766 L 540.45711,758.36108 L 541.39621,757.99990 L 546.16384,754.89367 L 546.09162,753.88234 L 537.71202,752.50982 L 531.95144,755.49055 z "
+                 id="path6723"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 540.45308,757.33606 L 546.15272,754.10320 L 546.06354,754.82617 L 541.20977,757.87963 L 540.48742,758.16857 L 539.76504,757.87963 L 532.03552,756.07368 L 532.10790,755.38609 L 540.45308,757.33606 z "
+                 id="path6725"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 522.15688,753.04191 L 522.10187,753.85902 L 530.66245,755.91244 L 531.60163,755.55125 L 536.36925,752.44502 L 536.29703,751.43369 L 527.91746,750.06117 L 522.15688,753.04191 z "
+                 id="path6727"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 530.65850,754.88741 L 536.35814,751.65457 L 536.26904,752.37752 L 531.41519,755.43098 L 530.69284,755.71993 L 529.97048,755.43098 L 522.24096,753.62503 L 522.31334,752.93744 L 530.65850,754.88741 z "
+                 id="path6729"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 512.05621,750.89934 L 512.00125,751.71645 L 520.56180,753.76988 L 521.50098,753.40869 L 526.26860,750.30246 L 526.19638,749.29113 L 517.81682,747.91861 L 512.05621,750.89934 z "
+                 id="path6731"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 520.55784,752.74485 L 526.25748,749.51200 L 526.16838,750.23496 L 521.31454,753.28842 L 520.59218,753.57737 L 519.86979,753.28842 L 512.14031,751.48247 L 512.21268,750.79488 L 520.55784,752.74485 z "
+                 id="path6733"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 501.95556,748.75679 L 501.90060,749.57389 L 510.46119,751.62732 L 511.40031,751.26613 L 516.16799,748.15990 L 516.09577,747.14857 L 507.71617,745.77605 L 501.95556,748.75679 z "
+                 id="path6735"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 510.45718,750.60229 L 516.15684,747.36944 L 516.06770,748.09240 L 511.21389,751.14586 L 510.49151,751.43481 L 509.76914,751.14586 L 502.03966,749.33991 L 502.11203,748.65232 L 510.45718,750.60229 z "
+                 id="path6737"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 492.46706,746.30814 L 492.41211,747.12525 L 500.97269,749.17867 L 501.91181,748.81748 L 506.67950,745.71126 L 506.60728,744.69993 L 498.22768,743.32740 L 492.46706,746.30814 z "
+                 id="path6739"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 500.96868,748.15365 L 506.66835,744.92080 L 506.57921,745.64376 L 501.72540,748.69721 L 501.00302,748.98617 L 500.28065,748.69721 L 492.55117,746.89127 L 492.62354,746.20367 L 500.96868,748.15365 z "
+                 id="path6741"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            </g>
+            <g
+               id="g6743"
+               transform="matrix(1.000000,0.000000,0.000000,1.076560,-146.5725,-175.7068)">
+              <path
+                 d="M 571.83790,609.68864 L 571.77547,610.40852 L 581.49990,612.21760 L 582.56670,611.89939 L 587.98254,609.16279 L 587.90051,608.27180 L 578.38169,607.06260 L 571.83790,609.68864 z "
+                 id="path6745"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 581.49535,611.31454 L 587.96988,608.46639 L 587.86862,609.10332 L 582.35494,611.79343 L 581.53435,612.04799 L 580.71377,611.79343 L 571.93343,610.20238 L 572.01564,609.59661 L 581.49535,611.31454 z "
+                 id="path6747"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 560.71171,607.53138 L 560.64928,608.25125 L 570.37372,610.06033 L 571.44052,609.74212 L 576.85639,607.00552 L 576.77435,606.11454 L 567.25550,604.90534 L 560.71171,607.53138 z "
+                 id="path6749"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 570.36917,609.15728 L 576.84372,606.30913 L 576.74246,606.94606 L 571.22874,609.63617 L 570.40817,609.89073 L 569.58759,609.63617 L 560.80725,608.04512 L 560.88946,607.43935 L 570.36917,609.15728 z "
+                 id="path6751"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 549.23783,605.64377 L 549.17540,606.36365 L 558.89985,608.17272 L 559.96665,607.85451 L 565.38251,605.11792 L 565.30046,604.22693 L 555.78162,603.01773 L 549.23783,605.64377 z "
+                 id="path6753"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 558.89529,607.26968 L 565.36983,604.42152 L 565.26859,605.05845 L 559.75487,607.74855 L 558.93429,608.00313 L 558.11370,607.74855 L 549.33337,606.15751 L 549.41559,605.55173 L 558.89529,607.26968 z "
+                 id="path6755"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 537.76396,603.75616 L 537.70153,604.47605 L 547.42596,606.28512 L 548.49277,605.96692 L 553.90864,603.23032 L 553.82659,602.33933 L 544.30775,601.13013 L 537.76396,603.75616 z "
+                 id="path6757"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 547.42141,605.38207 L 553.89596,602.53392 L 553.79471,603.17085 L 548.28100,605.86096 L 547.46041,606.11552 L 546.63983,605.86096 L 537.85949,604.26991 L 537.94171,603.66414 L 547.42141,605.38207 z "
+                 id="path6759"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 526.98547,601.59891 L 526.92304,602.31878 L 536.64748,604.12786 L 537.71427,603.80965 L 543.13015,601.07305 L 543.04811,600.18207 L 533.52926,598.97286 L 526.98547,601.59891 z "
+                 id="path6761"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 536.64292,603.22480 L 543.11747,600.37665 L 543.01621,601.01358 L 537.50251,603.70369 L 536.68192,603.95825 L 535.86134,603.70369 L 527.08101,602.11265 L 527.16321,601.50687 L 536.64292,603.22480 z "
+                 id="path6763"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 564.18865,613.19420 L 564.12621,613.91407 L 573.85065,615.72316 L 574.91747,615.40494 L 580.33327,612.66834 L 580.25123,611.77736 L 570.73245,610.56816 L 564.18865,613.19420 z "
+                 id="path6765"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 573.84610,614.82010 L 580.32060,611.97194 L 580.21934,612.60887 L 574.70571,615.29898 L 573.88509,615.55354 L 573.06451,615.29898 L 564.28419,613.70794 L 564.36640,613.10216 L 573.84610,614.82010 z "
+                 id="path6767"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 553.06245,611.03693 L 553.00003,611.75681 L 562.72447,613.56588 L 563.79127,613.24767 L 569.20714,610.51108 L 569.12511,609.62009 L 559.60625,608.41089 L 553.06245,611.03693 z "
+                 id="path6769"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 562.71991,612.66283 L 569.19448,609.81468 L 569.09321,610.45161 L 563.57950,613.14172 L 562.75892,613.39628 L 561.93833,613.14172 L 553.15801,611.55067 L 553.24021,610.94490 L 562.71991,612.66283 z "
+                 id="path6771"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 541.58858,609.14932 L 541.52616,609.86920 L 551.25060,611.67827 L 552.31739,611.36007 L 557.73326,608.62347 L 557.65122,607.73248 L 548.13238,606.52329 L 541.58858,609.14932 z "
+                 id="path6773"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 551.24604,610.77523 L 557.72059,607.92707 L 557.61933,608.56400 L 552.10563,611.25411 L 551.28504,611.50868 L 550.46445,611.25411 L 541.68413,609.66306 L 541.76633,609.05729 L 551.24604,610.77523 z "
+                 id="path6775"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 530.11471,607.26172 L 530.05229,607.98160 L 539.77672,609.79068 L 540.84352,609.47247 L 546.25938,606.73587 L 546.17735,605.84488 L 536.65851,604.63568 L 530.11471,607.26172 z "
+                 id="path6777"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 539.77217,608.88762 L 546.24672,606.03947 L 546.14546,606.67640 L 540.63176,609.36651 L 539.81116,609.62107 L 538.99057,609.36651 L 530.21025,607.77546 L 530.29246,607.16969 L 539.77217,608.88762 z "
+                 id="path6779"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 519.33622,605.10446 L 519.27380,605.82434 L 528.99822,607.63341 L 530.06503,607.31520 L 535.48090,604.57860 L 535.39886,603.68762 L 525.88002,602.47841 L 519.33622,605.10446 z "
+                 id="path6781"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 528.99367,606.73035 L 535.46823,603.88221 L 535.36697,604.51914 L 529.85327,607.20925 L 529.03268,607.46381 L 528.21209,607.20925 L 519.43176,605.61820 L 519.51397,605.01242 L 528.99367,606.73035 z "
+                 id="path6783"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 556.53941,617.23906 L 556.47697,617.95894 L 566.20141,619.76802 L 567.26822,619.44981 L 572.68403,616.71321 L 572.60198,615.82222 L 563.08319,614.61303 L 556.53941,617.23906 z "
+                 id="path6785"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 566.19684,618.86497 L 572.67135,616.01681 L 572.57010,616.65374 L 567.05645,619.34385 L 566.23585,619.59841 L 565.41527,619.34385 L 556.63494,617.75280 L 556.71715,617.14703 L 566.19684,618.86497 z "
+                 id="path6787"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 545.41321,615.08180 L 545.35079,615.80168 L 555.07522,617.61075 L 556.14201,617.29255 L 561.55789,614.55595 L 561.47585,613.66495 L 551.95701,612.45576 L 545.41321,615.08180 z "
+                 id="path6789"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 555.07066,616.70769 L 561.54522,613.85955 L 561.44397,614.49648 L 555.93026,617.18659 L 555.10967,617.44116 L 554.28909,617.18659 L 545.50876,615.59553 L 545.59096,614.98976 L 555.07066,616.70769 z "
+                 id="path6791"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 533.93934,613.19420 L 533.87691,613.91407 L 543.60134,615.72316 L 544.66814,615.40494 L 550.08402,612.66834 L 550.00198,611.77736 L 540.48313,610.56816 L 533.93934,613.19420 z "
+                 id="path6793"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 543.59679,614.82010 L 550.07135,611.97194 L 549.97008,612.60887 L 544.45638,615.29898 L 543.63580,615.55354 L 542.81521,615.29898 L 534.03487,613.70794 L 534.11708,613.10216 L 543.59679,614.82010 z "
+                 id="path6795"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 522.46547,611.30659 L 522.40303,612.02647 L 532.12747,613.83554 L 533.19427,613.51733 L 538.61013,610.78073 L 538.52809,609.88975 L 529.00925,608.68055 L 522.46547,611.30659 z "
+                 id="path6797"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 532.12291,612.93249 L 538.59747,610.08434 L 538.49621,610.72126 L 532.98250,613.41137 L 532.16192,613.66594 L 531.34133,613.41137 L 522.56100,611.82032 L 522.64321,611.21456 L 532.12291,612.93249 z "
+                 id="path6799"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 511.68698,609.14932 L 511.62455,609.86920 L 521.34897,611.67827 L 522.41578,611.36007 L 527.83164,608.62347 L 527.74961,607.73248 L 518.23077,606.52329 L 511.68698,609.14932 z "
+                 id="path6801"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 521.34441,610.77523 L 527.81898,607.92707 L 527.71773,608.56400 L 522.20401,611.25411 L 521.38342,611.50868 L 520.56284,611.25411 L 511.78251,609.66306 L 511.86473,609.05729 L 521.34441,610.77523 z "
+                 id="path6803"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 604.07466,616.27612 L 604.01217,616.99599 L 613.73660,618.80507 L 614.80346,618.48686 L 620.21927,615.75026 L 620.13723,614.85928 L 610.61842,613.65007 L 604.07466,616.27612 z "
+                 id="path6805"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 613.73211,617.90202 L 620.20664,615.05387 L 620.10543,615.69080 L 614.59169,618.38091 L 613.77112,618.63547 L 612.95046,618.38091 L 604.17017,616.78986 L 604.25239,616.18409 L 613.73211,617.90202 z "
+                 id="path6807"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 592.60075,614.38851 L 592.53833,615.10839 L 602.26272,616.91747 L 603.32959,616.59926 L 608.74539,613.86266 L 608.66335,612.97167 L 599.14454,611.76248 L 592.60075,614.38851 z "
+                 id="path6809"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 602.25824,616.01442 L 608.73277,613.16626 L 608.63155,613.80319 L 603.11780,616.49330 L 602.29725,616.74787 L 601.47659,616.49330 L 592.69630,614.90225 L 592.77851,614.29648 L 602.25824,616.01442 z "
+                 id="path6811"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 581.82227,612.23125 L 581.75983,612.95113 L 591.48428,614.76020 L 592.55108,614.44199 L 597.96692,611.70540 L 597.88490,610.81441 L 588.36605,609.60521 L 581.82227,612.23125 z "
+                 id="path6813"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 591.47973,613.85714 L 597.95427,611.00900 L 597.85302,611.64593 L 592.33931,614.33603 L 591.51872,614.59061 L 590.69813,614.33603 L 581.91780,612.74499 L 582.00002,612.13921 L 591.47973,613.85714 z "
+                 id="path6815"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 596.42539,619.78168 L 596.36296,620.50154 L 606.08734,622.31062 L 607.15421,621.99241 L 612.57002,619.25581 L 612.48798,618.36484 L 602.96916,617.15563 L 596.42539,619.78168 z "
+                 id="path6817"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 606.08286,621.40758 L 612.55739,618.55942 L 612.45617,619.19635 L 606.94243,621.88646 L 606.12187,622.14102 L 605.30121,621.88646 L 596.52093,620.29542 L 596.60314,619.68964 L 606.08286,621.40758 z "
+                 id="path6819"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 584.95151,617.89406 L 584.88909,618.61395 L 594.61352,620.42302 L 595.68031,620.10481 L 601.09614,617.36821 L 601.01411,616.47722 L 591.49531,615.26803 L 584.95151,617.89406 z "
+                 id="path6821"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 594.60896,619.51997 L 601.08351,616.67182 L 600.98230,617.30874 L 595.46855,619.99885 L 594.64796,620.25342 L 593.82738,619.99885 L 585.04706,618.40780 L 585.12925,617.80203 L 594.60896,619.51997 z "
+                 id="path6823"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 574.17301,615.73680 L 574.11059,616.45668 L 583.83503,618.26575 L 584.90183,617.94755 L 590.31769,615.21095 L 590.23565,614.31996 L 580.71681,613.11077 L 574.17301,615.73680 z "
+                 id="path6825"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 583.83047,617.36270 L 590.30502,614.51455 L 590.20377,615.15148 L 584.69006,617.84159 L 583.86948,618.09616 L 583.04889,617.84159 L 574.26856,616.25054 L 574.35077,615.64477 L 583.83047,617.36270 z "
+                 id="path6827"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 588.77614,623.82654 L 588.71371,624.54642 L 598.43809,626.35550 L 599.50496,626.03728 L 604.92077,623.30068 L 604.83873,622.40970 L 595.31993,621.20051 L 588.77614,623.82654 z "
+                 id="path6829"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 598.43360,625.45244 L 604.90813,622.60429 L 604.80692,623.24121 L 599.29318,625.93132 L 598.47261,626.18589 L 597.65201,625.93132 L 588.87168,624.34028 L 588.95389,623.73450 L 598.43360,625.45244 z "
+                 id="path6831"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 577.30227,621.93894 L 577.23984,622.65882 L 586.96426,624.46789 L 588.03107,624.14968 L 593.44694,621.41308 L 593.36490,620.52209 L 583.84606,619.31289 L 577.30227,621.93894 z "
+                 id="path6833"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 586.95971,623.56483 L 593.43427,620.71669 L 593.33301,621.35362 L 587.81931,624.04373 L 586.99872,624.29829 L 586.17814,624.04373 L 577.39780,622.45267 L 577.48001,621.84690 L 586.95971,623.56483 z "
+                 id="path6835"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 566.52377,619.78168 L 566.46134,620.50154 L 576.18577,622.31062 L 577.25257,621.99241 L 582.66845,619.25581 L 582.58641,618.36484 L 573.06756,617.15563 L 566.52377,619.78168 z "
+                 id="path6837"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 576.18122,621.40758 L 582.65578,618.55942 L 582.55452,619.19635 L 577.04081,621.88646 L 576.22023,622.14102 L 575.39965,621.88646 L 566.61932,620.29542 L 566.70152,619.68964 L 576.18122,621.40758 z "
+                 id="path6839"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 549.21772,620.85261 L 549.15528,621.57248 L 558.87972,623.38156 L 559.94652,623.06335 L 565.36236,620.32674 L 565.28032,619.43577 L 555.76150,618.22657 L 549.21772,620.85261 z "
+                 id="path6841"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 558.87517,622.47851 L 565.34969,619.63035 L 565.24843,620.26728 L 559.73475,622.95739 L 558.91416,623.21195 L 558.09358,622.95739 L 549.31325,621.36635 L 549.39547,620.76058 L 558.87517,622.47851 z "
+                 id="path6843"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 538.09153,618.69534 L 538.02910,619.41522 L 547.75354,621.22429 L 548.82034,620.90608 L 554.23621,618.16949 L 554.15416,617.27850 L 544.63532,616.06930 L 538.09153,618.69534 z "
+                 id="path6845"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 547.74898,620.32124 L 554.22354,617.47309 L 554.12228,618.11002 L 548.60857,620.80013 L 547.78798,621.05470 L 546.96740,620.80013 L 538.18707,619.20908 L 538.26928,618.60331 L 547.74898,620.32124 z "
+                 id="path6847"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 526.61765,616.80773 L 526.55522,617.52761 L 536.27967,619.33669 L 537.34646,619.01848 L 542.76233,616.28188 L 542.68029,615.39090 L 533.16144,614.18170 L 526.61765,616.80773 z "
+                 id="path6849"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 536.27511,618.43364 L 542.74966,615.58548 L 542.64840,616.22241 L 537.13469,618.91252 L 536.31411,619.16709 L 535.49352,618.91252 L 526.71318,617.32148 L 526.79540,616.71570 L 536.27511,618.43364 z "
+                 id="path6851"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 515.14378,614.92013 L 515.08134,615.64001 L 524.80579,617.44909 L 525.87259,617.13088 L 531.28845,614.39428 L 531.20640,613.50329 L 521.68756,612.29409 L 515.14378,614.92013 z "
+                 id="path6853"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 524.80124,616.54603 L 531.27578,613.69788 L 531.17453,614.33481 L 525.66081,617.02492 L 524.84023,617.27948 L 524.01964,617.02492 L 515.23931,615.43387 L 515.32153,614.82810 L 524.80124,616.54603 z "
+                 id="path6855"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 504.36529,612.76287 L 504.30286,613.48274 L 514.02729,615.29182 L 515.09410,614.97361 L 520.50997,612.23701 L 520.42793,611.34603 L 510.90908,610.13682 L 504.36529,612.76287 z "
+                 id="path6857"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 514.02274,614.38876 L 520.49729,611.54062 L 520.39604,612.17755 L 514.88234,614.86766 L 514.06173,615.12222 L 513.24116,614.86766 L 504.46082,613.27661 L 504.54304,612.67084 L 514.02274,614.38876 z "
+                 id="path6859"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 541.56846,624.35816 L 541.50603,625.07803 L 551.23048,626.88711 L 552.29729,626.56890 L 557.71308,623.83230 L 557.63105,622.94132 L 548.11226,621.73212 L 541.56846,624.35816 z "
+                 id="path6861"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 551.22591,625.98406 L 557.70042,623.13591 L 557.59916,623.77284 L 552.08552,626.46295 L 551.26492,626.71751 L 550.44433,626.46295 L 541.66401,624.87190 L 541.74622,624.26612 L 551.22591,625.98406 z "
+                 id="path6863"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 530.44228,622.20090 L 530.37986,622.92077 L 540.10429,624.72984 L 541.17108,624.41164 L 546.58696,621.67504 L 546.50492,620.78406 L 536.98608,619.57486 L 530.44228,622.20090 z "
+                 id="path6865"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 540.09973,623.82680 L 546.57429,620.97864 L 546.47304,621.61557 L 540.95933,624.30568 L 540.13874,624.56025 L 539.31815,624.30568 L 530.53783,622.71464 L 530.62002,622.10887 L 540.09973,623.82680 z "
+                 id="path6867"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 518.96840,620.31329 L 518.90598,621.03317 L 528.63041,622.84224 L 529.69721,622.52403 L 535.11309,619.78743 L 535.03105,618.89645 L 525.51220,617.68725 L 518.96840,620.31329 z "
+                 id="path6869"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 528.62586,621.93919 L 535.10042,619.09103 L 534.99915,619.72796 L 529.48545,622.41807 L 528.66485,622.67264 L 527.84428,622.41807 L 519.06394,620.82703 L 519.14615,620.22125 L 528.62586,621.93919 z "
+                 id="path6871"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 507.49452,618.42568 L 507.43210,619.14556 L 517.15654,620.95464 L 518.22334,620.63643 L 523.63920,617.89983 L 523.55716,617.00884 L 514.03832,615.79964 L 507.49452,618.42568 z "
+                 id="path6873"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 517.15198,620.05158 L 523.62654,617.20344 L 523.52528,617.84037 L 518.01157,620.53048 L 517.19098,620.78504 L 516.37039,620.53048 L 507.59007,618.93942 L 507.67228,618.33365 L 517.15198,620.05158 z "
+                 id="path6875"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 496.71603,616.26843 L 496.65361,616.98829 L 506.37804,618.79737 L 507.44485,618.47916 L 512.86071,615.74256 L 512.77867,614.85159 L 503.25983,613.64238 L 496.71603,616.26843 z "
+                 id="path6877"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 506.37348,617.89432 L 512.84805,615.04617 L 512.74679,615.68310 L 507.23308,618.37321 L 506.41249,618.62777 L 505.59190,618.37321 L 496.81158,616.78217 L 496.89379,616.17639 L 506.37348,617.89432 z "
+                 id="path6879"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 533.91922,628.40302 L 533.85679,629.12291 L 543.58123,630.93198 L 544.64805,630.61378 L 550.06384,627.87718 L 549.98179,626.98618 L 540.46301,625.77699 L 533.91922,628.40302 z "
+                 id="path6881"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 543.57667,630.02892 L 550.05117,627.18077 L 549.94992,627.81771 L 544.43628,630.50782 L 543.61568,630.76238 L 542.79509,630.50782 L 534.01475,628.91676 L 534.09696,628.31099 L 543.57667,630.02892 z "
+                 id="path6883"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 522.79304,626.24577 L 522.73061,626.96564 L 532.45503,628.77472 L 533.52184,628.45651 L 538.93771,625.71991 L 538.85567,624.82892 L 529.33683,623.61973 L 522.79304,626.24577 z "
+                 id="path6885"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 532.45048,627.87166 L 538.92504,625.02351 L 538.82378,625.66044 L 533.31008,628.35055 L 532.48949,628.60512 L 531.66891,628.35055 L 522.88857,626.75950 L 522.97078,626.15373 L 532.45048,627.87166 z "
+                 id="path6887"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 511.31916,624.35816 L 511.25673,625.07803 L 520.98116,626.88711 L 522.04796,626.56890 L 527.46383,623.83230 L 527.38179,622.94132 L 517.86295,621.73212 L 511.31916,624.35816 z "
+                 id="path6889"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 520.97660,625.98406 L 527.45117,623.13591 L 527.34991,623.77284 L 521.83619,626.46295 L 521.01561,626.71751 L 520.19503,626.46295 L 511.41470,624.87190 L 511.49690,624.26612 L 520.97660,625.98406 z "
+                 id="path6891"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 499.84528,622.47055 L 499.78285,623.19043 L 509.50729,624.99950 L 510.57408,624.68130 L 515.98995,621.94470 L 515.90792,621.05371 L 506.38907,619.84452 L 499.84528,622.47055 z "
+                 id="path6893"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 509.50273,624.09645 L 515.97728,621.24830 L 515.87602,621.88523 L 510.36232,624.57534 L 509.54174,624.82991 L 508.72115,624.57534 L 499.94082,622.98429 L 500.02302,622.37852 L 509.50273,624.09645 z "
+                 id="path6895"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 489.06679,620.31329 L 489.00436,621.03317 L 498.72880,622.84224 L 499.79559,622.52403 L 505.21146,619.78743 L 505.12942,618.89645 L 495.61058,617.68725 L 489.06679,620.31329 z "
+                 id="path6897"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 498.72424,621.93919 L 505.19879,619.09103 L 505.09755,619.72796 L 499.58383,622.41807 L 498.76325,622.67264 L 497.94266,622.41807 L 489.16233,620.82703 L 489.24455,620.22125 L 498.72424,621.93919 z "
+                 id="path6899"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 581.45448,627.44009 L 581.39199,628.15995 L 591.11641,629.96903 L 592.18328,629.65082 L 597.59909,626.91422 L 597.51705,626.02325 L 587.99823,624.81404 L 581.45448,627.44009 z "
+                 id="path6901"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 591.11193,629.06599 L 597.58646,626.21782 L 597.48524,626.85476 L 591.97150,629.54487 L 591.15094,629.79943 L 590.33028,629.54487 L 581.54999,627.95383 L 581.63221,627.34805 L 591.11193,629.06599 z "
+                 id="path6903"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 569.98058,625.55247 L 569.91815,626.27236 L 579.64254,628.08143 L 580.70941,627.76322 L 586.12521,625.02663 L 586.04317,624.13563 L 576.52436,622.92644 L 569.98058,625.55247 z "
+                 id="path6905"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 579.63805,627.17837 L 586.11258,624.33023 L 586.01137,624.96716 L 580.49762,627.65726 L 579.67706,627.91184 L 578.85640,627.65726 L 570.07611,626.06621 L 570.15832,625.46044 L 579.63805,627.17837 z "
+                 id="path6907"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 559.20208,623.39521 L 559.13965,624.11509 L 568.86410,625.92417 L 569.93089,625.60596 L 575.34674,622.86936 L 575.26472,621.97838 L 565.74587,620.76918 L 559.20208,623.39521 z "
+                 id="path6909"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 568.85954,625.02111 L 575.33409,622.17296 L 575.23283,622.80989 L 569.71913,625.50000 L 568.89854,625.75457 L 568.07796,625.50000 L 559.29763,623.90896 L 559.37984,623.30318 L 568.85954,625.02111 z "
+                 id="path6911"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 573.80520,630.94564 L 573.74278,631.66551 L 583.46716,633.47458 L 584.53403,633.15637 L 589.94983,630.41978 L 589.86780,629.52880 L 580.34898,628.31959 L 573.80520,630.94564 z "
+                 id="path6913"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 583.46267,632.57154 L 589.93720,629.72338 L 589.83599,630.36031 L 584.32225,633.05042 L 583.50168,633.30499 L 582.68102,633.05042 L 573.90075,631.45938 L 573.98296,630.85360 L 583.46267,632.57154 z "
+                 id="path6915"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 562.33133,629.05802 L 562.26891,629.77791 L 571.99333,631.58698 L 573.06014,631.26878 L 578.47596,628.53218 L 578.39392,627.64119 L 568.87513,626.43200 L 562.33133,629.05802 z "
+                 id="path6917"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 571.98878,630.68393 L 578.46333,627.83578 L 578.36212,628.47271 L 572.84838,631.16282 L 572.02777,631.41739 L 571.20720,631.16282 L 562.42687,629.57177 L 562.50908,628.96600 L 571.98878,630.68393 z "
+                 id="path6919"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 551.55283,626.90077 L 551.49041,627.62064 L 561.21484,629.42972 L 562.28164,629.11151 L 567.69752,626.37491 L 567.61548,625.48393 L 558.09663,624.27473 L 551.55283,626.90077 z "
+                 id="path6921"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 561.21029,628.52666 L 567.68485,625.67851 L 567.58358,626.31544 L 562.06988,629.00555 L 561.24930,629.26012 L 560.42871,629.00555 L 551.64838,627.41451 L 551.73058,626.80873 L 561.21029,628.52666 z "
+                 id="path6923"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 566.15596,634.99050 L 566.09353,635.71038 L 575.81792,637.51946 L 576.88478,637.20125 L 582.30058,634.46465 L 582.21854,633.57366 L 572.69975,632.36447 L 566.15596,634.99050 z "
+                 id="path6925"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 575.81342,636.61640 L 582.28795,633.76825 L 582.18674,634.40518 L 576.67300,637.09529 L 575.85243,637.34986 L 575.03183,637.09529 L 566.25149,635.50424 L 566.33370,634.89847 L 575.81342,636.61640 z "
+                 id="path6927"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 554.68209,633.10291 L 554.61965,633.82277 L 564.34409,635.63185 L 565.41089,635.31364 L 570.82675,632.57704 L 570.74471,631.68606 L 561.22587,630.47686 L 554.68209,633.10291 z "
+                 id="path6929"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 564.33954,634.72880 L 570.81409,631.88065 L 570.71283,632.51758 L 565.19912,635.20769 L 564.37853,635.46225 L 563.55795,635.20769 L 554.77762,633.61664 L 554.85983,633.01087 L 564.33954,634.72880 z "
+                 id="path6931"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 543.90359,630.94564 L 543.84117,631.66551 L 553.56559,633.47458 L 554.63239,633.15637 L 560.04826,630.41978 L 559.96623,629.52880 L 550.44739,628.31959 L 543.90359,630.94564 z "
+                 id="path6933"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 553.56104,632.57154 L 560.03560,629.72338 L 559.93434,630.36031 L 554.42064,633.05042 L 553.60004,633.30499 L 552.77947,633.05042 L 543.99913,631.45938 L 544.08134,630.85360 L 553.56104,632.57154 z "
+                 id="path6935"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            </g>
+            <path
+               d="M 252.70452,458.78596 L 235.94034,467.16805 L 230.97318,469.34118 L 227.24780,467.47850 L 252.70452,458.78596 z "
+               id="path6937"
+               style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <text
+               id="text6939"
+               sodipodi:linespacing="125.00000%"
+               space="preserve"
+               style="font-size:10.008980px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#00b800;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans Mono"
+               transform="matrix(1.152915,6.902673e-2,-0.472362,0.839085,0.000000,0.000000)"
+               x="433.62375"
+               y="307.40585">
+              <tspan
+                 id="tspan6941"
+                 sodipodi:role="line"
+                 x="433.62375"
+                 y="307.40585">tux@linux#</tspan>
+            </text>
+          </g>
+        </g>
+        <g
+           id="g6943"
+           transform="translate(1358.023,2415.499)">
+          <path
+             sodipodi:nodetypes="ccccc"
+             id="path6945"
+             d="M -86.419853,-691.35483 C -76.144661,-694.12138 -64.683870,-695.22800 -55.594278,-689.69490 C -64.091071,-673.09562 -66.659869,-647.36672 -63.300672,-629.93747 C -71.402265,-637.40715 -83.060655,-635.74723 -94.719045,-632.42736 C -98.473443,-651.23989 -96.892644,-670.05241 -86.419853,-691.35483 z "
+             style="fill:#ffff00;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+          <path
+             sodipodi:nodetypes="cc"
+             id="path6947"
+             d="M -85.234254,-677.24544 C -79.701458,-679.45868 -75.354262,-680.84195 -68.635867,-676.41547"
+             style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+          <path
+             style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+             d="M -87.605452,-667.28587 C -82.072656,-669.49911 -77.725460,-670.88238 -71.007065,-666.45590"
+             id="path6949"
+             sodipodi:nodetypes="cc" />
+        </g>
+        <g
+           transform="translate(31.67467,192.2077)"
+           id="g6951">
+          <path
+             d="M 1207.3813,1491.0307 C 1224.1769,1497.2363 1227.8281,1511.9747 1227.8281,1511.9747"
+             id="path6953"
+             style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0643784px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+          <path
+             d="M 1209.7952,1478.6913 C 1236.0060,1488.5613 1241.7040,1512.0023 1241.7040,1512.0023"
+             id="path6955"
+             style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.6768856px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+          <path
+             d="M 1212.2605,1466.3177 C 1249.5475,1479.4553 1257.6533,1510.6571 1257.6533,1510.6571"
+             id="path6957"
+             style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:2.3075068px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        </g>
+      </g>
+    </g>
+  </g>
+</svg>
diff --git a/product/hotelgate/full.svg b/product/hotelgate/full.svg
new file mode 100644 (file)
index 0000000..dadea5e
--- /dev/null
@@ -0,0 +1,23485 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="1500.0000pt"
+   height="1650.0000pt"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.42"
+   sodipodi:docbase="/home/lace/www/www.jankratochvil.net/product/hotelgate"
+   sodipodi:docname="full.svg">
+  <defs
+     id="defs4">
+    <marker
+       inkscape:stockid="Arrow2Lstart"
+       orient="auto"
+       refY="0.0"
+       refX="0.0"
+       id="Arrow2Lstart"
+       style="overflow:visible">
+      <path
+         sodipodi:nodetypes="cccc"
+         id="path5097"
+         style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
+         d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+         transform="scale(1.1) translate(-5,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Lend"
+       orient="auto"
+       refY="0.0"
+       refX="0.0"
+       id="Arrow2Lend"
+       style="overflow:visible;">
+      <path
+         sodipodi:nodetypes="cccc"
+         id="path5106"
+         style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
+         d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+         transform="scale(1.1) rotate(180) translate(-5,0)" />
+    </marker>
+    <linearGradient
+       y2="0.46093750"
+       y1="0.46093750"
+       xlink:href="#linearGradient650"
+       x2="1.16666818"
+       x1="1.22222710"
+       spreadMethod="repeat"
+       id="linearGradient654"
+       gradientUnits="objectBoundingBox" />
+    <linearGradient
+       y2="0.53906250"
+       y1="0.53125000"
+       xlink:href="#linearGradient650"
+       x2="1.16666901"
+       x1="1.00000548"
+       spreadMethod="repeat"
+       id="linearGradient653"
+       gradientUnits="objectBoundingBox" />
+    <linearGradient
+       id="linearGradient650">
+      <stop
+         style="stop-color:#000;stop-opacity:1;"
+         offset="0"
+         id="stop651" />
+      <stop
+         style="stop-color:#fff;stop-opacity:1;"
+         offset="1"
+         id="stop652" />
+    </linearGradient>
+    <linearGradient
+       y2="-0.12500010"
+       y1="0.60155678"
+       xlink:href="#linearGradient1164"
+       x2="-0.13106795"
+       x1="0.47572812"
+       spreadMethod="reflect"
+       id="linearGradient1167"
+       gradientUnits="objectBoundingBox" />
+    <linearGradient
+       id="linearGradient1164">
+      <stop
+         style="stop-color:#263d42;stop-opacity:1;"
+         offset="0.000000"
+         id="stop1165" />
+      <stop
+         style="stop-color:#9acde7;stop-opacity:1;"
+         offset="1.000000"
+         id="stop1166" />
+    </linearGradient>
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="27.789434"
+       id="radialGradient6764"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(2.561113,0.390455)"
+       fy="253.38283"
+       fx="47.074745"
+       cy="253.38283"
+       cx="47.074745" />
+    <radialGradient
+       xlink:href="#linearGradient12744"
+       r="22.012070"
+       id="radialGradient6763"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(2.746613,0.364085)"
+       fy="234.79250"
+       fx="41.158657"
+       cy="234.79250"
+       cx="41.158657" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6762"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6761"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6760"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6759"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6758"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6757"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6756"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6755"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6754"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6753"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6752"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6751"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6750"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6749"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6748"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6747"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6746"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="97.536598"
+       cy="113.72600"
+       cx="97.536598" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6745"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="97.536598"
+       cy="126.99414"
+       cx="97.536598" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6744"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="100.67591"
+       cy="113.72600"
+       cx="100.67591" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6743"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="100.67591"
+       cy="126.99414"
+       cx="100.67591" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6742"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="104.00187"
+       cy="113.72600"
+       cx="104.00187" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6741"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="104.00187"
+       cy="126.99414"
+       cx="104.00187" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6740"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="107.14119"
+       cy="113.72600"
+       cx="107.14119" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6739"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="107.14119"
+       cy="126.99414"
+       cx="107.14119" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6738"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="110.13468"
+       cy="113.72600"
+       cx="110.13468" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6737"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="110.13468"
+       cy="126.99414"
+       cx="110.13468" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6736"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="113.27399"
+       cy="113.72600"
+       cx="113.27399" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6735"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="113.27399"
+       cy="126.99414"
+       cx="113.27399" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6734"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="116.42374"
+       cy="113.72600"
+       cx="116.42374" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6733"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="116.42374"
+       cy="126.99414"
+       cx="116.42374" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6732"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="119.56305"
+       cy="113.72600"
+       cx="119.56305" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6731"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="119.56305"
+       cy="126.99414"
+       cx="119.56305" />
+    <radialGradient
+       xlink:href="#linearGradient12744"
+       r="19.324974"
+       id="radialGradient6730"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(3.448440,0.289986)"
+       fy="247.99883"
+       fx="34.697765"
+       cy="247.99883"
+       cx="34.697765" />
+    <radialGradient
+       xlink:href="#linearGradient12744"
+       r="9.3962202"
+       id="radialGradient6729"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(0.705209,1.418019)"
+       fy="56.345604"
+       fx="255.34476"
+       cy="56.345604"
+       cx="255.34476" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6728"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.75461"
+       fx="39.188126"
+       cy="126.75461"
+       cx="39.188126" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6727"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="124.37913"
+       fx="39.188126"
+       cy="124.37913"
+       cx="39.188126" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6726"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="122.00374"
+       fx="39.188126"
+       cy="122.00374"
+       cx="39.188126" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6725"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="119.71113"
+       fx="39.188126"
+       cy="119.71113"
+       cx="39.188126" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6724"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6723"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6722"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6721"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6720"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6719"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6718"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6717"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6716"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6715"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6714"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6713"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6712"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6711"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6710"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6709"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6708"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="71.480988"
+       cy="113.72600"
+       cx="71.480988" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6707"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="71.480988"
+       cy="126.99414"
+       cx="71.480988" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6706"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="74.620308"
+       cy="113.72600"
+       cx="74.620308" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6705"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="74.620308"
+       cy="126.99414"
+       cx="74.620308" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6704"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="77.946259"
+       cy="113.72600"
+       cx="77.946259" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6703"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="77.946259"
+       cy="126.99414"
+       cx="77.946259" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6702"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="81.085587"
+       cy="113.72600"
+       cx="81.085587" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6701"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="81.085587"
+       cy="126.99414"
+       cx="81.085587" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6700"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="84.079071"
+       cy="113.72600"
+       cx="84.079071" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6699"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="84.079071"
+       cy="126.99414"
+       cx="84.079071" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6698"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="87.218399"
+       cy="113.72600"
+       cx="87.218399" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6697"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="87.218399"
+       cy="126.99414"
+       cx="87.218399" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6696"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="90.368126"
+       cy="113.72600"
+       cx="90.368126" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6695"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="90.368126"
+       cy="126.99414"
+       cx="90.368126" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6694"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="93.507462"
+       cy="113.72600"
+       cx="93.507462" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6693"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="93.507462"
+       cy="126.99414"
+       cx="93.507462" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6692"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6691"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6690"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6689"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6688"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6687"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6686"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6685"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6684"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6683"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6682"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6681"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6680"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6679"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6678"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6677"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6676"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="45.452175"
+       cy="113.72600"
+       cx="45.452175" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6675"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="45.452175"
+       cy="126.99414"
+       cx="45.452175" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6674"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="48.591496"
+       cy="113.72600"
+       cx="48.591496" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6673"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="48.591496"
+       cy="126.99414"
+       cx="48.591496" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6672"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="51.917450"
+       cy="113.72600"
+       cx="51.917450" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6671"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="51.917450"
+       cy="126.99414"
+       cx="51.917450" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6670"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="55.056770"
+       cy="113.72600"
+       cx="55.056770" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6669"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="55.056770"
+       cy="126.99414"
+       cx="55.056770" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6668"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="58.050255"
+       cy="113.72600"
+       cx="58.050255" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6667"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="58.050255"
+       cy="126.99414"
+       cx="58.050255" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6666"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="61.189575"
+       cy="113.72600"
+       cx="61.189575" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6665"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="61.189575"
+       cy="126.99414"
+       cx="61.189575" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6664"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="64.339317"
+       cy="113.72600"
+       cx="64.339317" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6663"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="64.339317"
+       cy="126.99414"
+       cx="64.339317" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6662"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="67.478638"
+       cy="113.72600"
+       cx="67.478638" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6661"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="67.478638"
+       cy="126.99414"
+       cx="67.478638" />
+    <radialGradient
+       xlink:href="#linearGradient13376"
+       r="31.620827"
+       id="radialGradient6036"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.671462,0.000000,0.000000,0.500968,169.5594,-31.08157)"
+       fy="254.35735"
+       fx="-19.038713"
+       cy="253.63734"
+       cx="-19.261518" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient6035"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.681494,0.000000,0.000000,0.399114,149.8356,-15.39627)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6034"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028579e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6033"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6032"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028394e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6031"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6030"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029314e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6029"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6028"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029170e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6027"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6026"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029185e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6025"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6024"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029166e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6023"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6022"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028733e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6021"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6020"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029128e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6019"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6018"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027107e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6017"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6016"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026922e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6015"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6014"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028328e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6013"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6012"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028184e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6011"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6010"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028199e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6009"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6008"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028180e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6007"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6006"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028142e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6005"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6004"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028179e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6003"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient6002"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,163.6663,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient6001"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,163.6662,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient6000"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,168.1059,60.95613)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5999"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,168.1059,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5998"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,172.8091,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5997"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,172.8091,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5996"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,177.2488,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5995"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,177.2488,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5994"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,181.4822,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5993"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,181.4822,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5992"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,185.9219,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5991"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,185.9219,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5990"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,190.3763,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5989"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,190.3763,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5988"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,194.8160,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5987"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,194.8159,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient14835"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient5986"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.500039,0.000000,0.000000,0.399114,143.6876,-33.39267)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient5985"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.505549,0.000000,0.000000,0.350818,264.3597,-4.249573)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5984"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,81.14952,70.16883)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5983"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,81.14952,68.48913)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5982"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,81.14952,66.80943)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5981"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,81.14942,65.18833)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5980"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025590e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5979"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5978"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025405e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5977"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5976"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026325e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5975"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5974"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026181e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5973"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5972"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026196e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5971"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5970"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026177e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5969"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5968"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025744e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5967"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5966"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026139e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5965"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5964"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.024340e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5963"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5962"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.024155e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5961"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5960"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025561e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5959"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5958"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025417e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5957"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5956"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025432e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5955"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5954"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025413e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5953"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5952"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025375e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5951"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5950"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025412e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5949"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5948"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,126.8181,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5947"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,126.8180,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5946"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,131.2577,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5945"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,131.2577,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5944"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,135.9609,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5943"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,135.9609,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5942"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,140.4006,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5941"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,140.4006,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5940"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,144.6340,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5939"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,144.6340,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5938"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,149.0736,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5937"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,149.0736,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5936"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,153.5280,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5935"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,153.5280,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5934"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,157.9677,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5933"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,157.9676,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5932"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026202e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5931"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5930"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026017e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5929"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5928"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026937e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5927"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5926"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026793e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5925"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5924"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026808e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5923"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5922"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026789e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5921"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5920"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026356e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5919"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5918"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026751e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5917"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5916"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.024695e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5915"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5914"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.024510e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5913"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5912"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025916e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5911"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5910"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025772e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5909"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5908"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025787e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5907"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5906"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025768e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5905"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5904"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025730e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5903"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5902"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025767e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5901"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5900"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,90.00792,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5899"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,90.00782,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5898"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,94.44748,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5897"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,94.44748,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5896"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,99.15068,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5895"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,99.15068,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5894"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,103.5904,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5893"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,103.5904,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5892"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,107.8238,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5891"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,107.8238,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5890"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,112.2635,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5889"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,112.2635,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5888"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,116.7179,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5887"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,116.7179,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5886"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,121.1576,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5885"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,121.1575,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       id="linearGradient14160">
+      <stop
+         style="stop-color:#4af853;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop14161" />
+      <stop
+         style="stop-color:#68b96d;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop14162" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient10810">
+      <stop
+         style="stop-color:#0e0000;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop10811" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1.0000000;"
+         offset="0.50000000"
+         id="stop10814" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop10812" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11442">
+      <stop
+         style="stop-color:#6e6e6e;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop11443" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop11444" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient12744">
+      <stop
+         style="stop-color:#839da4;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop12745" />
+      <stop
+         style="stop-color:#496d77;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop12746" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient13376">
+      <stop
+         style="stop-color:#c0c0c0;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop13377" />
+      <stop
+         style="stop-color:#c7c7c7;stop-opacity:0.49803922;"
+         offset="0.50000000"
+         id="stop13380" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.0000000;"
+         offset="1.0000000"
+         id="stop13378" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient14835">
+      <stop
+         style="stop-color:#bed1d0;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop14836" />
+      <stop
+         style="stop-color:#52727b;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop14837" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6658">
+      <stop
+         style="stop-color:#677883;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop6659" />
+      <stop
+         style="stop-color:#677883;stop-opacity:0.0000000;"
+         offset="1.0000000"
+         id="stop6660" />
+    </linearGradient>
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient10048"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient10046"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,215.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient10044"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient10036"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient10028"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient7293"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,215.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient7287"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient7281"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,169.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient7275"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,143.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient4929"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,118.9307,88.97860)" />
+    <radialGradient
+       xlink:href="#linearGradient1851"
+       r="125.20509"
+       id="radialGradient1875"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1.270510,0.000000,0.000000,0.218761,-207.1544,6.085000e-2)"
+       fy="552.23833"
+       fx="-285.65439"
+       cy="598.36652"
+       cx="-289.09140"
+       collect="always" />
+    <linearGradient
+       id="linearGradient1851"
+       collect="always">
+      <stop
+         style="stop-color:#000000;stop-opacity:0.37241378;"
+         offset="0.0000000"
+         id="stop1852" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0.11034483;"
+         offset="0.50000000"
+         id="stop1854" />
+      <stop
+         style="stop-color:#adadad;stop-opacity:0.0000000;"
+         offset="1.0000000"
+         id="stop1853" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8468"
+       collect="always">
+      <stop
+         style="stop-color:#000000;stop-opacity:0.58620691;"
+         offset="0.0000000"
+         id="stop8469" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0.0068965517;"
+         offset="1.0000000"
+         id="stop8470" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient1806">
+      <stop
+         style="stop-color:#000000;stop-opacity:0.53103447;"
+         offset="0.0000000"
+         id="stop1807" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0.073446326;"
+         offset="0.64777780"
+         id="stop3276" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0.0000000;"
+         offset="1.0000000"
+         id="stop1808" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8474"
+       collect="always">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop8475" />
+      <stop
+         style="stop-color:#a2a2a2;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop8476" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8481"
+       collect="always">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop8482" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.0039215689;"
+         offset="1.0000000"
+         id="stop8483" />
+    </linearGradient>
+    <linearGradient
+       y2="-0.12500010"
+       y1="0.60155678"
+       xlink:href="#linearGradient1164"
+       x2="-0.13106795"
+       x1="0.47572812"
+       spreadMethod="reflect"
+       id="linearGradient3917"
+       gradientUnits="objectBoundingBox" />
+    <linearGradient
+       id="linearGradient3911">
+      <stop
+         style="stop-color:#263d42;stop-opacity:1;"
+         offset="0.000000"
+         id="stop3913" />
+      <stop
+         style="stop-color:#9acde7;stop-opacity:1;"
+         offset="1.000000"
+         id="stop3915" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4239"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.335120,0.000000,0.000000,-0.596114,-231.8379,185.4951)"
+       x1="312.61248"
+       y1="135.90253"
+       x2="339.46602"
+       y2="316.70622" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1806"
+       id="linearGradient4241"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.335120,0.000000,0.000000,-0.596114,-231.8379,185.4951)"
+       x1="310.44888"
+       y1="142.43878"
+       x2="311.96148"
+       y2="261.76054" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8468"
+       id="linearGradient4243"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.423388,0.000000,0.000000,-0.464941,-231.8379,154.7338)"
+       x1="282.27411"
+       y1="419.36390"
+       x2="282.27411"
+       y2="211.77074" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4245"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.423388,0.000000,0.000000,-0.464941,-231.8379,154.7338)"
+       x1="151.97781"
+       y1="82.293232"
+       x2="200.30677"
+       y2="418.78640" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8468"
+       id="linearGradient4247"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.050391,0.000000,0.000000,1.342646,-91.51548,-60.79889)"
+       x1="68.268656"
+       y1="164.80815"
+       x2="70.638656"
+       y2="87.802278" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8481"
+       id="linearGradient4249"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.427745,0.000000,0.000000,-0.463522,-231.8379,154.7338)"
+       x1="280.30070"
+       y1="418.04542"
+       x2="283.50529"
+       y2="212.07808" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1851"
+       id="radialGradient4251"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1.270510,0.000000,0.000000,0.218761,-207.1544,6.085000e-2)"
+       cx="-289.09140"
+       cy="598.36652"
+       fx="-285.65439"
+       fy="552.23833"
+       r="125.20509" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4253"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)"
+       x1="68.268654"
+       y1="164.80815"
+       x2="70.638657"
+       y2="87.802277" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4255"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,215.0464,89.10950)"
+       x1="68.268654"
+       y1="164.80815"
+       x2="70.638657"
+       y2="87.802277" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4257"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)"
+       x1="68.268654"
+       y1="164.80815"
+       x2="70.638657"
+       y2="87.802277" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4259"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)"
+       x1="68.268654"
+       y1="164.80815"
+       x2="70.638657"
+       y2="87.802277" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4261"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)"
+       x1="68.268654"
+       y1="164.80815"
+       x2="70.638657"
+       y2="87.802277" />
+    <linearGradient
+       id="linearGradient6508">
+      <stop
+         style="stop-color:#ff0000;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop6509" />
+      <stop
+         style="stop-color:#ffb900;stop-opacity:1.0000000;"
+         offset="0.64370060"
+         id="stop6511" />
+      <stop
+         style="stop-color:#ffff00;stop-opacity:0.84102565;"
+         offset="0.79038113"
+         id="stop6512" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.21568628;"
+         offset="1.0000000"
+         id="stop6510" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12744"
+       id="linearGradient22995"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(6.726506,0.000000,0.000000,1.001174,900.9314,23.92146)"
+       x1="-35.945030"
+       y1="233.36613"
+       x2="8.3977861"
+       y2="275.81308" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12744"
+       id="radialGradient22997"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(6.889857,0.000000,0.000000,0.913304,525.0700,62.54288)"
+       cx="41.158657"
+       cy="234.79250"
+       fx="41.158657"
+       fy="234.79250"
+       r="22.012070" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient22999"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23001"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23003"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029022e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23005"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23007"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23009"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23011"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028837e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23013"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23015"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23017"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23019"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029757e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23021"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23023"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23025"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23027"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029613e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23029"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23031"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23033"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23035"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029628e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23037"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23039"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23041"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23043"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029609e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23045"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23047"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23049"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23051"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029176e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23053"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23055"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23057"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23059"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029571e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23061"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23063"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23065"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23067"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028944e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23069"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23071"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23073"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23075"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028759e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23077"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23079"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23081"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23083"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.030165e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23085"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23087"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23089"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23091"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.030021e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23093"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23095"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23097"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23099"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.030036e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23101"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23103"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23105"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23107"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.030017e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23109"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23111"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23113"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23115"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029979e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23117"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23119"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23121"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23123"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.030016e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23125"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23127"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,935.6256,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23129"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="97.536598"
+       cy="113.72600"
+       fx="97.536598"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23131"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,935.6254,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23133"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="97.536598"
+       cy="126.99414"
+       fx="97.536598"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23135"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,946.7623,215.4508)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23137"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="100.67591"
+       cy="113.72600"
+       fx="100.67591"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23139"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,946.7623,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23141"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="100.67591"
+       cy="126.99414"
+       fx="100.67591"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23143"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,958.5602,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23145"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="104.00187"
+       cy="113.72600"
+       fx="104.00187"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23147"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,958.5602,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23149"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="104.00187"
+       cy="126.99414"
+       fx="104.00187"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23151"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,969.6972,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23153"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="107.14119"
+       cy="113.72600"
+       fx="107.14119"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23155"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,969.6972,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23157"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="107.14119"
+       cy="126.99414"
+       fx="107.14119"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23159"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,980.3166,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23161"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="110.13468"
+       cy="113.72600"
+       fx="110.13468"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23163"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,980.3166,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23165"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="110.13468"
+       cy="126.99414"
+       fx="110.13468"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23167"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,991.4536,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23169"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="113.27399"
+       cy="113.72600"
+       fx="113.27399"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23171"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,991.4536,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23173"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="113.27399"
+       cy="126.99414"
+       fx="113.27399"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23175"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,1002.627,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23177"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="116.42374"
+       cy="113.72600"
+       fx="116.42374"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23179"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,1002.627,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23181"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="116.42374"
+       cy="126.99414"
+       fx="116.42374"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23183"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,1013.764,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23185"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="119.56305"
+       cy="113.72600"
+       fx="119.56305"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23187"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,1013.764,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23189"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="119.56305"
+       cy="126.99414"
+       fx="119.56305"
+       fy="126.99414"
+       r="0.55242717" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14835"
+       id="linearGradient23191"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(6.271328,0.000000,0.000000,1.001174,885.5092,-21.22237)"
+       x1="-35.945030"
+       y1="233.36613"
+       x2="8.3977861"
+       y2="275.81308" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12744"
+       id="radialGradient23193"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(8.650384,0.000000,0.000000,0.727428,525.0700,62.54288)"
+       cx="34.697765"
+       cy="247.99883"
+       fx="34.697765"
+       fy="247.99883"
+       r="19.324974" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12744"
+       id="linearGradient23195"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(6.285150,0.000000,0.000000,0.880024,1188.214,51.88286)"
+       x1="-35.945030"
+       y1="233.36613"
+       x2="8.3977861"
+       y2="275.81308" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12744"
+       id="radialGradient23197"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.769011,0.000000,0.000000,3.557089,525.0700,62.54288)"
+       cx="255.34476"
+       cy="56.345604"
+       fx="255.34476"
+       fy="56.345604"
+       r="9.3962202" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23199"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,728.6329,238.5608)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23201"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="39.188126"
+       cy="126.75461"
+       fx="39.188126"
+       fy="126.75461"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23203"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,728.6329,234.3473)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23205"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="39.188126"
+       cy="124.37913"
+       fx="39.188126"
+       fy="124.37913"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23207"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,728.6329,230.1338)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23209"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="39.188126"
+       cy="122.00374"
+       fx="39.188126"
+       fy="122.00374"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23211"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,728.6327,226.0673)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23213"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="39.188126"
+       cy="119.71113"
+       fx="39.188126"
+       fy="119.71113"
+       r="0.55242717" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23215"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23217"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23219"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026033e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23221"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23223"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23225"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23227"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025848e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23229"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23231"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23233"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23235"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026768e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23237"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23239"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23241"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23243"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026624e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23245"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23247"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23249"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23251"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026639e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23253"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23255"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23257"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23259"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026620e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23261"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23263"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23265"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23267"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026187e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23269"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23271"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23273"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23275"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026582e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23277"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23279"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23281"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23283"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026177e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23285"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23287"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23289"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23291"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025992e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23293"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23295"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23297"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23299"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027398e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23301"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23303"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23305"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23307"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027254e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23309"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23311"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23313"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23315"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027269e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23317"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23319"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23321"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23323"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027250e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23325"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23327"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23329"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23331"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027212e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23333"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23335"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23337"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23339"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027249e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23341"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23343"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,843.1922,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23345"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="71.480988"
+       cy="113.72600"
+       fx="71.480988"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23347"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,843.1919,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23349"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="71.480988"
+       cy="126.99414"
+       fx="71.480988"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23351"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,854.3289,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23353"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="74.620308"
+       cy="113.72600"
+       fx="74.620308"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23355"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,854.3289,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23357"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="74.620308"
+       cy="126.99414"
+       fx="74.620308"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23359"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,866.1268,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23361"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="77.946259"
+       cy="113.72600"
+       fx="77.946259"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23363"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,866.1268,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23365"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="77.946259"
+       cy="126.99414"
+       fx="77.946259"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23367"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,877.2638,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23369"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="81.085587"
+       cy="113.72600"
+       fx="81.085587"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23371"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,877.2638,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23373"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="81.085587"
+       cy="126.99414"
+       fx="81.085587"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23375"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,887.8832,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23377"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="84.079071"
+       cy="113.72600"
+       fx="84.079071"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23379"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,887.8832,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23381"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="84.079071"
+       cy="126.99414"
+       fx="84.079071"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23383"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,899.0199,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23385"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="87.218399"
+       cy="113.72600"
+       fx="87.218399"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23387"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,899.0199,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23389"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="87.218399"
+       cy="126.99414"
+       fx="87.218399"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23391"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,910.1938,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23393"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="90.368126"
+       cy="113.72600"
+       fx="90.368126"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23395"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,910.1938,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23397"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="90.368126"
+       cy="126.99414"
+       fx="90.368126"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23399"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,921.3307,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23401"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="93.507462"
+       cy="113.72600"
+       fx="93.507462"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23403"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,921.3305,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23405"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="93.507462"
+       cy="126.99414"
+       fx="93.507462"
+       fy="126.99414"
+       r="0.55242717" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23407"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23409"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23411"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026645e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23413"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23415"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23417"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23419"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026460e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23421"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23423"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23425"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23427"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027380e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23429"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23431"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23433"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23435"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027236e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23437"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23439"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23441"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23443"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027251e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23445"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23447"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23449"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23451"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027232e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23453"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23455"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23457"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23459"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026799e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23461"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23463"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23465"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23467"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027194e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23469"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23471"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23473"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23475"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026532e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23477"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23479"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23481"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23483"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026347e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23485"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23487"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23489"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23491"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027753e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23493"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23495"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23497"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23499"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027609e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23501"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23503"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23505"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23507"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027624e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23509"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23511"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23513"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23515"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027605e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23517"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23519"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23521"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23523"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027567e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23525"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23527"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23529"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23531"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027604e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23533"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23535"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,750.8541,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23537"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="45.452175"
+       cy="113.72600"
+       fx="45.452175"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23539"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,750.8539,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23541"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="45.452175"
+       cy="126.99414"
+       fx="45.452175"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23543"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,761.9907,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23545"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="48.591496"
+       cy="113.72600"
+       fx="48.591496"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23547"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,761.9907,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23549"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="48.591496"
+       cy="126.99414"
+       fx="48.591496"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23551"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,773.7887,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23553"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="51.917450"
+       cy="113.72600"
+       fx="51.917450"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23555"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,773.7887,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23557"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="51.917450"
+       cy="126.99414"
+       fx="51.917450"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23559"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,784.9257,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23561"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="55.056770"
+       cy="113.72600"
+       fx="55.056770"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23563"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,784.9257,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23565"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="55.056770"
+       cy="126.99414"
+       fx="55.056770"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23567"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,795.5451,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23569"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="58.050255"
+       cy="113.72600"
+       fx="58.050255"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23571"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,795.5451,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23573"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="58.050255"
+       cy="126.99414"
+       fx="58.050255"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23575"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,806.6821,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23577"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="61.189575"
+       cy="113.72600"
+       fx="61.189575"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23579"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,806.6821,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23581"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="61.189575"
+       cy="126.99414"
+       fx="61.189575"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23583"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,817.8559,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23585"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="64.339317"
+       cy="113.72600"
+       fx="64.339317"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23587"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,817.8559,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23589"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="64.339317"
+       cy="126.99414"
+       fx="64.339317"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23591"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,828.9929,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23593"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="67.478638"
+       cy="113.72600"
+       fx="67.478638"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23595"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,828.9926,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23597"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="67.478638"
+       cy="126.99414"
+       fx="67.478638"
+       fy="126.99414"
+       r="0.55242717" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12744"
+       id="linearGradient36882"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(6.726506,0.000000,0.000000,1.001174,900.9314,23.92146)"
+       x1="-35.945030"
+       y1="233.36613"
+       x2="8.3977861"
+       y2="275.81308" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12744"
+       id="radialGradient36884"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(6.889857,0.000000,0.000000,0.913304,525.0700,62.54288)"
+       cx="41.158657"
+       cy="234.79250"
+       fx="41.158657"
+       fy="234.79250"
+       r="22.012070" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36886"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36888"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36890"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36892"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028881e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36894"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36896"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36898"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36900"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36902"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028696e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36904"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36906"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36908"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36910"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36912"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029616e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36914"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36916"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36918"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36920"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36922"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029472e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36924"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36926"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36928"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36930"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36932"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029487e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36934"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36936"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36938"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36940"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36942"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029468e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36944"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36946"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36948"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36950"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36952"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029035e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36954"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36956"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36958"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36960"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36962"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029430e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36964"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36966"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36968"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36970"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36972"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027562e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36974"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36976"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36978"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36980"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36982"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027377e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36984"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36986"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36988"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36990"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36992"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028783e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36994"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36996"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36998"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37000"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37002"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028639e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37004"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37006"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37008"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37010"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37012"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028654e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37014"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37016"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37018"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37020"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37022"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028635e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37024"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37026"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37028"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37030"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37032"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028597e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37034"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37036"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37038"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37040"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37042"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028634e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37044"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37046"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,935.6256,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37048"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="97.536598"
+       cy="113.72600"
+       fx="97.536598"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37050"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,935.6254,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37052"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="97.536598"
+       cy="126.99414"
+       fx="97.536598"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37054"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,946.7623,215.4508)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37056"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="100.67591"
+       cy="113.72600"
+       fx="100.67591"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37058"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,946.7623,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37060"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="100.67591"
+       cy="126.99414"
+       fx="100.67591"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37062"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,958.5602,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37064"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="104.00187"
+       cy="113.72600"
+       fx="104.00187"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37066"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,958.5602,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37068"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="104.00187"
+       cy="126.99414"
+       fx="104.00187"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37070"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,969.6972,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37072"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="107.14119"
+       cy="113.72600"
+       fx="107.14119"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37074"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,969.6972,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37076"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="107.14119"
+       cy="126.99414"
+       fx="107.14119"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37078"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,980.3166,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37080"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="110.13468"
+       cy="113.72600"
+       fx="110.13468"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37082"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,980.3166,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37084"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="110.13468"
+       cy="126.99414"
+       fx="110.13468"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37086"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,991.4536,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37088"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="113.27399"
+       cy="113.72600"
+       fx="113.27399"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37090"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,991.4536,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37092"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="113.27399"
+       cy="126.99414"
+       fx="113.27399"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37094"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,1002.627,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37096"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="116.42374"
+       cy="113.72600"
+       fx="116.42374"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37098"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,1002.627,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37100"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="116.42374"
+       cy="126.99414"
+       fx="116.42374"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37102"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,1013.764,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37104"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="119.56305"
+       cy="113.72600"
+       fx="119.56305"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37106"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,1013.764,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37108"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="119.56305"
+       cy="126.99414"
+       fx="119.56305"
+       fy="126.99414"
+       r="0.55242717" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14835"
+       id="linearGradient37110"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(6.271328,0.000000,0.000000,1.001174,885.5092,-21.22237)"
+       x1="-35.945030"
+       y1="233.36613"
+       x2="8.3977861"
+       y2="275.81308" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12744"
+       id="radialGradient37112"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(8.650384,0.000000,0.000000,0.727428,525.0700,62.54288)"
+       cx="34.697765"
+       cy="247.99883"
+       fx="34.697765"
+       fy="247.99883"
+       r="19.324974" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12744"
+       id="linearGradient37114"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(6.285150,0.000000,0.000000,0.880024,1188.214,51.88286)"
+       x1="-35.945030"
+       y1="233.36613"
+       x2="8.3977861"
+       y2="275.81308" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12744"
+       id="radialGradient37116"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.769011,0.000000,0.000000,3.557089,525.0700,62.54288)"
+       cx="255.34476"
+       cy="56.345604"
+       fx="255.34476"
+       fy="56.345604"
+       r="9.3962202" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37118"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,728.6329,238.5608)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37120"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="39.188126"
+       cy="126.75461"
+       fx="39.188126"
+       fy="126.75461"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37122"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,728.6329,234.3473)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37124"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="39.188126"
+       cy="124.37913"
+       fx="39.188126"
+       fy="124.37913"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37126"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,728.6329,230.1338)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37128"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="39.188126"
+       cy="122.00374"
+       fx="39.188126"
+       fy="122.00374"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37130"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,728.6327,226.0673)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37132"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="39.188126"
+       cy="119.71113"
+       fx="39.188126"
+       fy="119.71113"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37134"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37136"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37138"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37140"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025892e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37142"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37144"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37146"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37148"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37150"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025707e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37152"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37154"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37156"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37158"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37160"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026627e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37162"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37164"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37166"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37168"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37170"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026483e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37172"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37174"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37176"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37178"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37180"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026498e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37182"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37184"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37186"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37188"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37190"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026479e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37192"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37194"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37196"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37198"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37200"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026046e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37202"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37204"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37206"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37208"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37210"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026441e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37212"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37214"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37216"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37218"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37220"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.024795e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37222"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37224"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37226"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37228"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37230"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.024610e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37232"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37234"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37236"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37238"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37240"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026016e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37242"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37244"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37246"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37248"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37250"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025872e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37252"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37254"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37256"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37258"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37260"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025887e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37262"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37264"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37266"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37268"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37270"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025868e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37272"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37274"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37276"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37278"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37280"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025830e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37282"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37284"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37286"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37288"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37290"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025867e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37292"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37294"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,843.1922,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37296"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="71.480988"
+       cy="113.72600"
+       fx="71.480988"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37298"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,843.1919,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37300"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="71.480988"
+       cy="126.99414"
+       fx="71.480988"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37302"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,854.3289,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37304"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="74.620308"
+       cy="113.72600"
+       fx="74.620308"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37306"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,854.3289,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37308"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="74.620308"
+       cy="126.99414"
+       fx="74.620308"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37310"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,866.1268,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37312"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="77.946259"
+       cy="113.72600"
+       fx="77.946259"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37314"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,866.1268,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37316"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="77.946259"
+       cy="126.99414"
+       fx="77.946259"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37318"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,877.2638,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37320"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="81.085587"
+       cy="113.72600"
+       fx="81.085587"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37322"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,877.2638,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37324"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="81.085587"
+       cy="126.99414"
+       fx="81.085587"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37326"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,887.8832,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37328"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="84.079071"
+       cy="113.72600"
+       fx="84.079071"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37330"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,887.8832,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37332"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="84.079071"
+       cy="126.99414"
+       fx="84.079071"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37334"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,899.0199,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37336"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="87.218399"
+       cy="113.72600"
+       fx="87.218399"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37338"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,899.0199,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37340"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="87.218399"
+       cy="126.99414"
+       fx="87.218399"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37342"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,910.1938,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37344"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="90.368126"
+       cy="113.72600"
+       fx="90.368126"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37346"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,910.1938,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37348"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="90.368126"
+       cy="126.99414"
+       fx="90.368126"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37350"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,921.3307,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37352"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="93.507462"
+       cy="113.72600"
+       fx="93.507462"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37354"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,921.3305,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37356"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="93.507462"
+       cy="126.99414"
+       fx="93.507462"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37358"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37360"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37362"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37364"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026504e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37366"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37368"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37370"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37372"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37374"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026319e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37376"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37378"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37380"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37382"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37384"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027239e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37386"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37388"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37390"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37392"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37394"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027095e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37396"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37398"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37400"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37402"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37404"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027110e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37406"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37408"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37410"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37412"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37414"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027091e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37416"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37418"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37420"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37422"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37424"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026658e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37426"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37428"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37430"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37432"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37434"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027053e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37436"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37438"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37440"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37442"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37444"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025150e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37446"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37448"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37450"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37452"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37454"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.024965e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37456"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37458"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37460"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37462"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37464"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026371e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37466"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37468"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37470"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37472"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37474"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026227e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37476"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37478"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37480"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37482"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37484"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026242e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37486"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37488"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37490"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37492"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37494"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026223e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37496"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37498"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37500"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37502"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37504"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026185e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37506"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37508"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37510"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37512"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37514"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026222e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37516"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37518"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,750.8541,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37520"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="45.452175"
+       cy="113.72600"
+       fx="45.452175"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37522"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,750.8539,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37524"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="45.452175"
+       cy="126.99414"
+       fx="45.452175"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37526"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,761.9907,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37528"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="48.591496"
+       cy="113.72600"
+       fx="48.591496"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37530"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,761.9907,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37532"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="48.591496"
+       cy="126.99414"
+       fx="48.591496"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37534"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,773.7887,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37536"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="51.917450"
+       cy="113.72600"
+       fx="51.917450"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37538"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,773.7887,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37540"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="51.917450"
+       cy="126.99414"
+       fx="51.917450"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37542"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,784.9257,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37544"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="55.056770"
+       cy="113.72600"
+       fx="55.056770"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37546"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,784.9257,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37548"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="55.056770"
+       cy="126.99414"
+       fx="55.056770"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37550"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,795.5451,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37552"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="58.050255"
+       cy="113.72600"
+       fx="58.050255"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37554"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,795.5451,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37556"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="58.050255"
+       cy="126.99414"
+       fx="58.050255"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37558"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,806.6821,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37560"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="61.189575"
+       cy="113.72600"
+       fx="61.189575"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37562"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,806.6821,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37564"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="61.189575"
+       cy="126.99414"
+       fx="61.189575"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37566"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,817.8559,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37568"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="64.339317"
+       cy="113.72600"
+       fx="64.339317"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37570"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,817.8559,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37572"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="64.339317"
+       cy="126.99414"
+       fx="64.339317"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37574"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,828.9929,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37576"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="67.478638"
+       cy="113.72600"
+       fx="67.478638"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37578"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,828.9926,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37580"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="67.478638"
+       cy="126.99414"
+       fx="67.478638"
+       fy="126.99414"
+       r="0.55242717" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40927"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40929"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40931"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40933"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40935"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40937"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40939"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40941"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40943"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40945"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40947"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40949"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40951"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40953"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40955"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40957"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40959"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40961"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40963"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40965"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40967"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40969"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40971"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40973"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40975"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40977"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40979"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40981"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40983"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40985"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40987"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40989"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40991"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40993"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40995"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40997"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40999"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41001"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41003"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41005"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41007"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41009"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41011"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41013"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41015"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41017"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41019"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41021"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41023"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41025"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41027"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41029"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41031"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41033"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41035"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41037"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41039"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41041"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41043"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41045"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41047"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41049"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41051"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41053"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41055"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41057"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41059"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41061"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41063"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41065"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41067"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41069"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41071"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41073"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41075"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41077"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41079"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41081"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41083"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41085"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41087"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41089"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41091"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41093"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41095"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41097"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41099"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41101"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41103"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41105"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41107"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41109"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41111"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41113"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41115"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41117"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41119"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41121"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41123"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41125"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41127"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41129"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41131"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41133"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41135"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41137"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41139"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41141"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41143"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41145"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41147"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41149"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41151"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41153"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41155"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41157"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41159"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41161"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41163"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41165"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41167"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41169"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41171"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41173"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41175"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41177"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41179"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41181"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41183"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.936460,0.502279,0.000000,1.336134,-538.0405,127.8727)"
+       x1="497.27309"
+       y1="244.14597"
+       x2="438.40750"
+       y2="174.45950" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41185"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.936460,0.502279,0.000000,1.336134,-538.0405,127.8727)"
+       x1="469.85454"
+       y1="245.17311"
+       x2="436.90248"
+       y2="186.03951" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41187"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.936460,0.432158,0.000000,2.028921,-586.9772,-65.04681)"
+       x1="497.27309"
+       y1="244.14597"
+       x2="438.40750"
+       y2="174.45950" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41189"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.936460,0.432158,0.000000,2.028921,-586.9772,-65.04681)"
+       x1="469.85454"
+       y1="245.17311"
+       x2="436.90248"
+       y2="186.03951" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41191"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.936460,0.953784,0.000000,2.537202,-641.0926,-476.4579)"
+       x1="497.27309"
+       y1="244.14597"
+       x2="438.40750"
+       y2="174.45950" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41193"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.936460,0.953784,0.000000,2.537202,-641.0926,-476.4579)"
+       x1="469.85454"
+       y1="245.17311"
+       x2="436.90248"
+       y2="186.03951" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41195"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41197"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41199"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41201"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41203"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41205"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41207"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41209"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41211"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41213"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41215"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41217"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41219"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41221"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41223"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41225"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41227"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41229"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41231"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41233"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41235"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41237"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41239"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41241"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41243"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41245"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41247"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41249"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41251"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41253"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41255"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41257"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41259"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.936460,0.000000,0.000000,2.454207,-494.6470,95.00727)"
+       x1="497.27309"
+       y1="244.14597"
+       x2="438.40750"
+       y2="174.45950" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41261"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.936460,0.000000,0.000000,2.454207,-494.6470,95.00727)"
+       x1="469.85454"
+       y1="245.17311"
+       x2="436.90248"
+       y2="186.03951" />
+    <radialGradient
+       xlink:href="#linearGradient3017"
+       r="32.400997"
+       inkscape:collect="always"
+       id="radialGradient3020"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.017812,0.982500)"
+       fy="39.714470"
+       fx="67.252083"
+       cy="39.714470"
+       cx="67.252083" />
+    <linearGradient
+       id="linearGradient1696">
+      <stop
+         style="stop-color:#d7d4d5;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop1697" />
+      <stop
+         style="stop-color:#f2f2f2;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop1698" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient1727">
+      <stop
+         style="stop-color:#00c042;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop1728" />
+      <stop
+         style="stop-color:#6cff49;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop1729" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient1731">
+      <stop
+         style="stop-color:#606060;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop1732" />
+      <stop
+         style="stop-color:#f0f0f0;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop1733" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient1739">
+      <stop
+         style="stop-color:#d0f0f0;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop1740" />
+      <stop
+         style="stop-color:#faffff;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop1741" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3017">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.52577317;"
+         offset="0.0000000"
+         id="stop3018" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop3019" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1696"
+       id="linearGradient47963"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(0.831022,1.203337)"
+       x1="52.039398"
+       y1="93.432655"
+       x2="38.779137"
+       y2="73.709610" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1696"
+       id="linearGradient47965"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.141840,0.875779)"
+       x1="101.58556"
+       y1="123.73905"
+       x2="68.683929"
+       y2="94.950119" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1696"
+       id="linearGradient47967"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.444200,0.692425)"
+       x1="61.318573"
+       y1="69.988159"
+       x2="43.187496"
+       y2="113.94408" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1731"
+       id="linearGradient47969"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.360554,0.734995)"
+       x1="69.758781"
+       y1="149.86493"
+       x2="49.088371"
+       y2="125.84365" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1731"
+       id="linearGradient47971"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.491631,0.670407)"
+       x1="38.475441"
+       y1="76.877792"
+       x2="50.980556"
+       y2="97.393562" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1727"
+       id="linearGradient47973"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.033879,0.967231)"
+       x1="106.06989"
+       y1="68.346664"
+       x2="103.55814"
+       y2="66.288597" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1739"
+       id="linearGradient47975"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.022308,0.978179)"
+       x1="68.967087"
+       y1="61.385227"
+       x2="48.944408"
+       y2="32.755234" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1696"
+       id="linearGradient47977"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.106451,0.903791)"
+       x1="56.598106"
+       y1="146.75134"
+       x2="75.084007"
+       y2="133.35785" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1696"
+       id="linearGradient47979"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.383369,0.722873)"
+       x1="91.206520"
+       y1="122.64465"
+       x2="76.282440"
+       y2="169.12962" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1696"
+       id="linearGradient47981"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.306220,0.765568)"
+       x1="107.47197"
+       y1="172.93613"
+       x2="80.993660"
+       y2="152.92480" />
+    <linearGradient
+       id="linearGradient5022">
+      <stop
+         style="stop-color:#d4d4d4;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop5024" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.49803922;"
+         offset="0.50000000"
+         id="stop5026" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.0000000;"
+         offset="1.0000000"
+         id="stop5028" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5016">
+      <stop
+         style="stop-color:#839da4;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop5018" />
+      <stop
+         style="stop-color:#496d77;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop5020" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5008">
+      <stop
+         style="stop-color:#0e0000;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop5010" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1.0000000;"
+         offset="0.50000000"
+         id="stop5012" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop5014" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5002">
+      <stop
+         style="stop-color:#6e6e6e;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop5004" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop5006" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4996">
+      <stop
+         style="stop-color:#4af853;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop4998" />
+      <stop
+         style="stop-color:#68b96d;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop5000" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4990">
+      <stop
+         style="stop-color:#bed1d0;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop4992" />
+      <stop
+         style="stop-color:#52727b;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop4994" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient29203">
+      <stop
+         style="stop-color:#d3d3d3;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop29205" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop29207" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4981">
+      <stop
+         style="stop-color:#677883;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop4983" />
+      <stop
+         style="stop-color:#677883;stop-opacity:0.0000000;"
+         offset="1.0000000"
+         id="stop4985" />
+    </linearGradient>
+    <radialGradient
+       xlink:href="#linearGradient13376"
+       r="31.620827"
+       id="radialGradient32223"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.406487,0.000000,0.000000,1.203260,-97.64080,46.36617)"
+       fy="254.35735"
+       fx="-19.038713"
+       cy="253.63734"
+       cx="-19.261518" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32220"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.515689,0.000000,0.000000,1.150508,-137.5541,-43.81501)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32217"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.505549,0.000000,0.000000,2.080336,-137.8628,-216.3766)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient14835"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32214"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.500039,0.000000,0.000000,0.399114,-137.7513,113.5911)" />
+    <linearGradient
+       y2="232.23291"
+       y1="267.04773"
+       xlink:href="#linearGradient41493"
+       x2="30.608046"
+       x1="66.153191"
+       id="linearGradient32211"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.038476,0.000000,0.000000,0.962950,-247.3571,5.821430)" />
+    <linearGradient
+       id="linearGradient41493">
+      <stop
+         style="stop-color:#181818;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop41495" />
+      <stop
+         style="stop-color:#5e5e5e;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop41497" />
+    </linearGradient>
+    <linearGradient
+       y2="232.23291"
+       y1="267.04773"
+       xlink:href="#linearGradient41493"
+       x2="30.608046"
+       x1="66.153191"
+       id="linearGradient32208"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.038476,0.000000,0.000000,0.962950,-186.4643,5.821435)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32205"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.505549,0.000000,0.000000,0.324136,-13.01420,148.1464)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32202"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.229222,0.000000,0.000000,0.297185,-134.1312,199.6513)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32199"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.229222,0.000000,0.000000,0.299657,-134.1312,210.6030)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32196"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.229222,0.000000,0.000000,0.299657,-134.1311,222.1030)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32193"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.229222,0.000000,0.000000,0.299657,-134.1312,233.6030)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32190"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.229222,0.000000,0.000000,0.299657,-134.1312,245.1030)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32187"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.229222,0.000000,0.000000,0.299657,-134.1311,256.6030)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32184"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.229222,0.000000,0.000000,0.299657,-134.1311,268.3530)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32181"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-114.7782,37.26488)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32178"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-126.7684,37.26487)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient32175"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-186.6780,258.5642)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient32172"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-186.6780,257.2634)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient32169"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-186.6780,256.0888)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient32166"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-186.6779,254.7020)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient32163"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-186.6778,253.4259)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient32160"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-186.6778,251.9992)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient41493"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32157"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.378708,0.000000,0.000000,0.180665,-159.3178,192.0174)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32154"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-197.6440,59.68751)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42556"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32147"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-107.8837,59.68751)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42560"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32140"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-143.7878,59.68751)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42564"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32133"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-125.8358,59.68751)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42568"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32126"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-161.7399,59.68751)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42572"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32119"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-179.6920,59.68751)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42576"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32112"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-196.9848,70.81251)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42580"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32105"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-183.7827,71.06251)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42584"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32098"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,25.76900,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32095"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-82.03920,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32092"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,21.39650,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32089"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-86.41170,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32086"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,17.02410,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32083"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-90.78410,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32080"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,12.65160,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32077"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-95.15660,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32074"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,8.279100,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32071"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-99.52910,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32068"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,3.906600,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32065"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-103.9016,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32062"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,52.00380,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32059"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-55.80440,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32056"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,47.63140,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32053"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-60.17680,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32050"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,43.25890,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32047"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-64.54930,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32044"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,38.88640,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32041"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-68.92180,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32038"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,30.14150,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32035"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-77.66670,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32032"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,34.51400,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32029"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-73.29420,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32026"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-0.465800,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32023"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-108.2740,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32020"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-4.838300,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32017"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-112.6465,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32014"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-9.210800,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32011"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-117.0190,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32008"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-13.58330,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32005"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-121.3915,267.4325)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient32002"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-151.0295,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31999"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-146.6475,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31996"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-142.2655,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31993"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-137.8836,294.1509)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31990"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-115.9737,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31987"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-107.2098,294.1509)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31984"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-102.8279,294.1509)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31981"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-94.06390,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31978"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-98.44590,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31975"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-89.68200,294.1509)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31972"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-85.30000,294.5045)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31969"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-111.5918,294.1509)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31966"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-133.5016,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31963"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-129.1196,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31960"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-124.7377,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31957"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-120.3557,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31954"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,25.60230,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31951"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-82.20590,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31948"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,21.22990,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31945"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-86.57830,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31942"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,16.85740,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31939"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-90.95080,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31936"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,12.48490,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31933"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-95.32330,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31930"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,8.112400,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31927"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-99.69580,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31924"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,3.740000,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31921"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-104.0682,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31918"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,51.83710,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31915"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-55.97110,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31912"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,47.46470,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31909"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-60.34350,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31906"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,43.09220,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31903"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-64.71600,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31900"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,38.71970,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31897"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-69.08850,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31894"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,29.97480,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31891"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-77.83340,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31888"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,34.34730,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31885"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-73.46090,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31882"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-0.632500,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31879"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-108.4407,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31876"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-5.005000,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31873"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-112.8132,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31870"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-9.377500,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31867"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-117.1857,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31864"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-13.74990,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31861"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-121.5581,263.6863)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31858"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-151.3911,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31855"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-147.0092,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31852"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-142.6272,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31849"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-138.2452,285.3549)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31846"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-116.3354,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31843"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-107.5715,285.3549)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31840"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-103.1895,285.3549)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31837"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-94.42560,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31834"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-98.80760,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31831"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-90.04360,285.3549)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31828"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-85.66170,285.7085)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31825"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-111.9535,285.3549)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31822"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-133.8633,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31819"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-129.4813,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31816"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-125.0994,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31813"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-120.7174,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31810"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,27.58400,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31807"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-80.22420,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31804"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,23.21150,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31801"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-84.59670,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31798"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,18.83900,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31795"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-88.96920,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31792"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,14.46650,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31789"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-93.34170,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31786"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,10.09410,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31783"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-97.71410,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31780"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,5.721600,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31777"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-102.0866,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31774"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,53.81880,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31771"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-53.98940,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31768"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,49.44630,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31765"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-58.36190,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31762"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,45.07380,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31759"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-62.73440,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31756"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,40.70140,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31753"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-67.10680,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31750"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,31.95640,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31747"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-75.85180,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31744"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,36.32890,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31741"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-71.47930,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31738"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,1.349100,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31735"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-106.4591,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31732"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-3.023400,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31729"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-110.8316,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31726"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-7.395800,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31723"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-115.2040,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31720"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-11.76830,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31717"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-119.5765,279.0341)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31714"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-149.2145,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31711"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-144.8326,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31708"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-140.4506,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31705"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-136.0686,305.9066)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31702"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-114.1588,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31699"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-105.3949,305.9066)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31696"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-101.0129,305.9066)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31693"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-92.24900,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31690"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-96.63090,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31687"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-87.86700,305.9066)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31684"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-83.48510,305.9066)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31681"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-109.7768,305.9066)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31678"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-131.6867,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31675"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-127.3047,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31672"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-122.9227,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31669"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-118.5408,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31666"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,27.41730,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31663"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-80.39090,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31660"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,23.04480,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31657"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-84.76340,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31654"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,18.67230,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31651"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-89.13590,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31648"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,14.29990,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31645"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-93.50830,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31642"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,9.927400,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31639"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-97.88080,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31636"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,5.554900,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31633"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-102.2533,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31630"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,53.65210,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31627"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-54.15610,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31624"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,49.27960,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31621"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-58.52860,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31618"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,44.90720,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31615"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-62.90100,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31612"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,40.53470,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31609"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-67.27350,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31606"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,31.78970,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31603"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-76.01850,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31600"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,36.16220,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31597"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-71.64600,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31594"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,1.182400,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31591"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-106.6258,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31588"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-3.190000,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31585"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-110.9982,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31582"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-7.562500,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31579"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-115.3707,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31576"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-11.93500,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31573"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-119.7432,275.2879)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31570"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-149.5762,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31567"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-145.1942,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31564"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-140.8123,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31561"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-136.4303,297.1106)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31558"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-114.5205,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31555"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-105.7565,297.1106)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31552"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-101.3746,297.1106)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31549"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-92.61070,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31546"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-96.99260,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31543"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-88.22870,297.1106)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31540"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-83.84670,297.1106)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31537"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-110.1385,297.1106)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31534"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-132.0483,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31531"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-127.6664,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31528"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-123.2844,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31525"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-118.9024,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31522"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-16.43390,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31519"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-124.2421,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31516"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-20.80640,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31513"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-128.6146,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31510"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-25.17890,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31507"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-132.9871,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31504"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-29.55130,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31501"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-137.3595,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31498"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-33.92380,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31495"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-141.7320,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31492"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-38.29630,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31489"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-146.1045,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31486"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-42.66880,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31483"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-150.4770,279.0341)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31480"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-184.4874,305.9068)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31477"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-180.1055,305.9068)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31474"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-175.7235,305.9068)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31471"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-171.3416,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31468"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-166.9596,305.9068)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31465"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-162.5776,305.9068)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31462"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-158.1957,305.9068)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31459"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-153.8137,305.9068)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31456"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-16.60060,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31453"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-124.4088,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31450"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-20.97310,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31447"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-128.7813,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31444"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-25.34550,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31441"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-133.1537,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31438"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-29.71800,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31435"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-137.5262,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31432"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-34.09050,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31429"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-141.8987,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31426"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-38.46300,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31423"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-146.2712,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31420"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-42.83550,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31417"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-150.6437,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31414"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-47.20790,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31411"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-155.0161,275.2879)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31408"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-184.8491,297.1108)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31405"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-180.4672,297.1108)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31402"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-176.0852,297.1108)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31399"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-171.7033,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31396"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-167.3213,297.1108)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31393"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-162.9393,297.1108)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31390"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-158.5573,297.1108)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31387"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-154.1754,297.1108)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31383"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-47.19847,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31380"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-155.0067,279.0341)" />
+    <radialGradient
+       xlink:href="#linearGradient13376"
+       r="31.620827"
+       id="radialGradient52163"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.406487,0.000000,0.000000,1.203260,155.9766,239.3125)"
+       fy="254.35735"
+       fx="-19.038713"
+       cy="253.63734"
+       cx="-19.261518" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient52165"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.505549,0.000000,0.000000,1.098874,112.8796,242.7912)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient14835"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient52167"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.500039,0.000000,0.000000,0.399114,113.0498,274.1564)" />
+    <linearGradient
+       y2="232.23291"
+       y1="267.04773"
+       xlink:href="#linearGradient41493"
+       x2="30.608046"
+       x1="66.153191"
+       id="linearGradient52169"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.038476,0.000000,0.000000,0.962950,3.444000,280.3867)" />
+    <linearGradient
+       y2="232.23291"
+       y1="267.04773"
+       xlink:href="#linearGradient41493"
+       x2="30.608046"
+       x1="66.153191"
+       id="linearGradient52171"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.038476,0.000000,0.000000,0.962950,64.33680,280.3867)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient14835"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient52173"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.470326,0.000000,0.000000,0.399114,111.8541,432.6787)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient52175"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.505549,0.000000,0.000000,0.408796,237.7869,297.6224)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient52177"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.505549,0.000000,0.000000,2.776405,112.8758,-256.1552)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient52179"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.505549,0.000000,0.000000,0.393631,113.3054,407.4747)" />
+    <radialGradient
+       xlink:href="#linearGradient18155"
+       r="20.140131"
+       id="radialGradient19735"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.035725,0.000000,0.000000,0.965507,2.474874,3.535534)"
+       fy="685.42749"
+       fx="-156.00693"
+       cy="685.42743"
+       cx="-156.58647" />
+    <linearGradient
+       id="linearGradient18155">
+      <stop
+         style="stop-color:#000000;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop18157" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0.0000000;"
+         offset="1.0000000"
+         id="stop18159" />
+    </linearGradient>
+    <linearGradient
+       y2="605.07910"
+       y1="633.65204"
+       xlink:href="#linearGradient12759"
+       x2="-158.15326"
+       x1="-191.02443"
+       id="linearGradient19737"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(0.942809,1.060660)" />
+    <linearGradient
+       id="linearGradient12759">
+      <stop
+         style="stop-color:#b4b4b4;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop12761" />
+      <stop
+         style="stop-color:#d7d8de;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop12763" />
+    </linearGradient>
+    <linearGradient
+       y2="638.04340"
+       y1="605.33868"
+       xlink:href="#linearGradient12759"
+       x2="-157.56822"
+       x1="-190.57690"
+       id="linearGradient19739"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(0.944312,1.058972)" />
+    <linearGradient
+       y2="3027.5479"
+       y1="3026.5081"
+       xlink:href="#linearGradient12759"
+       x2="-37.858898"
+       x1="-33.914631"
+       id="linearGradient19741"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671070e-2,-2.232191)" />
+    <linearGradient
+       y2="3027.5479"
+       y1="3026.5081"
+       xlink:href="#linearGradient12759"
+       x2="-37.858898"
+       x1="-33.914631"
+       id="linearGradient19743"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.670770e-2,-0.250690)" />
+    <linearGradient
+       y2="3027.5479"
+       y1="3026.5081"
+       xlink:href="#linearGradient12759"
+       x2="-37.858898"
+       x1="-33.914631"
+       id="linearGradient19745"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,3.712324)" />
+    <linearGradient
+       y2="3027.5479"
+       y1="3026.5081"
+       xlink:href="#linearGradient12759"
+       x2="-37.858898"
+       x1="-33.914631"
+       id="linearGradient19747"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,5.693830)" />
+    <linearGradient
+       y2="3027.5479"
+       y1="3026.5081"
+       xlink:href="#linearGradient12759"
+       x2="-37.858898"
+       x1="-33.914631"
+       id="linearGradient19749"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,7.675337)" />
+    <linearGradient
+       y2="3027.5479"
+       y1="3026.5081"
+       xlink:href="#linearGradient12759"
+       x2="-37.858898"
+       x1="-33.914631"
+       id="linearGradient19751"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,9.656847)" />
+    <linearGradient
+       y2="3027.5479"
+       y1="3026.5081"
+       xlink:href="#linearGradient12759"
+       x2="-37.858898"
+       x1="-33.914631"
+       id="linearGradient19753"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,1.730818)" />
+    <linearGradient
+       y2="605.07910"
+       y1="633.65204"
+       xlink:href="#linearGradient12759"
+       x2="-158.15326"
+       x1="-191.02443"
+       id="linearGradient19755"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.381659,0.000000,0.000000,0.176842,-98.06087,537.6347)" />
+    <linearGradient
+       y2="638.04340"
+       y1="605.33868"
+       xlink:href="#linearGradient12759"
+       x2="-157.56822"
+       x1="-190.57690"
+       id="linearGradient19757"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.382268,0.000000,0.000000,0.176560,-98.06087,537.6347)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient18155"
+       id="radialGradient5074"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.035725,0.000000,0.000000,0.965507,2.474874,3.535534)"
+       cx="-156.58647"
+       cy="685.42743"
+       fx="-156.00693"
+       fy="685.42749"
+       r="20.140131" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5076"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(0.942809,1.060660)"
+       x1="-191.02443"
+       y1="633.65204"
+       x2="-158.15326"
+       y2="605.07910" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5078"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(0.944312,1.058972)"
+       x1="-190.57690"
+       y1="605.33868"
+       x2="-157.56822"
+       y2="638.04340" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5080"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671070e-2,-2.232191)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5082"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.670770e-2,-0.250690)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5084"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,3.712324)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5086"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,5.693830)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5088"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,7.675337)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5090"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,9.656847)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5092"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,1.730818)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5094"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.381659,0.000000,0.000000,0.176842,-98.06087,537.6347)"
+       x1="-191.02443"
+       y1="633.65204"
+       x2="-158.15326"
+       y2="605.07910" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5096"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.382268,0.000000,0.000000,0.176560,-98.06087,537.6347)"
+       x1="-190.57690"
+       y1="605.33868"
+       x2="-157.56822"
+       y2="638.04340" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5099"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.764555,0.000000,0.000000,0.351895,1316.329,1337.145)"
+       x1="-191.02443"
+       y1="633.65204"
+       x2="-158.15326"
+       y2="605.07910" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5101"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.765775,0.000000,0.000000,0.351334,1316.329,1337.145)"
+       x1="-190.57690"
+       y1="605.33868"
+       x2="-157.56822"
+       y2="638.04340" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5110"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(9.196475,0.000000,0.000000,0.433450,1512.635,270.7592)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5113"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(9.196475,0.000000,0.000000,0.433450,1512.635,286.5311)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5116"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(9.196475,0.000000,0.000000,0.433450,1512.635,282.5881)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5119"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(9.196475,0.000000,0.000000,0.433450,1512.635,278.6451)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5122"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(9.196475,0.000000,0.000000,0.433450,1512.635,274.7022)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5125"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(9.196475,0.000000,0.000000,0.433450,1512.635,266.8163)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5128"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(9.196475,0.000000,0.000000,0.433450,1512.635,262.8733)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5131"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.888674,0.000000,0.000000,2.110588,1512.769,267.3151)"
+       x1="-191.02443"
+       y1="633.65204"
+       x2="-158.15326"
+       y2="605.07910" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5133"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.891685,0.000000,0.000000,2.107229,1512.769,267.3151)"
+       x1="-190.57690"
+       y1="605.33868"
+       x2="-157.56822"
+       y2="638.04340" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient18155"
+       id="radialGradient5140"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.074807,0.000000,0.000000,1.921245,1517.727,274.3504)"
+       cx="-156.58647"
+       cy="685.42743"
+       fx="-156.00693"
+       fy="685.42749"
+       r="20.140131" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1851"
+       id="radialGradient4312"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.597418,0.000000,0.000000,0.102866,259.1690,1177.855)"
+       cx="-289.09140"
+       cy="598.36652"
+       fx="-285.65439"
+       fy="552.23833"
+       r="125.20509" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8481"
+       id="linearGradient4315"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.671353,0.000000,0.000000,-0.217957,247.5623,1250.585)"
+       x1="280.30070"
+       y1="418.04542"
+       x2="283.50529"
+       y2="212.07808" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8468"
+       id="linearGradient4318"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.904571,0.000000,0.000000,0.631338,313.5446,1149.237)"
+       x1="68.268656"
+       y1="164.80815"
+       x2="70.638656"
+       y2="87.802278" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4321"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.669304,0.000000,0.000000,-0.218624,247.5623,1250.585)"
+       x1="151.97781"
+       y1="82.293232"
+       x2="200.30677"
+       y2="418.78640" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8468"
+       id="linearGradient4324"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.669304,0.000000,0.000000,-0.218624,247.5623,1250.585)"
+       x1="282.27411"
+       y1="419.36390"
+       x2="282.27411"
+       y2="211.77074" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4327"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.627799,0.000000,0.000000,-0.280304,247.5623,1265.049)"
+       x1="312.61248"
+       y1="135.90253"
+       x2="339.46602"
+       y2="316.70622" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1806"
+       id="linearGradient4329"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.627799,0.000000,0.000000,-0.280304,247.5623,1265.049)"
+       x1="310.44888"
+       y1="142.43878"
+       x2="311.96148"
+       y2="261.76054" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.39272727"
+     inkscape:cx="937.50000"
+     inkscape:cy="1031.2500"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     inkscape:window-width="1280"
+     inkscape:window-height="977"
+     inkscape:window-x="0"
+     inkscape:window-y="25" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <rect
+       style="fill:#ffff00;fill-opacity:1.0000000;stroke:#000000;stroke-width:0.0000000;stroke-linecap:butt;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+       id="rect45470"
+       width="255.82741"
+       height="112.40988"
+       x="719.18597"
+       y="1693.9113" />
+    <rect
+       style="fill:#ffffff;fill-opacity:0.0000000;stroke:#000000;stroke-width:3.0000000;stroke-linecap:butt;stroke-miterlimit:4.0000000;stroke-dasharray:6.0000000 18.000000 ;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+       id="rect9786"
+       width="927.11456"
+       height="457.88889"
+       x="97.881294"
+       y="1436.9564" />
+    <path
+       sodipodi:nodetypes="cc"
+       id="path46952"
+       d="M 452.41155,1231.2967 L 452.41155,1482.1967"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#ffff00;stroke-width:6.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+    <path
+       sodipodi:nodetypes="cc"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#ffff00;stroke-width:6.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       d="M 662.21808,1211.6903 L 480.74095,1211.6903"
+       id="path46212" />
+    <path
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       d="M 384.93124,1718.4832 L 384.93124,1655.3604 L 531.74226,1655.3604 L 531.74226,1715.9350"
+       id="path9575"
+       sodipodi:nodetypes="cccc" />
+    <rect
+       y="1436.9564"
+       x="1081.7034"
+       height="457.88889"
+       width="483.42117"
+       id="rect19200"
+       style="fill:#ffffff;fill-opacity:0.0000000;stroke:#000000;stroke-width:3.0000000;stroke-linecap:butt;stroke-miterlimit:4.0000000;stroke-dasharray:6.0000000 18.000000 ;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+    <path
+       sodipodi:nodetypes="ccc"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       d="M 1106.2698,1010.7060 L 1106.2698,1201.6903 L 907.47273,1201.6903"
+       id="path19238" />
+    <path
+       id="path19227"
+       d="M 673.53972,1201.6903 L 480.74095,1201.6903"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       sodipodi:nodetypes="cc" />
+    <path
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       d="M 427.80525,1179.3674 L 293.91201,819.44979"
+       id="path12258"
+       sodipodi:nodetypes="cc" />
+    <g
+       id="g3919"
+       transform="matrix(0.537179,0.000000,0.000000,0.537179,70.11473,646.6451)">
+      <path
+         transform="matrix(0.961691,0.000000,0.000000,1.000000,12.63789,0.000000)"
+         style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+         sodipodi:nodetypes="cccccccccccccccccc"
+         id="path1503"
+         d="M 127.50000,106.25000 C 127.50000,106.25000 126.25000,18.750100 231.25000,45.000000 C 336.25000,71.250000 317.50000,115.00000 318.75000,115.00000 C 320.00000,115.00000 300.00000,61.250000 380.00000,51.250000 C 452.50000,57.500000 486.25000,71.250000 482.50000,117.50000 C 478.75000,163.75000 443.75000,175.00000 443.75000,175.00000 C 443.75000,175.00000 507.50000,181.25000 490.00000,275.00000 C 462.50000,340.00000 462.50000,333.75000 398.75000,341.25000 C 370.00000,330.00000 368.75000,320.00000 368.75000,320.00000 C 368.75000,320.00000 421.25000,368.75000 342.50000,400.00000 C 253.75000,423.75000 242.50000,402.50000 205.00000,391.25000 C 168.75000,368.75000 176.25000,341.25000 176.25000,341.25000 C 176.25000,341.25000 198.75000,387.50000 122.50000,396.25000 C 46.250000,405.00000 17.500000,387.50000 3.7500000,316.25000 C 2.0861600e-06,262.50000 67.500000,257.50000 67.500000,257.50000 C 67.500000,257.50000 26.250000,258.75000 15.000000,231.25000 C 3.7500000,203.75000 -3.7500000,167.50000 30.000000,118.75000 C 92.500000,60.000000 135.00000,98.750000 127.50000,106.25000 z " />
+      <g
+         transform="matrix(0.298665,0.000000,0.000000,0.283273,76.42833,82.09869)"
+         style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+         id="g1556">
+        <g
+           transform="translate(107.0886,1.392441)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g770">
+          <path
+             style="fill:#b3b2b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+             sodipodi:nodetypes="ccccc"
+             id="path743"
+             d="M 299.84200,180.38000 L 177.21500,74.367000 L 250.79100,71.993600 L 385.28500,162.18300 C 385.28500,162.18300 353.63900,191.45600 299.84200,180.38000 z " />
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g761">
+            <path
+               style="fill:#b3b2b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path744"
+               d="M 176.42400,74.367000 L 178.00600,238.92400 L 300.63300,364.71500 L 301.42400,181.96200 L 176.42400,74.367000 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g754">
+              <path
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccc"
+                 id="path742"
+                 d="M 302.21600,181.17100 C 302.21600,181.17100 328.32300,184.33500 348.10200,180.38000 C 375.00000,170.09500 386.07600,163.76600 386.07600,163.76600 L 386.86700,342.56300 C 386.86700,342.56300 371.83500,353.63900 353.64000,360.75900 C 323.57600,367.08800 300.63300,364.71500 300.63300,364.71500 L 302.21600,181.17100 z " />
+              <g
+                 style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="g749">
+                <path
+                   transform="translate(-1.582260,0.000000)"
+                   style="fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   id="path745"
+                   d="M 315.66500,205.69600 C 315.66500,205.69600 378.95600,192.24700 378.95600,193.03800 C 378.95600,193.82900 378.16500,218.35400 378.16500,218.35400 C 378.16500,218.35400 316.45600,231.80400 315.66500,231.80400 C 314.87400,231.80400 314.87400,207.27800 315.66500,205.69600 z " />
+                <path
+                   style="fill:#000100;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path746"
+                   d="M 323.57600,246.83500 L 370.25300,237.34200 L 370.25300,241.29800 L 323.57600,251.58200 L 323.57600,246.83500 z " />
+                <path
+                   style="fill:#00b300;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path747"
+                   d="M 360.76000,268.98700 L 372.62700,267.40500 L 372.62700,279.27200 L 360.76000,281.64600 L 360.76000,268.98700 z " />
+                <path
+                   style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path748"
+                   d="M 365.50600,298.25900 L 373.41800,297.46800 L 373.41800,306.96200 L 365.50600,308.54400 L 365.50600,298.25900 z " />
+              </g>
+            </g>
+          </g>
+        </g>
+        <g
+           transform="matrix(0.868723,0.000000,0.000000,0.841809,-27.91207,15.52193)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g818">
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g801">
+            <path
+               transform="translate(-0.847921,19.50222)"
+               style="font-size:12.000000px;fill:#b3b3b3;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path607"
+               d="M 119.55700,425.38300 L 119.55700,438.10200 L 435.83200,344.83000 L 436.68000,329.56800 L 119.55700,425.38300 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g798">
+              <path
+                 transform="translate(-0.847921,19.50222)"
+                 style="font-size:12.000000px;fill:#cccccc;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path606"
+                 d="M 166.19300,347.37400 L 119.55700,426.23100 L 436.68000,329.56800 L 345.10400,298.19400 L 166.19300,347.37400 z " />
+              <path
+                 transform="matrix(0.708121,0.000000,0.000000,0.825311,71.30738,59.20586)"
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path605"
+                 d="M 139.05900,335.50300 C 139.05900,335.50300 127.18800,354.15700 132.27500,369.42000 C 136.51500,388.07500 150.08200,392.31400 153.47400,392.31400 C 156.86600,392.31400 377.17700,334.88400 377.17700,334.88400 C 377.17700,334.88400 383.26000,322.78400 386.65200,303.28200 C 379.86900,279.54000 367.15000,276.99600 352.73500,276.99600 C 328.99300,263.43000 353.58400,276.99600 353.58400,276.99600 L 139.05900,335.50300 z " />
+            </g>
+          </g>
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g811">
+            <path
+               style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="cccccccc"
+               id="path602"
+               d="M 420.57000,16.684400 C 420.57000,17.532300 399.37100,11.596800 377.32500,9.9009300 C 367.15000,10.748900 66.137900,65.863800 63.594200,65.863800 C 67.833800,65.015900 54.267000,65.863800 50.875300,73.495100 C 47.483600,81.126400 47.483600,343.13400 47.483600,343.13400 C 47.483600,343.13400 47.483700,350.76600 52.571200,356.70100 C 60.202500,360.09300 80.552600,360.94100 72.921300,360.94100 L 420.57000,16.684400 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g806">
+              <path
+                 transform="matrix(0.995445,0.000000,0.000000,0.910163,2.817975,-20.11005)"
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path600"
+                 d="M 71.233200,108.00900 L 418.87300,40.426100 C 423.96100,43.817800 429.04900,41.274100 431.59300,51.449200 C 434.13700,61.624100 430.74500,304.97800 430.74500,304.97800 C 430.74500,304.97800 432.44000,312.60900 426.50500,316.84900 C 420.56900,321.08800 79.669900,416.90400 79.669900,416.90400 C 79.669900,416.90400 69.494600,421.14300 63.559300,412.66400 C 55.080300,410.12100 60.202500,124.37000 60.202500,124.37000 C 60.202500,124.37000 61.027100,110.72000 71.233200,108.00900 z " />
+              <g
+                 style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="g795">
+                <path
+                   style="fill:url(#linearGradient614);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccccccccc"
+                   id="path603"
+                   d="M 89.031800,98.084400 L 394.28400,38.730300 C 394.28400,38.730300 401.91500,36.186500 407.85100,45.513700 C 413.78600,54.840800 412.09000,59.080400 412.09000,59.080400 L 412.09000,234.60000 C 411.24200,243.92700 412.93800,240.53500 407.85100,250.71100 C 397.67500,254.10200 105.14200,333.80700 105.14200,333.80700 C 105.14200,333.80700 105.14200,335.50300 94.967300,333.80700 C 84.792200,332.11100 81.400500,316.00100 81.400500,315.15300 C 81.400500,314.30500 78.008800,115.89100 78.008800,115.89100 C 78.008800,115.89100 79.704800,101.47600 89.031800,98.084400 z " />
+                <path
+                   style="fill:#00feb3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path604"
+                   d="M 368.84600,266.82100 L 398.52300,258.34200 L 398.52300,271.90900 C 398.52300,271.90900 368.84600,279.54000 368.84600,280.38800 C 368.84600,281.23600 368.84600,266.82100 368.84600,266.82100 z " />
+              </g>
+            </g>
+          </g>
+        </g>
+        <g
+           transform="matrix(1.060794,0.000000,0.000000,0.913679,-36.36050,196.9337)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g878">
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g875">
+            <path
+               transform="translate(3.955698,-6.329117)"
+               style="fill:#b2b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path831"
+               d="M 35.601300,306.96200 L 454.11400,242.08800 L 454.11400,266.61400 L 35.601200,332.27900 L 35.601300,306.96200 z " />
+            <path
+               style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path832"
+               d="M 39.557000,300.63300 C 41.930400,296.67700 90.981000,199.36700 90.981000,199.36700 L 371.04400,173.25900 L 458.07000,235.75900 L 39.557000,300.63300 z " />
+          </g>
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g859">
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g844">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path841"
+                 d="M 331.48700,184.33500 C 331.48700,184.33500 332.27900,193.03800 332.27900,193.82900 C 332.27900,194.62000 366.29800,234.17700 366.29800,234.17700 L 424.05100,224.68300 L 423.26000,218.35400 L 422.46800,218.35400 L 331.48700,184.33500 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path840"
+                 d="M 332.27900,184.33600 L 369.46200,180.38000 L 424.05100,218.35400 L 370.25300,225.47500 L 332.27900,184.33600 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g847">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path843"
+                 d="M 297.46800,195.41100 C 297.46800,195.41100 297.46800,203.32300 297.46800,204.11400 C 297.46800,204.90500 318.03800,241.29700 318.82900,241.29700 C 319.62000,241.29700 353.63900,236.55100 353.63900,236.55100 L 352.05700,227.05700" />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path842"
+                 d="M 298.26000,195.41100 C 299.05100,195.41100 322.78500,193.03800 322.78500,193.03800 L 352.84800,227.05700 L 321.99400,231.80400 L 298.26000,195.41100 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g850">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path833"
+                 d="M 90.189900,208.86100 L 98.101300,195.41100 L 272.94300,178.00600 L 282.43700,189.08200 L 90.189900,208.86100 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path834"
+                 d="M 90.189900,209.65200 L 89.398800,215.19000 L 282.43700,194.62000 L 282.43700,188.29100 L 90.189900,209.65200 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g853">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path835"
+                 d="M 90.981000,215.98100 L 287.18400,194.62000 L 309.33600,229.43000 L 71.993600,261.86700 L 90.981000,215.98100 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path836"
+                 d="M 71.993700,261.07600 L 71.202600,268.98700 L 309.33600,236.55100 C 310.12700,236.55100 308.54400,230.22100 308.54400,229.43000 C 308.54400,228.63900 71.993700,263.44900 71.993700,261.07600 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g856">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path838"
+                 d="M 82.278500,274.52500 L 301.42400,242.08900 L 306.17100,250.79100 L 79.905100,284.01900 L 82.278500,274.52500 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path839"
+                 d="M 79.113900,284.81000 L 79.113900,291.93000 L 306.17100,255.53800 L 305.38000,250.00000 L 79.113900,284.81000 z " />
+            </g>
+          </g>
+        </g>
+      </g>
+      <g
+         transform="matrix(0.298665,0.000000,0.000000,0.283273,290.1783,87.09869)"
+         style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+         id="g1647">
+        <g
+           transform="translate(107.0886,1.392441)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g1648">
+          <path
+             style="fill:#b3b2b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+             sodipodi:nodetypes="ccccc"
+             id="path1649"
+             d="M 299.84200,180.38000 L 177.21500,74.367000 L 250.79100,71.993600 L 385.28500,162.18300 C 385.28500,162.18300 353.63900,191.45600 299.84200,180.38000 z " />
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1650">
+            <path
+               style="fill:#b3b2b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1651"
+               d="M 176.42400,74.367000 L 178.00600,238.92400 L 300.63300,364.71500 L 301.42400,181.96200 L 176.42400,74.367000 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1652">
+              <path
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccc"
+                 id="path1653"
+                 d="M 302.21600,181.17100 C 302.21600,181.17100 328.32300,184.33500 348.10200,180.38000 C 375.00000,170.09500 386.07600,163.76600 386.07600,163.76600 L 386.86700,342.56300 C 386.86700,342.56300 371.83500,353.63900 353.64000,360.75900 C 323.57600,367.08800 300.63300,364.71500 300.63300,364.71500 L 302.21600,181.17100 z " />
+              <g
+                 style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="g1654">
+                <path
+                   transform="translate(-1.582260,0.000000)"
+                   style="fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   id="path1655"
+                   d="M 315.66500,205.69600 C 315.66500,205.69600 378.95600,192.24700 378.95600,193.03800 C 378.95600,193.82900 378.16500,218.35400 378.16500,218.35400 C 378.16500,218.35400 316.45600,231.80400 315.66500,231.80400 C 314.87400,231.80400 314.87400,207.27800 315.66500,205.69600 z " />
+                <path
+                   style="fill:#000100;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1656"
+                   d="M 323.57600,246.83500 L 370.25300,237.34200 L 370.25300,241.29800 L 323.57600,251.58200 L 323.57600,246.83500 z " />
+                <path
+                   style="fill:#00b300;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1657"
+                   d="M 360.76000,268.98700 L 372.62700,267.40500 L 372.62700,279.27200 L 360.76000,281.64600 L 360.76000,268.98700 z " />
+                <path
+                   style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1658"
+                   d="M 365.50600,298.25900 L 373.41800,297.46800 L 373.41800,306.96200 L 365.50600,308.54400 L 365.50600,298.25900 z " />
+              </g>
+            </g>
+          </g>
+        </g>
+        <g
+           transform="matrix(0.868723,0.000000,0.000000,0.841809,-27.91207,15.52193)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g1659">
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1660">
+            <path
+               transform="translate(-0.847921,19.50222)"
+               style="font-size:12.000000px;fill:#b3b3b3;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1661"
+               d="M 119.55700,425.38300 L 119.55700,438.10200 L 435.83200,344.83000 L 436.68000,329.56800 L 119.55700,425.38300 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1662">
+              <path
+                 transform="translate(-0.847921,19.50222)"
+                 style="font-size:12.000000px;fill:#cccccc;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1663"
+                 d="M 166.19300,347.37400 L 119.55700,426.23100 L 436.68000,329.56800 L 345.10400,298.19400 L 166.19300,347.37400 z " />
+              <path
+                 transform="matrix(0.708121,0.000000,0.000000,0.825311,71.30738,59.20586)"
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path1664"
+                 d="M 139.05900,335.50300 C 139.05900,335.50300 127.18800,354.15700 132.27500,369.42000 C 136.51500,388.07500 150.08200,392.31400 153.47400,392.31400 C 156.86600,392.31400 377.17700,334.88400 377.17700,334.88400 C 377.17700,334.88400 383.26000,322.78400 386.65200,303.28200 C 379.86900,279.54000 367.15000,276.99600 352.73500,276.99600 C 328.99300,263.43000 353.58400,276.99600 353.58400,276.99600 L 139.05900,335.50300 z " />
+            </g>
+          </g>
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1665">
+            <path
+               style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="cccccccc"
+               id="path1666"
+               d="M 420.57000,16.684400 C 420.57000,17.532300 399.37100,11.596800 377.32500,9.9009300 C 367.15000,10.748900 66.137900,65.863800 63.594200,65.863800 C 67.833800,65.015900 54.267000,65.863800 50.875300,73.495100 C 47.483600,81.126400 47.483600,343.13400 47.483600,343.13400 C 47.483600,343.13400 47.483700,350.76600 52.571200,356.70100 C 60.202500,360.09300 80.552600,360.94100 72.921300,360.94100 L 420.57000,16.684400 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1667">
+              <path
+                 transform="matrix(0.995445,0.000000,0.000000,0.910163,2.817975,-20.11005)"
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path1668"
+                 d="M 71.233200,108.00900 L 418.87300,40.426100 C 423.96100,43.817800 429.04900,41.274100 431.59300,51.449200 C 434.13700,61.624100 430.74500,304.97800 430.74500,304.97800 C 430.74500,304.97800 432.44000,312.60900 426.50500,316.84900 C 420.56900,321.08800 79.669900,416.90400 79.669900,416.90400 C 79.669900,416.90400 69.494600,421.14300 63.559300,412.66400 C 55.080300,410.12100 60.202500,124.37000 60.202500,124.37000 C 60.202500,124.37000 61.027100,110.72000 71.233200,108.00900 z " />
+              <g
+                 style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="g1669">
+                <path
+                   style="fill:url(#linearGradient614);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccccccccc"
+                   id="path1670"
+                   d="M 89.031800,98.084400 L 394.28400,38.730300 C 394.28400,38.730300 401.91500,36.186500 407.85100,45.513700 C 413.78600,54.840800 412.09000,59.080400 412.09000,59.080400 L 412.09000,234.60000 C 411.24200,243.92700 412.93800,240.53500 407.85100,250.71100 C 397.67500,254.10200 105.14200,333.80700 105.14200,333.80700 C 105.14200,333.80700 105.14200,335.50300 94.967300,333.80700 C 84.792200,332.11100 81.400500,316.00100 81.400500,315.15300 C 81.400500,314.30500 78.008800,115.89100 78.008800,115.89100 C 78.008800,115.89100 79.704800,101.47600 89.031800,98.084400 z " />
+                <path
+                   style="fill:#00feb3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1671"
+                   d="M 368.84600,266.82100 L 398.52300,258.34200 L 398.52300,271.90900 C 398.52300,271.90900 368.84600,279.54000 368.84600,280.38800 C 368.84600,281.23600 368.84600,266.82100 368.84600,266.82100 z " />
+              </g>
+            </g>
+          </g>
+        </g>
+        <g
+           transform="matrix(1.060794,0.000000,0.000000,0.913679,-36.36050,196.9337)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g1672">
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1673">
+            <path
+               transform="translate(3.955698,-6.329117)"
+               style="fill:#b2b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1674"
+               d="M 35.601300,306.96200 L 454.11400,242.08800 L 454.11400,266.61400 L 35.601200,332.27900 L 35.601300,306.96200 z " />
+            <path
+               style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1675"
+               d="M 39.557000,300.63300 C 41.930400,296.67700 90.981000,199.36700 90.981000,199.36700 L 371.04400,173.25900 L 458.07000,235.75900 L 39.557000,300.63300 z " />
+          </g>
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1676">
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1677">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1678"
+                 d="M 331.48700,184.33500 C 331.48700,184.33500 332.27900,193.03800 332.27900,193.82900 C 332.27900,194.62000 366.29800,234.17700 366.29800,234.17700 L 424.05100,224.68300 L 423.26000,218.35400 L 422.46800,218.35400 L 331.48700,184.33500 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1679"
+                 d="M 332.27900,184.33600 L 369.46200,180.38000 L 424.05100,218.35400 L 370.25300,225.47500 L 332.27900,184.33600 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1680">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1681"
+                 d="M 297.46800,195.41100 C 297.46800,195.41100 297.46800,203.32300 297.46800,204.11400 C 297.46800,204.90500 318.03800,241.29700 318.82900,241.29700 C 319.62000,241.29700 353.63900,236.55100 353.63900,236.55100 L 352.05700,227.05700" />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1682"
+                 d="M 298.26000,195.41100 C 299.05100,195.41100 322.78500,193.03800 322.78500,193.03800 L 352.84800,227.05700 L 321.99400,231.80400 L 298.26000,195.41100 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1683">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1684"
+                 d="M 90.189900,208.86100 L 98.101300,195.41100 L 272.94300,178.00600 L 282.43700,189.08200 L 90.189900,208.86100 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1685"
+                 d="M 90.189900,209.65200 L 89.398800,215.19000 L 282.43700,194.62000 L 282.43700,188.29100 L 90.189900,209.65200 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1686">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1687"
+                 d="M 90.981000,215.98100 L 287.18400,194.62000 L 309.33600,229.43000 L 71.993600,261.86700 L 90.981000,215.98100 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1688"
+                 d="M 71.993700,261.07600 L 71.202600,268.98700 L 309.33600,236.55100 C 310.12700,236.55100 308.54400,230.22100 308.54400,229.43000 C 308.54400,228.63900 71.993700,263.44900 71.993700,261.07600 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1689">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1690"
+                 d="M 82.278500,274.52500 L 301.42400,242.08900 L 306.17100,250.79100 L 79.905100,284.01900 L 82.278500,274.52500 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1691"
+                 d="M 79.113900,284.81000 L 79.113900,291.93000 L 306.17100,255.53800 L 305.38000,250.00000 L 79.113900,284.81000 z " />
+            </g>
+          </g>
+        </g>
+      </g>
+      <g
+         transform="matrix(0.298665,0.000000,0.000000,0.283273,177.6783,218.3487)"
+         style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+         id="g1692">
+        <g
+           transform="translate(107.0886,1.392441)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g1693">
+          <path
+             style="fill:#b3b2b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+             sodipodi:nodetypes="ccccc"
+             id="path1694"
+             d="M 299.84200,180.38000 L 177.21500,74.367000 L 250.79100,71.993600 L 385.28500,162.18300 C 385.28500,162.18300 353.63900,191.45600 299.84200,180.38000 z " />
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1695">
+            <path
+               style="fill:#b3b2b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1696"
+               d="M 176.42400,74.367000 L 178.00600,238.92400 L 300.63300,364.71500 L 301.42400,181.96200 L 176.42400,74.367000 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1697">
+              <path
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccc"
+                 id="path1698"
+                 d="M 302.21600,181.17100 C 302.21600,181.17100 328.32300,184.33500 348.10200,180.38000 C 375.00000,170.09500 386.07600,163.76600 386.07600,163.76600 L 386.86700,342.56300 C 386.86700,342.56300 371.83500,353.63900 353.64000,360.75900 C 323.57600,367.08800 300.63300,364.71500 300.63300,364.71500 L 302.21600,181.17100 z " />
+              <g
+                 style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="g1699">
+                <path
+                   transform="translate(-1.582260,0.000000)"
+                   style="fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   id="path1700"
+                   d="M 315.66500,205.69600 C 315.66500,205.69600 378.95600,192.24700 378.95600,193.03800 C 378.95600,193.82900 378.16500,218.35400 378.16500,218.35400 C 378.16500,218.35400 316.45600,231.80400 315.66500,231.80400 C 314.87400,231.80400 314.87400,207.27800 315.66500,205.69600 z " />
+                <path
+                   style="fill:#000100;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1701"
+                   d="M 323.57600,246.83500 L 370.25300,237.34200 L 370.25300,241.29800 L 323.57600,251.58200 L 323.57600,246.83500 z " />
+                <path
+                   style="fill:#00b300;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1702"
+                   d="M 360.76000,268.98700 L 372.62700,267.40500 L 372.62700,279.27200 L 360.76000,281.64600 L 360.76000,268.98700 z " />
+                <path
+                   style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1703"
+                   d="M 365.50600,298.25900 L 373.41800,297.46800 L 373.41800,306.96200 L 365.50600,308.54400 L 365.50600,298.25900 z " />
+              </g>
+            </g>
+          </g>
+        </g>
+        <g
+           transform="matrix(0.868723,0.000000,0.000000,0.841809,-27.91207,15.52193)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g1704">
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1705">
+            <path
+               transform="translate(-0.847921,19.50222)"
+               style="font-size:12.000000px;fill:#b3b3b3;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1706"
+               d="M 119.55700,425.38300 L 119.55700,438.10200 L 435.83200,344.83000 L 436.68000,329.56800 L 119.55700,425.38300 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1707">
+              <path
+                 transform="translate(-0.847921,19.50222)"
+                 style="font-size:12.000000px;fill:#cccccc;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1708"
+                 d="M 166.19300,347.37400 L 119.55700,426.23100 L 436.68000,329.56800 L 345.10400,298.19400 L 166.19300,347.37400 z " />
+              <path
+                 transform="matrix(0.708121,0.000000,0.000000,0.825311,71.30738,59.20586)"
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path1709"
+                 d="M 139.05900,335.50300 C 139.05900,335.50300 127.18800,354.15700 132.27500,369.42000 C 136.51500,388.07500 150.08200,392.31400 153.47400,392.31400 C 156.86600,392.31400 377.17700,334.88400 377.17700,334.88400 C 377.17700,334.88400 383.26000,322.78400 386.65200,303.28200 C 379.86900,279.54000 367.15000,276.99600 352.73500,276.99600 C 328.99300,263.43000 353.58400,276.99600 353.58400,276.99600 L 139.05900,335.50300 z " />
+            </g>
+          </g>
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1710">
+            <path
+               style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="cccccccc"
+               id="path1711"
+               d="M 420.57000,16.684400 C 420.57000,17.532300 399.37100,11.596800 377.32500,9.9009300 C 367.15000,10.748900 66.137900,65.863800 63.594200,65.863800 C 67.833800,65.015900 54.267000,65.863800 50.875300,73.495100 C 47.483600,81.126400 47.483600,343.13400 47.483600,343.13400 C 47.483600,343.13400 47.483700,350.76600 52.571200,356.70100 C 60.202500,360.09300 80.552600,360.94100 72.921300,360.94100 L 420.57000,16.684400 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1712">
+              <path
+                 transform="matrix(0.995445,0.000000,0.000000,0.910163,2.817975,-20.11005)"
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path1713"
+                 d="M 71.233200,108.00900 L 418.87300,40.426100 C 423.96100,43.817800 429.04900,41.274100 431.59300,51.449200 C 434.13700,61.624100 430.74500,304.97800 430.74500,304.97800 C 430.74500,304.97800 432.44000,312.60900 426.50500,316.84900 C 420.56900,321.08800 79.669900,416.90400 79.669900,416.90400 C 79.669900,416.90400 69.494600,421.14300 63.559300,412.66400 C 55.080300,410.12100 60.202500,124.37000 60.202500,124.37000 C 60.202500,124.37000 61.027100,110.72000 71.233200,108.00900 z " />
+              <g
+                 style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="g1714">
+                <path
+                   style="fill:url(#linearGradient614);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccccccccc"
+                   id="path1715"
+                   d="M 89.031800,98.084400 L 394.28400,38.730300 C 394.28400,38.730300 401.91500,36.186500 407.85100,45.513700 C 413.78600,54.840800 412.09000,59.080400 412.09000,59.080400 L 412.09000,234.60000 C 411.24200,243.92700 412.93800,240.53500 407.85100,250.71100 C 397.67500,254.10200 105.14200,333.80700 105.14200,333.80700 C 105.14200,333.80700 105.14200,335.50300 94.967300,333.80700 C 84.792200,332.11100 81.400500,316.00100 81.400500,315.15300 C 81.400500,314.30500 78.008800,115.89100 78.008800,115.89100 C 78.008800,115.89100 79.704800,101.47600 89.031800,98.084400 z " />
+                <path
+                   style="fill:#00feb3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1716"
+                   d="M 368.84600,266.82100 L 398.52300,258.34200 L 398.52300,271.90900 C 398.52300,271.90900 368.84600,279.54000 368.84600,280.38800 C 368.84600,281.23600 368.84600,266.82100 368.84600,266.82100 z " />
+              </g>
+            </g>
+          </g>
+        </g>
+        <g
+           transform="matrix(1.060794,0.000000,0.000000,0.913679,-36.36050,196.9337)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g1717">
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1718">
+            <path
+               transform="translate(3.955698,-6.329117)"
+               style="fill:#b2b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1719"
+               d="M 35.601300,306.96200 L 454.11400,242.08800 L 454.11400,266.61400 L 35.601200,332.27900 L 35.601300,306.96200 z " />
+            <path
+               style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1720"
+               d="M 39.557000,300.63300 C 41.930400,296.67700 90.981000,199.36700 90.981000,199.36700 L 371.04400,173.25900 L 458.07000,235.75900 L 39.557000,300.63300 z " />
+          </g>
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1721">
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1722">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1723"
+                 d="M 331.48700,184.33500 C 331.48700,184.33500 332.27900,193.03800 332.27900,193.82900 C 332.27900,194.62000 366.29800,234.17700 366.29800,234.17700 L 424.05100,224.68300 L 423.26000,218.35400 L 422.46800,218.35400 L 331.48700,184.33500 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1724"
+                 d="M 332.27900,184.33600 L 369.46200,180.38000 L 424.05100,218.35400 L 370.25300,225.47500 L 332.27900,184.33600 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1725">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1726"
+                 d="M 297.46800,195.41100 C 297.46800,195.41100 297.46800,203.32300 297.46800,204.11400 C 297.46800,204.90500 318.03800,241.29700 318.82900,241.29700 C 319.62000,241.29700 353.63900,236.55100 353.63900,236.55100 L 352.05700,227.05700" />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1727"
+                 d="M 298.26000,195.41100 C 299.05100,195.41100 322.78500,193.03800 322.78500,193.03800 L 352.84800,227.05700 L 321.99400,231.80400 L 298.26000,195.41100 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1728">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1729"
+                 d="M 90.189900,208.86100 L 98.101300,195.41100 L 272.94300,178.00600 L 282.43700,189.08200 L 90.189900,208.86100 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1730"
+                 d="M 90.189900,209.65200 L 89.398800,215.19000 L 282.43700,194.62000 L 282.43700,188.29100 L 90.189900,209.65200 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1731">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1732"
+                 d="M 90.981000,215.98100 L 287.18400,194.62000 L 309.33600,229.43000 L 71.993600,261.86700 L 90.981000,215.98100 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1733"
+                 d="M 71.993700,261.07600 L 71.202600,268.98700 L 309.33600,236.55100 C 310.12700,236.55100 308.54400,230.22100 308.54400,229.43000 C 308.54400,228.63900 71.993700,263.44900 71.993700,261.07600 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1734">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1735"
+                 d="M 82.278500,274.52500 L 301.42400,242.08900 L 306.17100,250.79100 L 79.905100,284.01900 L 82.278500,274.52500 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1736"
+                 d="M 79.113900,284.81000 L 79.113900,291.93000 L 306.17100,255.53800 L 305.38000,250.00000 L 79.113900,284.81000 z " />
+            </g>
+          </g>
+        </g>
+      </g>
+    </g>
+    <text
+       xml:space="preserve"
+       style="font-size:48.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="203.45128"
+       y="921.41278"
+       id="text4057"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan4059"
+         x="203.45128"
+         y="921.41278">Internet</tspan></text>
+    <g
+       id="g4331">
+      <path
+         style="fill:url(#linearGradient4327);fill-opacity:1.0000000;fill-rule:evenodd;stroke:url(#linearGradient4329);stroke-width:0.28469722pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.32704404"
+         id="path8486"
+         d="M 378.64586,1186.1097 L 371.10769,1219.6950 C 369.90235,1225.0652 376.38196,1233.1291 383.87233,1233.1291 L 478.55177,1233.1291 C 486.08041,1233.1291 492.65005,1225.1017 491.51743,1219.6950 L 484.48180,1186.1097 C 483.62900,1182.0388 475.87817,1179.3927 470.20953,1179.3927 L 393.01864,1179.3927 C 387.32185,1179.3927 379.56258,1182.0254 378.64586,1186.1097 z " />
+      <path
+         style="fill:url(#linearGradient4324);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.67866912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+         id="path8477"
+         d="M 381.13123,1184.9851 L 373.94885,1208.4599 C 372.80039,1212.2135 378.97418,1217.8498 386.11101,1217.8498 L 476.32176,1217.8498 C 483.49506,1217.8498 489.75462,1212.2389 488.67546,1208.4599 L 481.97190,1184.9851 C 481.15935,1182.1396 473.77434,1180.2901 468.37325,1180.2901 L 394.82564,1180.2901 C 389.39773,1180.2901 382.00468,1182.1303 381.13123,1184.9851 z " />
+      <path
+         style="fill:url(#linearGradient4321);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.67866912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+         id="path8463"
+         d="M 379.88855,1184.6362 L 372.52827,1208.6924 C 371.35136,1212.5390 377.67806,1218.3149 384.99167,1218.3149 L 477.43677,1218.3149 C 484.78773,1218.3149 491.20233,1212.5651 490.09645,1208.6924 L 483.22685,1184.6362 C 482.39417,1181.7203 474.82626,1179.8249 469.29139,1179.8249 L 393.92214,1179.8249 C 388.35979,1179.8249 380.78363,1181.7107 379.88855,1184.6362 z " />
+      <path
+         style="fill:url(#linearGradient4318);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+         id="path1717"
+         d="M 381.83356,1183.5926 L 374.64393,1207.4394 C 373.49432,1211.2525 379.67433,1216.9781 386.81838,1216.9781 L 477.12019,1216.9781 C 484.30073,1216.9781 490.56663,1211.2784 489.48637,1207.4394 L 482.77605,1183.5926 C 481.96268,1180.7021 474.57021,1178.8232 469.16366,1178.8232 L 395.54180,1178.8232 C 390.10841,1178.8232 382.70789,1180.6926 381.83356,1183.5926 z " />
+      <path
+         style="fill:url(#linearGradient4315);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+         id="path8462"
+         d="M 383.94458,1185.6550 L 377.05716,1208.0287 C 375.95586,1211.6062 381.87611,1216.9781 388.71987,1216.9781 L 475.22599,1216.9781 C 482.10471,1216.9781 488.10722,1211.6305 487.07238,1208.0287 L 480.64411,1185.6550 C 479.86493,1182.9431 472.78320,1181.1803 467.60391,1181.1803 L 397.07662,1181.1803 C 391.87161,1181.1803 384.78216,1182.9342 383.94458,1185.6550 z " />
+      <g
+         transform="matrix(0.470219,0.000000,0.000000,0.470219,360.9633,1177.826)"
+         id="g10119">
+        <path
+           style="fill:#82ce7c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path7267"
+           d="M 99.661870,105.15823 L 99.184006,109.04052 C 99.107595,109.66129 99.518355,110.59343 99.993190,110.59343 L 105.99517,110.59343 C 106.47243,110.59343 106.88890,109.66550 106.81710,109.04052 L 106.37110,105.15823 C 106.31703,104.68765 105.82569,104.38177 105.46634,104.38177 L 100.57300,104.38177 C 100.21187,104.38177 99.719983,104.68610 99.661870,105.15823 z " />
+        <path
+           style="fill:#82ce7c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path7269"
+           d="M 99.661870,90.183030 L 99.184010,94.065320 C 99.107600,94.686090 99.518350,95.618230 99.993190,95.618230 L 105.99517,95.618230 C 106.47243,95.618230 106.88890,94.690300 106.81710,94.065320 L 106.37110,90.183030 C 106.31703,89.712450 105.82569,89.406570 105.46634,89.406570 L 100.57300,89.406570 C 100.21187,89.406570 99.719980,89.710900 99.661870,90.183030 z " />
+        <g
+           transform="translate(-3.625000,-0.500000)"
+           id="g10018">
+          <path
+             style="fill:url(#linearGradient4253);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path7283"
+             d="M 202.81540,100.25878 L 201.78690,107.99783 C 201.62244,109.23528 202.50651,111.09343 203.52849,111.09343 L 216.44646,111.09343 C 217.47366,111.09343 218.37001,109.24368 218.21548,107.99783 L 217.25555,100.25878 C 217.13919,99.320720 216.08168,98.710970 215.30825,98.710970 L 204.77640,98.710970 C 203.99914,98.710970 202.94047,99.317630 202.81540,100.25878 z " />
+          <path
+             style="fill:#82ce7c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path7285"
+             d="M 206.66187,90.683030 L 206.18400,94.565310 C 206.10759,95.186080 206.51835,96.118220 206.99319,96.118220 L 212.99517,96.118220 C 213.47243,96.118220 213.88890,95.190290 213.81710,94.565310 L 213.37109,90.683030 C 213.31703,90.212450 212.82569,89.906570 212.46633,89.906570 L 207.57300,89.906570 C 207.21186,89.906570 206.71998,90.210890 206.66187,90.683030 z " />
+        </g>
+        <g
+           transform="translate(0.000000,-0.500000)"
+           id="g10014">
+          <path
+             style="fill:url(#linearGradient4255);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path7289"
+             d="M 224.81540,100.25878 L 223.78690,107.99783 C 223.62244,109.23528 224.50651,111.09343 225.52849,111.09343 L 238.44646,111.09343 C 239.47366,111.09343 240.37001,109.24368 240.21548,107.99783 L 239.25555,100.25878 C 239.13919,99.320720 238.08168,98.710970 237.30825,98.710970 L 226.77640,98.710970 C 225.99914,98.710970 224.94047,99.317630 224.81540,100.25878 z " />
+          <path
+             style="fill:#ce7c85;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path7291"
+             d="M 228.66187,90.683030 L 228.18400,94.565310 C 228.10759,95.186080 228.51835,96.118220 228.99319,96.118220 L 234.99517,96.118220 C 235.47243,96.118220 235.88890,95.190290 235.81710,94.565310 L 235.37109,90.683030 C 235.31703,90.212450 234.82569,89.906570 234.46633,89.906570 L 229.57300,89.906570 C 229.21186,89.906570 228.71998,90.210890 228.66187,90.683030 z " />
+        </g>
+        <text
+           y="110.48015"
+           xml:space="preserve"
+           x="58.5"
+           style="font-size:8.0000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+           sodipodi:linespacing="100.00000%"
+           id="text7299"><tspan
+             y="110.48015"
+             x="58.500000"
+             sodipodi:role="line"
+             id="tspan7301">Collision</tspan></text>
+        <text
+           y="95.238602"
+           xml:space="preserve"
+           x="66.5"
+           style="font-size:8.0000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+           sodipodi:linespacing="100.00000%"
+           id="text7303"><tspan
+             y="95.238602"
+             x="66.500000"
+             sodipodi:role="line"
+             id="tspan7305">Power</tspan></text>
+        <g
+           transform="translate(-29.25000,-0.500000)"
+           id="g10022">
+          <path
+             style="fill:url(#linearGradient4257);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path10024"
+             d="M 202.81540,100.25878 L 201.78690,107.99783 C 201.62244,109.23528 202.50651,111.09343 203.52849,111.09343 L 216.44646,111.09343 C 217.47366,111.09343 218.37001,109.24368 218.21548,107.99783 L 217.25555,100.25878 C 217.13919,99.320720 216.08168,98.710970 215.30825,98.710970 L 204.77640,98.710970 C 203.99914,98.710970 202.94047,99.317630 202.81540,100.25878 z " />
+          <path
+             style="fill:#82ce7c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path10026"
+             d="M 206.66187,90.683030 L 206.18400,94.565310 C 206.10759,95.186080 206.51835,96.118220 206.99319,96.118220 L 212.99517,96.118220 C 213.47243,96.118220 213.88890,95.190290 213.81710,94.565310 L 213.37109,90.683030 C 213.31703,90.212450 212.82569,89.906570 212.46633,89.906570 L 207.57300,89.906570 C 207.21186,89.906570 206.71998,90.210890 206.66187,90.683030 z " />
+        </g>
+        <g
+           transform="translate(-54.87500,-0.500000)"
+           id="g10030">
+          <path
+             style="fill:url(#linearGradient4259);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path10032"
+             d="M 202.81540,100.25878 L 201.78690,107.99783 C 201.62244,109.23528 202.50651,111.09343 203.52849,111.09343 L 216.44646,111.09343 C 217.47366,111.09343 218.37001,109.24368 218.21548,107.99783 L 217.25555,100.25878 C 217.13919,99.320720 216.08168,98.710970 215.30825,98.710970 L 204.77640,98.710970 C 203.99914,98.710970 202.94047,99.317630 202.81540,100.25878 z " />
+          <path
+             style="fill:#82ce7c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path10034"
+             d="M 206.66187,90.683030 L 206.18400,94.565310 C 206.10759,95.186080 206.51835,96.118220 206.99319,96.118220 L 212.99517,96.118220 C 213.47243,96.118220 213.88890,95.190290 213.81710,94.565310 L 213.37109,90.683030 C 213.31703,90.212450 212.82569,89.906570 212.46633,89.906570 L 207.57300,89.906570 C 207.21186,89.906570 206.71998,90.210890 206.66187,90.683030 z " />
+        </g>
+        <g
+           transform="translate(-80.50000,-0.500000)"
+           id="g10038">
+          <path
+             style="fill:url(#linearGradient4261);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path10040"
+             d="M 202.81540,100.25878 L 201.78690,107.99783 C 201.62244,109.23528 202.50651,111.09343 203.52849,111.09343 L 216.44646,111.09343 C 217.47366,111.09343 218.37001,109.24368 218.21548,107.99783 L 217.25555,100.25878 C 217.13919,99.320720 216.08168,98.710970 215.30825,98.710970 L 204.77640,98.710970 C 203.99914,98.710970 202.94047,99.317630 202.81540,100.25878 z " />
+          <path
+             style="fill:#82ce7c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path10042"
+             d="M 206.66187,90.683030 L 206.18400,94.565310 C 206.10759,95.186080 206.51835,96.118220 206.99319,96.118220 L 212.99517,96.118220 C 213.47243,96.118220 213.88890,95.190290 213.81710,94.565310 L 213.37109,90.683030 C 213.31703,90.212450 212.82569,89.906570 212.46633,89.906570 L 207.57300,89.906570 C 207.21186,89.906570 206.71998,90.210890 206.66187,90.683030 z " />
+        </g>
+      </g>
+    </g>
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="236.90706"
+       y="1220.9423"
+       id="text4202"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan4204"
+         x="236.90706"
+         y="1220.9423">ADSL modem</tspan></text>
+    <path
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       d="M 442.41155,1231.2967 L 442.41155,1472.0320"
+       id="path11842"
+       sodipodi:nodetypes="cc" />
+    <g
+       transform="matrix(0.252775,0.000000,0.000000,0.259878,309.8417,1627.107)"
+       id="g1395">
+      <path
+         style="fill:#fcfcfd"
+         id="path1346"
+         d="M 105.37590,499.56408 L 62.264953,366.13485 L 227.47681,309.43459 L 270.85338,311.77757 L 300.64063,316.93214 L 308.40381,357.70010 L 522.47417,385.47181 L 536.92211,397.77981 L 536.84352,446.16980 L 527.39300,516.58386 L 508.10193,601.99303 L 487.40506,614.76963 L 446.08992,604.11636 L 434.29641,618.76735 L 414.45526,631.47805 L 394.61412,635.28540 L 375.71016,635.34398 L 355.40042,629.31079 L 337.90226,619.99742 L 324.62147,607.40386 L 322.11843,596.68470 L 338.51933,564.69909 L 276.66449,544.89700 L 195.00328,609.09483 L 128.33717,578.63600 L 105.37590,499.56408 z " />
+      <path
+         style="fill:#d2d2d2"
+         id="path1344"
+         d="M 366.29132,636.36125 C 352.72087,633.06944 340.57499,627.11098 331.52240,619.30449 C 321.49709,610.65919 319.36015,605.75294 320.18807,593.28186 C 320.74157,584.94442 321.75044,582.24288 326.85569,575.42709 L 332.87114,567.39619 L 328.41078,565.74038 C 325.95759,564.82968 313.45556,560.35628 300.62848,555.79947 L 277.30655,547.51438 L 266.55634,556.32474 C 260.64373,561.17044 242.98250,575.76199 227.30919,588.75040 C 206.43848,606.04587 197.69703,612.36569 194.64503,612.36569 C 192.35306,612.36569 176.05439,605.35475 158.42576,596.78582 L 126.37371,581.20596 L 120.69086,564.65355 C 108.83895,530.13250 58.362719,371.97699 58.362719,369.36282 C 58.362719,367.85828 59.634155,365.54980 61.188121,364.23285 C 62.742094,362.91591 99.933978,349.91628 143.83676,335.34480 L 223.65998,308.85118 L 238.28588,308.97620 C 264.52814,309.20052 302.16884,312.56206 303.61779,314.81071 C 304.34668,315.94187 305.42109,322.55480 306.00540,329.50611 C 306.58970,336.45742 307.48989,345.31709 308.00582,349.19427 L 308.94385,356.24368 L 339.05033,359.73255 C 457.39954,373.44735 512.55345,380.39695 520.09401,382.54477 C 530.59220,385.53500 538.45599,392.52463 540.92726,401.06217 C 544.68097,414.03019 542.77569,437.45698 532.87293,500.09629 C 526.43807,540.79953 516.35838,589.32948 512.03968,600.40059 C 510.14245,605.26419 506.40469,611.33967 503.73353,613.90167 C 496.83619,620.51720 486.41739,620.30905 463.97887,613.10745 C 454.63522,610.10864 446.85916,607.84389 446.69873,608.07469 C 446.53830,608.30548 444.78564,611.08097 442.80394,614.24242 C 438.22301,621.55047 429.30582,628.32671 417.37635,633.56505 C 409.59749,636.98079 405.24874,637.76098 391.80905,638.15188 C 381.37865,638.45525 372.29649,637.81793 366.29132,636.36125 z M 413.21952,630.22440 C 424.36324,625.78369 420.96774,624.07628 398.89564,623.02177 C 382.34967,622.23125 376.16233,621.19983 363.50604,617.12232 C 355.07020,614.40453 343.69090,609.78351 338.21873,606.85338 C 325.88851,600.25106 323.90702,600.10190 327.09566,606.01608 C 332.38808,615.83230 350.09523,626.84235 368.34958,631.66718 C 380.05561,634.76120 403.74632,633.99944 413.21952,630.22440 z M 488.37317,606.26551 C 491.16184,605.24858 493.32660,602.33675 495.56838,596.58711 C 503.16902,577.09335 522.80309,466.40434 528.32024,411.94530 C 530.46987,390.72652 530.61974,391.03185 516.07769,387.00197 C 507.11354,384.51782 286.42663,358.41386 274.34130,358.40816 C 260.94474,358.40186 261.10775,357.57651 262.31599,419.28783 C 262.88602,448.40190 264.11893,484.06886 265.05580,498.54774 C 266.94699,527.77537 268.77440,533.68963 277.38084,538.43688 C 282.85359,541.45561 307.69873,550.31451 396.60359,580.94760 C 475.12701,608.00364 479.95454,609.33548 488.37317,606.26551 z M 453.03868,584.46710 C 436.14179,580.10863 299.89191,535.66353 291.54096,531.78610 C 287.58048,529.94720 283.44423,526.94263 282.34930,525.10928 C 279.78073,520.80845 279.46377,390.55605 282.00985,385.61297 C 283.06108,383.57209 285.54648,382.23123 288.84895,381.92336 C 293.56837,381.48339 341.63001,388.30586 434.54469,402.60525 C 487.04801,410.68539 489.43820,412.04043 489.43820,433.72527 C 489.43820,460.63141 475.60052,574.29202 471.39041,581.96697 C 469.64024,585.15749 466.88437,587.61609 465.22048,587.47135 C 464.77649,587.43271 459.29467,586.08082 453.03868,584.46710 z M 164.30963,528.58534 C 161.24419,517.20463 159.12602,507.28803 159.60256,506.54846 C 161.50366,503.59814 167.32030,512.22986 171.63293,524.40118 C 177.87051,542.00515 176.33108,534.58771 161.44649,475.31960 C 154.38794,447.21353 146.32261,414.46184 143.52356,402.53806 C 140.72449,390.61427 138.39989,380.77011 138.35778,380.66213 C 138.04295,379.85488 65.679566,367.96103 64.681746,368.55252 C 63.216388,369.42116 64.998726,375.70811 76.511611,410.28077 C 81.049532,423.90795 85.041109,433.88852 85.381767,432.45978 C 86.150142,429.23727 91.779172,429.83083 112.44897,435.31395 C 134.17943,441.07844 140.20626,444.01884 143.38163,450.40558 C 145.62829,454.92436 145.76286,456.59850 144.15199,459.98950 C 142.35799,463.76602 141.65014,464.01743 135.39715,463.09894 C 112.34161,459.71238 107.69180,460.18210 114.06349,465.25406 C 115.66677,466.53029 116.48526,469.99624 116.48526,475.50920 C 116.48526,483.78853 116.51413,483.83658 121.48843,483.83658 C 137.98993,483.83658 154.83897,504.92057 165.11851,538.43294 C 170.91591,557.33306 170.41705,551.25964 164.30963,528.58534 z M 105.77740,421.97958 C 95.892151,419.54857 85.975808,416.41051 83.741089,415.00609 C 78.023163,411.41265 75.289306,404.60174 77.776007,400.14515 C 79.558272,396.95104 80.490102,396.76508 90.423693,397.62117 C 96.321719,398.12945 107.08535,400.32463 114.34287,402.49934 C 129.68457,407.09647 135.85944,412.47453 135.85944,421.23940 C 135.85944,426.34525 135.63647,426.53787 129.80501,426.47004 C 126.47507,426.43131 115.66265,424.41060 105.77740,421.97958 z M 127.78686,419.47023 C 127.78686,413.86287 119.40860,410.05620 97.409160,405.66814 C 83.175277,402.82901 84.194958,402.84970 84.194958,405.39997 C 84.194958,407.94253 92.091628,411.40983 109.21994,416.38801 C 122.21566,420.16511 127.78686,421.08995 127.78686,419.47023 z M 131.01590,412.60359 C 131.01590,411.75189 130.24648,411.05504 129.30610,411.05504 C 128.36571,411.05504 128.04531,411.75189 128.59412,412.60359 C 129.87272,414.58786 131.01590,414.58786 131.01590,412.60359 z M 154.29014,532.93532 C 152.88842,528.98960 148.84334,522.77404 145.30107,519.12296 C 138.50045,512.11345 138.57547,513.45037 145.50138,522.69275 C 147.79396,525.75211 151.03526,531.15976 152.70429,534.70975 C 156.64607,543.09388 157.54260,542.09074 154.29014,532.93532 z M 135.85944,452.14592 C 135.85944,448.97728 131.39000,446.99728 112.62504,441.85288 C 93.828797,436.69988 92.283499,436.51071 95.691941,439.77987 C 97.767657,441.77077 130.69672,454.07326 134.64855,454.33428 C 135.31454,454.37827 135.85944,453.39350 135.85944,452.14592 z " />
+      <path
+         style="fill:#aaaaaa"
+         id="path1342"
+         d="M 375.61490,637.61072 C 367.25780,636.54760 353.45472,632.37189 345.47131,628.49169 C 318.82423,615.54035 312.33815,593.70859 328.93647,572.83628 C 331.32571,569.83183 332.99760,567.17601 332.65177,566.93449 C 332.30594,566.69296 319.74051,562.19873 304.72856,556.94735 L 277.43413,547.39934 L 264.36569,557.97671 C 257.17806,563.79426 239.34337,578.41169 224.73307,590.45988 C 210.12278,602.50808 196.77418,612.36569 195.06953,612.36569 C 192.12448,612.36569 142.33069,589.39109 131.59715,583.07986 C 125.55362,579.52632 125.18550,578.51388 89.037432,466.02833 C 75.626143,424.29509 63.601162,387.06399 62.315254,383.29254 C 59.051576,373.72050 59.262211,365.06993 62.802641,363.27640 C 64.356607,362.48918 101.90268,349.79098 146.23836,335.05818 L 226.84869,308.27127 L 263.85944,310.54276 C 295.39558,312.47826 301.17349,313.21212 302.92069,315.50392 C 304.04847,316.98323 305.45178,323.93104 306.03918,330.94349 C 306.62655,337.95594 307.51621,346.57745 308.01621,350.10239 L 308.92528,356.51138 L 323.70318,358.23818 C 459.45631,374.10103 511.25673,380.58259 519.06058,382.68238 C 536.46445,387.36529 542.69054,396.69348 542.70819,418.11224 C 542.73105,445.85080 522.85971,567.16062 513.56527,596.02292 C 511.32719,602.97287 508.36053,608.12455 504.15386,612.36598 C 498.69693,617.86801 497.16797,618.55986 490.46560,618.55986 C 486.20846,618.55986 475.08560,616.13052 464.94151,612.98515 C 448.05457,607.74904 446.86410,607.57918 445.34159,610.18861 C 442.14449,615.66808 430.57189,626.59009 424.12137,630.21589 C 412.34920,636.83293 392.85843,639.80431 375.61490,637.61072 z M 415.17052,629.19693 C 420.05442,627.01912 426.48997,623.03661 429.47173,620.34691 C 433.96116,616.29722 434.70739,614.72505 433.81269,611.20117 C 432.23713,604.99574 426.98334,600.88671 415.52701,596.89980 L 405.38917,593.37175 L 400.04217,599.30456 L 394.69517,605.23737 L 377.47158,598.73600 C 367.99859,595.16024 359.68944,592.23462 359.00679,592.23462 C 356.04355,592.23462 352.20443,585.55107 352.20443,580.39237 L 352.20443,574.77967 L 344.91130,575.73847 C 330.29494,577.65999 323.83647,584.37477 324.18674,597.28553 C 324.52301,609.68139 340.19579,623.34159 362.03961,630.27764 C 378.67991,635.56142 401.95958,635.08789 415.17052,629.19693 z M 494.37117,612.31979 C 496.07958,611.44283 498.53395,608.76558 499.82534,606.37035 C 506.01144,594.89657 532.22212,439.78743 533.43935,407.44988 C 533.82007,397.33555 533.61640,396.68664 528.75032,392.51064 C 525.31498,389.56248 519.97203,387.33976 512.29485,385.66495 C 501.25604,383.25683 281.66597,356.86535 272.61619,356.85913 C 269.90068,356.85726 266.42423,358.46609 263.88868,360.89803 L 259.67449,364.94004 L 260.70834,427.87253 C 261.85957,497.94787 263.67230,526.39729 267.43025,533.36741 C 270.60427,539.25452 273.96795,540.86341 310.18378,553.81708 C 355.42458,569.99881 475.41301,611.90825 479.00929,612.78430 C 484.62646,614.15266 491.18698,613.95427 494.37117,612.31979 z M 453.11162,581.87290 C 451.33565,581.44275 414.78037,569.95953 371.87767,556.35467 C 311.52006,537.21467 292.75097,530.65718 288.91430,527.36919 C 284.02873,523.18232 283.93648,522.82553 282.63670,503.09110 C 281.01874,478.52586 280.81217,427.25128 282.23570,403.55469 C 283.18806,387.70132 283.62324,385.84358 286.69953,384.49920 C 290.30113,382.92526 317.94753,386.73627 412.50776,401.84169 C 479.33287,412.51661 482.53589,413.38915 486.22089,421.92199 C 489.97659,430.61855 485.72516,481.36297 475.67141,547.83917 C 470.95577,579.01935 469.74467,582.07753 461.97998,582.41204 C 458.87834,582.54567 454.88758,582.30305 453.11162,581.87290 z M 195.59649,607.04999 C 195.59649,606.68144 192.71401,595.00929 189.19098,581.11188 C 174.83044,524.46344 145.47821,407.50696 143.01570,397.12254 C 141.56621,391.01001 140.71539,384.32739 141.12499,382.27225 C 141.72075,379.28307 141.18787,378.52932 138.46095,378.50407 C 136.58613,378.48671 119.62499,375.82554 100.76953,372.59035 C 81.914071,369.35517 65.649031,367.20486 64.624986,367.81189 C 63.316822,368.58735 69.837554,390.95520 86.550690,443.02292 C 122.48756,554.97984 127.82104,571.02692 130.34246,574.78128 C 131.61756,576.67988 134.93291,579.36022 137.70990,580.73757 L 142.75899,583.24187 L 139.49869,578.83412 C 134.19618,571.66540 126.31876,553.82287 121.25497,537.51164 C 115.45177,518.81869 113.08062,491.11169 116.87466,486.32769 C 123.16752,478.39287 142.23396,490.98520 152.47321,509.83858 C 160.93766,525.42403 177.04003,575.10787 178.14838,589.05925 C 178.43095,592.61611 177.68290,594.80143 175.79098,595.94605 C 173.42380,597.37822 174.48924,598.34799 183.09719,602.59625 C 192.95571,607.46170 195.59649,608.40265 195.59649,607.04999 z M 122.13606,456.13537 C 114.14421,453.77178 105.00292,450.75996 101.82207,449.44240 C 94.843471,446.55176 88.718299,439.52026 89.370334,435.14823 C 89.769058,432.47470 90.887691,432.01023 96.303821,432.26930 C 105.44664,432.70666 139.55763,443.82821 140.47702,446.67154 C 141.12491,448.67527 140.85397,448.69812 138.50475,446.83801 C 137.00691,445.65201 135.37347,445.07292 134.87489,445.55114 C 133.90626,446.48019 138.81949,449.42235 141.51024,449.52453 C 143.40732,449.59659 145.31981,455.87763 144.29573,458.67276 C 143.25866,461.50336 138.40883,460.94803 122.13606,456.13537 z M 137.47396,454.58581 C 137.47396,449.32795 127.31729,444.55928 104.00153,438.87014 C 95.069751,436.69074 92.862068,437.24289 94.467156,441.25477 C 95.627191,444.15426 103.05994,447.38534 119.71429,452.22993 C 132.98679,456.09078 137.47396,456.68602 137.47396,454.58581 z M 114.87074,422.53192 C 93.917741,417.20818 88.983280,415.45616 84.302330,411.67833 C 78.723390,407.17579 77.409755,399.28413 81.960407,397.60925 C 87.372970,395.61712 122.11578,403.86502 128.61709,408.68548 C 131.21023,410.60820 131.28300,410.88222 128.99775,410.11889 C 127.44378,409.59983 126.17235,409.86123 126.17235,410.69976 C 126.17235,413.04046 130.66998,416.08851 132.51235,414.99638 C 134.43873,413.85447 136.64802,420.96678 135.10889,423.35537 C 133.67553,425.57984 125.56835,425.24997 114.87074,422.53192 z M 127.76214,419.18490 C 127.70579,413.00799 124.74292,411.50369 102.77863,406.50033 C 86.390762,402.76725 82.580445,402.55878 82.580445,405.39513 C 82.580445,410.30151 93.378777,414.99285 115.05315,419.50291 C 128.46173,422.29298 127.79065,422.30978 127.76214,419.18490 z M 165.95209,577.52167 C 167.05374,574.76812 163.10613,558.29479 156.62256,538.58964 C 152.92168,527.34173 150.61446,523.09826 145.39500,517.93974 C 133.74255,506.42330 119.71429,503.73579 119.71429,513.01985 C 119.71429,519.24531 128.78134,549.35865 133.59338,559.11481 C 137.88213,567.81005 142.40495,571.73471 153.90545,576.74053 C 162.34514,580.41407 164.73294,580.56889 165.95209,577.52167 z " />
+      <path
+         style="fill:#919191"
+         id="path1340"
+         d="M 369.50001,636.30956 C 348.13040,632.23328 328.67613,620.65425 322.97752,608.61973 C 317.23911,596.50120 319.95545,582.44475 329.94970,572.54023 C 333.70019,568.82342 334.39743,567.35300 332.69328,566.75424 C 331.43664,566.31272 318.55510,561.76095 304.06765,556.63917 C 289.58019,551.51741 277.46249,547.32686 277.13942,547.32686 C 276.81636,547.32686 258.90856,561.96060 237.34433,579.84627 C 215.78009,597.73195 196.80150,612.36569 195.16968,612.36569 C 190.46539,612.36569 129.22875,582.50623 126.89005,579.07200 C 125.73003,577.36861 114.84873,545.31376 102.70937,507.83901 C 55.594030,362.39181 56.693156,366.37345 62.802641,363.27462 C 64.356607,362.48643 101.87814,349.81187 146.18382,335.10895 L 226.73961,308.37637 L 263.71431,310.69837 C 286.67927,312.14056 301.40445,313.70655 302.57717,314.83135 C 303.61564,315.82740 305.34556,325.40743 306.42143,336.12030 C 307.49729,346.83319 308.65912,355.86836 309.00331,356.19847 C 309.34748,356.52858 342.63918,360.64272 382.98485,365.34100 C 517.11297,380.96031 522.58595,381.79656 531.78026,388.07596 C 542.94833,395.70337 544.79659,410.91340 539.55915,452.09144 C 535.77447,481.84750 525.60424,542.72138 520.15543,568.23220 C 514.39716,595.19186 510.42415,606.04388 503.90627,612.61560 C 498.71054,617.85430 497.11516,618.55986 490.46560,618.55986 C 486.20846,618.55986 475.08560,616.13052 464.94151,612.98515 C 447.87216,607.69247 446.87850,607.55450 445.30111,610.25799 C 441.44234,616.87148 429.18680,627.58746 421.26944,631.27078 C 405.27160,638.71329 389.92960,640.20655 369.50001,636.30956 z M 403.00521,633.22006 C 408.23120,631.91448 416.08900,628.97638 420.46700,626.69094 C 428.31467,622.59424 441.00275,610.48409 441.00275,607.09060 C 441.00275,605.53415 404.03030,591.19117 403.34297,592.48098 C 399.76121,599.20238 397.08084,602.38370 394.70087,602.73820 C 393.08342,602.97913 384.13147,600.41771 374.80764,597.04616 C 356.79258,590.53181 352.57500,586.95420 352.32244,577.97275 C 352.22287,574.43219 351.16338,573.47726 345.54258,571.86203 C 338.97257,569.97405 338.80900,570.02272 333.67818,575.39265 C 325.75051,583.68974 322.44841,593.30032 324.73130,601.43192 C 328.56945,615.10329 349.07620,628.70570 372.61184,633.19174 C 387.42211,636.01465 391.80259,636.01874 403.00521,633.22006 z M 497.02221,612.43220 C 500.91722,610.15430 502.81151,607.39974 504.73885,601.21105 C 511.87423,578.29934 536.25914,430.61214 536.25914,410.30840 C 536.25914,395.11871 529.90687,388.81519 510.65517,384.90087 C 499.61413,382.65598 280.93384,356.84809 273.22117,356.87974 C 260.04153,356.93382 259.29950,359.57784 259.75551,404.86087 C 260.24210,453.18174 263.14810,518.15604 265.22697,527.19518 C 267.25005,535.99187 271.26157,540.08493 281.73956,544.04339 C 323.08873,559.66463 463.44676,608.57737 478.13660,612.48491 C 491.40835,616.01523 490.89307,616.01667 497.02221,612.43220 z M 430.50840,572.12657 C 391.18960,560.58148 297.06265,530.22822 292.20133,527.52647 C 289.83504,526.21139 287.08848,523.42922 286.09786,521.34388 C 281.42786,511.51316 280.09405,398.63167 284.55345,390.63965 C 287.04160,386.18048 296.12949,387.01663 354.80466,397.10318 C 411.44511,406.83996 430.41008,410.70506 463.60596,419.27710 C 489.46179,425.95377 488.85410,425.01800 486.26599,454.17084 C 482.13499,500.70275 471.91384,570.54054 468.28200,577.04940 C 465.86910,581.37372 458.91446,580.46736 430.50840,572.12657 z M 196.43227,603.46156 C 192.36530,588.11839 177.42778,521.67530 174.58658,506.29047 C 167.54635,468.16836 168.73092,438.80480 178.64649,405.65180 C 180.68708,398.82904 183.20091,389.27051 184.23278,384.41060 C 187.14535,370.69308 196.84099,363.16246 235.09587,344.90525 C 251.99849,336.83845 264.73809,330.57349 263.40612,330.98311 C 262.07414,331.39274 234.19024,342.01796 201.44191,354.59473 L 141.89948,377.46157 L 128.78874,375.55689 C 121.57784,374.50932 105.65205,371.89676 93.398103,369.75121 C 81.144161,367.60566 69.286187,366.29123 67.047058,366.83025 C 63.416974,367.70411 63.099142,368.34933 64.113339,372.78583 C 65.408405,378.45091 120.80770,550.20447 126.61384,566.55512 C 130.20559,576.66983 130.90618,577.52899 139.19286,581.98149 L 147.96830,586.69660 L 142.49205,580.64450 C 133.77077,571.00614 127.75920,555.75063 118.96899,520.95028 C 111.14500,489.97517 114.62133,478.95211 129.88518,486.33618 C 143.25111,492.80213 152.79317,506.96411 162.44071,534.65400 C 170.94646,559.06677 178.71665,589.35046 177.35073,592.76456 C 176.74756,594.27218 174.47027,595.36334 171.83306,595.40835 C 168.15842,595.47106 169.54267,596.58262 179.45134,601.52588 C 194.45384,609.01036 198.01054,609.41581 196.43227,603.46156 z M 133.43767,458.86572 C 111.34064,454.02457 94.893131,446.84451 91.504974,440.56026 C 88.969987,435.85845 89.637540,431.18529 92.843901,431.18721 C 98.924661,431.19086 138.48982,443.35464 132.93876,443.51385 C 131.74231,443.54816 131.33184,444.36053 131.99272,445.38616 C 132.77630,446.60220 132.28193,446.87464 130.48907,446.21477 C 124.61802,444.05388 100.90787,437.54203 97.261151,437.08889 C 92.151283,436.45396 91.251973,439.44925 95.431224,443.18371 C 98.770391,446.16749 129.16847,456.05290 134.82358,455.99403 C 137.20448,455.96925 137.61716,455.17233 136.82221,452.13441 C 135.91788,448.67855 136.17577,448.43213 139.47259,449.60186 C 142.07546,450.52539 143.12475,452.14436 143.12475,455.23688 C 143.12475,460.34141 142.03559,460.74940 133.43767,458.86572 z M 109.01786,420.43381 C 99.138896,418.00432 89.549608,415.24325 87.708332,414.29810 C 80.341925,410.51680 76.498083,399.61969 81.837482,397.65448 C 84.983759,396.49648 101.13340,399.34075 115.20844,403.53176 C 124.17429,406.20145 125.67372,407.10889 123.91171,408.79891 C 122.14969,410.48893 119.17088,410.19753 106.62160,407.10755 C 89.614861,402.92002 82.568465,402.37442 82.605168,405.24801 C 82.674295,410.66025 89.543656,414.00741 110.44625,418.81388 C 127.72978,422.78816 128.33570,422.75989 127.39171,418.02349 C 126.61902,414.14659 128.31896,412.76804 130.22491,415.72593 C 130.78267,416.59152 131.86303,416.92983 132.62573,416.47772 C 134.36586,415.44621 136.42247,421.31681 135.06111,423.42953 C 133.52458,425.81410 128.58526,425.24593 109.01786,420.43381 z M 166.92093,577.96216 C 168.77384,572.63056 155.04249,528.65062 149.20682,521.22590 C 143.91486,514.49293 131.63910,507.06474 125.80423,507.06474 C 118.36692,507.06474 117.86622,511.61212 123.20082,530.70933 C 132.06304,562.43491 135.32816,567.78735 150.39007,575.27998 C 159.92538,580.02338 165.86941,580.98781 166.92093,577.96216 z " />
+      <path
+         style="fill:#707071"
+         id="path1338"
+         d="M 373.43663,636.90133 C 353.82564,634.20899 333.14475,623.62928 325.31777,612.28521 C 317.25652,600.60159 318.81300,584.45232 329.04755,573.58680 L 334.77818,567.50285 L 330.17157,565.79200 C 317.17343,560.96462 278.22986,547.32686 277.44309,547.32686 C 276.94437,547.32686 259.28250,561.63071 238.19450,579.11320 C 217.10648,596.59569 198.25394,611.28439 196.29996,611.75477 C 193.81769,612.35232 182.84021,607.79087 159.86557,596.61526 L 126.98385,580.62055 L 123.45228,570.55501 C 110.70412,534.22080 59.977239,373.53068 59.977239,369.48192 C 59.977239,363.49348 53.296525,366.25743 126.17235,342.09558 C 157.69575,331.64405 193.29580,319.80123 205.28358,315.77822 L 227.07953,308.46364 L 264.05636,310.90705 C 284.39362,312.25093 301.73554,314.02412 302.59396,314.84747 C 303.45238,315.67081 305.11444,325.18576 306.28742,335.99179 C 307.46042,346.79782 308.73296,355.93917 309.11533,356.30591 C 309.49769,356.67265 348.22880,361.46795 395.18445,366.96213 C 521.08597,381.69361 521.45098,381.75061 531.60550,388.26606 C 540.35158,393.87780 542.99873,403.25658 541.97136,424.99194 C 540.53626,455.35370 523.50329,559.63885 515.20607,588.86375 C 506.50585,619.50808 498.23810,623.52234 465.38338,613.05432 C 447.78672,607.44776 447.00650,607.33512 445.35652,610.16302 C 444.41224,611.78140 440.49209,616.33304 436.64507,620.27775 C 428.16225,628.97601 415.00832,634.95898 399.70237,637.08087 C 387.12606,638.82435 387.46041,638.82664 373.43663,636.90133 z M 400.96404,633.87873 C 417.18010,630.62798 432.22782,621.34873 439.54202,610.08941 L 442.52966,605.49029 L 423.72108,598.86246 C 402.94374,591.54086 402.27768,591.39563 402.20068,594.17030 C 402.12480,596.90487 396.48370,603.07442 394.05925,603.07442 C 392.94452,603.07442 384.22699,600.20489 374.68696,596.69769 L 357.34145,590.32095 L 354.34517,581.74721 C 351.72055,574.23700 350.61285,572.92904 345.41541,571.20317 C 339.52434,569.24698 339.43587,569.28085 333.02871,575.94777 C 316.94483,592.68373 322.47032,611.94015 346.92765,624.38577 C 365.28575,633.72769 384.70203,637.13868 400.96404,633.87873 z M 501.05632,609.34154 C 503.45035,606.82232 506.92992,600.03854 508.78868,594.26646 C 516.00831,571.84718 535.71562,455.92241 537.35785,426.21357 C 538.91201,398.09764 534.71332,390.73763 514.21321,385.64258 C 503.53314,382.98819 285.18553,356.85603 273.68673,356.85603 C 258.36001,356.85603 257.52842,362.02752 260.11552,441.25164 C 262.91176,526.87977 263.90776,534.23627 273.51932,540.25203 C 281.13974,545.02158 470.06132,611.83229 483.18253,614.39787 C 490.26714,615.78312 496.65100,613.97718 501.05632,609.34154 z M 455.53339,575.07232 C 443.09843,573.13597 304.20291,530.58392 293.90939,525.55718 C 286.87419,522.12160 284.93491,517.76488 283.61012,502.41910 C 281.86252,482.17574 282.28503,402.90279 284.16492,398.32281 C 285.11653,396.00443 287.55551,393.71261 289.58488,393.22989 C 293.90869,392.20137 394.52194,409.99541 430.17678,418.09437 C 461.33773,425.17254 481.11877,430.61039 483.97427,432.88339 C 485.39346,434.01310 486.20898,437.84311 486.20862,443.37692 C 486.20749,461.25447 472.16775,567.58595 469.20029,572.19119 C 467.27710,575.17583 462.57027,576.16808 455.53339,575.07232 z M 262.12719,552.89428 C 270.61670,545.80999 271.11021,545.04809 268.39209,543.22205 C 259.56234,537.29015 257.49358,517.88317 255.86820,425.73515 C 254.91425,371.65250 255.05940,366.39519 257.65107,361.15681 C 261.64431,353.08552 267.14444,351.67340 286.99971,353.62173 C 295.70670,354.47612 303.03435,354.97974 303.28337,354.74089 C 304.17239,353.88821 300.06497,319.91088 298.84376,318.01568 C 297.88623,316.52966 294.95417,316.98719 286.15313,319.99600 C 279.85815,322.14805 274.70772,323.67891 274.70772,323.39791 C 274.70772,323.11690 276.70568,321.78501 279.14764,320.43815 C 283.39100,318.09773 283.01577,318.03041 270.67143,318.91743 C 263.56757,319.42788 239.12996,322.23785 216.36564,325.16181 L 174.97598,330.47809 L 128.37458,345.85765 C 68.084825,365.75469 63.206266,367.54832 63.206266,369.81702 C 63.206266,372.41334 125.34112,565.23696 128.51035,572.47573 C 130.54148,577.11500 133.05157,579.23696 141.12176,583.13701 L 151.19733,588.00619 L 144.58969,581.84160 C 138.43924,576.10357 127.65803,555.67387 127.86238,550.14447 C 127.90391,549.02063 129.32989,551.52010 131.03120,555.69885 C 134.98258,565.40416 141.04195,571.55087 151.19733,576.15564 C 159.70382,580.01278 165.70673,580.83629 167.29937,578.36463 C 168.32138,576.77857 163.96379,559.06802 157.53656,538.68570 C 154.83947,530.13255 151.75241,524.11303 147.78075,519.66263 C 138.11790,508.83505 123.48909,503.63724 119.91561,509.76178 C 117.56219,513.79526 116.50907,511.66000 115.44815,500.70383 C 114.62242,492.17648 114.94961,490.26866 117.80972,486.93367 L 121.12983,483.06231 L 129.80814,487.35949 C 138.80065,491.81225 147.07347,500.70158 153.33755,512.64239 C 160.96709,527.18606 175.78648,575.36548 176.62837,588.36326 L 177.02957,594.55744 L 170.57151,594.34691 C 164.40976,594.14605 164.81488,594.47431 179.40119,601.50118 L 194.68894,608.86596 L 223.80035,584.72515 C 239.81163,571.44770 257.05871,557.12382 262.12719,552.89428 z M 118.22723,517.25931 C 118.15713,515.62690 118.53872,514.71228 119.07521,515.22684 C 119.61170,515.74142 119.66906,517.07703 119.20267,518.19489 C 118.68727,519.43021 118.30471,519.06328 118.22723,517.25931 z M 121.04641,455.21026 C 107.44959,451.21032 93.882051,445.80904 93.882051,444.39604 C 93.882051,443.90042 95.880011,444.47348 98.321966,445.66950 C 104.33964,448.61682 129.85520,455.96281 134.07478,455.96281 C 136.09033,455.96281 137.47396,454.97108 137.47396,453.52645 C 137.47396,449.73701 143.04745,451.60340 143.64068,455.59149 C 144.08854,458.60242 143.44970,459.04642 138.79713,458.95771 C 135.84943,458.90152 127.86160,457.21517 121.04641,455.21026 z M 110.02720,439.65532 C 94.411114,435.01982 91.637887,434.90365 92.735919,438.93096 C 93.200668,440.63554 92.922139,441.63968 92.116968,441.16238 C 91.311796,440.68509 90.653018,438.23190 90.653018,435.71084 C 90.653018,430.47783 90.485521,430.47316 110.83446,436.27335 C 117.05034,438.04510 122.65481,439.37575 123.28884,439.23036 C 123.92288,439.08495 124.02678,440.00288 123.51974,441.27022 C 123.01270,442.53755 122.49395,443.50140 122.36695,443.41209 C 122.23997,443.32279 116.68708,441.63224 110.02720,439.65532 z M 125.36509,424.02668 C 114.78241,421.86231 95.534895,416.69627 96.085625,416.16804 C 96.443953,415.82436 102.57294,416.97229 109.70560,418.71900 C 125.84537,422.67147 127.78686,422.68349 127.78686,418.83096 C 127.78686,416.11224 128.24869,415.96889 131.88610,417.55849 C 139.67995,420.96450 134.67348,425.93042 125.36509,424.02668 z M 89.038504,414.15213 C 87.706529,413.32651 87.343266,412.65102 88.231248,412.65102 C 89.119229,412.65102 90.935562,413.32651 92.267538,414.15213 C 93.599513,414.97775 93.962776,415.65324 93.074794,415.65324 C 92.186813,415.65324 90.370480,414.97775 89.038504,414.15213 z M 80.278207,405.17369 C 79.569480,403.06069 79.851864,400.72849 80.973359,399.43239 C 83.020189,397.06688 85.374118,397.26091 104.82111,401.39820 C 114.18715,403.39079 116.15014,404.28280 114.50820,405.80016 C 112.87731,407.30727 109.71370,407.12592 99.299394,404.92833 C 85.909060,402.10273 83.678317,402.29672 82.268197,406.40942 C 81.687067,408.10431 81.149115,407.77026 80.278207,405.17369 z " />
+      <path
+         style="fill:#2b2bb0"
+         id="path1336"
+         d="M 363.94924,634.83727 C 336.84825,627.58513 319.85912,612.02909 319.95860,594.55744 C 319.99283,588.54647 325.40898,577.13267 330.78959,571.73258 C 333.11446,569.39929 334.70632,567.25964 334.32707,566.97782 C 332.19976,565.39696 277.82625,547.11450 276.58616,547.56310 C 275.76810,547.85902 258.29277,562.03803 237.75207,579.07200 C 217.21137,596.10598 198.87980,610.70636 197.01523,611.51728 C 194.24554,612.72187 187.54978,610.02957 160.42846,596.80612 L 127.23182,580.62055 L 124.20787,572.10356 C 113.89413,543.05483 59.977239,372.67440 59.977239,369.13112 C 59.977239,365.30519 61.019605,364.44505 69.260700,361.47060 C 82.491400,356.69525 217.93855,311.82724 224.33658,310.10041 C 230.12197,308.53892 300.36932,312.81015 302.56811,314.85710 C 303.23960,315.48222 304.65411,325.14964 305.71146,336.34026 L 307.63393,356.68684 L 313.37039,357.56185 C 316.52546,358.04310 360.74007,363.30773 411.62509,369.26102 C 462.51011,375.21431 509.20823,381.19011 515.39868,382.54057 C 526.65915,384.99706 534.57954,389.66602 538.05630,395.89694 C 541.41795,401.92156 542.57686,417.68541 540.92901,434.97214 C 537.48816,471.06802 521.69782,564.48847 515.13301,587.58899 C 505.85778,620.22705 499.04050,623.42097 462.98974,612.01824 L 447.03040,606.97036 L 444.42020,610.81553 C 438.35744,619.74682 430.30701,626.58483 420.27979,631.32035 C 410.31062,636.02845 408.33965,636.39256 390.98863,636.73149 C 378.54999,636.97447 369.59036,636.34682 363.94924,634.83727 z M 414.18728,630.45040 C 419.14216,628.27468 425.66674,624.68712 428.68635,622.47806 C 434.42582,618.27923 443.66932,606.66438 442.30943,605.36007 C 441.87629,604.94463 432.87464,601.55756 422.30577,597.83327 L 403.08965,591.06182 L 401.30490,595.13304 C 397.58410,603.62058 396.16616,603.68726 376.23320,596.31198 L 357.85524,589.51208 L 357.37664,581.84222 L 356.89804,574.17236 L 347.95572,571.46873 C 339.36948,568.87275 338.88283,568.87780 335.73458,571.59573 C 329.88874,576.64247 323.17436,589.56271 323.15831,595.79575 C 323.13808,603.65218 326.35675,609.17780 335.40134,616.81386 C 356.15829,634.33828 391.43012,640.44326 414.18728,630.45040 z M 500.58749,610.48464 C 507.33549,603.86468 512.21841,588.64267 519.25419,552.29323 C 532.23689,485.21985 540.69456,422.15131 538.54787,408.42108 C 537.27628,400.28796 532.31109,392.81731 525.75930,389.17923 C 523.09837,387.70168 515.10899,385.39980 508.00512,384.06395 C 489.63963,380.61041 285.74876,356.85603 274.47137,356.85603 C 260.89873,356.85603 259.54184,359.32737 258.78121,385.43317 C 258.07642,409.62241 261.39592,504.65200 263.51253,520.87958 C 265.93901,539.48307 265.60689,539.23743 308.76751,554.35202 C 321.72852,558.89088 339.89181,565.50681 349.13038,569.05410 C 358.36897,572.60138 381.18498,580.72973 399.83263,587.11709 C 493.50000,619.20085 492.04640,618.86373 500.58749,610.48464 z M 455.53339,575.07458 C 446.84751,573.72474 385.78215,555.41845 332.02300,538.04841 C 305.13547,529.36082 292.06645,524.37706 289.32759,521.76690 C 286.27880,518.86138 285.10354,515.61505 284.16332,507.50226 C 282.36613,491.99457 282.50844,402.65121 284.33770,398.03649 C 285.19428,395.87559 287.55551,393.71261 289.58488,393.22989 C 297.14422,391.43175 429.61280,416.75990 468.23274,427.38755 C 487.27648,432.62811 486.83202,432.03781 485.51748,450.34394 C 483.46209,478.96735 473.32793,555.25265 469.91149,567.81872 C 467.97040,574.95828 464.86595,576.52493 455.53339,575.07458 z M 235.70951,576.03748 L 273.07066,545.12918 L 268.21143,540.32057 C 265.53884,537.67584 262.68089,533.26699 261.86044,530.52310 C 259.68643,523.25253 256.82774,458.78736 256.45965,408.73223 C 256.03443,350.90863 255.15765,352.44627 287.41102,354.45127 L 304.75084,355.52919 L 302.86418,337.51022 C 301.82651,327.59978 300.19994,318.74545 299.24957,317.83391 C 298.29922,316.92239 282.26882,315.13113 263.62646,313.85335 L 229.73126,311.53011 L 149.29417,338.23198 C 105.05376,352.91801 67.585640,365.57982 66.031667,366.36933 C 64.477694,367.15884 63.206266,369.15567 63.206266,370.80673 C 63.206266,373.56779 109.05843,518.04665 122.42155,557.39240 C 125.60346,566.76108 129.32091,575.65237 130.68253,577.15082 C 134.65294,581.52017 193.85348,609.50078 196.24795,608.13971 C 197.40319,607.48305 215.16089,593.03705 235.70951,576.03748 z " />
+      <path
+         style="fill:#1919a4"
+         id="path1334"
+         d="M 363.94924,634.83727 C 336.84825,627.58513 319.85912,612.02909 319.95860,594.55744 C 319.99283,588.54647 325.40898,577.13267 330.78959,571.73258 C 333.11446,569.39929 334.70632,567.25964 334.32707,566.97782 C 332.19976,565.39696 277.82625,547.11450 276.58616,547.56310 C 275.76810,547.85902 258.29277,562.03803 237.75207,579.07200 C 217.21137,596.10598 198.87980,610.70636 197.01523,611.51728 C 194.24554,612.72187 187.54978,610.02957 160.42846,596.80612 L 127.23182,580.62055 L 124.20787,572.10356 C 113.89413,543.05483 59.977239,372.67440 59.977239,369.13112 C 59.977239,365.30519 61.019605,364.44505 69.260700,361.47060 C 82.491400,356.69525 217.93855,311.82724 224.33658,310.10041 C 230.12197,308.53892 300.36932,312.81015 302.56811,314.85710 C 303.23960,315.48222 304.65411,325.14964 305.71146,336.34026 L 307.63393,356.68684 L 313.37039,357.56185 C 316.52546,358.04310 360.74007,363.30773 411.62509,369.26102 C 462.51011,375.21431 509.20823,381.19011 515.39868,382.54057 C 526.65915,384.99706 534.57954,389.66602 538.05630,395.89694 C 541.41795,401.92156 542.57686,417.68541 540.92901,434.97214 C 537.48816,471.06802 521.69782,564.48847 515.13301,587.58899 C 505.85778,620.22705 499.04050,623.42097 462.98974,612.01824 L 447.03040,606.97036 L 444.42020,610.81553 C 438.35744,619.74682 430.30701,626.58483 420.27979,631.32035 C 410.31062,636.02845 408.33965,636.39256 390.98863,636.73149 C 378.54999,636.97447 369.59036,636.34682 363.94924,634.83727 z M 414.18728,630.45040 C 419.14216,628.27468 425.66674,624.68712 428.68635,622.47806 C 434.42582,618.27923 443.66932,606.66438 442.30943,605.36007 C 441.87629,604.94463 432.87464,601.55756 422.30577,597.83327 L 403.08965,591.06182 L 401.30490,595.13304 C 397.58410,603.62058 396.16616,603.68726 376.23320,596.31198 L 357.85524,589.51208 L 357.37664,581.84222 L 356.89804,574.17236 L 347.95572,571.46873 C 339.36948,568.87275 338.88283,568.87780 335.73458,571.59573 C 329.88874,576.64247 323.17436,589.56271 323.15831,595.79575 C 323.13808,603.65218 326.35675,609.17780 335.40134,616.81386 C 356.15829,634.33828 391.43012,640.44326 414.18728,630.45040 z M 500.58749,610.48464 C 507.33549,603.86468 512.21841,588.64267 519.25419,552.29323 C 532.23689,485.21985 540.69456,422.15131 538.54787,408.42108 C 537.27628,400.28796 532.31109,392.81731 525.75930,389.17923 C 523.09837,387.70168 515.10899,385.39980 508.00512,384.06395 C 489.63963,380.61041 285.74876,356.85603 274.47137,356.85603 C 260.89873,356.85603 259.54184,359.32737 258.78121,385.43317 C 258.07642,409.62241 261.39592,504.65200 263.51253,520.87958 C 265.93901,539.48307 265.60689,539.23743 308.76751,554.35202 C 321.72852,558.89088 339.89181,565.50681 349.13038,569.05410 C 358.36897,572.60138 381.18498,580.72973 399.83263,587.11709 C 493.50000,619.20085 492.04640,618.86373 500.58749,610.48464 z M 440.19550,559.77610 C 394.68077,548.35022 303.09882,520.94563 293.34432,515.83299 C 289.55227,513.84545 286.50092,510.91127 285.83631,508.61328 C 283.74698,501.38900 284.19633,411.86482 286.33223,409.81621 C 287.39781,408.79417 290.50781,407.95796 293.24337,407.95796 C 297.49440,407.95796 371.01886,423.68900 387.72376,428.17266 C 395.47321,430.25265 421.15694,452.06380 436.95186,469.97816 C 457.08665,492.81475 467.58713,502.63931 470.65374,501.51062 C 473.93978,500.30118 477.16629,489.51192 480.55746,468.39316 C 483.13826,452.32105 484.59466,447.32554 484.59466,454.54537 C 484.59466,467.58748 472.22787,557.31320 469.83244,561.65089 C 467.73344,565.45179 461.14401,565.03495 440.19550,559.77610 z M 235.70951,576.03748 L 273.07066,545.12918 L 268.21143,540.32057 C 265.53884,537.67584 262.68089,533.26699 261.86044,530.52310 C 259.68643,523.25253 256.82774,458.78736 256.45965,408.73223 C 256.03443,350.90863 255.15765,352.44627 287.41102,354.45127 L 304.75084,355.52919 L 302.86418,337.51022 C 301.82651,327.59978 300.19994,318.74545 299.24957,317.83391 C 298.29922,316.92239 282.26882,315.13113 263.62646,313.85335 L 229.73126,311.53011 L 149.29417,338.23198 C 105.05376,352.91801 67.585640,365.57982 66.031667,366.36933 C 64.477694,367.15884 63.206266,369.15567 63.206266,370.80673 C 63.206266,373.56779 109.05843,518.04665 122.42155,557.39240 C 125.60346,566.76108 129.32091,575.65237 130.68253,577.15082 C 134.65294,581.52017 193.85348,609.50078 196.24795,608.13971 C 197.40319,607.48305 215.16089,593.03705 235.70951,576.03748 z " />
+      <path
+         style="fill:#0c0c95"
+         id="path1332"
+         d="M 363.94924,634.83727 C 336.84825,627.58513 319.85912,612.02909 319.95860,594.55744 C 319.99283,588.54647 325.40898,577.13267 330.78959,571.73258 C 333.11446,569.39929 334.70632,567.25964 334.32707,566.97782 C 332.19976,565.39696 277.82625,547.11450 276.58616,547.56310 C 275.76810,547.85902 258.29277,562.03803 237.75207,579.07200 C 217.21137,596.10598 198.87980,610.70636 197.01523,611.51728 C 194.24554,612.72187 187.54978,610.02957 160.42846,596.80612 L 127.23182,580.62055 L 124.20787,572.10356 C 113.89413,543.05483 59.977239,372.67440 59.977239,369.13112 C 59.977239,365.30519 61.019605,364.44505 69.260700,361.47060 C 82.491400,356.69525 217.93855,311.82724 224.33658,310.10041 C 230.12197,308.53892 300.36932,312.81015 302.56811,314.85710 C 303.23960,315.48222 304.65411,325.14964 305.71146,336.34026 L 307.63393,356.68684 L 313.37039,357.56185 C 316.52546,358.04310 360.74007,363.30773 411.62509,369.26102 C 462.51011,375.21431 509.20823,381.19011 515.39868,382.54057 C 526.65915,384.99706 534.57954,389.66602 538.05630,395.89694 C 541.41795,401.92156 542.57686,417.68541 540.92901,434.97214 C 537.48816,471.06802 521.69782,564.48847 515.13301,587.58899 C 505.85778,620.22705 499.04050,623.42097 462.98974,612.01824 L 447.03040,606.97036 L 444.42020,610.81553 C 438.35744,619.74682 430.30701,626.58483 420.27979,631.32035 C 410.31062,636.02845 408.33965,636.39256 390.98863,636.73149 C 378.54999,636.97447 369.59036,636.34682 363.94924,634.83727 z M 414.18728,630.45040 C 419.14216,628.27468 425.66674,624.68712 428.68635,622.47806 C 434.42582,618.27923 443.66932,606.66438 442.30943,605.36007 C 441.87629,604.94463 432.87464,601.55756 422.30577,597.83327 L 403.08965,591.06182 L 401.30490,595.13304 C 397.58410,603.62058 396.16616,603.68726 376.23320,596.31198 L 357.85524,589.51208 L 357.37664,581.84222 L 356.89804,574.17236 L 347.95572,571.46873 C 339.36948,568.87275 338.88283,568.87780 335.73458,571.59573 C 329.88874,576.64247 323.17436,589.56271 323.15831,595.79575 C 323.13808,603.65218 326.35675,609.17780 335.40134,616.81386 C 356.15829,634.33828 391.43012,640.44326 414.18728,630.45040 z M 500.58749,610.48464 C 507.33549,603.86468 512.21841,588.64267 519.25419,552.29323 C 532.23689,485.21985 540.69456,422.15131 538.54787,408.42108 C 537.27628,400.28796 532.31109,392.81731 525.75930,389.17923 C 523.09837,387.70168 515.10899,385.39980 508.00512,384.06395 C 489.63963,380.61041 285.74876,356.85603 274.47137,356.85603 C 260.89873,356.85603 259.54184,359.32737 258.78121,385.43317 C 258.07642,409.62241 261.39592,504.65200 263.51253,520.87958 C 265.93901,539.48307 265.60689,539.23743 308.76751,554.35202 C 321.72852,558.89088 339.89181,565.50681 349.13038,569.05410 C 358.36897,572.60138 381.18498,580.72973 399.83263,587.11709 C 493.50000,619.20085 492.04640,618.86373 500.58749,610.48464 z M 456.34064,558.64063 C 408.33561,548.00633 306.17148,519.28172 292.84526,512.67206 C 284.97733,508.76965 284.03023,503.24447 284.65486,464.89124 C 285.36741,421.14003 284.33714,422.44927 308.42552,434.68384 C 318.04618,439.57019 336.53114,448.01287 349.50324,453.44537 C 391.61717,471.08196 406.58593,482.26446 437.12905,518.90674 C 447.32369,531.13715 457.45516,542.26904 459.64344,543.64426 C 467.24621,548.42224 469.38704,544.09081 475.80961,510.93609 C 478.98454,494.54646 479.55303,492.81965 478.86844,501.64483 C 477.88832,514.27964 472.06248,553.85662 470.67061,557.33555 C 469.73587,559.67191 463.54232,560.23598 456.34064,558.64063 z M 480.12568,485.38513 C 480.12568,482.40418 480.45795,481.18471 480.86405,482.67517 C 481.27013,484.16565 481.27013,486.60461 480.86405,488.09508 C 480.45795,489.58555 480.12568,488.36608 480.12568,485.38513 z M 481.68037,472.22251 C 481.64747,469.66742 481.98239,468.43468 482.42465,469.48309 C 482.86690,470.53150 482.89382,472.62204 482.48447,474.12872 C 482.07512,475.63540 481.71328,474.77761 481.68037,472.22251 z M 235.70951,576.03748 L 273.07066,545.12918 L 268.21143,540.32057 C 265.53884,537.67584 262.68089,533.26699 261.86044,530.52310 C 259.68643,523.25253 256.82774,458.78736 256.45965,408.73223 C 256.03443,350.90863 255.15765,352.44627 287.41102,354.45127 L 304.75084,355.52919 L 302.86418,337.51022 C 301.82651,327.59978 300.19994,318.74545 299.24957,317.83391 C 298.29922,316.92239 282.26882,315.13113 263.62646,313.85335 L 229.73126,311.53011 L 149.29417,338.23198 C 105.05376,352.91801 67.585640,365.57982 66.031667,366.36933 C 64.477694,367.15884 63.206266,369.15567 63.206266,370.80673 C 63.206266,373.56779 109.05843,518.04665 122.42155,557.39240 C 125.60346,566.76108 129.32091,575.65237 130.68253,577.15082 C 134.65294,581.52017 193.85348,609.50078 196.24795,608.13971 C 197.40319,607.48305 215.16089,593.03705 235.70951,576.03748 z " />
+      <path
+         style="fill:#030303"
+         id="path1330"
+         d="M 363.94924,634.83727 C 336.84825,627.58513 319.85912,612.02909 319.95860,594.55744 C 319.99283,588.54647 325.40898,577.13267 330.78959,571.73258 C 333.11446,569.39929 334.70632,567.25964 334.32707,566.97782 C 332.19976,565.39696 277.82625,547.11450 276.58616,547.56310 C 275.76810,547.85902 258.29277,562.03803 237.75207,579.07200 C 217.21137,596.10598 198.87980,610.70636 197.01523,611.51728 C 194.24554,612.72187 187.54978,610.02957 160.42846,596.80612 L 127.23182,580.62055 L 124.20787,572.10356 C 113.89413,543.05483 59.977239,372.67440 59.977239,369.13112 C 59.977239,365.30519 61.019605,364.44505 69.260700,361.47060 C 82.491400,356.69525 217.93855,311.82724 224.33658,310.10041 C 230.12197,308.53892 300.36932,312.81015 302.56811,314.85710 C 303.23960,315.48222 304.65411,325.14964 305.71146,336.34026 L 307.63393,356.68684 L 313.37039,357.56185 C 316.52546,358.04310 360.74007,363.30773 411.62509,369.26102 C 462.51011,375.21431 509.20823,381.19011 515.39868,382.54057 C 526.65915,384.99706 534.57954,389.66602 538.05630,395.89694 C 541.41795,401.92156 542.57686,417.68541 540.92901,434.97214 C 537.48816,471.06802 521.69782,564.48847 515.13301,587.58899 C 505.85778,620.22705 499.04050,623.42097 462.98974,612.01824 L 447.03040,606.97036 L 444.42020,610.81553 C 438.35744,619.74682 430.30701,626.58483 420.27979,631.32035 C 410.31062,636.02845 408.33965,636.39256 390.98863,636.73149 C 378.54999,636.97447 369.59036,636.34682 363.94924,634.83727 z M 414.18728,630.45040 C 419.14216,628.27468 425.66674,624.68712 428.68635,622.47806 C 434.42582,618.27923 443.66932,606.66438 442.30943,605.36007 C 441.87629,604.94463 432.87464,601.55756 422.30577,597.83327 L 403.08965,591.06182 L 401.30490,595.13304 C 397.58410,603.62058 396.16616,603.68726 376.23320,596.31198 L 357.85524,589.51208 L 357.37664,581.84222 L 356.89804,574.17236 L 347.95572,571.46873 C 339.36948,568.87275 338.88283,568.87780 335.73458,571.59573 C 329.88874,576.64247 323.17436,589.56271 323.15831,595.79575 C 323.13808,603.65218 326.35675,609.17780 335.40134,616.81386 C 356.15829,634.33828 391.43012,640.44326 414.18728,630.45040 z M 500.58749,610.48464 C 507.33549,603.86468 512.21841,588.64267 519.25419,552.29323 C 532.23689,485.21985 540.69456,422.15131 538.54787,408.42108 C 537.27628,400.28796 532.31109,392.81731 525.75930,389.17923 C 523.09837,387.70168 515.10899,385.39980 508.00512,384.06395 C 489.63963,380.61041 285.74876,356.85603 274.47137,356.85603 C 260.89873,356.85603 259.54184,359.32737 258.78121,385.43317 C 258.07642,409.62241 261.39592,504.65200 263.51253,520.87958 C 265.93901,539.48307 265.60689,539.23743 308.76751,554.35202 C 321.72852,558.89088 339.89181,565.50681 349.13038,569.05410 C 358.36897,572.60138 381.18498,580.72973 399.83263,587.11709 C 493.50000,619.20085 492.04640,618.86373 500.58749,610.48464 z M 235.70951,576.03748 L 273.07066,545.12918 L 268.21143,540.32057 C 265.53884,537.67584 262.68089,533.26699 261.86044,530.52310 C 259.68643,523.25253 256.82774,458.78736 256.45965,408.73223 C 256.03443,350.90863 255.15765,352.44627 287.41102,354.45127 L 304.75084,355.52919 L 302.86418,337.51022 C 301.82651,327.59978 300.19994,318.74545 299.24957,317.83391 C 298.29922,316.92239 282.26882,315.13113 263.62646,313.85335 L 229.73126,311.53011 L 149.29417,338.23198 C 105.05376,352.91801 67.585640,365.57982 66.031667,366.36933 C 64.477694,367.15884 63.206266,369.15567 63.206266,370.80673 C 63.206266,373.56779 109.05843,518.04665 122.42155,557.39240 C 125.60346,566.76108 129.32091,575.65237 130.68253,577.15082 C 134.65294,581.52017 193.85348,609.50078 196.24795,608.13971 C 197.40319,607.48305 215.16089,593.03705 235.70951,576.03748 z " />
+    </g>
+    <g
+       id="g8810"
+       transform="matrix(0.252775,0.000000,0.000000,0.259878,460.5504,1627.107)">
+      <path
+         d="M 105.37590,499.56408 L 62.264953,366.13485 L 227.47681,309.43459 L 270.85338,311.77757 L 300.64063,316.93214 L 308.40381,357.70010 L 522.47417,385.47181 L 536.92211,397.77981 L 536.84352,446.16980 L 527.39300,516.58386 L 508.10193,601.99303 L 487.40506,614.76963 L 446.08992,604.11636 L 434.29641,618.76735 L 414.45526,631.47805 L 394.61412,635.28540 L 375.71016,635.34398 L 355.40042,629.31079 L 337.90226,619.99742 L 324.62147,607.40386 L 322.11843,596.68470 L 338.51933,564.69909 L 276.66449,544.89700 L 195.00328,609.09483 L 128.33717,578.63600 L 105.37590,499.56408 z "
+         id="path8812"
+         style="fill:#fcfcfd" />
+      <path
+         d="M 366.29132,636.36125 C 352.72087,633.06944 340.57499,627.11098 331.52240,619.30449 C 321.49709,610.65919 319.36015,605.75294 320.18807,593.28186 C 320.74157,584.94442 321.75044,582.24288 326.85569,575.42709 L 332.87114,567.39619 L 328.41078,565.74038 C 325.95759,564.82968 313.45556,560.35628 300.62848,555.79947 L 277.30655,547.51438 L 266.55634,556.32474 C 260.64373,561.17044 242.98250,575.76199 227.30919,588.75040 C 206.43848,606.04587 197.69703,612.36569 194.64503,612.36569 C 192.35306,612.36569 176.05439,605.35475 158.42576,596.78582 L 126.37371,581.20596 L 120.69086,564.65355 C 108.83895,530.13250 58.362719,371.97699 58.362719,369.36282 C 58.362719,367.85828 59.634155,365.54980 61.188121,364.23285 C 62.742094,362.91591 99.933978,349.91628 143.83676,335.34480 L 223.65998,308.85118 L 238.28588,308.97620 C 264.52814,309.20052 302.16884,312.56206 303.61779,314.81071 C 304.34668,315.94187 305.42109,322.55480 306.00540,329.50611 C 306.58970,336.45742 307.48989,345.31709 308.00582,349.19427 L 308.94385,356.24368 L 339.05033,359.73255 C 457.39954,373.44735 512.55345,380.39695 520.09401,382.54477 C 530.59220,385.53500 538.45599,392.52463 540.92726,401.06217 C 544.68097,414.03019 542.77569,437.45698 532.87293,500.09629 C 526.43807,540.79953 516.35838,589.32948 512.03968,600.40059 C 510.14245,605.26419 506.40469,611.33967 503.73353,613.90167 C 496.83619,620.51720 486.41739,620.30905 463.97887,613.10745 C 454.63522,610.10864 446.85916,607.84389 446.69873,608.07469 C 446.53830,608.30548 444.78564,611.08097 442.80394,614.24242 C 438.22301,621.55047 429.30582,628.32671 417.37635,633.56505 C 409.59749,636.98079 405.24874,637.76098 391.80905,638.15188 C 381.37865,638.45525 372.29649,637.81793 366.29132,636.36125 z M 413.21952,630.22440 C 424.36324,625.78369 420.96774,624.07628 398.89564,623.02177 C 382.34967,622.23125 376.16233,621.19983 363.50604,617.12232 C 355.07020,614.40453 343.69090,609.78351 338.21873,606.85338 C 325.88851,600.25106 323.90702,600.10190 327.09566,606.01608 C 332.38808,615.83230 350.09523,626.84235 368.34958,631.66718 C 380.05561,634.76120 403.74632,633.99944 413.21952,630.22440 z M 488.37317,606.26551 C 491.16184,605.24858 493.32660,602.33675 495.56838,596.58711 C 503.16902,577.09335 522.80309,466.40434 528.32024,411.94530 C 530.46987,390.72652 530.61974,391.03185 516.07769,387.00197 C 507.11354,384.51782 286.42663,358.41386 274.34130,358.40816 C 260.94474,358.40186 261.10775,357.57651 262.31599,419.28783 C 262.88602,448.40190 264.11893,484.06886 265.05580,498.54774 C 266.94699,527.77537 268.77440,533.68963 277.38084,538.43688 C 282.85359,541.45561 307.69873,550.31451 396.60359,580.94760 C 475.12701,608.00364 479.95454,609.33548 488.37317,606.26551 z M 453.03868,584.46710 C 436.14179,580.10863 299.89191,535.66353 291.54096,531.78610 C 287.58048,529.94720 283.44423,526.94263 282.34930,525.10928 C 279.78073,520.80845 279.46377,390.55605 282.00985,385.61297 C 283.06108,383.57209 285.54648,382.23123 288.84895,381.92336 C 293.56837,381.48339 341.63001,388.30586 434.54469,402.60525 C 487.04801,410.68539 489.43820,412.04043 489.43820,433.72527 C 489.43820,460.63141 475.60052,574.29202 471.39041,581.96697 C 469.64024,585.15749 466.88437,587.61609 465.22048,587.47135 C 464.77649,587.43271 459.29467,586.08082 453.03868,584.46710 z M 164.30963,528.58534 C 161.24419,517.20463 159.12602,507.28803 159.60256,506.54846 C 161.50366,503.59814 167.32030,512.22986 171.63293,524.40118 C 177.87051,542.00515 176.33108,534.58771 161.44649,475.31960 C 154.38794,447.21353 146.32261,414.46184 143.52356,402.53806 C 140.72449,390.61427 138.39989,380.77011 138.35778,380.66213 C 138.04295,379.85488 65.679566,367.96103 64.681746,368.55252 C 63.216388,369.42116 64.998726,375.70811 76.511611,410.28077 C 81.049532,423.90795 85.041109,433.88852 85.381767,432.45978 C 86.150142,429.23727 91.779172,429.83083 112.44897,435.31395 C 134.17943,441.07844 140.20626,444.01884 143.38163,450.40558 C 145.62829,454.92436 145.76286,456.59850 144.15199,459.98950 C 142.35799,463.76602 141.65014,464.01743 135.39715,463.09894 C 112.34161,459.71238 107.69180,460.18210 114.06349,465.25406 C 115.66677,466.53029 116.48526,469.99624 116.48526,475.50920 C 116.48526,483.78853 116.51413,483.83658 121.48843,483.83658 C 137.98993,483.83658 154.83897,504.92057 165.11851,538.43294 C 170.91591,557.33306 170.41705,551.25964 164.30963,528.58534 z M 105.77740,421.97958 C 95.892151,419.54857 85.975808,416.41051 83.741089,415.00609 C 78.023163,411.41265 75.289306,404.60174 77.776007,400.14515 C 79.558272,396.95104 80.490102,396.76508 90.423693,397.62117 C 96.321719,398.12945 107.08535,400.32463 114.34287,402.49934 C 129.68457,407.09647 135.85944,412.47453 135.85944,421.23940 C 135.85944,426.34525 135.63647,426.53787 129.80501,426.47004 C 126.47507,426.43131 115.66265,424.41060 105.77740,421.97958 z M 127.78686,419.47023 C 127.78686,413.86287 119.40860,410.05620 97.409160,405.66814 C 83.175277,402.82901 84.194958,402.84970 84.194958,405.39997 C 84.194958,407.94253 92.091628,411.40983 109.21994,416.38801 C 122.21566,420.16511 127.78686,421.08995 127.78686,419.47023 z M 131.01590,412.60359 C 131.01590,411.75189 130.24648,411.05504 129.30610,411.05504 C 128.36571,411.05504 128.04531,411.75189 128.59412,412.60359 C 129.87272,414.58786 131.01590,414.58786 131.01590,412.60359 z M 154.29014,532.93532 C 152.88842,528.98960 148.84334,522.77404 145.30107,519.12296 C 138.50045,512.11345 138.57547,513.45037 145.50138,522.69275 C 147.79396,525.75211 151.03526,531.15976 152.70429,534.70975 C 156.64607,543.09388 157.54260,542.09074 154.29014,532.93532 z M 135.85944,452.14592 C 135.85944,448.97728 131.39000,446.99728 112.62504,441.85288 C 93.828797,436.69988 92.283499,436.51071 95.691941,439.77987 C 97.767657,441.77077 130.69672,454.07326 134.64855,454.33428 C 135.31454,454.37827 135.85944,453.39350 135.85944,452.14592 z "
+         id="path8814"
+         style="fill:#d2d2d2" />
+      <path
+         d="M 375.61490,637.61072 C 367.25780,636.54760 353.45472,632.37189 345.47131,628.49169 C 318.82423,615.54035 312.33815,593.70859 328.93647,572.83628 C 331.32571,569.83183 332.99760,567.17601 332.65177,566.93449 C 332.30594,566.69296 319.74051,562.19873 304.72856,556.94735 L 277.43413,547.39934 L 264.36569,557.97671 C 257.17806,563.79426 239.34337,578.41169 224.73307,590.45988 C 210.12278,602.50808 196.77418,612.36569 195.06953,612.36569 C 192.12448,612.36569 142.33069,589.39109 131.59715,583.07986 C 125.55362,579.52632 125.18550,578.51388 89.037432,466.02833 C 75.626143,424.29509 63.601162,387.06399 62.315254,383.29254 C 59.051576,373.72050 59.262211,365.06993 62.802641,363.27640 C 64.356607,362.48918 101.90268,349.79098 146.23836,335.05818 L 226.84869,308.27127 L 263.85944,310.54276 C 295.39558,312.47826 301.17349,313.21212 302.92069,315.50392 C 304.04847,316.98323 305.45178,323.93104 306.03918,330.94349 C 306.62655,337.95594 307.51621,346.57745 308.01621,350.10239 L 308.92528,356.51138 L 323.70318,358.23818 C 459.45631,374.10103 511.25673,380.58259 519.06058,382.68238 C 536.46445,387.36529 542.69054,396.69348 542.70819,418.11224 C 542.73105,445.85080 522.85971,567.16062 513.56527,596.02292 C 511.32719,602.97287 508.36053,608.12455 504.15386,612.36598 C 498.69693,617.86801 497.16797,618.55986 490.46560,618.55986 C 486.20846,618.55986 475.08560,616.13052 464.94151,612.98515 C 448.05457,607.74904 446.86410,607.57918 445.34159,610.18861 C 442.14449,615.66808 430.57189,626.59009 424.12137,630.21589 C 412.34920,636.83293 392.85843,639.80431 375.61490,637.61072 z M 415.17052,629.19693 C 420.05442,627.01912 426.48997,623.03661 429.47173,620.34691 C 433.96116,616.29722 434.70739,614.72505 433.81269,611.20117 C 432.23713,604.99574 426.98334,600.88671 415.52701,596.89980 L 405.38917,593.37175 L 400.04217,599.30456 L 394.69517,605.23737 L 377.47158,598.73600 C 367.99859,595.16024 359.68944,592.23462 359.00679,592.23462 C 356.04355,592.23462 352.20443,585.55107 352.20443,580.39237 L 352.20443,574.77967 L 344.91130,575.73847 C 330.29494,577.65999 323.83647,584.37477 324.18674,597.28553 C 324.52301,609.68139 340.19579,623.34159 362.03961,630.27764 C 378.67991,635.56142 401.95958,635.08789 415.17052,629.19693 z M 494.37117,612.31979 C 496.07958,611.44283 498.53395,608.76558 499.82534,606.37035 C 506.01144,594.89657 532.22212,439.78743 533.43935,407.44988 C 533.82007,397.33555 533.61640,396.68664 528.75032,392.51064 C 525.31498,389.56248 519.97203,387.33976 512.29485,385.66495 C 501.25604,383.25683 281.66597,356.86535 272.61619,356.85913 C 269.90068,356.85726 266.42423,358.46609 263.88868,360.89803 L 259.67449,364.94004 L 260.70834,427.87253 C 261.85957,497.94787 263.67230,526.39729 267.43025,533.36741 C 270.60427,539.25452 273.96795,540.86341 310.18378,553.81708 C 355.42458,569.99881 475.41301,611.90825 479.00929,612.78430 C 484.62646,614.15266 491.18698,613.95427 494.37117,612.31979 z M 453.11162,581.87290 C 451.33565,581.44275 414.78037,569.95953 371.87767,556.35467 C 311.52006,537.21467 292.75097,530.65718 288.91430,527.36919 C 284.02873,523.18232 283.93648,522.82553 282.63670,503.09110 C 281.01874,478.52586 280.81217,427.25128 282.23570,403.55469 C 283.18806,387.70132 283.62324,385.84358 286.69953,384.49920 C 290.30113,382.92526 317.94753,386.73627 412.50776,401.84169 C 479.33287,412.51661 482.53589,413.38915 486.22089,421.92199 C 489.97659,430.61855 485.72516,481.36297 475.67141,547.83917 C 470.95577,579.01935 469.74467,582.07753 461.97998,582.41204 C 458.87834,582.54567 454.88758,582.30305 453.11162,581.87290 z M 195.59649,607.04999 C 195.59649,606.68144 192.71401,595.00929 189.19098,581.11188 C 174.83044,524.46344 145.47821,407.50696 143.01570,397.12254 C 141.56621,391.01001 140.71539,384.32739 141.12499,382.27225 C 141.72075,379.28307 141.18787,378.52932 138.46095,378.50407 C 136.58613,378.48671 119.62499,375.82554 100.76953,372.59035 C 81.914071,369.35517 65.649031,367.20486 64.624986,367.81189 C 63.316822,368.58735 69.837554,390.95520 86.550690,443.02292 C 122.48756,554.97984 127.82104,571.02692 130.34246,574.78128 C 131.61756,576.67988 134.93291,579.36022 137.70990,580.73757 L 142.75899,583.24187 L 139.49869,578.83412 C 134.19618,571.66540 126.31876,553.82287 121.25497,537.51164 C 115.45177,518.81869 113.08062,491.11169 116.87466,486.32769 C 123.16752,478.39287 142.23396,490.98520 152.47321,509.83858 C 160.93766,525.42403 177.04003,575.10787 178.14838,589.05925 C 178.43095,592.61611 177.68290,594.80143 175.79098,595.94605 C 173.42380,597.37822 174.48924,598.34799 183.09719,602.59625 C 192.95571,607.46170 195.59649,608.40265 195.59649,607.04999 z M 122.13606,456.13537 C 114.14421,453.77178 105.00292,450.75996 101.82207,449.44240 C 94.843471,446.55176 88.718299,439.52026 89.370334,435.14823 C 89.769058,432.47470 90.887691,432.01023 96.303821,432.26930 C 105.44664,432.70666 139.55763,443.82821 140.47702,446.67154 C 141.12491,448.67527 140.85397,448.69812 138.50475,446.83801 C 137.00691,445.65201 135.37347,445.07292 134.87489,445.55114 C 133.90626,446.48019 138.81949,449.42235 141.51024,449.52453 C 143.40732,449.59659 145.31981,455.87763 144.29573,458.67276 C 143.25866,461.50336 138.40883,460.94803 122.13606,456.13537 z M 137.47396,454.58581 C 137.47396,449.32795 127.31729,444.55928 104.00153,438.87014 C 95.069751,436.69074 92.862068,437.24289 94.467156,441.25477 C 95.627191,444.15426 103.05994,447.38534 119.71429,452.22993 C 132.98679,456.09078 137.47396,456.68602 137.47396,454.58581 z M 114.87074,422.53192 C 93.917741,417.20818 88.983280,415.45616 84.302330,411.67833 C 78.723390,407.17579 77.409755,399.28413 81.960407,397.60925 C 87.372970,395.61712 122.11578,403.86502 128.61709,408.68548 C 131.21023,410.60820 131.28300,410.88222 128.99775,410.11889 C 127.44378,409.59983 126.17235,409.86123 126.17235,410.69976 C 126.17235,413.04046 130.66998,416.08851 132.51235,414.99638 C 134.43873,413.85447 136.64802,420.96678 135.10889,423.35537 C 133.67553,425.57984 125.56835,425.24997 114.87074,422.53192 z M 127.76214,419.18490 C 127.70579,413.00799 124.74292,411.50369 102.77863,406.50033 C 86.390762,402.76725 82.580445,402.55878 82.580445,405.39513 C 82.580445,410.30151 93.378777,414.99285 115.05315,419.50291 C 128.46173,422.29298 127.79065,422.30978 127.76214,419.18490 z M 165.95209,577.52167 C 167.05374,574.76812 163.10613,558.29479 156.62256,538.58964 C 152.92168,527.34173 150.61446,523.09826 145.39500,517.93974 C 133.74255,506.42330 119.71429,503.73579 119.71429,513.01985 C 119.71429,519.24531 128.78134,549.35865 133.59338,559.11481 C 137.88213,567.81005 142.40495,571.73471 153.90545,576.74053 C 162.34514,580.41407 164.73294,580.56889 165.95209,577.52167 z "
+         id="path8816"
+         style="fill:#aaaaaa" />
+      <path
+         d="M 369.50001,636.30956 C 348.13040,632.23328 328.67613,620.65425 322.97752,608.61973 C 317.23911,596.50120 319.95545,582.44475 329.94970,572.54023 C 333.70019,568.82342 334.39743,567.35300 332.69328,566.75424 C 331.43664,566.31272 318.55510,561.76095 304.06765,556.63917 C 289.58019,551.51741 277.46249,547.32686 277.13942,547.32686 C 276.81636,547.32686 258.90856,561.96060 237.34433,579.84627 C 215.78009,597.73195 196.80150,612.36569 195.16968,612.36569 C 190.46539,612.36569 129.22875,582.50623 126.89005,579.07200 C 125.73003,577.36861 114.84873,545.31376 102.70937,507.83901 C 55.594030,362.39181 56.693156,366.37345 62.802641,363.27462 C 64.356607,362.48643 101.87814,349.81187 146.18382,335.10895 L 226.73961,308.37637 L 263.71431,310.69837 C 286.67927,312.14056 301.40445,313.70655 302.57717,314.83135 C 303.61564,315.82740 305.34556,325.40743 306.42143,336.12030 C 307.49729,346.83319 308.65912,355.86836 309.00331,356.19847 C 309.34748,356.52858 342.63918,360.64272 382.98485,365.34100 C 517.11297,380.96031 522.58595,381.79656 531.78026,388.07596 C 542.94833,395.70337 544.79659,410.91340 539.55915,452.09144 C 535.77447,481.84750 525.60424,542.72138 520.15543,568.23220 C 514.39716,595.19186 510.42415,606.04388 503.90627,612.61560 C 498.71054,617.85430 497.11516,618.55986 490.46560,618.55986 C 486.20846,618.55986 475.08560,616.13052 464.94151,612.98515 C 447.87216,607.69247 446.87850,607.55450 445.30111,610.25799 C 441.44234,616.87148 429.18680,627.58746 421.26944,631.27078 C 405.27160,638.71329 389.92960,640.20655 369.50001,636.30956 z M 403.00521,633.22006 C 408.23120,631.91448 416.08900,628.97638 420.46700,626.69094 C 428.31467,622.59424 441.00275,610.48409 441.00275,607.09060 C 441.00275,605.53415 404.03030,591.19117 403.34297,592.48098 C 399.76121,599.20238 397.08084,602.38370 394.70087,602.73820 C 393.08342,602.97913 384.13147,600.41771 374.80764,597.04616 C 356.79258,590.53181 352.57500,586.95420 352.32244,577.97275 C 352.22287,574.43219 351.16338,573.47726 345.54258,571.86203 C 338.97257,569.97405 338.80900,570.02272 333.67818,575.39265 C 325.75051,583.68974 322.44841,593.30032 324.73130,601.43192 C 328.56945,615.10329 349.07620,628.70570 372.61184,633.19174 C 387.42211,636.01465 391.80259,636.01874 403.00521,633.22006 z M 497.02221,612.43220 C 500.91722,610.15430 502.81151,607.39974 504.73885,601.21105 C 511.87423,578.29934 536.25914,430.61214 536.25914,410.30840 C 536.25914,395.11871 529.90687,388.81519 510.65517,384.90087 C 499.61413,382.65598 280.93384,356.84809 273.22117,356.87974 C 260.04153,356.93382 259.29950,359.57784 259.75551,404.86087 C 260.24210,453.18174 263.14810,518.15604 265.22697,527.19518 C 267.25005,535.99187 271.26157,540.08493 281.73956,544.04339 C 323.08873,559.66463 463.44676,608.57737 478.13660,612.48491 C 491.40835,616.01523 490.89307,616.01667 497.02221,612.43220 z M 430.50840,572.12657 C 391.18960,560.58148 297.06265,530.22822 292.20133,527.52647 C 289.83504,526.21139 287.08848,523.42922 286.09786,521.34388 C 281.42786,511.51316 280.09405,398.63167 284.55345,390.63965 C 287.04160,386.18048 296.12949,387.01663 354.80466,397.10318 C 411.44511,406.83996 430.41008,410.70506 463.60596,419.27710 C 489.46179,425.95377 488.85410,425.01800 486.26599,454.17084 C 482.13499,500.70275 471.91384,570.54054 468.28200,577.04940 C 465.86910,581.37372 458.91446,580.46736 430.50840,572.12657 z M 196.43227,603.46156 C 192.36530,588.11839 177.42778,521.67530 174.58658,506.29047 C 167.54635,468.16836 168.73092,438.80480 178.64649,405.65180 C 180.68708,398.82904 183.20091,389.27051 184.23278,384.41060 C 187.14535,370.69308 196.84099,363.16246 235.09587,344.90525 C 251.99849,336.83845 264.73809,330.57349 263.40612,330.98311 C 262.07414,331.39274 234.19024,342.01796 201.44191,354.59473 L 141.89948,377.46157 L 128.78874,375.55689 C 121.57784,374.50932 105.65205,371.89676 93.398103,369.75121 C 81.144161,367.60566 69.286187,366.29123 67.047058,366.83025 C 63.416974,367.70411 63.099142,368.34933 64.113339,372.78583 C 65.408405,378.45091 120.80770,550.20447 126.61384,566.55512 C 130.20559,576.66983 130.90618,577.52899 139.19286,581.98149 L 147.96830,586.69660 L 142.49205,580.64450 C 133.77077,571.00614 127.75920,555.75063 118.96899,520.95028 C 111.14500,489.97517 114.62133,478.95211 129.88518,486.33618 C 143.25111,492.80213 152.79317,506.96411 162.44071,534.65400 C 170.94646,559.06677 178.71665,589.35046 177.35073,592.76456 C 176.74756,594.27218 174.47027,595.36334 171.83306,595.40835 C 168.15842,595.47106 169.54267,596.58262 179.45134,601.52588 C 194.45384,609.01036 198.01054,609.41581 196.43227,603.46156 z M 133.43767,458.86572 C 111.34064,454.02457 94.893131,446.84451 91.504974,440.56026 C 88.969987,435.85845 89.637540,431.18529 92.843901,431.18721 C 98.924661,431.19086 138.48982,443.35464 132.93876,443.51385 C 131.74231,443.54816 131.33184,444.36053 131.99272,445.38616 C 132.77630,446.60220 132.28193,446.87464 130.48907,446.21477 C 124.61802,444.05388 100.90787,437.54203 97.261151,437.08889 C 92.151283,436.45396 91.251973,439.44925 95.431224,443.18371 C 98.770391,446.16749 129.16847,456.05290 134.82358,455.99403 C 137.20448,455.96925 137.61716,455.17233 136.82221,452.13441 C 135.91788,448.67855 136.17577,448.43213 139.47259,449.60186 C 142.07546,450.52539 143.12475,452.14436 143.12475,455.23688 C 143.12475,460.34141 142.03559,460.74940 133.43767,458.86572 z M 109.01786,420.43381 C 99.138896,418.00432 89.549608,415.24325 87.708332,414.29810 C 80.341925,410.51680 76.498083,399.61969 81.837482,397.65448 C 84.983759,396.49648 101.13340,399.34075 115.20844,403.53176 C 124.17429,406.20145 125.67372,407.10889 123.91171,408.79891 C 122.14969,410.48893 119.17088,410.19753 106.62160,407.10755 C 89.614861,402.92002 82.568465,402.37442 82.605168,405.24801 C 82.674295,410.66025 89.543656,414.00741 110.44625,418.81388 C 127.72978,422.78816 128.33570,422.75989 127.39171,418.02349 C 126.61902,414.14659 128.31896,412.76804 130.22491,415.72593 C 130.78267,416.59152 131.86303,416.92983 132.62573,416.47772 C 134.36586,415.44621 136.42247,421.31681 135.06111,423.42953 C 133.52458,425.81410 128.58526,425.24593 109.01786,420.43381 z M 166.92093,577.96216 C 168.77384,572.63056 155.04249,528.65062 149.20682,521.22590 C 143.91486,514.49293 131.63910,507.06474 125.80423,507.06474 C 118.36692,507.06474 117.86622,511.61212 123.20082,530.70933 C 132.06304,562.43491 135.32816,567.78735 150.39007,575.27998 C 159.92538,580.02338 165.86941,580.98781 166.92093,577.96216 z "
+         id="path8818"
+         style="fill:#919191" />
+      <path
+         d="M 373.43663,636.90133 C 353.82564,634.20899 333.14475,623.62928 325.31777,612.28521 C 317.25652,600.60159 318.81300,584.45232 329.04755,573.58680 L 334.77818,567.50285 L 330.17157,565.79200 C 317.17343,560.96462 278.22986,547.32686 277.44309,547.32686 C 276.94437,547.32686 259.28250,561.63071 238.19450,579.11320 C 217.10648,596.59569 198.25394,611.28439 196.29996,611.75477 C 193.81769,612.35232 182.84021,607.79087 159.86557,596.61526 L 126.98385,580.62055 L 123.45228,570.55501 C 110.70412,534.22080 59.977239,373.53068 59.977239,369.48192 C 59.977239,363.49348 53.296525,366.25743 126.17235,342.09558 C 157.69575,331.64405 193.29580,319.80123 205.28358,315.77822 L 227.07953,308.46364 L 264.05636,310.90705 C 284.39362,312.25093 301.73554,314.02412 302.59396,314.84747 C 303.45238,315.67081 305.11444,325.18576 306.28742,335.99179 C 307.46042,346.79782 308.73296,355.93917 309.11533,356.30591 C 309.49769,356.67265 348.22880,361.46795 395.18445,366.96213 C 521.08597,381.69361 521.45098,381.75061 531.60550,388.26606 C 540.35158,393.87780 542.99873,403.25658 541.97136,424.99194 C 540.53626,455.35370 523.50329,559.63885 515.20607,588.86375 C 506.50585,619.50808 498.23810,623.52234 465.38338,613.05432 C 447.78672,607.44776 447.00650,607.33512 445.35652,610.16302 C 444.41224,611.78140 440.49209,616.33304 436.64507,620.27775 C 428.16225,628.97601 415.00832,634.95898 399.70237,637.08087 C 387.12606,638.82435 387.46041,638.82664 373.43663,636.90133 z M 400.96404,633.87873 C 417.18010,630.62798 432.22782,621.34873 439.54202,610.08941 L 442.52966,605.49029 L 423.72108,598.86246 C 402.94374,591.54086 402.27768,591.39563 402.20068,594.17030 C 402.12480,596.90487 396.48370,603.07442 394.05925,603.07442 C 392.94452,603.07442 384.22699,600.20489 374.68696,596.69769 L 357.34145,590.32095 L 354.34517,581.74721 C 351.72055,574.23700 350.61285,572.92904 345.41541,571.20317 C 339.52434,569.24698 339.43587,569.28085 333.02871,575.94777 C 316.94483,592.68373 322.47032,611.94015 346.92765,624.38577 C 365.28575,633.72769 384.70203,637.13868 400.96404,633.87873 z M 501.05632,609.34154 C 503.45035,606.82232 506.92992,600.03854 508.78868,594.26646 C 516.00831,571.84718 535.71562,455.92241 537.35785,426.21357 C 538.91201,398.09764 534.71332,390.73763 514.21321,385.64258 C 503.53314,382.98819 285.18553,356.85603 273.68673,356.85603 C 258.36001,356.85603 257.52842,362.02752 260.11552,441.25164 C 262.91176,526.87977 263.90776,534.23627 273.51932,540.25203 C 281.13974,545.02158 470.06132,611.83229 483.18253,614.39787 C 490.26714,615.78312 496.65100,613.97718 501.05632,609.34154 z M 455.53339,575.07232 C 443.09843,573.13597 304.20291,530.58392 293.90939,525.55718 C 286.87419,522.12160 284.93491,517.76488 283.61012,502.41910 C 281.86252,482.17574 282.28503,402.90279 284.16492,398.32281 C 285.11653,396.00443 287.55551,393.71261 289.58488,393.22989 C 293.90869,392.20137 394.52194,409.99541 430.17678,418.09437 C 461.33773,425.17254 481.11877,430.61039 483.97427,432.88339 C 485.39346,434.01310 486.20898,437.84311 486.20862,443.37692 C 486.20749,461.25447 472.16775,567.58595 469.20029,572.19119 C 467.27710,575.17583 462.57027,576.16808 455.53339,575.07232 z M 262.12719,552.89428 C 270.61670,545.80999 271.11021,545.04809 268.39209,543.22205 C 259.56234,537.29015 257.49358,517.88317 255.86820,425.73515 C 254.91425,371.65250 255.05940,366.39519 257.65107,361.15681 C 261.64431,353.08552 267.14444,351.67340 286.99971,353.62173 C 295.70670,354.47612 303.03435,354.97974 303.28337,354.74089 C 304.17239,353.88821 300.06497,319.91088 298.84376,318.01568 C 297.88623,316.52966 294.95417,316.98719 286.15313,319.99600 C 279.85815,322.14805 274.70772,323.67891 274.70772,323.39791 C 274.70772,323.11690 276.70568,321.78501 279.14764,320.43815 C 283.39100,318.09773 283.01577,318.03041 270.67143,318.91743 C 263.56757,319.42788 239.12996,322.23785 216.36564,325.16181 L 174.97598,330.47809 L 128.37458,345.85765 C 68.084825,365.75469 63.206266,367.54832 63.206266,369.81702 C 63.206266,372.41334 125.34112,565.23696 128.51035,572.47573 C 130.54148,577.11500 133.05157,579.23696 141.12176,583.13701 L 151.19733,588.00619 L 144.58969,581.84160 C 138.43924,576.10357 127.65803,555.67387 127.86238,550.14447 C 127.90391,549.02063 129.32989,551.52010 131.03120,555.69885 C 134.98258,565.40416 141.04195,571.55087 151.19733,576.15564 C 159.70382,580.01278 165.70673,580.83629 167.29937,578.36463 C 168.32138,576.77857 163.96379,559.06802 157.53656,538.68570 C 154.83947,530.13255 151.75241,524.11303 147.78075,519.66263 C 138.11790,508.83505 123.48909,503.63724 119.91561,509.76178 C 117.56219,513.79526 116.50907,511.66000 115.44815,500.70383 C 114.62242,492.17648 114.94961,490.26866 117.80972,486.93367 L 121.12983,483.06231 L 129.80814,487.35949 C 138.80065,491.81225 147.07347,500.70158 153.33755,512.64239 C 160.96709,527.18606 175.78648,575.36548 176.62837,588.36326 L 177.02957,594.55744 L 170.57151,594.34691 C 164.40976,594.14605 164.81488,594.47431 179.40119,601.50118 L 194.68894,608.86596 L 223.80035,584.72515 C 239.81163,571.44770 257.05871,557.12382 262.12719,552.89428 z M 118.22723,517.25931 C 118.15713,515.62690 118.53872,514.71228 119.07521,515.22684 C 119.61170,515.74142 119.66906,517.07703 119.20267,518.19489 C 118.68727,519.43021 118.30471,519.06328 118.22723,517.25931 z M 121.04641,455.21026 C 107.44959,451.21032 93.882051,445.80904 93.882051,444.39604 C 93.882051,443.90042 95.880011,444.47348 98.321966,445.66950 C 104.33964,448.61682 129.85520,455.96281 134.07478,455.96281 C 136.09033,455.96281 137.47396,454.97108 137.47396,453.52645 C 137.47396,449.73701 143.04745,451.60340 143.64068,455.59149 C 144.08854,458.60242 143.44970,459.04642 138.79713,458.95771 C 135.84943,458.90152 127.86160,457.21517 121.04641,455.21026 z M 110.02720,439.65532 C 94.411114,435.01982 91.637887,434.90365 92.735919,438.93096 C 93.200668,440.63554 92.922139,441.63968 92.116968,441.16238 C 91.311796,440.68509 90.653018,438.23190 90.653018,435.71084 C 90.653018,430.47783 90.485521,430.47316 110.83446,436.27335 C 117.05034,438.04510 122.65481,439.37575 123.28884,439.23036 C 123.92288,439.08495 124.02678,440.00288 123.51974,441.27022 C 123.01270,442.53755 122.49395,443.50140 122.36695,443.41209 C 122.23997,443.32279 116.68708,441.63224 110.02720,439.65532 z M 125.36509,424.02668 C 114.78241,421.86231 95.534895,416.69627 96.085625,416.16804 C 96.443953,415.82436 102.57294,416.97229 109.70560,418.71900 C 125.84537,422.67147 127.78686,422.68349 127.78686,418.83096 C 127.78686,416.11224 128.24869,415.96889 131.88610,417.55849 C 139.67995,420.96450 134.67348,425.93042 125.36509,424.02668 z M 89.038504,414.15213 C 87.706529,413.32651 87.343266,412.65102 88.231248,412.65102 C 89.119229,412.65102 90.935562,413.32651 92.267538,414.15213 C 93.599513,414.97775 93.962776,415.65324 93.074794,415.65324 C 92.186813,415.65324 90.370480,414.97775 89.038504,414.15213 z M 80.278207,405.17369 C 79.569480,403.06069 79.851864,400.72849 80.973359,399.43239 C 83.020189,397.06688 85.374118,397.26091 104.82111,401.39820 C 114.18715,403.39079 116.15014,404.28280 114.50820,405.80016 C 112.87731,407.30727 109.71370,407.12592 99.299394,404.92833 C 85.909060,402.10273 83.678317,402.29672 82.268197,406.40942 C 81.687067,408.10431 81.149115,407.77026 80.278207,405.17369 z "
+         id="path8820"
+         style="fill:#707071" />
+      <path
+         d="M 363.94924,634.83727 C 336.84825,627.58513 319.85912,612.02909 319.95860,594.55744 C 319.99283,588.54647 325.40898,577.13267 330.78959,571.73258 C 333.11446,569.39929 334.70632,567.25964 334.32707,566.97782 C 332.19976,565.39696 277.82625,547.11450 276.58616,547.56310 C 275.76810,547.85902 258.29277,562.03803 237.75207,579.07200 C 217.21137,596.10598 198.87980,610.70636 197.01523,611.51728 C 194.24554,612.72187 187.54978,610.02957 160.42846,596.80612 L 127.23182,580.62055 L 124.20787,572.10356 C 113.89413,543.05483 59.977239,372.67440 59.977239,369.13112 C 59.977239,365.30519 61.019605,364.44505 69.260700,361.47060 C 82.491400,356.69525 217.93855,311.82724 224.33658,310.10041 C 230.12197,308.53892 300.36932,312.81015 302.56811,314.85710 C 303.23960,315.48222 304.65411,325.14964 305.71146,336.34026 L 307.63393,356.68684 L 313.37039,357.56185 C 316.52546,358.04310 360.74007,363.30773 411.62509,369.26102 C 462.51011,375.21431 509.20823,381.19011 515.39868,382.54057 C 526.65915,384.99706 534.57954,389.66602 538.05630,395.89694 C 541.41795,401.92156 542.57686,417.68541 540.92901,434.97214 C 537.48816,471.06802 521.69782,564.48847 515.13301,587.58899 C 505.85778,620.22705 499.04050,623.42097 462.98974,612.01824 L 447.03040,606.97036 L 444.42020,610.81553 C 438.35744,619.74682 430.30701,626.58483 420.27979,631.32035 C 410.31062,636.02845 408.33965,636.39256 390.98863,636.73149 C 378.54999,636.97447 369.59036,636.34682 363.94924,634.83727 z M 414.18728,630.45040 C 419.14216,628.27468 425.66674,624.68712 428.68635,622.47806 C 434.42582,618.27923 443.66932,606.66438 442.30943,605.36007 C 441.87629,604.94463 432.87464,601.55756 422.30577,597.83327 L 403.08965,591.06182 L 401.30490,595.13304 C 397.58410,603.62058 396.16616,603.68726 376.23320,596.31198 L 357.85524,589.51208 L 357.37664,581.84222 L 356.89804,574.17236 L 347.95572,571.46873 C 339.36948,568.87275 338.88283,568.87780 335.73458,571.59573 C 329.88874,576.64247 323.17436,589.56271 323.15831,595.79575 C 323.13808,603.65218 326.35675,609.17780 335.40134,616.81386 C 356.15829,634.33828 391.43012,640.44326 414.18728,630.45040 z M 500.58749,610.48464 C 507.33549,603.86468 512.21841,588.64267 519.25419,552.29323 C 532.23689,485.21985 540.69456,422.15131 538.54787,408.42108 C 537.27628,400.28796 532.31109,392.81731 525.75930,389.17923 C 523.09837,387.70168 515.10899,385.39980 508.00512,384.06395 C 489.63963,380.61041 285.74876,356.85603 274.47137,356.85603 C 260.89873,356.85603 259.54184,359.32737 258.78121,385.43317 C 258.07642,409.62241 261.39592,504.65200 263.51253,520.87958 C 265.93901,539.48307 265.60689,539.23743 308.76751,554.35202 C 321.72852,558.89088 339.89181,565.50681 349.13038,569.05410 C 358.36897,572.60138 381.18498,580.72973 399.83263,587.11709 C 493.50000,619.20085 492.04640,618.86373 500.58749,610.48464 z M 455.53339,575.07458 C 446.84751,573.72474 385.78215,555.41845 332.02300,538.04841 C 305.13547,529.36082 292.06645,524.37706 289.32759,521.76690 C 286.27880,518.86138 285.10354,515.61505 284.16332,507.50226 C 282.36613,491.99457 282.50844,402.65121 284.33770,398.03649 C 285.19428,395.87559 287.55551,393.71261 289.58488,393.22989 C 297.14422,391.43175 429.61280,416.75990 468.23274,427.38755 C 487.27648,432.62811 486.83202,432.03781 485.51748,450.34394 C 483.46209,478.96735 473.32793,555.25265 469.91149,567.81872 C 467.97040,574.95828 464.86595,576.52493 455.53339,575.07458 z M 235.70951,576.03748 L 273.07066,545.12918 L 268.21143,540.32057 C 265.53884,537.67584 262.68089,533.26699 261.86044,530.52310 C 259.68643,523.25253 256.82774,458.78736 256.45965,408.73223 C 256.03443,350.90863 255.15765,352.44627 287.41102,354.45127 L 304.75084,355.52919 L 302.86418,337.51022 C 301.82651,327.59978 300.19994,318.74545 299.24957,317.83391 C 298.29922,316.92239 282.26882,315.13113 263.62646,313.85335 L 229.73126,311.53011 L 149.29417,338.23198 C 105.05376,352.91801 67.585640,365.57982 66.031667,366.36933 C 64.477694,367.15884 63.206266,369.15567 63.206266,370.80673 C 63.206266,373.56779 109.05843,518.04665 122.42155,557.39240 C 125.60346,566.76108 129.32091,575.65237 130.68253,577.15082 C 134.65294,581.52017 193.85348,609.50078 196.24795,608.13971 C 197.40319,607.48305 215.16089,593.03705 235.70951,576.03748 z "
+         id="path8822"
+         style="fill:#2b2bb0" />
+      <path
+         d="M 363.94924,634.83727 C 336.84825,627.58513 319.85912,612.02909 319.95860,594.55744 C 319.99283,588.54647 325.40898,577.13267 330.78959,571.73258 C 333.11446,569.39929 334.70632,567.25964 334.32707,566.97782 C 332.19976,565.39696 277.82625,547.11450 276.58616,547.56310 C 275.76810,547.85902 258.29277,562.03803 237.75207,579.07200 C 217.21137,596.10598 198.87980,610.70636 197.01523,611.51728 C 194.24554,612.72187 187.54978,610.02957 160.42846,596.80612 L 127.23182,580.62055 L 124.20787,572.10356 C 113.89413,543.05483 59.977239,372.67440 59.977239,369.13112 C 59.977239,365.30519 61.019605,364.44505 69.260700,361.47060 C 82.491400,356.69525 217.93855,311.82724 224.33658,310.10041 C 230.12197,308.53892 300.36932,312.81015 302.56811,314.85710 C 303.23960,315.48222 304.65411,325.14964 305.71146,336.34026 L 307.63393,356.68684 L 313.37039,357.56185 C 316.52546,358.04310 360.74007,363.30773 411.62509,369.26102 C 462.51011,375.21431 509.20823,381.19011 515.39868,382.54057 C 526.65915,384.99706 534.57954,389.66602 538.05630,395.89694 C 541.41795,401.92156 542.57686,417.68541 540.92901,434.97214 C 537.48816,471.06802 521.69782,564.48847 515.13301,587.58899 C 505.85778,620.22705 499.04050,623.42097 462.98974,612.01824 L 447.03040,606.97036 L 444.42020,610.81553 C 438.35744,619.74682 430.30701,626.58483 420.27979,631.32035 C 410.31062,636.02845 408.33965,636.39256 390.98863,636.73149 C 378.54999,636.97447 369.59036,636.34682 363.94924,634.83727 z M 414.18728,630.45040 C 419.14216,628.27468 425.66674,624.68712 428.68635,622.47806 C 434.42582,618.27923 443.66932,606.66438 442.30943,605.36007 C 441.87629,604.94463 432.87464,601.55756 422.30577,597.83327 L 403.08965,591.06182 L 401.30490,595.13304 C 397.58410,603.62058 396.16616,603.68726 376.23320,596.31198 L 357.85524,589.51208 L 357.37664,581.84222 L 356.89804,574.17236 L 347.95572,571.46873 C 339.36948,568.87275 338.88283,568.87780 335.73458,571.59573 C 329.88874,576.64247 323.17436,589.56271 323.15831,595.79575 C 323.13808,603.65218 326.35675,609.17780 335.40134,616.81386 C 356.15829,634.33828 391.43012,640.44326 414.18728,630.45040 z M 500.58749,610.48464 C 507.33549,603.86468 512.21841,588.64267 519.25419,552.29323 C 532.23689,485.21985 540.69456,422.15131 538.54787,408.42108 C 537.27628,400.28796 532.31109,392.81731 525.75930,389.17923 C 523.09837,387.70168 515.10899,385.39980 508.00512,384.06395 C 489.63963,380.61041 285.74876,356.85603 274.47137,356.85603 C 260.89873,356.85603 259.54184,359.32737 258.78121,385.43317 C 258.07642,409.62241 261.39592,504.65200 263.51253,520.87958 C 265.93901,539.48307 265.60689,539.23743 308.76751,554.35202 C 321.72852,558.89088 339.89181,565.50681 349.13038,569.05410 C 358.36897,572.60138 381.18498,580.72973 399.83263,587.11709 C 493.50000,619.20085 492.04640,618.86373 500.58749,610.48464 z M 440.19550,559.77610 C 394.68077,548.35022 303.09882,520.94563 293.34432,515.83299 C 289.55227,513.84545 286.50092,510.91127 285.83631,508.61328 C 283.74698,501.38900 284.19633,411.86482 286.33223,409.81621 C 287.39781,408.79417 290.50781,407.95796 293.24337,407.95796 C 297.49440,407.95796 371.01886,423.68900 387.72376,428.17266 C 395.47321,430.25265 421.15694,452.06380 436.95186,469.97816 C 457.08665,492.81475 467.58713,502.63931 470.65374,501.51062 C 473.93978,500.30118 477.16629,489.51192 480.55746,468.39316 C 483.13826,452.32105 484.59466,447.32554 484.59466,454.54537 C 484.59466,467.58748 472.22787,557.31320 469.83244,561.65089 C 467.73344,565.45179 461.14401,565.03495 440.19550,559.77610 z M 235.70951,576.03748 L 273.07066,545.12918 L 268.21143,540.32057 C 265.53884,537.67584 262.68089,533.26699 261.86044,530.52310 C 259.68643,523.25253 256.82774,458.78736 256.45965,408.73223 C 256.03443,350.90863 255.15765,352.44627 287.41102,354.45127 L 304.75084,355.52919 L 302.86418,337.51022 C 301.82651,327.59978 300.19994,318.74545 299.24957,317.83391 C 298.29922,316.92239 282.26882,315.13113 263.62646,313.85335 L 229.73126,311.53011 L 149.29417,338.23198 C 105.05376,352.91801 67.585640,365.57982 66.031667,366.36933 C 64.477694,367.15884 63.206266,369.15567 63.206266,370.80673 C 63.206266,373.56779 109.05843,518.04665 122.42155,557.39240 C 125.60346,566.76108 129.32091,575.65237 130.68253,577.15082 C 134.65294,581.52017 193.85348,609.50078 196.24795,608.13971 C 197.40319,607.48305 215.16089,593.03705 235.70951,576.03748 z "
+         id="path8824"
+         style="fill:#1919a4" />
+      <path
+         d="M 363.94924,634.83727 C 336.84825,627.58513 319.85912,612.02909 319.95860,594.55744 C 319.99283,588.54647 325.40898,577.13267 330.78959,571.73258 C 333.11446,569.39929 334.70632,567.25964 334.32707,566.97782 C 332.19976,565.39696 277.82625,547.11450 276.58616,547.56310 C 275.76810,547.85902 258.29277,562.03803 237.75207,579.07200 C 217.21137,596.10598 198.87980,610.70636 197.01523,611.51728 C 194.24554,612.72187 187.54978,610.02957 160.42846,596.80612 L 127.23182,580.62055 L 124.20787,572.10356 C 113.89413,543.05483 59.977239,372.67440 59.977239,369.13112 C 59.977239,365.30519 61.019605,364.44505 69.260700,361.47060 C 82.491400,356.69525 217.93855,311.82724 224.33658,310.10041 C 230.12197,308.53892 300.36932,312.81015 302.56811,314.85710 C 303.23960,315.48222 304.65411,325.14964 305.71146,336.34026 L 307.63393,356.68684 L 313.37039,357.56185 C 316.52546,358.04310 360.74007,363.30773 411.62509,369.26102 C 462.51011,375.21431 509.20823,381.19011 515.39868,382.54057 C 526.65915,384.99706 534.57954,389.66602 538.05630,395.89694 C 541.41795,401.92156 542.57686,417.68541 540.92901,434.97214 C 537.48816,471.06802 521.69782,564.48847 515.13301,587.58899 C 505.85778,620.22705 499.04050,623.42097 462.98974,612.01824 L 447.03040,606.97036 L 444.42020,610.81553 C 438.35744,619.74682 430.30701,626.58483 420.27979,631.32035 C 410.31062,636.02845 408.33965,636.39256 390.98863,636.73149 C 378.54999,636.97447 369.59036,636.34682 363.94924,634.83727 z M 414.18728,630.45040 C 419.14216,628.27468 425.66674,624.68712 428.68635,622.47806 C 434.42582,618.27923 443.66932,606.66438 442.30943,605.36007 C 441.87629,604.94463 432.87464,601.55756 422.30577,597.83327 L 403.08965,591.06182 L 401.30490,595.13304 C 397.58410,603.62058 396.16616,603.68726 376.23320,596.31198 L 357.85524,589.51208 L 357.37664,581.84222 L 356.89804,574.17236 L 347.95572,571.46873 C 339.36948,568.87275 338.88283,568.87780 335.73458,571.59573 C 329.88874,576.64247 323.17436,589.56271 323.15831,595.79575 C 323.13808,603.65218 326.35675,609.17780 335.40134,616.81386 C 356.15829,634.33828 391.43012,640.44326 414.18728,630.45040 z M 500.58749,610.48464 C 507.33549,603.86468 512.21841,588.64267 519.25419,552.29323 C 532.23689,485.21985 540.69456,422.15131 538.54787,408.42108 C 537.27628,400.28796 532.31109,392.81731 525.75930,389.17923 C 523.09837,387.70168 515.10899,385.39980 508.00512,384.06395 C 489.63963,380.61041 285.74876,356.85603 274.47137,356.85603 C 260.89873,356.85603 259.54184,359.32737 258.78121,385.43317 C 258.07642,409.62241 261.39592,504.65200 263.51253,520.87958 C 265.93901,539.48307 265.60689,539.23743 308.76751,554.35202 C 321.72852,558.89088 339.89181,565.50681 349.13038,569.05410 C 358.36897,572.60138 381.18498,580.72973 399.83263,587.11709 C 493.50000,619.20085 492.04640,618.86373 500.58749,610.48464 z M 456.34064,558.64063 C 408.33561,548.00633 306.17148,519.28172 292.84526,512.67206 C 284.97733,508.76965 284.03023,503.24447 284.65486,464.89124 C 285.36741,421.14003 284.33714,422.44927 308.42552,434.68384 C 318.04618,439.57019 336.53114,448.01287 349.50324,453.44537 C 391.61717,471.08196 406.58593,482.26446 437.12905,518.90674 C 447.32369,531.13715 457.45516,542.26904 459.64344,543.64426 C 467.24621,548.42224 469.38704,544.09081 475.80961,510.93609 C 478.98454,494.54646 479.55303,492.81965 478.86844,501.64483 C 477.88832,514.27964 472.06248,553.85662 470.67061,557.33555 C 469.73587,559.67191 463.54232,560.23598 456.34064,558.64063 z M 480.12568,485.38513 C 480.12568,482.40418 480.45795,481.18471 480.86405,482.67517 C 481.27013,484.16565 481.27013,486.60461 480.86405,488.09508 C 480.45795,489.58555 480.12568,488.36608 480.12568,485.38513 z M 481.68037,472.22251 C 481.64747,469.66742 481.98239,468.43468 482.42465,469.48309 C 482.86690,470.53150 482.89382,472.62204 482.48447,474.12872 C 482.07512,475.63540 481.71328,474.77761 481.68037,472.22251 z M 235.70951,576.03748 L 273.07066,545.12918 L 268.21143,540.32057 C 265.53884,537.67584 262.68089,533.26699 261.86044,530.52310 C 259.68643,523.25253 256.82774,458.78736 256.45965,408.73223 C 256.03443,350.90863 255.15765,352.44627 287.41102,354.45127 L 304.75084,355.52919 L 302.86418,337.51022 C 301.82651,327.59978 300.19994,318.74545 299.24957,317.83391 C 298.29922,316.92239 282.26882,315.13113 263.62646,313.85335 L 229.73126,311.53011 L 149.29417,338.23198 C 105.05376,352.91801 67.585640,365.57982 66.031667,366.36933 C 64.477694,367.15884 63.206266,369.15567 63.206266,370.80673 C 63.206266,373.56779 109.05843,518.04665 122.42155,557.39240 C 125.60346,566.76108 129.32091,575.65237 130.68253,577.15082 C 134.65294,581.52017 193.85348,609.50078 196.24795,608.13971 C 197.40319,607.48305 215.16089,593.03705 235.70951,576.03748 z "
+         id="path8826"
+         style="fill:#0c0c95" />
+      <path
+         d="M 363.94924,634.83727 C 336.84825,627.58513 319.85912,612.02909 319.95860,594.55744 C 319.99283,588.54647 325.40898,577.13267 330.78959,571.73258 C 333.11446,569.39929 334.70632,567.25964 334.32707,566.97782 C 332.19976,565.39696 277.82625,547.11450 276.58616,547.56310 C 275.76810,547.85902 258.29277,562.03803 237.75207,579.07200 C 217.21137,596.10598 198.87980,610.70636 197.01523,611.51728 C 194.24554,612.72187 187.54978,610.02957 160.42846,596.80612 L 127.23182,580.62055 L 124.20787,572.10356 C 113.89413,543.05483 59.977239,372.67440 59.977239,369.13112 C 59.977239,365.30519 61.019605,364.44505 69.260700,361.47060 C 82.491400,356.69525 217.93855,311.82724 224.33658,310.10041 C 230.12197,308.53892 300.36932,312.81015 302.56811,314.85710 C 303.23960,315.48222 304.65411,325.14964 305.71146,336.34026 L 307.63393,356.68684 L 313.37039,357.56185 C 316.52546,358.04310 360.74007,363.30773 411.62509,369.26102 C 462.51011,375.21431 509.20823,381.19011 515.39868,382.54057 C 526.65915,384.99706 534.57954,389.66602 538.05630,395.89694 C 541.41795,401.92156 542.57686,417.68541 540.92901,434.97214 C 537.48816,471.06802 521.69782,564.48847 515.13301,587.58899 C 505.85778,620.22705 499.04050,623.42097 462.98974,612.01824 L 447.03040,606.97036 L 444.42020,610.81553 C 438.35744,619.74682 430.30701,626.58483 420.27979,631.32035 C 410.31062,636.02845 408.33965,636.39256 390.98863,636.73149 C 378.54999,636.97447 369.59036,636.34682 363.94924,634.83727 z M 414.18728,630.45040 C 419.14216,628.27468 425.66674,624.68712 428.68635,622.47806 C 434.42582,618.27923 443.66932,606.66438 442.30943,605.36007 C 441.87629,604.94463 432.87464,601.55756 422.30577,597.83327 L 403.08965,591.06182 L 401.30490,595.13304 C 397.58410,603.62058 396.16616,603.68726 376.23320,596.31198 L 357.85524,589.51208 L 357.37664,581.84222 L 356.89804,574.17236 L 347.95572,571.46873 C 339.36948,568.87275 338.88283,568.87780 335.73458,571.59573 C 329.88874,576.64247 323.17436,589.56271 323.15831,595.79575 C 323.13808,603.65218 326.35675,609.17780 335.40134,616.81386 C 356.15829,634.33828 391.43012,640.44326 414.18728,630.45040 z M 500.58749,610.48464 C 507.33549,603.86468 512.21841,588.64267 519.25419,552.29323 C 532.23689,485.21985 540.69456,422.15131 538.54787,408.42108 C 537.27628,400.28796 532.31109,392.81731 525.75930,389.17923 C 523.09837,387.70168 515.10899,385.39980 508.00512,384.06395 C 489.63963,380.61041 285.74876,356.85603 274.47137,356.85603 C 260.89873,356.85603 259.54184,359.32737 258.78121,385.43317 C 258.07642,409.62241 261.39592,504.65200 263.51253,520.87958 C 265.93901,539.48307 265.60689,539.23743 308.76751,554.35202 C 321.72852,558.89088 339.89181,565.50681 349.13038,569.05410 C 358.36897,572.60138 381.18498,580.72973 399.83263,587.11709 C 493.50000,619.20085 492.04640,618.86373 500.58749,610.48464 z M 235.70951,576.03748 L 273.07066,545.12918 L 268.21143,540.32057 C 265.53884,537.67584 262.68089,533.26699 261.86044,530.52310 C 259.68643,523.25253 256.82774,458.78736 256.45965,408.73223 C 256.03443,350.90863 255.15765,352.44627 287.41102,354.45127 L 304.75084,355.52919 L 302.86418,337.51022 C 301.82651,327.59978 300.19994,318.74545 299.24957,317.83391 C 298.29922,316.92239 282.26882,315.13113 263.62646,313.85335 L 229.73126,311.53011 L 149.29417,338.23198 C 105.05376,352.91801 67.585640,365.57982 66.031667,366.36933 C 64.477694,367.15884 63.206266,369.15567 63.206266,370.80673 C 63.206266,373.56779 109.05843,518.04665 122.42155,557.39240 C 125.60346,566.76108 129.32091,575.65237 130.68253,577.15082 C 134.65294,581.52017 193.85348,609.50078 196.24795,608.13971 C 197.40319,607.48305 215.16089,593.03705 235.70951,576.03748 z "
+         id="path8828"
+         style="fill:#030303" />
+    </g>
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="460.3526"
+       y="1835.8643"
+       id="text8830"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan8832"
+         x="460.35260"
+         y="1835.8643">Intranet workstations</tspan></text>
+    <path
+       sodipodi:nodetypes="cccc"
+       id="path9565"
+       d="M 442.41155,1583.7338 L 442.41155,1655.3604 L 795.03980,1655.3604 L 795.03980,1714.0633"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="99.104485"
+       y="1936.2166"
+       id="text13771"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan13773"
+         x="99.104485"
+         y="1936.2166">Intranet</tspan></text>
+    <text
+       y="691.18127"
+       x="891.64758"
+       style="font-size:30.101904px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       space="preserve"
+       id="text20002">
+      <tspan
+         y="691.18127"
+         x="891.64758"
+         id="tspan20004" />
+    </text>
+    <path
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       d="M 1181.9247,550.71001 L 1181.9247,947.94609"
+       id="path21110"
+       sodipodi:nodetypes="cc" />
+    <text
+       id="text4699"
+       space="preserve"
+       style="font-size:30.101904px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="891.64758"
+       y="1019.8821">
+      <tspan
+         id="tspan4700"
+         x="891.64758"
+         y="1019.8821" />
+    </text>
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="1207.3328"
+       y="1078.0288"
+       id="text19254"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan19256"
+         x="1207.3328"
+         y="1078.0288">Port VLAN ID:</tspan><tspan
+         sodipodi:role="line"
+         x="1207.3328"
+         y="1118.0288"
+         id="tspan36335">ticket access</tspan><tspan
+         sodipodi:role="line"
+         x="1207.3328"
+         y="1158.0288"
+         id="tspan19258">(for wireless restaurant)</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="1207.9109"
+       y="729.83984"
+       id="text22366"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan22368"
+         x="1207.9109"
+         y="729.83984">802.1q - VLAN trunk line</tspan></text>
+    <path
+       id="path31747"
+       d="M 1104.0267,950.20709 L 1104.0267,786.18627 L 471.26982,786.18627 L 471.26982,667.95792"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       sodipodi:nodetypes="cccc" />
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="421.3092"
+       y="820.78467"
+       id="text35483"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan35485"
+         x="421.30920"
+         y="820.78467">Port VLAN ID:</tspan><tspan
+         sodipodi:role="line"
+         x="421.30920"
+         y="860.78467"
+         id="tspan35487">free access</tspan><tspan
+         sodipodi:role="line"
+         x="421.30920"
+         y="900.78467"
+         id="tspan36337">(for room 3)</tspan></text>
+    <rect
+       style="fill:#ffffff;fill-opacity:0.0000000;stroke:#000000;stroke-width:3.0000000;stroke-linecap:butt;stroke-miterlimit:4.0000000;stroke-dasharray:6.0000000 18.000000 ;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+       id="rect28789"
+       width="243.95662"
+       height="155.01654"
+       x="420.80725"
+       y="562.68579" />
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="542.66833"
+       y="622.00513"
+       id="text31743"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan31745"
+         x="542.66833"
+         y="622.00513">Room 3</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="488.86823"
+       y="699.95789"
+       id="text33229"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan33231"
+         x="488.86823"
+         y="699.95789">UTP-5</tspan></text>
+    <path
+       style="fill:#00ff00;fill-opacity:1.0000000;fill-rule:nonzero;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       id="path35559"
+       d="M 605.51034,680.99062 C 610.23885,684.15092 611.14330,691.93997 615.91065,694.85385 C 616.92879,695.47615 620.39198,693.21089 619.26934,693.61530 C 605.75056,698.48504 611.21029,697.06541 615.77314,688.43069 C 622.96372,674.14094 630.76107,660.15722 640.13847,647.18118 L 650.97268,642.50415 C 641.30361,655.26913 633.27019,669.10832 626.45207,683.59829 C 612.62221,713.06357 607.72140,702.32252 594.58524,688.17895 L 605.51034,680.99062 z " />
+    <path
+       sodipodi:nodetypes="cccc"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       d="M 1120.8698,946.30945 L 1120.8698,768.18627 L 757.06982,768.18627 L 757.06982,667.95792"
+       id="path35522" />
+    <text
+       sodipodi:linespacing="125.00000%"
+       id="text35536"
+       y="820.78467"
+       x="707.13593"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       xml:space="preserve"><tspan
+         y="820.78467"
+         x="707.13593"
+         id="tspan35538"
+         sodipodi:role="line">Port VLAN ID:</tspan><tspan
+         id="tspan35540"
+         y="860.78467"
+         x="707.13593"
+         sodipodi:role="line">free access</tspan><tspan
+         y="900.78467"
+         x="707.13593"
+         sodipodi:role="line"
+         id="tspan36339">(for room 4)</tspan></text>
+    <rect
+       y="562.68579"
+       x="706.63397"
+       height="155.01654"
+       width="243.95662"
+       id="rect35526"
+       style="fill:#ffffff;fill-opacity:0.0000000;stroke:#000000;stroke-width:3.0000000;stroke-linecap:butt;stroke-miterlimit:4.0000000;stroke-dasharray:6.0000000 18.000000 ;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+    <text
+       sodipodi:linespacing="125.00000%"
+       id="text35528"
+       y="622.00513"
+       x="828.49512"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       xml:space="preserve"><tspan
+         y="622.00513"
+         x="828.49512"
+         id="tspan35530"
+         sodipodi:role="line">Room 4</tspan></text>
+    <text
+       sodipodi:linespacing="125.00000%"
+       id="text35532"
+       y="699.95789"
+       x="774.69501"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       xml:space="preserve"><tspan
+         y="699.95789"
+         x="774.69501"
+         id="tspan35534"
+         sodipodi:role="line">UTP-5</tspan></text>
+    <g
+       id="g21538"
+       transform="translate(321.2698,716.8478)">
+      <rect
+         y="257.52481"
+         x="657.63599"
+         width="302.02246"
+         style="fill:url(#linearGradient22995);fill-opacity:1.0000000;stroke:url(#radialGradient22997);stroke-width:1.2975370;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         ry="0.0000000"
+         rx="6.9985232"
+         id="rect1894"
+         height="38.909878" />
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1010.904,161.0948)"
+         style="stroke:url(#radialGradient6762)"
+         id="g1895">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient22999);fill-opacity:1.0000000;stroke:url(#radialGradient23001);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect1897"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23003);fill-opacity:1.0000000;stroke:url(#radialGradient23005);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path1899"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,999.7334,161.0948)"
+         style="stroke:url(#radialGradient6761)"
+         id="g1901">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23007);fill-opacity:1.0000000;stroke:url(#radialGradient23009);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect1903"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23011);fill-opacity:1.0000000;stroke:url(#radialGradient23013);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path1905"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1077.640,161.0948)"
+         style="stroke:url(#radialGradient6760)"
+         id="g1925">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23015);fill-opacity:1.0000000;stroke:url(#radialGradient23017);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect1927"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23019);fill-opacity:1.0000000;stroke:url(#radialGradient23021);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path1928"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1066.665,161.0948)"
+         style="stroke:url(#radialGradient6759)"
+         id="g1929">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23023);fill-opacity:1.0000000;stroke:url(#radialGradient23025);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect1931"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23027);fill-opacity:1.0000000;stroke:url(#radialGradient23029);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path1932"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1055.495,161.0948)"
+         style="stroke:url(#radialGradient6758)"
+         id="g1933">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23031);fill-opacity:1.0000000;stroke:url(#radialGradient23033);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect1935"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23035);fill-opacity:1.0000000;stroke:url(#radialGradient23037);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path1936"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1044.520,161.0948)"
+         style="stroke:url(#radialGradient6757)"
+         id="g1937">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23039);fill-opacity:1.0000000;stroke:url(#radialGradient23041);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect1939"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23043);fill-opacity:1.0000000;stroke:url(#radialGradient23045);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path1940"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1033.349,161.0948)"
+         style="stroke:url(#radialGradient6756)"
+         id="g1941">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23047);fill-opacity:1.0000000;stroke:url(#radialGradient23049);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect1943"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23051);fill-opacity:1.0000000;stroke:url(#radialGradient23053);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path1944"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1022.179,161.0948)"
+         style="stroke:url(#radialGradient6755)"
+         id="g1945">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23055);fill-opacity:1.0000000;stroke:url(#radialGradient23057);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect1947"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23059);fill-opacity:1.0000000;stroke:url(#radialGradient23061);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path1948"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1011.011,171.3370)"
+         style="stroke:url(#radialGradient6754)"
+         id="g1949">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23063);fill-opacity:1.0000000;stroke:url(#radialGradient23065);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect1951"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23067);fill-opacity:1.0000000;stroke:url(#radialGradient23069);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path1952"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,999.8405,171.3370)"
+         style="stroke:url(#radialGradient6753)"
+         id="g1953">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23071);fill-opacity:1.0000000;stroke:url(#radialGradient23073);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect1955"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23075);fill-opacity:1.0000000;stroke:url(#radialGradient23077);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path1956"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1077.747,171.3370)"
+         style="stroke:url(#radialGradient6752)"
+         id="g1971">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23079);fill-opacity:1.0000000;stroke:url(#radialGradient23081);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect1973"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23083);fill-opacity:1.0000000;stroke:url(#radialGradient23085);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path1974"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1066.772,171.3370)"
+         style="stroke:url(#radialGradient6751)"
+         id="g1975">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23087);fill-opacity:1.0000000;stroke:url(#radialGradient23089);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect1977"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23091);fill-opacity:1.0000000;stroke:url(#radialGradient23093);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path1978"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1055.602,171.3370)"
+         style="stroke:url(#radialGradient6750)"
+         id="g1979">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23095);fill-opacity:1.0000000;stroke:url(#radialGradient23097);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect1980"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23099);fill-opacity:1.0000000;stroke:url(#radialGradient23101);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path1981"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1044.627,171.3370)"
+         style="stroke:url(#radialGradient6749)"
+         id="g1982">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23103);fill-opacity:1.0000000;stroke:url(#radialGradient23105);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect1983"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23107);fill-opacity:1.0000000;stroke:url(#radialGradient23109);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path1984"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1022.286,171.3370)"
+         style="stroke:url(#radialGradient6748)"
+         id="g1985">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23111);fill-opacity:1.0000000;stroke:url(#radialGradient23113);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect1986"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23115);fill-opacity:1.0000000;stroke:url(#radialGradient23117);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path1987"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1033.461,171.3370)"
+         style="stroke:url(#radialGradient6747)"
+         id="g1988">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23119);fill-opacity:1.0000000;stroke:url(#radialGradient23121);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect1989"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23123);fill-opacity:1.0000000;stroke:url(#radialGradient23125);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path1990"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <rect
+         y="263.28696"
+         x="869.12555"
+         width="3.9195187"
+         style="fill:url(#radialGradient23127);fill-opacity:1.0000000;stroke:url(#radialGradient23129);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect1999"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="869.12555"
+         width="3.9195187"
+         style="fill:url(#radialGradient23131);fill-opacity:1.0000000;stroke:url(#radialGradient23133);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2000"
+         height="1.9597594" />
+      <rect
+         y="263.28696"
+         x="880.26239"
+         width="3.9195187"
+         style="fill:url(#radialGradient23135);fill-opacity:1.0000000;stroke:url(#radialGradient23137);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2001"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="880.26239"
+         width="3.9195187"
+         style="fill:url(#radialGradient23139);fill-opacity:1.0000000;stroke:url(#radialGradient23141);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2002"
+         height="1.9597594" />
+      <rect
+         y="263.28696"
+         x="892.06140"
+         width="3.9195187"
+         style="fill:url(#radialGradient23143);fill-opacity:1.0000000;stroke:url(#radialGradient23145);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2003"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="892.06140"
+         width="3.9195187"
+         style="fill:url(#radialGradient23147);fill-opacity:1.0000000;stroke:url(#radialGradient23149);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2004"
+         height="1.9597594" />
+      <rect
+         y="263.28696"
+         x="903.19824"
+         width="3.9195187"
+         style="fill:url(#radialGradient23151);fill-opacity:1.0000000;stroke:url(#radialGradient23153);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2005"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="903.19824"
+         width="3.9195187"
+         style="fill:url(#radialGradient23155);fill-opacity:1.0000000;stroke:url(#radialGradient23157);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2006"
+         height="1.9597594" />
+      <rect
+         y="263.28696"
+         x="913.81781"
+         width="3.9195187"
+         style="fill:url(#radialGradient23159);fill-opacity:1.0000000;stroke:url(#radialGradient23161);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2007"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="913.81781"
+         width="3.9195187"
+         style="fill:url(#radialGradient23163);fill-opacity:1.0000000;stroke:url(#radialGradient23165);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2008"
+         height="1.9597594" />
+      <rect
+         y="263.28696"
+         x="924.95465"
+         width="3.9195187"
+         style="fill:url(#radialGradient23167);fill-opacity:1.0000000;stroke:url(#radialGradient23169);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2009"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="924.95465"
+         width="3.9195187"
+         style="fill:url(#radialGradient23171);fill-opacity:1.0000000;stroke:url(#radialGradient23173);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2010"
+         height="1.9597594" />
+      <rect
+         y="263.28696"
+         x="936.12848"
+         width="3.9195187"
+         style="fill:url(#radialGradient23175);fill-opacity:1.0000000;stroke:url(#radialGradient23177);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2011"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="936.12848"
+         width="3.9195187"
+         style="fill:url(#radialGradient23179);fill-opacity:1.0000000;stroke:url(#radialGradient23181);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2012"
+         height="1.9597594" />
+      <rect
+         y="263.28696"
+         x="947.26538"
+         width="3.9195187"
+         style="fill:url(#radialGradient23183);fill-opacity:1.0000000;stroke:url(#radialGradient23185);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2013"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="947.26538"
+         width="3.9195187"
+         style="fill:url(#radialGradient23187);fill-opacity:1.0000000;stroke:url(#radialGradient23189);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2014"
+         height="1.9597594" />
+      <path
+         style="fill:url(#linearGradient23191);fill-opacity:1.0000000;stroke:url(#radialGradient23193);stroke-width:1.2528660;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         id="path2015"
+         d="M 694.51430,229.56437 L 991.76109,229.51307 L 960.03928,256.37525 L 658.67701,256.27955 L 694.51430,229.56437 z " />
+      <path
+         style="fill:url(#linearGradient23195);fill-opacity:1.0000000;stroke:url(#radialGradient23197);stroke-width:1.1759123;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         id="path2016"
+         d="M 960.74384,257.07936 L 992.81197,230.13397 L 992.77909,268.76946 L 960.88241,295.80443 L 960.74384,257.07936 z " />
+      <rect
+         y="286.39673"
+         x="662.13184"
+         width="3.9195187"
+         style="fill:url(#radialGradient23199);fill-opacity:1.0000000;stroke:url(#radialGradient23201);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2017"
+         height="1.9597594" />
+      <rect
+         y="282.18317"
+         x="662.13184"
+         width="3.9195187"
+         style="fill:url(#radialGradient23203);fill-opacity:1.0000000;stroke:url(#radialGradient23205);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2018"
+         height="1.9597594" />
+      <rect
+         y="277.96979"
+         x="662.13184"
+         width="3.9195187"
+         style="fill:url(#radialGradient23207);fill-opacity:1.0000000;stroke:url(#radialGradient23209);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2019"
+         height="1.9597594" />
+      <rect
+         y="273.90323"
+         x="662.13184"
+         width="3.9195187"
+         style="fill:url(#radialGradient23211);fill-opacity:1.0000000;stroke:url(#radialGradient23213);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2020"
+         height="1.9597594" />
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,918.4705,161.0948)"
+         style="stroke:url(#radialGradient6724)"
+         id="g2581">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23215);fill-opacity:1.0000000;stroke:url(#radialGradient23217);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2582"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23219);fill-opacity:1.0000000;stroke:url(#radialGradient23221);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2583"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,907.2997,161.0948)"
+         style="stroke:url(#radialGradient6723)"
+         id="g2584">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23223);fill-opacity:1.0000000;stroke:url(#radialGradient23225);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2585"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23227);fill-opacity:1.0000000;stroke:url(#radialGradient23229);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2586"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,985.2065,161.0948)"
+         style="stroke:url(#radialGradient6722)"
+         id="g2587">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23231);fill-opacity:1.0000000;stroke:url(#radialGradient23233);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2588"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23235);fill-opacity:1.0000000;stroke:url(#radialGradient23237);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2589"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,974.2318,161.0948)"
+         style="stroke:url(#radialGradient6721)"
+         id="g2590">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23239);fill-opacity:1.0000000;stroke:url(#radialGradient23241);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2591"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23243);fill-opacity:1.0000000;stroke:url(#radialGradient23245);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2592"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,963.0610,161.0948)"
+         style="stroke:url(#radialGradient6720)"
+         id="g2593">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23247);fill-opacity:1.0000000;stroke:url(#radialGradient23249);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2594"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23251);fill-opacity:1.0000000;stroke:url(#radialGradient23253);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2595"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,952.0863,161.0948)"
+         style="stroke:url(#radialGradient6719)"
+         id="g2596">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23255);fill-opacity:1.0000000;stroke:url(#radialGradient23257);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2597"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23259);fill-opacity:1.0000000;stroke:url(#radialGradient23261);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2598"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,940.9158,161.0948)"
+         style="stroke:url(#radialGradient6718)"
+         id="g2599">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23263);fill-opacity:1.0000000;stroke:url(#radialGradient23265);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2600"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23267);fill-opacity:1.0000000;stroke:url(#radialGradient23269);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2601"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,929.7452,161.0948)"
+         style="stroke:url(#radialGradient6717)"
+         id="g2602">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23271);fill-opacity:1.0000000;stroke:url(#radialGradient23273);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2603"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23275);fill-opacity:1.0000000;stroke:url(#radialGradient23277);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2604"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,918.5776,171.3370)"
+         style="stroke:url(#radialGradient6716)"
+         id="g2605">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23279);fill-opacity:1.0000000;stroke:url(#radialGradient23281);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2606"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23283);fill-opacity:1.0000000;stroke:url(#radialGradient23285);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2607"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,907.4068,171.3370)"
+         style="stroke:url(#radialGradient6715)"
+         id="g2608">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23287);fill-opacity:1.0000000;stroke:url(#radialGradient23289);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2609"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23291);fill-opacity:1.0000000;stroke:url(#radialGradient23293);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2610"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,985.3136,171.3370)"
+         style="stroke:url(#radialGradient6714)"
+         id="g2611">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23295);fill-opacity:1.0000000;stroke:url(#radialGradient23297);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2612"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23299);fill-opacity:1.0000000;stroke:url(#radialGradient23301);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2613"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,974.3387,171.3370)"
+         style="stroke:url(#radialGradient6713)"
+         id="g2614">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23303);fill-opacity:1.0000000;stroke:url(#radialGradient23305);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2615"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23307);fill-opacity:1.0000000;stroke:url(#radialGradient23309);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2616"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,963.1681,171.3370)"
+         style="stroke:url(#radialGradient6712)"
+         id="g2617">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23311);fill-opacity:1.0000000;stroke:url(#radialGradient23313);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2618"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23315);fill-opacity:1.0000000;stroke:url(#radialGradient23317);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2619"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,952.1934,171.3370)"
+         style="stroke:url(#radialGradient6711)"
+         id="g2620">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23319);fill-opacity:1.0000000;stroke:url(#radialGradient23321);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2621"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23323);fill-opacity:1.0000000;stroke:url(#radialGradient23325);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2622"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,929.8523,171.3370)"
+         style="stroke:url(#radialGradient6710)"
+         id="g2623">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23327);fill-opacity:1.0000000;stroke:url(#radialGradient23329);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2624"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23331);fill-opacity:1.0000000;stroke:url(#radialGradient23333);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2625"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,941.0271,171.3370)"
+         style="stroke:url(#radialGradient6709)"
+         id="g2626">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23335);fill-opacity:1.0000000;stroke:url(#radialGradient23337);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2627"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23339);fill-opacity:1.0000000;stroke:url(#radialGradient23341);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2628"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <rect
+         y="263.28696"
+         x="776.69214"
+         width="3.9195187"
+         style="fill:url(#radialGradient23343);fill-opacity:1.0000000;stroke:url(#radialGradient23345);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2629"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="776.69214"
+         width="3.9195187"
+         style="fill:url(#radialGradient23347);fill-opacity:1.0000000;stroke:url(#radialGradient23349);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2630"
+         height="1.9597594" />
+      <rect
+         y="263.28696"
+         x="787.82904"
+         width="3.9195187"
+         style="fill:url(#radialGradient23351);fill-opacity:1.0000000;stroke:url(#radialGradient23353);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2631"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="787.82904"
+         width="3.9195187"
+         style="fill:url(#radialGradient23355);fill-opacity:1.0000000;stroke:url(#radialGradient23357);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2632"
+         height="1.9597594" />
+      <rect
+         y="263.28696"
+         x="799.62799"
+         width="3.9195187"
+         style="fill:url(#radialGradient23359);fill-opacity:1.0000000;stroke:url(#radialGradient23361);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2633"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="799.62799"
+         width="3.9195187"
+         style="fill:url(#radialGradient23363);fill-opacity:1.0000000;stroke:url(#radialGradient23365);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2634"
+         height="1.9597594" />
+      <rect
+         y="263.28696"
+         x="810.76489"
+         width="3.9195187"
+         style="fill:url(#radialGradient23367);fill-opacity:1.0000000;stroke:url(#radialGradient23369);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2635"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="810.76489"
+         width="3.9195187"
+         style="fill:url(#radialGradient23371);fill-opacity:1.0000000;stroke:url(#radialGradient23373);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2636"
+         height="1.9597594" />
+      <rect
+         y="263.28696"
+         x="821.38440"
+         width="3.9195187"
+         style="fill:url(#radialGradient23375);fill-opacity:1.0000000;stroke:url(#radialGradient23377);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2637"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="821.38440"
+         width="3.9195187"
+         style="fill:url(#radialGradient23379);fill-opacity:1.0000000;stroke:url(#radialGradient23381);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2638"
+         height="1.9597594" />
+      <rect
+         y="263.28696"
+         x="832.52130"
+         width="3.9195187"
+         style="fill:url(#radialGradient23383);fill-opacity:1.0000000;stroke:url(#radialGradient23385);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2639"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="832.52130"
+         width="3.9195187"
+         style="fill:url(#radialGradient23387);fill-opacity:1.0000000;stroke:url(#radialGradient23389);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2640"
+         height="1.9597594" />
+      <rect
+         y="263.28696"
+         x="843.69507"
+         width="3.9195187"
+         style="fill:url(#radialGradient23391);fill-opacity:1.0000000;stroke:url(#radialGradient23393);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2641"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="843.69507"
+         width="3.9195187"
+         style="fill:url(#radialGradient23395);fill-opacity:1.0000000;stroke:url(#radialGradient23397);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2642"
+         height="1.9597594" />
+      <rect
+         y="263.28696"
+         x="854.83203"
+         width="3.9195187"
+         style="fill:url(#radialGradient23399);fill-opacity:1.0000000;stroke:url(#radialGradient23401);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2643"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="854.83203"
+         width="3.9195187"
+         style="fill:url(#radialGradient23403);fill-opacity:1.0000000;stroke:url(#radialGradient23405);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2644"
+         height="1.9597594" />
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,826.1327,161.0948)"
+         style="stroke:url(#radialGradient6692)"
+         id="g2853">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23407);fill-opacity:1.0000000;stroke:url(#radialGradient23409);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2854"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23411);fill-opacity:1.0000000;stroke:url(#radialGradient23413);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2855"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,814.9619,161.0948)"
+         style="stroke:url(#radialGradient6691)"
+         id="g2856">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23415);fill-opacity:1.0000000;stroke:url(#radialGradient23417);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2857"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23419);fill-opacity:1.0000000;stroke:url(#radialGradient23421);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2858"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,892.8684,161.0948)"
+         style="stroke:url(#radialGradient6690)"
+         id="g2859">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23423);fill-opacity:1.0000000;stroke:url(#radialGradient23425);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2860"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23427);fill-opacity:1.0000000;stroke:url(#radialGradient23429);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2861"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,881.8940,161.0948)"
+         style="stroke:url(#radialGradient6689)"
+         id="g2862">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23431);fill-opacity:1.0000000;stroke:url(#radialGradient23433);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2863"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23435);fill-opacity:1.0000000;stroke:url(#radialGradient23437);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2864"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,870.7231,161.0948)"
+         style="stroke:url(#radialGradient6688)"
+         id="g2865">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23439);fill-opacity:1.0000000;stroke:url(#radialGradient23441);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2866"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23443);fill-opacity:1.0000000;stroke:url(#radialGradient23445);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2867"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,859.7485,161.0948)"
+         style="stroke:url(#radialGradient6687)"
+         id="g2868">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23447);fill-opacity:1.0000000;stroke:url(#radialGradient23449);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2869"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23451);fill-opacity:1.0000000;stroke:url(#radialGradient23453);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2870"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,848.5779,161.0948)"
+         style="stroke:url(#radialGradient6686)"
+         id="g2871">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23455);fill-opacity:1.0000000;stroke:url(#radialGradient23457);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2872"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23459);fill-opacity:1.0000000;stroke:url(#radialGradient23461);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2873"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,837.4074,161.0948)"
+         style="stroke:url(#radialGradient6685)"
+         id="g2874">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23463);fill-opacity:1.0000000;stroke:url(#radialGradient23465);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2875"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23467);fill-opacity:1.0000000;stroke:url(#radialGradient23469);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2876"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,826.2398,171.3370)"
+         style="stroke:url(#radialGradient6684)"
+         id="g2877">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23471);fill-opacity:1.0000000;stroke:url(#radialGradient23473);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2878"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23475);fill-opacity:1.0000000;stroke:url(#radialGradient23477);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2879"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,815.0690,171.3370)"
+         style="stroke:url(#radialGradient6683)"
+         id="g2880">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23479);fill-opacity:1.0000000;stroke:url(#radialGradient23481);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2881"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23483);fill-opacity:1.0000000;stroke:url(#radialGradient23485);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2882"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,892.9755,171.3370)"
+         style="stroke:url(#radialGradient6682)"
+         id="g2883">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23487);fill-opacity:1.0000000;stroke:url(#radialGradient23489);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2884"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23491);fill-opacity:1.0000000;stroke:url(#radialGradient23493);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2885"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,882.0008,171.3370)"
+         style="stroke:url(#radialGradient6681)"
+         id="g2886">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23495);fill-opacity:1.0000000;stroke:url(#radialGradient23497);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2887"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23499);fill-opacity:1.0000000;stroke:url(#radialGradient23501);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2888"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,870.8303,171.3370)"
+         style="stroke:url(#radialGradient6680)"
+         id="g2889">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23503);fill-opacity:1.0000000;stroke:url(#radialGradient23505);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2890"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23507);fill-opacity:1.0000000;stroke:url(#radialGradient23509);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2891"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,859.8556,171.3370)"
+         style="stroke:url(#radialGradient6679)"
+         id="g2892">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23511);fill-opacity:1.0000000;stroke:url(#radialGradient23513);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2893"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23515);fill-opacity:1.0000000;stroke:url(#radialGradient23517);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2894"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,837.5145,171.3370)"
+         style="stroke:url(#radialGradient6678)"
+         id="g2895">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23519);fill-opacity:1.0000000;stroke:url(#radialGradient23521);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2896"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23523);fill-opacity:1.0000000;stroke:url(#radialGradient23525);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2897"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <g
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,848.6893,171.3370)"
+         style="stroke:url(#radialGradient6677)"
+         id="g2898">
+        <rect
+           y="73.027534"
+           x="-86.965797"
+           width="6.4315925"
+           style="fill:url(#linearGradient23527);fill-opacity:1.0000000;stroke:url(#radialGradient23529);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           rx="0.0000000"
+           id="rect2899"
+           height="5.1949325" />
+        <path
+           style="fill:url(#linearGradient23531);fill-opacity:1.0000000;stroke:url(#radialGradient23533);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path2900"
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z " />
+      </g>
+      <rect
+         y="263.28696"
+         x="684.35382"
+         width="3.9195187"
+         style="fill:url(#radialGradient23535);fill-opacity:1.0000000;stroke:url(#radialGradient23537);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2901"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="684.35382"
+         width="3.9195187"
+         style="fill:url(#radialGradient23539);fill-opacity:1.0000000;stroke:url(#radialGradient23541);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2902"
+         height="1.9597594" />
+      <rect
+         y="263.28696"
+         x="695.49066"
+         width="3.9195187"
+         style="fill:url(#radialGradient23543);fill-opacity:1.0000000;stroke:url(#radialGradient23545);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2903"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="695.49066"
+         width="3.9195187"
+         style="fill:url(#radialGradient23547);fill-opacity:1.0000000;stroke:url(#radialGradient23549);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2904"
+         height="1.9597594" />
+      <rect
+         y="263.28696"
+         x="707.28967"
+         width="3.9195187"
+         style="fill:url(#radialGradient23551);fill-opacity:1.0000000;stroke:url(#radialGradient23553);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2905"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="707.28967"
+         width="3.9195187"
+         style="fill:url(#radialGradient23555);fill-opacity:1.0000000;stroke:url(#radialGradient23557);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2906"
+         height="1.9597594" />
+      <rect
+         y="263.28696"
+         x="718.42651"
+         width="3.9195187"
+         style="fill:url(#radialGradient23559);fill-opacity:1.0000000;stroke:url(#radialGradient23561);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2907"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="718.42651"
+         width="3.9195187"
+         style="fill:url(#radialGradient23563);fill-opacity:1.0000000;stroke:url(#radialGradient23565);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2908"
+         height="1.9597594" />
+      <rect
+         y="263.28696"
+         x="729.04602"
+         width="3.9195187"
+         style="fill:url(#radialGradient23567);fill-opacity:1.0000000;stroke:url(#radialGradient23569);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2909"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="729.04602"
+         width="3.9195187"
+         style="fill:url(#radialGradient23571);fill-opacity:1.0000000;stroke:url(#radialGradient23573);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2910"
+         height="1.9597594" />
+      <rect
+         y="263.28696"
+         x="740.18292"
+         width="3.9195187"
+         style="fill:url(#radialGradient23575);fill-opacity:1.0000000;stroke:url(#radialGradient23577);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2911"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="740.18292"
+         width="3.9195187"
+         style="fill:url(#radialGradient23579);fill-opacity:1.0000000;stroke:url(#radialGradient23581);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2912"
+         height="1.9597594" />
+      <rect
+         y="263.28696"
+         x="751.35675"
+         width="3.9195187"
+         style="fill:url(#radialGradient23583);fill-opacity:1.0000000;stroke:url(#radialGradient23585);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2913"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="751.35675"
+         width="3.9195187"
+         style="fill:url(#radialGradient23587);fill-opacity:1.0000000;stroke:url(#radialGradient23589);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2914"
+         height="1.9597594" />
+      <rect
+         y="263.28696"
+         x="762.49365"
+         width="3.9195187"
+         style="fill:url(#radialGradient23591);fill-opacity:1.0000000;stroke:url(#radialGradient23593);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2915"
+         height="1.9597594" />
+      <rect
+         y="286.82159"
+         x="762.49365"
+         width="3.9195187"
+         style="fill:url(#radialGradient23595);fill-opacity:1.0000000;stroke:url(#radialGradient23597);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         rx="0.0000000"
+         id="rect2916"
+         height="1.9597594" />
+    </g>
+    <path
+       sodipodi:nodetypes="cccc"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       d="M 1104.0267,491.58509 L 1104.0267,327.56427 L 471.26982,327.56427 L 471.26982,209.33592"
+       id="path36428" />
+    <text
+       sodipodi:linespacing="125.00000%"
+       id="text36430"
+       y="362.16272"
+       x="421.3092"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       xml:space="preserve"><tspan
+         y="362.16272"
+         x="421.30920"
+         id="tspan36432"
+         sodipodi:role="line">Port VLAN ID:</tspan><tspan
+         id="tspan36434"
+         y="402.16272"
+         x="421.30920"
+         sodipodi:role="line">free access</tspan><tspan
+         id="tspan36436"
+         y="442.16272"
+         x="421.30920"
+         sodipodi:role="line">(for room 1)</tspan></text>
+    <rect
+       y="104.06386"
+       x="420.80725"
+       height="155.01654"
+       width="243.95662"
+       id="rect36440"
+       style="fill:#ffffff;fill-opacity:0.0000000;stroke:#000000;stroke-width:3.0000000;stroke-linecap:butt;stroke-miterlimit:4.0000000;stroke-dasharray:6.0000000 18.000000 ;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+    <text
+       sodipodi:linespacing="125.00000%"
+       id="text36442"
+       y="163.38312"
+       x="542.66833"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       xml:space="preserve"><tspan
+         y="163.38312"
+         x="542.66833"
+         id="tspan36444"
+         sodipodi:role="line">Room 1</tspan></text>
+    <text
+       sodipodi:linespacing="125.00000%"
+       id="text36446"
+       y="241.33588"
+       x="488.86823"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       xml:space="preserve"><tspan
+         y="241.33588"
+         x="488.86823"
+         id="tspan36448"
+         sodipodi:role="line">UTP-5</tspan></text>
+    <path
+       d="M 605.51034,222.36862 C 610.23885,225.52892 611.14330,233.31797 615.91065,236.23185 C 616.92879,236.85415 620.39198,234.58889 619.26934,234.99330 C 605.75056,239.86304 611.21029,238.44341 615.77314,229.80869 C 622.96372,215.51894 630.76107,201.53522 640.13847,188.55918 L 650.97268,183.88215 C 641.30361,196.64713 633.27019,210.48632 626.45207,224.97629 C 612.62221,254.44157 607.72140,243.70052 594.58524,229.55695 L 605.51034,222.36862 z "
+       id="path36450"
+       style="fill:#00ff00;fill-opacity:1.0000000;fill-rule:nonzero;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+    <path
+       id="path36454"
+       d="M 1120.8698,487.68745 L 1120.8698,309.56427 L 757.06982,309.56427 L 757.06982,209.33592"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       sodipodi:nodetypes="cccc" />
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="707.13593"
+       y="362.16272"
+       id="text36456"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan36458"
+         x="707.13593"
+         y="362.16272">Port VLAN ID:</tspan><tspan
+         sodipodi:role="line"
+         x="707.13593"
+         y="402.16272"
+         id="tspan36460">no / ticket access</tspan><tspan
+         id="tspan36462"
+         sodipodi:role="line"
+         x="707.13593"
+         y="442.16272">(for room 2)</tspan></text>
+    <rect
+       style="fill:#ffffff;fill-opacity:0.0000000;stroke:#000000;stroke-width:3.0000000;stroke-linecap:butt;stroke-miterlimit:4.0000000;stroke-dasharray:6.0000000 18.000000 ;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+       id="rect36466"
+       width="243.95662"
+       height="155.01654"
+       x="706.63397"
+       y="104.06386" />
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="828.49512"
+       y="163.38312"
+       id="text36468"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan36470"
+         x="828.49512"
+         y="163.38312">Room 2</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="774.69501"
+       y="241.33588"
+       id="text36472"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan36474"
+         x="774.69501"
+         y="241.33588">UTP-5</tspan></text>
+    <g
+       transform="translate(321.2698,258.2258)"
+       id="g36482">
+      <rect
+         height="38.909878"
+         id="rect36484"
+         rx="6.9985232"
+         ry="0.0000000"
+         style="fill:url(#linearGradient36882);fill-opacity:1.0000000;stroke:url(#radialGradient36884);stroke-width:1.2975370;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="302.02246"
+         x="657.63599"
+         y="257.52481" />
+      <g
+         id="g36486"
+         style="stroke:url(#radialGradient36886)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1010.904,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36488"
+           rx="0.0000000"
+           style="fill:url(#linearGradient36888);fill-opacity:1.0000000;stroke:url(#radialGradient36890);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36490"
+           style="fill:url(#linearGradient36892);fill-opacity:1.0000000;stroke:url(#radialGradient36894);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36492"
+         style="stroke:url(#radialGradient36896)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,999.7334,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36494"
+           rx="0.0000000"
+           style="fill:url(#linearGradient36898);fill-opacity:1.0000000;stroke:url(#radialGradient36900);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36496"
+           style="fill:url(#linearGradient36902);fill-opacity:1.0000000;stroke:url(#radialGradient36904);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36498"
+         style="stroke:url(#radialGradient36906)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1077.640,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36500"
+           rx="0.0000000"
+           style="fill:url(#linearGradient36908);fill-opacity:1.0000000;stroke:url(#radialGradient36910);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36502"
+           style="fill:url(#linearGradient36912);fill-opacity:1.0000000;stroke:url(#radialGradient36914);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36504"
+         style="stroke:url(#radialGradient36916)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1066.665,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36506"
+           rx="0.0000000"
+           style="fill:url(#linearGradient36918);fill-opacity:1.0000000;stroke:url(#radialGradient36920);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36508"
+           style="fill:url(#linearGradient36922);fill-opacity:1.0000000;stroke:url(#radialGradient36924);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36510"
+         style="stroke:url(#radialGradient36926)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1055.495,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36512"
+           rx="0.0000000"
+           style="fill:url(#linearGradient36928);fill-opacity:1.0000000;stroke:url(#radialGradient36930);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36514"
+           style="fill:url(#linearGradient36932);fill-opacity:1.0000000;stroke:url(#radialGradient36934);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36516"
+         style="stroke:url(#radialGradient36936)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1044.520,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36518"
+           rx="0.0000000"
+           style="fill:url(#linearGradient36938);fill-opacity:1.0000000;stroke:url(#radialGradient36940);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36520"
+           style="fill:url(#linearGradient36942);fill-opacity:1.0000000;stroke:url(#radialGradient36944);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36522"
+         style="stroke:url(#radialGradient36946)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1033.349,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36524"
+           rx="0.0000000"
+           style="fill:url(#linearGradient36948);fill-opacity:1.0000000;stroke:url(#radialGradient36950);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36526"
+           style="fill:url(#linearGradient36952);fill-opacity:1.0000000;stroke:url(#radialGradient36954);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36528"
+         style="stroke:url(#radialGradient36956)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1022.179,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36530"
+           rx="0.0000000"
+           style="fill:url(#linearGradient36958);fill-opacity:1.0000000;stroke:url(#radialGradient36960);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36532"
+           style="fill:url(#linearGradient36962);fill-opacity:1.0000000;stroke:url(#radialGradient36964);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36534"
+         style="stroke:url(#radialGradient36966)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1011.011,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36536"
+           rx="0.0000000"
+           style="fill:url(#linearGradient36968);fill-opacity:1.0000000;stroke:url(#radialGradient36970);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36538"
+           style="fill:url(#linearGradient36972);fill-opacity:1.0000000;stroke:url(#radialGradient36974);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36540"
+         style="stroke:url(#radialGradient36976)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,999.8405,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36542"
+           rx="0.0000000"
+           style="fill:url(#linearGradient36978);fill-opacity:1.0000000;stroke:url(#radialGradient36980);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36544"
+           style="fill:url(#linearGradient36982);fill-opacity:1.0000000;stroke:url(#radialGradient36984);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36546"
+         style="stroke:url(#radialGradient36986)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1077.747,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36548"
+           rx="0.0000000"
+           style="fill:url(#linearGradient36988);fill-opacity:1.0000000;stroke:url(#radialGradient36990);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36550"
+           style="fill:url(#linearGradient36992);fill-opacity:1.0000000;stroke:url(#radialGradient36994);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36552"
+         style="stroke:url(#radialGradient36996)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1066.772,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36554"
+           rx="0.0000000"
+           style="fill:url(#linearGradient36998);fill-opacity:1.0000000;stroke:url(#radialGradient37000);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36556"
+           style="fill:url(#linearGradient37002);fill-opacity:1.0000000;stroke:url(#radialGradient37004);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36558"
+         style="stroke:url(#radialGradient37006)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1055.602,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36560"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37008);fill-opacity:1.0000000;stroke:url(#radialGradient37010);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36562"
+           style="fill:url(#linearGradient37012);fill-opacity:1.0000000;stroke:url(#radialGradient37014);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36564"
+         style="stroke:url(#radialGradient37016)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1044.627,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36566"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37018);fill-opacity:1.0000000;stroke:url(#radialGradient37020);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36568"
+           style="fill:url(#linearGradient37022);fill-opacity:1.0000000;stroke:url(#radialGradient37024);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36570"
+         style="stroke:url(#radialGradient37026)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1022.286,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36572"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37028);fill-opacity:1.0000000;stroke:url(#radialGradient37030);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36574"
+           style="fill:url(#linearGradient37032);fill-opacity:1.0000000;stroke:url(#radialGradient37034);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36576"
+         style="stroke:url(#radialGradient37036)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,1033.461,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36578"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37038);fill-opacity:1.0000000;stroke:url(#radialGradient37040);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36580"
+           style="fill:url(#linearGradient37042);fill-opacity:1.0000000;stroke:url(#radialGradient37044);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <rect
+         height="1.9597594"
+         id="rect36582"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37046);fill-opacity:1.0000000;stroke:url(#radialGradient37048);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="869.12555"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36584"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37050);fill-opacity:1.0000000;stroke:url(#radialGradient37052);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="869.12555"
+         y="286.82159" />
+      <rect
+         height="1.9597594"
+         id="rect36586"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37054);fill-opacity:1.0000000;stroke:url(#radialGradient37056);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="880.26239"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36588"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37058);fill-opacity:1.0000000;stroke:url(#radialGradient37060);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="880.26239"
+         y="286.82159" />
+      <rect
+         height="1.9597594"
+         id="rect36590"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37062);fill-opacity:1.0000000;stroke:url(#radialGradient37064);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="892.06140"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36592"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37066);fill-opacity:1.0000000;stroke:url(#radialGradient37068);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="892.06140"
+         y="286.82159" />
+      <rect
+         height="1.9597594"
+         id="rect36594"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37070);fill-opacity:1.0000000;stroke:url(#radialGradient37072);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="903.19824"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36596"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37074);fill-opacity:1.0000000;stroke:url(#radialGradient37076);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="903.19824"
+         y="286.82159" />
+      <rect
+         height="1.9597594"
+         id="rect36598"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37078);fill-opacity:1.0000000;stroke:url(#radialGradient37080);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="913.81781"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36600"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37082);fill-opacity:1.0000000;stroke:url(#radialGradient37084);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="913.81781"
+         y="286.82159" />
+      <rect
+         height="1.9597594"
+         id="rect36602"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37086);fill-opacity:1.0000000;stroke:url(#radialGradient37088);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="924.95465"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36604"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37090);fill-opacity:1.0000000;stroke:url(#radialGradient37092);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="924.95465"
+         y="286.82159" />
+      <rect
+         height="1.9597594"
+         id="rect36606"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37094);fill-opacity:1.0000000;stroke:url(#radialGradient37096);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="936.12848"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36608"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37098);fill-opacity:1.0000000;stroke:url(#radialGradient37100);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="936.12848"
+         y="286.82159" />
+      <rect
+         height="1.9597594"
+         id="rect36610"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37102);fill-opacity:1.0000000;stroke:url(#radialGradient37104);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="947.26538"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36612"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37106);fill-opacity:1.0000000;stroke:url(#radialGradient37108);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="947.26538"
+         y="286.82159" />
+      <path
+         d="M 694.51430,229.56437 L 991.76109,229.51307 L 960.03928,256.37525 L 658.67701,256.27955 L 694.51430,229.56437 z "
+         id="path36614"
+         style="fill:url(#linearGradient37110);fill-opacity:1.0000000;stroke:url(#radialGradient37112);stroke-width:1.2528660;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      <path
+         d="M 960.74384,257.07936 L 992.81197,230.13397 L 992.77909,268.76946 L 960.88241,295.80443 L 960.74384,257.07936 z "
+         id="path36616"
+         style="fill:url(#linearGradient37114);fill-opacity:1.0000000;stroke:url(#radialGradient37116);stroke-width:1.1759123;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      <rect
+         height="1.9597594"
+         id="rect36618"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37118);fill-opacity:1.0000000;stroke:url(#radialGradient37120);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="662.13184"
+         y="286.39673" />
+      <rect
+         height="1.9597594"
+         id="rect36620"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37122);fill-opacity:1.0000000;stroke:url(#radialGradient37124);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="662.13184"
+         y="282.18317" />
+      <rect
+         height="1.9597594"
+         id="rect36622"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37126);fill-opacity:1.0000000;stroke:url(#radialGradient37128);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="662.13184"
+         y="277.96979" />
+      <rect
+         height="1.9597594"
+         id="rect36624"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37130);fill-opacity:1.0000000;stroke:url(#radialGradient37132);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="662.13184"
+         y="273.90323" />
+      <g
+         id="g36626"
+         style="stroke:url(#radialGradient37134)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,918.4705,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36628"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37136);fill-opacity:1.0000000;stroke:url(#radialGradient37138);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36630"
+           style="fill:url(#linearGradient37140);fill-opacity:1.0000000;stroke:url(#radialGradient37142);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36632"
+         style="stroke:url(#radialGradient37144)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,907.2997,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36634"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37146);fill-opacity:1.0000000;stroke:url(#radialGradient37148);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36636"
+           style="fill:url(#linearGradient37150);fill-opacity:1.0000000;stroke:url(#radialGradient37152);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36638"
+         style="stroke:url(#radialGradient37154)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,985.2065,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36640"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37156);fill-opacity:1.0000000;stroke:url(#radialGradient37158);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36642"
+           style="fill:url(#linearGradient37160);fill-opacity:1.0000000;stroke:url(#radialGradient37162);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36644"
+         style="stroke:url(#radialGradient37164)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,974.2318,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36646"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37166);fill-opacity:1.0000000;stroke:url(#radialGradient37168);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36648"
+           style="fill:url(#linearGradient37170);fill-opacity:1.0000000;stroke:url(#radialGradient37172);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36650"
+         style="stroke:url(#radialGradient37174)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,963.0610,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36652"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37176);fill-opacity:1.0000000;stroke:url(#radialGradient37178);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36654"
+           style="fill:url(#linearGradient37180);fill-opacity:1.0000000;stroke:url(#radialGradient37182);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36656"
+         style="stroke:url(#radialGradient37184)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,952.0863,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36658"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37186);fill-opacity:1.0000000;stroke:url(#radialGradient37188);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36660"
+           style="fill:url(#linearGradient37190);fill-opacity:1.0000000;stroke:url(#radialGradient37192);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36662"
+         style="stroke:url(#radialGradient37194)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,940.9158,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36664"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37196);fill-opacity:1.0000000;stroke:url(#radialGradient37198);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36666"
+           style="fill:url(#linearGradient37200);fill-opacity:1.0000000;stroke:url(#radialGradient37202);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36668"
+         style="stroke:url(#radialGradient37204)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,929.7452,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36670"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37206);fill-opacity:1.0000000;stroke:url(#radialGradient37208);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36672"
+           style="fill:url(#linearGradient37210);fill-opacity:1.0000000;stroke:url(#radialGradient37212);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36674"
+         style="stroke:url(#radialGradient37214)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,918.5776,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36676"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37216);fill-opacity:1.0000000;stroke:url(#radialGradient37218);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36678"
+           style="fill:url(#linearGradient37220);fill-opacity:1.0000000;stroke:url(#radialGradient37222);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36680"
+         style="stroke:url(#radialGradient37224)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,907.4068,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36682"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37226);fill-opacity:1.0000000;stroke:url(#radialGradient37228);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36684"
+           style="fill:url(#linearGradient37230);fill-opacity:1.0000000;stroke:url(#radialGradient37232);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36686"
+         style="stroke:url(#radialGradient37234)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,985.3136,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36688"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37236);fill-opacity:1.0000000;stroke:url(#radialGradient37238);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36690"
+           style="fill:url(#linearGradient37240);fill-opacity:1.0000000;stroke:url(#radialGradient37242);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36692"
+         style="stroke:url(#radialGradient37244)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,974.3387,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36694"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37246);fill-opacity:1.0000000;stroke:url(#radialGradient37248);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36696"
+           style="fill:url(#linearGradient37250);fill-opacity:1.0000000;stroke:url(#radialGradient37252);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36698"
+         style="stroke:url(#radialGradient37254)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,963.1681,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36700"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37256);fill-opacity:1.0000000;stroke:url(#radialGradient37258);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36702"
+           style="fill:url(#linearGradient37260);fill-opacity:1.0000000;stroke:url(#radialGradient37262);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36704"
+         style="stroke:url(#radialGradient37264)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,952.1934,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36706"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37266);fill-opacity:1.0000000;stroke:url(#radialGradient37268);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36708"
+           style="fill:url(#linearGradient37270);fill-opacity:1.0000000;stroke:url(#radialGradient37272);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36710"
+         style="stroke:url(#radialGradient37274)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,929.8523,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36712"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37276);fill-opacity:1.0000000;stroke:url(#radialGradient37278);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36714"
+           style="fill:url(#linearGradient37280);fill-opacity:1.0000000;stroke:url(#radialGradient37282);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36716"
+         style="stroke:url(#radialGradient37284)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,941.0271,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36718"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37286);fill-opacity:1.0000000;stroke:url(#radialGradient37288);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36720"
+           style="fill:url(#linearGradient37290);fill-opacity:1.0000000;stroke:url(#radialGradient37292);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <rect
+         height="1.9597594"
+         id="rect36722"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37294);fill-opacity:1.0000000;stroke:url(#radialGradient37296);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="776.69214"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36724"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37298);fill-opacity:1.0000000;stroke:url(#radialGradient37300);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="776.69214"
+         y="286.82159" />
+      <rect
+         height="1.9597594"
+         id="rect36726"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37302);fill-opacity:1.0000000;stroke:url(#radialGradient37304);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="787.82904"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36728"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37306);fill-opacity:1.0000000;stroke:url(#radialGradient37308);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="787.82904"
+         y="286.82159" />
+      <rect
+         height="1.9597594"
+         id="rect36730"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37310);fill-opacity:1.0000000;stroke:url(#radialGradient37312);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="799.62799"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36732"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37314);fill-opacity:1.0000000;stroke:url(#radialGradient37316);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="799.62799"
+         y="286.82159" />
+      <rect
+         height="1.9597594"
+         id="rect36734"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37318);fill-opacity:1.0000000;stroke:url(#radialGradient37320);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="810.76489"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36736"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37322);fill-opacity:1.0000000;stroke:url(#radialGradient37324);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="810.76489"
+         y="286.82159" />
+      <rect
+         height="1.9597594"
+         id="rect36738"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37326);fill-opacity:1.0000000;stroke:url(#radialGradient37328);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="821.38440"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36740"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37330);fill-opacity:1.0000000;stroke:url(#radialGradient37332);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="821.38440"
+         y="286.82159" />
+      <rect
+         height="1.9597594"
+         id="rect36742"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37334);fill-opacity:1.0000000;stroke:url(#radialGradient37336);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="832.52130"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36744"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37338);fill-opacity:1.0000000;stroke:url(#radialGradient37340);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="832.52130"
+         y="286.82159" />
+      <rect
+         height="1.9597594"
+         id="rect36746"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37342);fill-opacity:1.0000000;stroke:url(#radialGradient37344);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="843.69507"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36748"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37346);fill-opacity:1.0000000;stroke:url(#radialGradient37348);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="843.69507"
+         y="286.82159" />
+      <rect
+         height="1.9597594"
+         id="rect36750"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37350);fill-opacity:1.0000000;stroke:url(#radialGradient37352);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="854.83203"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36752"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37354);fill-opacity:1.0000000;stroke:url(#radialGradient37356);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="854.83203"
+         y="286.82159" />
+      <g
+         id="g36754"
+         style="stroke:url(#radialGradient37358)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,826.1327,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36756"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37360);fill-opacity:1.0000000;stroke:url(#radialGradient37362);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36758"
+           style="fill:url(#linearGradient37364);fill-opacity:1.0000000;stroke:url(#radialGradient37366);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36760"
+         style="stroke:url(#radialGradient37368)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,814.9619,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36762"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37370);fill-opacity:1.0000000;stroke:url(#radialGradient37372);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36764"
+           style="fill:url(#linearGradient37374);fill-opacity:1.0000000;stroke:url(#radialGradient37376);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36766"
+         style="stroke:url(#radialGradient37378)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,892.8684,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36768"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37380);fill-opacity:1.0000000;stroke:url(#radialGradient37382);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36770"
+           style="fill:url(#linearGradient37384);fill-opacity:1.0000000;stroke:url(#radialGradient37386);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36772"
+         style="stroke:url(#radialGradient37388)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,881.8940,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36774"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37390);fill-opacity:1.0000000;stroke:url(#radialGradient37392);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36776"
+           style="fill:url(#linearGradient37394);fill-opacity:1.0000000;stroke:url(#radialGradient37396);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36778"
+         style="stroke:url(#radialGradient37398)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,870.7231,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36780"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37400);fill-opacity:1.0000000;stroke:url(#radialGradient37402);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36782"
+           style="fill:url(#linearGradient37404);fill-opacity:1.0000000;stroke:url(#radialGradient37406);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36784"
+         style="stroke:url(#radialGradient37408)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,859.7485,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36786"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37410);fill-opacity:1.0000000;stroke:url(#radialGradient37412);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36788"
+           style="fill:url(#linearGradient37414);fill-opacity:1.0000000;stroke:url(#radialGradient37416);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36790"
+         style="stroke:url(#radialGradient37418)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,848.5779,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36792"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37420);fill-opacity:1.0000000;stroke:url(#radialGradient37422);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36794"
+           style="fill:url(#linearGradient37424);fill-opacity:1.0000000;stroke:url(#radialGradient37426);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36796"
+         style="stroke:url(#radialGradient37428)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,837.4074,161.0948)">
+        <rect
+           height="5.1949325"
+           id="rect36798"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37430);fill-opacity:1.0000000;stroke:url(#radialGradient37432);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36800"
+           style="fill:url(#linearGradient37434);fill-opacity:1.0000000;stroke:url(#radialGradient37436);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36802"
+         style="stroke:url(#radialGradient37438)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,826.2398,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36804"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37440);fill-opacity:1.0000000;stroke:url(#radialGradient37442);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36806"
+           style="fill:url(#linearGradient37444);fill-opacity:1.0000000;stroke:url(#radialGradient37446);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36808"
+         style="stroke:url(#radialGradient37448)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,815.0690,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36810"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37450);fill-opacity:1.0000000;stroke:url(#radialGradient37452);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36812"
+           style="fill:url(#linearGradient37454);fill-opacity:1.0000000;stroke:url(#radialGradient37456);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36814"
+         style="stroke:url(#radialGradient37458)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,892.9755,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36816"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37460);fill-opacity:1.0000000;stroke:url(#radialGradient37462);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36818"
+           style="fill:url(#linearGradient37464);fill-opacity:1.0000000;stroke:url(#radialGradient37466);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36820"
+         style="stroke:url(#radialGradient37468)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,882.0008,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36822"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37470);fill-opacity:1.0000000;stroke:url(#radialGradient37472);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36824"
+           style="fill:url(#linearGradient37474);fill-opacity:1.0000000;stroke:url(#radialGradient37476);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36826"
+         style="stroke:url(#radialGradient37478)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,870.8303,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36828"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37480);fill-opacity:1.0000000;stroke:url(#radialGradient37482);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36830"
+           style="fill:url(#linearGradient37484);fill-opacity:1.0000000;stroke:url(#radialGradient37486);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36832"
+         style="stroke:url(#radialGradient37488)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,859.8556,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36834"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37490);fill-opacity:1.0000000;stroke:url(#radialGradient37492);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36836"
+           style="fill:url(#linearGradient37494);fill-opacity:1.0000000;stroke:url(#radialGradient37496);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36838"
+         style="stroke:url(#radialGradient37498)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,837.5145,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36840"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37500);fill-opacity:1.0000000;stroke:url(#radialGradient37502);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36842"
+           style="fill:url(#linearGradient37504);fill-opacity:1.0000000;stroke:url(#radialGradient37506);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <g
+         id="g36844"
+         style="stroke:url(#radialGradient37508)"
+         transform="matrix(1.533424,0.000000,0.000000,1.452209,848.6893,171.3370)">
+        <rect
+           height="5.1949325"
+           id="rect36846"
+           rx="0.0000000"
+           style="fill:url(#linearGradient37510);fill-opacity:1.0000000;stroke:url(#radialGradient37512);stroke-width:0.30130714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           width="6.4315925"
+           x="-86.965797"
+           y="73.027534" />
+        <path
+           d="M -86.234993,73.601143 L -81.147826,73.601143 L -81.147826,77.023864 L -83.103212,77.023864 L -83.114108,77.570739 L -83.730473,77.570739 L -84.385899,77.570739 L -84.377263,77.043395 L -86.234993,77.023864 L -86.234993,73.601143 z "
+           id="path36848"
+           style="fill:url(#linearGradient37514);fill-opacity:1.0000000;stroke:url(#radialGradient37516);stroke-width:0.21751237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000" />
+      </g>
+      <rect
+         height="1.9597594"
+         id="rect36850"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37518);fill-opacity:1.0000000;stroke:url(#radialGradient37520);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="684.35382"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36852"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37522);fill-opacity:1.0000000;stroke:url(#radialGradient37524);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="684.35382"
+         y="286.82159" />
+      <rect
+         height="1.9597594"
+         id="rect36854"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37526);fill-opacity:1.0000000;stroke:url(#radialGradient37528);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="695.49066"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36856"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37530);fill-opacity:1.0000000;stroke:url(#radialGradient37532);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="695.49066"
+         y="286.82159" />
+      <rect
+         height="1.9597594"
+         id="rect36858"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37534);fill-opacity:1.0000000;stroke:url(#radialGradient37536);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="707.28967"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36860"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37538);fill-opacity:1.0000000;stroke:url(#radialGradient37540);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="707.28967"
+         y="286.82159" />
+      <rect
+         height="1.9597594"
+         id="rect36862"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37542);fill-opacity:1.0000000;stroke:url(#radialGradient37544);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="718.42651"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36864"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37546);fill-opacity:1.0000000;stroke:url(#radialGradient37548);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="718.42651"
+         y="286.82159" />
+      <rect
+         height="1.9597594"
+         id="rect36866"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37550);fill-opacity:1.0000000;stroke:url(#radialGradient37552);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="729.04602"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36868"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37554);fill-opacity:1.0000000;stroke:url(#radialGradient37556);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="729.04602"
+         y="286.82159" />
+      <rect
+         height="1.9597594"
+         id="rect36870"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37558);fill-opacity:1.0000000;stroke:url(#radialGradient37560);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="740.18292"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36872"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37562);fill-opacity:1.0000000;stroke:url(#radialGradient37564);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="740.18292"
+         y="286.82159" />
+      <rect
+         height="1.9597594"
+         id="rect36874"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37566);fill-opacity:1.0000000;stroke:url(#radialGradient37568);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="751.35675"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36876"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37570);fill-opacity:1.0000000;stroke:url(#radialGradient37572);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="751.35675"
+         y="286.82159" />
+      <rect
+         height="1.9597594"
+         id="rect36878"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37574);fill-opacity:1.0000000;stroke:url(#radialGradient37576);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="762.49365"
+         y="263.28696" />
+      <rect
+         height="1.9597594"
+         id="rect36880"
+         rx="0.0000000"
+         style="fill:url(#radialGradient37578);fill-opacity:1.0000000;stroke:url(#radialGradient37580);stroke-width:1.2542460;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+         width="3.9195187"
+         x="762.49365"
+         y="286.82159" />
+    </g>
+    <g
+       id="g40688"
+       transform="translate(987.7656,876.6509)">
+      <path
+         sodipodi:nodetypes="ccccc"
+         id="path37720"
+         d="M -86.419853,-691.35483 C -76.144661,-694.12138 -64.683870,-695.22800 -55.594278,-689.69490 C -64.091071,-673.09562 -66.659869,-647.36672 -63.300672,-629.93747 C -71.402265,-637.40715 -83.060655,-635.74723 -94.719045,-632.42736 C -98.473443,-651.23989 -96.892644,-670.05241 -86.419853,-691.35483 z "
+         style="fill:#ffff00;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+      <path
+         sodipodi:nodetypes="cc"
+         id="path39200"
+         d="M -85.234254,-677.24544 C -79.701458,-679.45868 -75.354262,-680.84195 -68.635867,-676.41547"
+         style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+      <path
+         style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+         d="M -87.605452,-667.28587 C -82.072656,-669.49911 -77.725460,-670.88238 -71.007065,-666.45590"
+         id="path39202"
+         sodipodi:nodetypes="cc" />
+    </g>
+    <path
+       d="M 892.63633,680.99062 C 897.36483,684.15092 898.26923,691.93997 903.03663,694.85385 C 904.05473,695.47615 907.51793,693.21089 906.39533,693.61530 C 892.87653,698.48504 898.33623,697.06541 902.89913,688.43069 C 910.08973,674.14094 917.88703,660.15722 927.26443,647.18118 L 938.09863,642.50415 C 928.42963,655.26913 920.39613,669.10832 913.57803,683.59829 C 899.74823,713.06357 894.84733,702.32252 881.71123,688.17895 L 892.63633,680.99062 z "
+       id="path40702"
+       style="fill:#00ff00;fill-opacity:1.0000000;fill-rule:nonzero;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="1318.1298"
+       y="1835.8643"
+       id="text14622"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan14624"
+         x="1318.1298"
+         y="1835.8643">Restaurant hosts</tspan></text>
+    <text
+       sodipodi:linespacing="125.00000%"
+       id="text19202"
+       y="1936.2166"
+       x="1084.3589"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       xml:space="preserve"><tspan
+         sodipodi:role="line"
+         id="tspan19206"
+         x="1084.3589"
+         y="1936.2166">Hotel restaurant</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="1392.2908"
+       y="1555.9636"
+       id="text14593"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan14595"
+         x="1392.2908"
+         y="1555.9636">802.11g - WiFi</tspan><tspan
+         sodipodi:role="line"
+         x="1392.2908"
+         y="1595.9636"
+         id="tspan14597">access point</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="1210.6172"
+       y="920.74164"
+       id="text40713"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan40715"
+         x="1210.6172"
+         y="920.74164">Managed (VLAN-capable) switch #1</tspan></text>
+    <text
+       sodipodi:linespacing="125.00000%"
+       id="text40717"
+       y="459.12796"
+       x="1210.6172"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       xml:space="preserve"><tspan
+         y="459.12796"
+         x="1210.6172"
+         id="tspan40719"
+         sodipodi:role="line">Managed (VLAN-capable) switch #2</tspan></text>
+    <path
+       sodipodi:nodetypes="cc"
+       id="path19240"
+       d="M 1181.9247,1011.4515 L 1181.9247,1538.2127"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="715.69611"
+       y="1835.8643"
+       id="text47692"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         x="715.69611"
+         y="1835.8643"
+         id="tspan47696">Reception:</tspan><tspan
+         sodipodi:role="line"
+         x="715.69611"
+         y="1875.8643"
+         id="tspan49493">HotelGate control</tspan></text>
+    <g
+       id="g47843"
+       transform="translate(260.5287,937.7139)">
+      <g
+         id="g45450"
+         transform="matrix(0.252775,0.000000,0.000000,0.259878,464.0203,689.3932)">
+        <path
+           d="M 105.37590,499.56408 L 62.264953,366.13485 L 227.47681,309.43459 L 270.85338,311.77757 L 300.64063,316.93214 L 308.40381,357.70010 L 522.47417,385.47181 L 536.92211,397.77981 L 536.84352,446.16980 L 527.39300,516.58386 L 508.10193,601.99303 L 487.40506,614.76963 L 446.08992,604.11636 L 434.29641,618.76735 L 414.45526,631.47805 L 394.61412,635.28540 L 375.71016,635.34398 L 355.40042,629.31079 L 337.90226,619.99742 L 324.62147,607.40386 L 322.11843,596.68470 L 338.51933,564.69909 L 276.66449,544.89700 L 195.00328,609.09483 L 128.33717,578.63600 L 105.37590,499.56408 z "
+           id="path45452"
+           style="fill:#fcfcfd" />
+        <path
+           d="M 366.29132,636.36125 C 352.72087,633.06944 340.57499,627.11098 331.52240,619.30449 C 321.49709,610.65919 319.36015,605.75294 320.18807,593.28186 C 320.74157,584.94442 321.75044,582.24288 326.85569,575.42709 L 332.87114,567.39619 L 328.41078,565.74038 C 325.95759,564.82968 313.45556,560.35628 300.62848,555.79947 L 277.30655,547.51438 L 266.55634,556.32474 C 260.64373,561.17044 242.98250,575.76199 227.30919,588.75040 C 206.43848,606.04587 197.69703,612.36569 194.64503,612.36569 C 192.35306,612.36569 176.05439,605.35475 158.42576,596.78582 L 126.37371,581.20596 L 120.69086,564.65355 C 108.83895,530.13250 58.362719,371.97699 58.362719,369.36282 C 58.362719,367.85828 59.634155,365.54980 61.188121,364.23285 C 62.742094,362.91591 99.933978,349.91628 143.83676,335.34480 L 223.65998,308.85118 L 238.28588,308.97620 C 264.52814,309.20052 302.16884,312.56206 303.61779,314.81071 C 304.34668,315.94187 305.42109,322.55480 306.00540,329.50611 C 306.58970,336.45742 307.48989,345.31709 308.00582,349.19427 L 308.94385,356.24368 L 339.05033,359.73255 C 457.39954,373.44735 512.55345,380.39695 520.09401,382.54477 C 530.59220,385.53500 538.45599,392.52463 540.92726,401.06217 C 544.68097,414.03019 542.77569,437.45698 532.87293,500.09629 C 526.43807,540.79953 516.35838,589.32948 512.03968,600.40059 C 510.14245,605.26419 506.40469,611.33967 503.73353,613.90167 C 496.83619,620.51720 486.41739,620.30905 463.97887,613.10745 C 454.63522,610.10864 446.85916,607.84389 446.69873,608.07469 C 446.53830,608.30548 444.78564,611.08097 442.80394,614.24242 C 438.22301,621.55047 429.30582,628.32671 417.37635,633.56505 C 409.59749,636.98079 405.24874,637.76098 391.80905,638.15188 C 381.37865,638.45525 372.29649,637.81793 366.29132,636.36125 z M 413.21952,630.22440 C 424.36324,625.78369 420.96774,624.07628 398.89564,623.02177 C 382.34967,622.23125 376.16233,621.19983 363.50604,617.12232 C 355.07020,614.40453 343.69090,609.78351 338.21873,606.85338 C 325.88851,600.25106 323.90702,600.10190 327.09566,606.01608 C 332.38808,615.83230 350.09523,626.84235 368.34958,631.66718 C 380.05561,634.76120 403.74632,633.99944 413.21952,630.22440 z M 488.37317,606.26551 C 491.16184,605.24858 493.32660,602.33675 495.56838,596.58711 C 503.16902,577.09335 522.80309,466.40434 528.32024,411.94530 C 530.46987,390.72652 530.61974,391.03185 516.07769,387.00197 C 507.11354,384.51782 286.42663,358.41386 274.34130,358.40816 C 260.94474,358.40186 261.10775,357.57651 262.31599,419.28783 C 262.88602,448.40190 264.11893,484.06886 265.05580,498.54774 C 266.94699,527.77537 268.77440,533.68963 277.38084,538.43688 C 282.85359,541.45561 307.69873,550.31451 396.60359,580.94760 C 475.12701,608.00364 479.95454,609.33548 488.37317,606.26551 z M 453.03868,584.46710 C 436.14179,580.10863 299.89191,535.66353 291.54096,531.78610 C 287.58048,529.94720 283.44423,526.94263 282.34930,525.10928 C 279.78073,520.80845 279.46377,390.55605 282.00985,385.61297 C 283.06108,383.57209 285.54648,382.23123 288.84895,381.92336 C 293.56837,381.48339 341.63001,388.30586 434.54469,402.60525 C 487.04801,410.68539 489.43820,412.04043 489.43820,433.72527 C 489.43820,460.63141 475.60052,574.29202 471.39041,581.96697 C 469.64024,585.15749 466.88437,587.61609 465.22048,587.47135 C 464.77649,587.43271 459.29467,586.08082 453.03868,584.46710 z M 164.30963,528.58534 C 161.24419,517.20463 159.12602,507.28803 159.60256,506.54846 C 161.50366,503.59814 167.32030,512.22986 171.63293,524.40118 C 177.87051,542.00515 176.33108,534.58771 161.44649,475.31960 C 154.38794,447.21353 146.32261,414.46184 143.52356,402.53806 C 140.72449,390.61427 138.39989,380.77011 138.35778,380.66213 C 138.04295,379.85488 65.679566,367.96103 64.681746,368.55252 C 63.216388,369.42116 64.998726,375.70811 76.511611,410.28077 C 81.049532,423.90795 85.041109,433.88852 85.381767,432.45978 C 86.150142,429.23727 91.779172,429.83083 112.44897,435.31395 C 134.17943,441.07844 140.20626,444.01884 143.38163,450.40558 C 145.62829,454.92436 145.76286,456.59850 144.15199,459.98950 C 142.35799,463.76602 141.65014,464.01743 135.39715,463.09894 C 112.34161,459.71238 107.69180,460.18210 114.06349,465.25406 C 115.66677,466.53029 116.48526,469.99624 116.48526,475.50920 C 116.48526,483.78853 116.51413,483.83658 121.48843,483.83658 C 137.98993,483.83658 154.83897,504.92057 165.11851,538.43294 C 170.91591,557.33306 170.41705,551.25964 164.30963,528.58534 z M 105.77740,421.97958 C 95.892151,419.54857 85.975808,416.41051 83.741089,415.00609 C 78.023163,411.41265 75.289306,404.60174 77.776007,400.14515 C 79.558272,396.95104 80.490102,396.76508 90.423693,397.62117 C 96.321719,398.12945 107.08535,400.32463 114.34287,402.49934 C 129.68457,407.09647 135.85944,412.47453 135.85944,421.23940 C 135.85944,426.34525 135.63647,426.53787 129.80501,426.47004 C 126.47507,426.43131 115.66265,424.41060 105.77740,421.97958 z M 127.78686,419.47023 C 127.78686,413.86287 119.40860,410.05620 97.409160,405.66814 C 83.175277,402.82901 84.194958,402.84970 84.194958,405.39997 C 84.194958,407.94253 92.091628,411.40983 109.21994,416.38801 C 122.21566,420.16511 127.78686,421.08995 127.78686,419.47023 z M 131.01590,412.60359 C 131.01590,411.75189 130.24648,411.05504 129.30610,411.05504 C 128.36571,411.05504 128.04531,411.75189 128.59412,412.60359 C 129.87272,414.58786 131.01590,414.58786 131.01590,412.60359 z M 154.29014,532.93532 C 152.88842,528.98960 148.84334,522.77404 145.30107,519.12296 C 138.50045,512.11345 138.57547,513.45037 145.50138,522.69275 C 147.79396,525.75211 151.03526,531.15976 152.70429,534.70975 C 156.64607,543.09388 157.54260,542.09074 154.29014,532.93532 z M 135.85944,452.14592 C 135.85944,448.97728 131.39000,446.99728 112.62504,441.85288 C 93.828797,436.69988 92.283499,436.51071 95.691941,439.77987 C 97.767657,441.77077 130.69672,454.07326 134.64855,454.33428 C 135.31454,454.37827 135.85944,453.39350 135.85944,452.14592 z "
+           id="path45454"
+           style="fill:#d2d2d2" />
+        <path
+           d="M 375.61490,637.61072 C 367.25780,636.54760 353.45472,632.37189 345.47131,628.49169 C 318.82423,615.54035 312.33815,593.70859 328.93647,572.83628 C 331.32571,569.83183 332.99760,567.17601 332.65177,566.93449 C 332.30594,566.69296 319.74051,562.19873 304.72856,556.94735 L 277.43413,547.39934 L 264.36569,557.97671 C 257.17806,563.79426 239.34337,578.41169 224.73307,590.45988 C 210.12278,602.50808 196.77418,612.36569 195.06953,612.36569 C 192.12448,612.36569 142.33069,589.39109 131.59715,583.07986 C 125.55362,579.52632 125.18550,578.51388 89.037432,466.02833 C 75.626143,424.29509 63.601162,387.06399 62.315254,383.29254 C 59.051576,373.72050 59.262211,365.06993 62.802641,363.27640 C 64.356607,362.48918 101.90268,349.79098 146.23836,335.05818 L 226.84869,308.27127 L 263.85944,310.54276 C 295.39558,312.47826 301.17349,313.21212 302.92069,315.50392 C 304.04847,316.98323 305.45178,323.93104 306.03918,330.94349 C 306.62655,337.95594 307.51621,346.57745 308.01621,350.10239 L 308.92528,356.51138 L 323.70318,358.23818 C 459.45631,374.10103 511.25673,380.58259 519.06058,382.68238 C 536.46445,387.36529 542.69054,396.69348 542.70819,418.11224 C 542.73105,445.85080 522.85971,567.16062 513.56527,596.02292 C 511.32719,602.97287 508.36053,608.12455 504.15386,612.36598 C 498.69693,617.86801 497.16797,618.55986 490.46560,618.55986 C 486.20846,618.55986 475.08560,616.13052 464.94151,612.98515 C 448.05457,607.74904 446.86410,607.57918 445.34159,610.18861 C 442.14449,615.66808 430.57189,626.59009 424.12137,630.21589 C 412.34920,636.83293 392.85843,639.80431 375.61490,637.61072 z M 415.17052,629.19693 C 420.05442,627.01912 426.48997,623.03661 429.47173,620.34691 C 433.96116,616.29722 434.70739,614.72505 433.81269,611.20117 C 432.23713,604.99574 426.98334,600.88671 415.52701,596.89980 L 405.38917,593.37175 L 400.04217,599.30456 L 394.69517,605.23737 L 377.47158,598.73600 C 367.99859,595.16024 359.68944,592.23462 359.00679,592.23462 C 356.04355,592.23462 352.20443,585.55107 352.20443,580.39237 L 352.20443,574.77967 L 344.91130,575.73847 C 330.29494,577.65999 323.83647,584.37477 324.18674,597.28553 C 324.52301,609.68139 340.19579,623.34159 362.03961,630.27764 C 378.67991,635.56142 401.95958,635.08789 415.17052,629.19693 z M 494.37117,612.31979 C 496.07958,611.44283 498.53395,608.76558 499.82534,606.37035 C 506.01144,594.89657 532.22212,439.78743 533.43935,407.44988 C 533.82007,397.33555 533.61640,396.68664 528.75032,392.51064 C 525.31498,389.56248 519.97203,387.33976 512.29485,385.66495 C 501.25604,383.25683 281.66597,356.86535 272.61619,356.85913 C 269.90068,356.85726 266.42423,358.46609 263.88868,360.89803 L 259.67449,364.94004 L 260.70834,427.87253 C 261.85957,497.94787 263.67230,526.39729 267.43025,533.36741 C 270.60427,539.25452 273.96795,540.86341 310.18378,553.81708 C 355.42458,569.99881 475.41301,611.90825 479.00929,612.78430 C 484.62646,614.15266 491.18698,613.95427 494.37117,612.31979 z M 453.11162,581.87290 C 451.33565,581.44275 414.78037,569.95953 371.87767,556.35467 C 311.52006,537.21467 292.75097,530.65718 288.91430,527.36919 C 284.02873,523.18232 283.93648,522.82553 282.63670,503.09110 C 281.01874,478.52586 280.81217,427.25128 282.23570,403.55469 C 283.18806,387.70132 283.62324,385.84358 286.69953,384.49920 C 290.30113,382.92526 317.94753,386.73627 412.50776,401.84169 C 479.33287,412.51661 482.53589,413.38915 486.22089,421.92199 C 489.97659,430.61855 485.72516,481.36297 475.67141,547.83917 C 470.95577,579.01935 469.74467,582.07753 461.97998,582.41204 C 458.87834,582.54567 454.88758,582.30305 453.11162,581.87290 z M 195.59649,607.04999 C 195.59649,606.68144 192.71401,595.00929 189.19098,581.11188 C 174.83044,524.46344 145.47821,407.50696 143.01570,397.12254 C 141.56621,391.01001 140.71539,384.32739 141.12499,382.27225 C 141.72075,379.28307 141.18787,378.52932 138.46095,378.50407 C 136.58613,378.48671 119.62499,375.82554 100.76953,372.59035 C 81.914071,369.35517 65.649031,367.20486 64.624986,367.81189 C 63.316822,368.58735 69.837554,390.95520 86.550690,443.02292 C 122.48756,554.97984 127.82104,571.02692 130.34246,574.78128 C 131.61756,576.67988 134.93291,579.36022 137.70990,580.73757 L 142.75899,583.24187 L 139.49869,578.83412 C 134.19618,571.66540 126.31876,553.82287 121.25497,537.51164 C 115.45177,518.81869 113.08062,491.11169 116.87466,486.32769 C 123.16752,478.39287 142.23396,490.98520 152.47321,509.83858 C 160.93766,525.42403 177.04003,575.10787 178.14838,589.05925 C 178.43095,592.61611 177.68290,594.80143 175.79098,595.94605 C 173.42380,597.37822 174.48924,598.34799 183.09719,602.59625 C 192.95571,607.46170 195.59649,608.40265 195.59649,607.04999 z M 122.13606,456.13537 C 114.14421,453.77178 105.00292,450.75996 101.82207,449.44240 C 94.843471,446.55176 88.718299,439.52026 89.370334,435.14823 C 89.769058,432.47470 90.887691,432.01023 96.303821,432.26930 C 105.44664,432.70666 139.55763,443.82821 140.47702,446.67154 C 141.12491,448.67527 140.85397,448.69812 138.50475,446.83801 C 137.00691,445.65201 135.37347,445.07292 134.87489,445.55114 C 133.90626,446.48019 138.81949,449.42235 141.51024,449.52453 C 143.40732,449.59659 145.31981,455.87763 144.29573,458.67276 C 143.25866,461.50336 138.40883,460.94803 122.13606,456.13537 z M 137.47396,454.58581 C 137.47396,449.32795 127.31729,444.55928 104.00153,438.87014 C 95.069751,436.69074 92.862068,437.24289 94.467156,441.25477 C 95.627191,444.15426 103.05994,447.38534 119.71429,452.22993 C 132.98679,456.09078 137.47396,456.68602 137.47396,454.58581 z M 114.87074,422.53192 C 93.917741,417.20818 88.983280,415.45616 84.302330,411.67833 C 78.723390,407.17579 77.409755,399.28413 81.960407,397.60925 C 87.372970,395.61712 122.11578,403.86502 128.61709,408.68548 C 131.21023,410.60820 131.28300,410.88222 128.99775,410.11889 C 127.44378,409.59983 126.17235,409.86123 126.17235,410.69976 C 126.17235,413.04046 130.66998,416.08851 132.51235,414.99638 C 134.43873,413.85447 136.64802,420.96678 135.10889,423.35537 C 133.67553,425.57984 125.56835,425.24997 114.87074,422.53192 z M 127.76214,419.18490 C 127.70579,413.00799 124.74292,411.50369 102.77863,406.50033 C 86.390762,402.76725 82.580445,402.55878 82.580445,405.39513 C 82.580445,410.30151 93.378777,414.99285 115.05315,419.50291 C 128.46173,422.29298 127.79065,422.30978 127.76214,419.18490 z M 165.95209,577.52167 C 167.05374,574.76812 163.10613,558.29479 156.62256,538.58964 C 152.92168,527.34173 150.61446,523.09826 145.39500,517.93974 C 133.74255,506.42330 119.71429,503.73579 119.71429,513.01985 C 119.71429,519.24531 128.78134,549.35865 133.59338,559.11481 C 137.88213,567.81005 142.40495,571.73471 153.90545,576.74053 C 162.34514,580.41407 164.73294,580.56889 165.95209,577.52167 z "
+           id="path45456"
+           style="fill:#aaaaaa" />
+        <path
+           d="M 369.50001,636.30956 C 348.13040,632.23328 328.67613,620.65425 322.97752,608.61973 C 317.23911,596.50120 319.95545,582.44475 329.94970,572.54023 C 333.70019,568.82342 334.39743,567.35300 332.69328,566.75424 C 331.43664,566.31272 318.55510,561.76095 304.06765,556.63917 C 289.58019,551.51741 277.46249,547.32686 277.13942,547.32686 C 276.81636,547.32686 258.90856,561.96060 237.34433,579.84627 C 215.78009,597.73195 196.80150,612.36569 195.16968,612.36569 C 190.46539,612.36569 129.22875,582.50623 126.89005,579.07200 C 125.73003,577.36861 114.84873,545.31376 102.70937,507.83901 C 55.594030,362.39181 56.693156,366.37345 62.802641,363.27462 C 64.356607,362.48643 101.87814,349.81187 146.18382,335.10895 L 226.73961,308.37637 L 263.71431,310.69837 C 286.67927,312.14056 301.40445,313.70655 302.57717,314.83135 C 303.61564,315.82740 305.34556,325.40743 306.42143,336.12030 C 307.49729,346.83319 308.65912,355.86836 309.00331,356.19847 C 309.34748,356.52858 342.63918,360.64272 382.98485,365.34100 C 517.11297,380.96031 522.58595,381.79656 531.78026,388.07596 C 542.94833,395.70337 544.79659,410.91340 539.55915,452.09144 C 535.77447,481.84750 525.60424,542.72138 520.15543,568.23220 C 514.39716,595.19186 510.42415,606.04388 503.90627,612.61560 C 498.71054,617.85430 497.11516,618.55986 490.46560,618.55986 C 486.20846,618.55986 475.08560,616.13052 464.94151,612.98515 C 447.87216,607.69247 446.87850,607.55450 445.30111,610.25799 C 441.44234,616.87148 429.18680,627.58746 421.26944,631.27078 C 405.27160,638.71329 389.92960,640.20655 369.50001,636.30956 z M 403.00521,633.22006 C 408.23120,631.91448 416.08900,628.97638 420.46700,626.69094 C 428.31467,622.59424 441.00275,610.48409 441.00275,607.09060 C 441.00275,605.53415 404.03030,591.19117 403.34297,592.48098 C 399.76121,599.20238 397.08084,602.38370 394.70087,602.73820 C 393.08342,602.97913 384.13147,600.41771 374.80764,597.04616 C 356.79258,590.53181 352.57500,586.95420 352.32244,577.97275 C 352.22287,574.43219 351.16338,573.47726 345.54258,571.86203 C 338.97257,569.97405 338.80900,570.02272 333.67818,575.39265 C 325.75051,583.68974 322.44841,593.30032 324.73130,601.43192 C 328.56945,615.10329 349.07620,628.70570 372.61184,633.19174 C 387.42211,636.01465 391.80259,636.01874 403.00521,633.22006 z M 497.02221,612.43220 C 500.91722,610.15430 502.81151,607.39974 504.73885,601.21105 C 511.87423,578.29934 536.25914,430.61214 536.25914,410.30840 C 536.25914,395.11871 529.90687,388.81519 510.65517,384.90087 C 499.61413,382.65598 280.93384,356.84809 273.22117,356.87974 C 260.04153,356.93382 259.29950,359.57784 259.75551,404.86087 C 260.24210,453.18174 263.14810,518.15604 265.22697,527.19518 C 267.25005,535.99187 271.26157,540.08493 281.73956,544.04339 C 323.08873,559.66463 463.44676,608.57737 478.13660,612.48491 C 491.40835,616.01523 490.89307,616.01667 497.02221,612.43220 z M 430.50840,572.12657 C 391.18960,560.58148 297.06265,530.22822 292.20133,527.52647 C 289.83504,526.21139 287.08848,523.42922 286.09786,521.34388 C 281.42786,511.51316 280.09405,398.63167 284.55345,390.63965 C 287.04160,386.18048 296.12949,387.01663 354.80466,397.10318 C 411.44511,406.83996 430.41008,410.70506 463.60596,419.27710 C 489.46179,425.95377 488.85410,425.01800 486.26599,454.17084 C 482.13499,500.70275 471.91384,570.54054 468.28200,577.04940 C 465.86910,581.37372 458.91446,580.46736 430.50840,572.12657 z M 196.43227,603.46156 C 192.36530,588.11839 177.42778,521.67530 174.58658,506.29047 C 167.54635,468.16836 168.73092,438.80480 178.64649,405.65180 C 180.68708,398.82904 183.20091,389.27051 184.23278,384.41060 C 187.14535,370.69308 196.84099,363.16246 235.09587,344.90525 C 251.99849,336.83845 264.73809,330.57349 263.40612,330.98311 C 262.07414,331.39274 234.19024,342.01796 201.44191,354.59473 L 141.89948,377.46157 L 128.78874,375.55689 C 121.57784,374.50932 105.65205,371.89676 93.398103,369.75121 C 81.144161,367.60566 69.286187,366.29123 67.047058,366.83025 C 63.416974,367.70411 63.099142,368.34933 64.113339,372.78583 C 65.408405,378.45091 120.80770,550.20447 126.61384,566.55512 C 130.20559,576.66983 130.90618,577.52899 139.19286,581.98149 L 147.96830,586.69660 L 142.49205,580.64450 C 133.77077,571.00614 127.75920,555.75063 118.96899,520.95028 C 111.14500,489.97517 114.62133,478.95211 129.88518,486.33618 C 143.25111,492.80213 152.79317,506.96411 162.44071,534.65400 C 170.94646,559.06677 178.71665,589.35046 177.35073,592.76456 C 176.74756,594.27218 174.47027,595.36334 171.83306,595.40835 C 168.15842,595.47106 169.54267,596.58262 179.45134,601.52588 C 194.45384,609.01036 198.01054,609.41581 196.43227,603.46156 z M 133.43767,458.86572 C 111.34064,454.02457 94.893131,446.84451 91.504974,440.56026 C 88.969987,435.85845 89.637540,431.18529 92.843901,431.18721 C 98.924661,431.19086 138.48982,443.35464 132.93876,443.51385 C 131.74231,443.54816 131.33184,444.36053 131.99272,445.38616 C 132.77630,446.60220 132.28193,446.87464 130.48907,446.21477 C 124.61802,444.05388 100.90787,437.54203 97.261151,437.08889 C 92.151283,436.45396 91.251973,439.44925 95.431224,443.18371 C 98.770391,446.16749 129.16847,456.05290 134.82358,455.99403 C 137.20448,455.96925 137.61716,455.17233 136.82221,452.13441 C 135.91788,448.67855 136.17577,448.43213 139.47259,449.60186 C 142.07546,450.52539 143.12475,452.14436 143.12475,455.23688 C 143.12475,460.34141 142.03559,460.74940 133.43767,458.86572 z M 109.01786,420.43381 C 99.138896,418.00432 89.549608,415.24325 87.708332,414.29810 C 80.341925,410.51680 76.498083,399.61969 81.837482,397.65448 C 84.983759,396.49648 101.13340,399.34075 115.20844,403.53176 C 124.17429,406.20145 125.67372,407.10889 123.91171,408.79891 C 122.14969,410.48893 119.17088,410.19753 106.62160,407.10755 C 89.614861,402.92002 82.568465,402.37442 82.605168,405.24801 C 82.674295,410.66025 89.543656,414.00741 110.44625,418.81388 C 127.72978,422.78816 128.33570,422.75989 127.39171,418.02349 C 126.61902,414.14659 128.31896,412.76804 130.22491,415.72593 C 130.78267,416.59152 131.86303,416.92983 132.62573,416.47772 C 134.36586,415.44621 136.42247,421.31681 135.06111,423.42953 C 133.52458,425.81410 128.58526,425.24593 109.01786,420.43381 z M 166.92093,577.96216 C 168.77384,572.63056 155.04249,528.65062 149.20682,521.22590 C 143.91486,514.49293 131.63910,507.06474 125.80423,507.06474 C 118.36692,507.06474 117.86622,511.61212 123.20082,530.70933 C 132.06304,562.43491 135.32816,567.78735 150.39007,575.27998 C 159.92538,580.02338 165.86941,580.98781 166.92093,577.96216 z "
+           id="path45458"
+           style="fill:#919191" />
+        <path
+           d="M 373.43663,636.90133 C 353.82564,634.20899 333.14475,623.62928 325.31777,612.28521 C 317.25652,600.60159 318.81300,584.45232 329.04755,573.58680 L 334.77818,567.50285 L 330.17157,565.79200 C 317.17343,560.96462 278.22986,547.32686 277.44309,547.32686 C 276.94437,547.32686 259.28250,561.63071 238.19450,579.11320 C 217.10648,596.59569 198.25394,611.28439 196.29996,611.75477 C 193.81769,612.35232 182.84021,607.79087 159.86557,596.61526 L 126.98385,580.62055 L 123.45228,570.55501 C 110.70412,534.22080 59.977239,373.53068 59.977239,369.48192 C 59.977239,363.49348 53.296525,366.25743 126.17235,342.09558 C 157.69575,331.64405 193.29580,319.80123 205.28358,315.77822 L 227.07953,308.46364 L 264.05636,310.90705 C 284.39362,312.25093 301.73554,314.02412 302.59396,314.84747 C 303.45238,315.67081 305.11444,325.18576 306.28742,335.99179 C 307.46042,346.79782 308.73296,355.93917 309.11533,356.30591 C 309.49769,356.67265 348.22880,361.46795 395.18445,366.96213 C 521.08597,381.69361 521.45098,381.75061 531.60550,388.26606 C 540.35158,393.87780 542.99873,403.25658 541.97136,424.99194 C 540.53626,455.35370 523.50329,559.63885 515.20607,588.86375 C 506.50585,619.50808 498.23810,623.52234 465.38338,613.05432 C 447.78672,607.44776 447.00650,607.33512 445.35652,610.16302 C 444.41224,611.78140 440.49209,616.33304 436.64507,620.27775 C 428.16225,628.97601 415.00832,634.95898 399.70237,637.08087 C 387.12606,638.82435 387.46041,638.82664 373.43663,636.90133 z M 400.96404,633.87873 C 417.18010,630.62798 432.22782,621.34873 439.54202,610.08941 L 442.52966,605.49029 L 423.72108,598.86246 C 402.94374,591.54086 402.27768,591.39563 402.20068,594.17030 C 402.12480,596.90487 396.48370,603.07442 394.05925,603.07442 C 392.94452,603.07442 384.22699,600.20489 374.68696,596.69769 L 357.34145,590.32095 L 354.34517,581.74721 C 351.72055,574.23700 350.61285,572.92904 345.41541,571.20317 C 339.52434,569.24698 339.43587,569.28085 333.02871,575.94777 C 316.94483,592.68373 322.47032,611.94015 346.92765,624.38577 C 365.28575,633.72769 384.70203,637.13868 400.96404,633.87873 z M 501.05632,609.34154 C 503.45035,606.82232 506.92992,600.03854 508.78868,594.26646 C 516.00831,571.84718 535.71562,455.92241 537.35785,426.21357 C 538.91201,398.09764 534.71332,390.73763 514.21321,385.64258 C 503.53314,382.98819 285.18553,356.85603 273.68673,356.85603 C 258.36001,356.85603 257.52842,362.02752 260.11552,441.25164 C 262.91176,526.87977 263.90776,534.23627 273.51932,540.25203 C 281.13974,545.02158 470.06132,611.83229 483.18253,614.39787 C 490.26714,615.78312 496.65100,613.97718 501.05632,609.34154 z M 455.53339,575.07232 C 443.09843,573.13597 304.20291,530.58392 293.90939,525.55718 C 286.87419,522.12160 284.93491,517.76488 283.61012,502.41910 C 281.86252,482.17574 282.28503,402.90279 284.16492,398.32281 C 285.11653,396.00443 287.55551,393.71261 289.58488,393.22989 C 293.90869,392.20137 394.52194,409.99541 430.17678,418.09437 C 461.33773,425.17254 481.11877,430.61039 483.97427,432.88339 C 485.39346,434.01310 486.20898,437.84311 486.20862,443.37692 C 486.20749,461.25447 472.16775,567.58595 469.20029,572.19119 C 467.27710,575.17583 462.57027,576.16808 455.53339,575.07232 z M 262.12719,552.89428 C 270.61670,545.80999 271.11021,545.04809 268.39209,543.22205 C 259.56234,537.29015 257.49358,517.88317 255.86820,425.73515 C 254.91425,371.65250 255.05940,366.39519 257.65107,361.15681 C 261.64431,353.08552 267.14444,351.67340 286.99971,353.62173 C 295.70670,354.47612 303.03435,354.97974 303.28337,354.74089 C 304.17239,353.88821 300.06497,319.91088 298.84376,318.01568 C 297.88623,316.52966 294.95417,316.98719 286.15313,319.99600 C 279.85815,322.14805 274.70772,323.67891 274.70772,323.39791 C 274.70772,323.11690 276.70568,321.78501 279.14764,320.43815 C 283.39100,318.09773 283.01577,318.03041 270.67143,318.91743 C 263.56757,319.42788 239.12996,322.23785 216.36564,325.16181 L 174.97598,330.47809 L 128.37458,345.85765 C 68.084825,365.75469 63.206266,367.54832 63.206266,369.81702 C 63.206266,372.41334 125.34112,565.23696 128.51035,572.47573 C 130.54148,577.11500 133.05157,579.23696 141.12176,583.13701 L 151.19733,588.00619 L 144.58969,581.84160 C 138.43924,576.10357 127.65803,555.67387 127.86238,550.14447 C 127.90391,549.02063 129.32989,551.52010 131.03120,555.69885 C 134.98258,565.40416 141.04195,571.55087 151.19733,576.15564 C 159.70382,580.01278 165.70673,580.83629 167.29937,578.36463 C 168.32138,576.77857 163.96379,559.06802 157.53656,538.68570 C 154.83947,530.13255 151.75241,524.11303 147.78075,519.66263 C 138.11790,508.83505 123.48909,503.63724 119.91561,509.76178 C 117.56219,513.79526 116.50907,511.66000 115.44815,500.70383 C 114.62242,492.17648 114.94961,490.26866 117.80972,486.93367 L 121.12983,483.06231 L 129.80814,487.35949 C 138.80065,491.81225 147.07347,500.70158 153.33755,512.64239 C 160.96709,527.18606 175.78648,575.36548 176.62837,588.36326 L 177.02957,594.55744 L 170.57151,594.34691 C 164.40976,594.14605 164.81488,594.47431 179.40119,601.50118 L 194.68894,608.86596 L 223.80035,584.72515 C 239.81163,571.44770 257.05871,557.12382 262.12719,552.89428 z M 118.22723,517.25931 C 118.15713,515.62690 118.53872,514.71228 119.07521,515.22684 C 119.61170,515.74142 119.66906,517.07703 119.20267,518.19489 C 118.68727,519.43021 118.30471,519.06328 118.22723,517.25931 z M 121.04641,455.21026 C 107.44959,451.21032 93.882051,445.80904 93.882051,444.39604 C 93.882051,443.90042 95.880011,444.47348 98.321966,445.66950 C 104.33964,448.61682 129.85520,455.96281 134.07478,455.96281 C 136.09033,455.96281 137.47396,454.97108 137.47396,453.52645 C 137.47396,449.73701 143.04745,451.60340 143.64068,455.59149 C 144.08854,458.60242 143.44970,459.04642 138.79713,458.95771 C 135.84943,458.90152 127.86160,457.21517 121.04641,455.21026 z M 110.02720,439.65532 C 94.411114,435.01982 91.637887,434.90365 92.735919,438.93096 C 93.200668,440.63554 92.922139,441.63968 92.116968,441.16238 C 91.311796,440.68509 90.653018,438.23190 90.653018,435.71084 C 90.653018,430.47783 90.485521,430.47316 110.83446,436.27335 C 117.05034,438.04510 122.65481,439.37575 123.28884,439.23036 C 123.92288,439.08495 124.02678,440.00288 123.51974,441.27022 C 123.01270,442.53755 122.49395,443.50140 122.36695,443.41209 C 122.23997,443.32279 116.68708,441.63224 110.02720,439.65532 z M 125.36509,424.02668 C 114.78241,421.86231 95.534895,416.69627 96.085625,416.16804 C 96.443953,415.82436 102.57294,416.97229 109.70560,418.71900 C 125.84537,422.67147 127.78686,422.68349 127.78686,418.83096 C 127.78686,416.11224 128.24869,415.96889 131.88610,417.55849 C 139.67995,420.96450 134.67348,425.93042 125.36509,424.02668 z M 89.038504,414.15213 C 87.706529,413.32651 87.343266,412.65102 88.231248,412.65102 C 89.119229,412.65102 90.935562,413.32651 92.267538,414.15213 C 93.599513,414.97775 93.962776,415.65324 93.074794,415.65324 C 92.186813,415.65324 90.370480,414.97775 89.038504,414.15213 z M 80.278207,405.17369 C 79.569480,403.06069 79.851864,400.72849 80.973359,399.43239 C 83.020189,397.06688 85.374118,397.26091 104.82111,401.39820 C 114.18715,403.39079 116.15014,404.28280 114.50820,405.80016 C 112.87731,407.30727 109.71370,407.12592 99.299394,404.92833 C 85.909060,402.10273 83.678317,402.29672 82.268197,406.40942 C 81.687067,408.10431 81.149115,407.77026 80.278207,405.17369 z "
+           id="path45460"
+           style="fill:#707071" />
+        <path
+           d="M 363.94924,634.83727 C 336.84825,627.58513 319.85912,612.02909 319.95860,594.55744 C 319.99283,588.54647 325.40898,577.13267 330.78959,571.73258 C 333.11446,569.39929 334.70632,567.25964 334.32707,566.97782 C 332.19976,565.39696 277.82625,547.11450 276.58616,547.56310 C 275.76810,547.85902 258.29277,562.03803 237.75207,579.07200 C 217.21137,596.10598 198.87980,610.70636 197.01523,611.51728 C 194.24554,612.72187 187.54978,610.02957 160.42846,596.80612 L 127.23182,580.62055 L 124.20787,572.10356 C 113.89413,543.05483 59.977239,372.67440 59.977239,369.13112 C 59.977239,365.30519 61.019605,364.44505 69.260700,361.47060 C 82.491400,356.69525 217.93855,311.82724 224.33658,310.10041 C 230.12197,308.53892 300.36932,312.81015 302.56811,314.85710 C 303.23960,315.48222 304.65411,325.14964 305.71146,336.34026 L 307.63393,356.68684 L 313.37039,357.56185 C 316.52546,358.04310 360.74007,363.30773 411.62509,369.26102 C 462.51011,375.21431 509.20823,381.19011 515.39868,382.54057 C 526.65915,384.99706 534.57954,389.66602 538.05630,395.89694 C 541.41795,401.92156 542.57686,417.68541 540.92901,434.97214 C 537.48816,471.06802 521.69782,564.48847 515.13301,587.58899 C 505.85778,620.22705 499.04050,623.42097 462.98974,612.01824 L 447.03040,606.97036 L 444.42020,610.81553 C 438.35744,619.74682 430.30701,626.58483 420.27979,631.32035 C 410.31062,636.02845 408.33965,636.39256 390.98863,636.73149 C 378.54999,636.97447 369.59036,636.34682 363.94924,634.83727 z M 414.18728,630.45040 C 419.14216,628.27468 425.66674,624.68712 428.68635,622.47806 C 434.42582,618.27923 443.66932,606.66438 442.30943,605.36007 C 441.87629,604.94463 432.87464,601.55756 422.30577,597.83327 L 403.08965,591.06182 L 401.30490,595.13304 C 397.58410,603.62058 396.16616,603.68726 376.23320,596.31198 L 357.85524,589.51208 L 357.37664,581.84222 L 356.89804,574.17236 L 347.95572,571.46873 C 339.36948,568.87275 338.88283,568.87780 335.73458,571.59573 C 329.88874,576.64247 323.17436,589.56271 323.15831,595.79575 C 323.13808,603.65218 326.35675,609.17780 335.40134,616.81386 C 356.15829,634.33828 391.43012,640.44326 414.18728,630.45040 z M 500.58749,610.48464 C 507.33549,603.86468 512.21841,588.64267 519.25419,552.29323 C 532.23689,485.21985 540.69456,422.15131 538.54787,408.42108 C 537.27628,400.28796 532.31109,392.81731 525.75930,389.17923 C 523.09837,387.70168 515.10899,385.39980 508.00512,384.06395 C 489.63963,380.61041 285.74876,356.85603 274.47137,356.85603 C 260.89873,356.85603 259.54184,359.32737 258.78121,385.43317 C 258.07642,409.62241 261.39592,504.65200 263.51253,520.87958 C 265.93901,539.48307 265.60689,539.23743 308.76751,554.35202 C 321.72852,558.89088 339.89181,565.50681 349.13038,569.05410 C 358.36897,572.60138 381.18498,580.72973 399.83263,587.11709 C 493.50000,619.20085 492.04640,618.86373 500.58749,610.48464 z M 455.53339,575.07458 C 446.84751,573.72474 385.78215,555.41845 332.02300,538.04841 C 305.13547,529.36082 292.06645,524.37706 289.32759,521.76690 C 286.27880,518.86138 285.10354,515.61505 284.16332,507.50226 C 282.36613,491.99457 282.50844,402.65121 284.33770,398.03649 C 285.19428,395.87559 287.55551,393.71261 289.58488,393.22989 C 297.14422,391.43175 429.61280,416.75990 468.23274,427.38755 C 487.27648,432.62811 486.83202,432.03781 485.51748,450.34394 C 483.46209,478.96735 473.32793,555.25265 469.91149,567.81872 C 467.97040,574.95828 464.86595,576.52493 455.53339,575.07458 z M 235.70951,576.03748 L 273.07066,545.12918 L 268.21143,540.32057 C 265.53884,537.67584 262.68089,533.26699 261.86044,530.52310 C 259.68643,523.25253 256.82774,458.78736 256.45965,408.73223 C 256.03443,350.90863 255.15765,352.44627 287.41102,354.45127 L 304.75084,355.52919 L 302.86418,337.51022 C 301.82651,327.59978 300.19994,318.74545 299.24957,317.83391 C 298.29922,316.92239 282.26882,315.13113 263.62646,313.85335 L 229.73126,311.53011 L 149.29417,338.23198 C 105.05376,352.91801 67.585640,365.57982 66.031667,366.36933 C 64.477694,367.15884 63.206266,369.15567 63.206266,370.80673 C 63.206266,373.56779 109.05843,518.04665 122.42155,557.39240 C 125.60346,566.76108 129.32091,575.65237 130.68253,577.15082 C 134.65294,581.52017 193.85348,609.50078 196.24795,608.13971 C 197.40319,607.48305 215.16089,593.03705 235.70951,576.03748 z "
+           id="path45462"
+           style="fill:#2b2bb0" />
+        <path
+           d="M 363.94924,634.83727 C 336.84825,627.58513 319.85912,612.02909 319.95860,594.55744 C 319.99283,588.54647 325.40898,577.13267 330.78959,571.73258 C 333.11446,569.39929 334.70632,567.25964 334.32707,566.97782 C 332.19976,565.39696 277.82625,547.11450 276.58616,547.56310 C 275.76810,547.85902 258.29277,562.03803 237.75207,579.07200 C 217.21137,596.10598 198.87980,610.70636 197.01523,611.51728 C 194.24554,612.72187 187.54978,610.02957 160.42846,596.80612 L 127.23182,580.62055 L 124.20787,572.10356 C 113.89413,543.05483 59.977239,372.67440 59.977239,369.13112 C 59.977239,365.30519 61.019605,364.44505 69.260700,361.47060 C 82.491400,356.69525 217.93855,311.82724 224.33658,310.10041 C 230.12197,308.53892 300.36932,312.81015 302.56811,314.85710 C 303.23960,315.48222 304.65411,325.14964 305.71146,336.34026 L 307.63393,356.68684 L 313.37039,357.56185 C 316.52546,358.04310 360.74007,363.30773 411.62509,369.26102 C 462.51011,375.21431 509.20823,381.19011 515.39868,382.54057 C 526.65915,384.99706 534.57954,389.66602 538.05630,395.89694 C 541.41795,401.92156 542.57686,417.68541 540.92901,434.97214 C 537.48816,471.06802 521.69782,564.48847 515.13301,587.58899 C 505.85778,620.22705 499.04050,623.42097 462.98974,612.01824 L 447.03040,606.97036 L 444.42020,610.81553 C 438.35744,619.74682 430.30701,626.58483 420.27979,631.32035 C 410.31062,636.02845 408.33965,636.39256 390.98863,636.73149 C 378.54999,636.97447 369.59036,636.34682 363.94924,634.83727 z M 414.18728,630.45040 C 419.14216,628.27468 425.66674,624.68712 428.68635,622.47806 C 434.42582,618.27923 443.66932,606.66438 442.30943,605.36007 C 441.87629,604.94463 432.87464,601.55756 422.30577,597.83327 L 403.08965,591.06182 L 401.30490,595.13304 C 397.58410,603.62058 396.16616,603.68726 376.23320,596.31198 L 357.85524,589.51208 L 357.37664,581.84222 L 356.89804,574.17236 L 347.95572,571.46873 C 339.36948,568.87275 338.88283,568.87780 335.73458,571.59573 C 329.88874,576.64247 323.17436,589.56271 323.15831,595.79575 C 323.13808,603.65218 326.35675,609.17780 335.40134,616.81386 C 356.15829,634.33828 391.43012,640.44326 414.18728,630.45040 z M 500.58749,610.48464 C 507.33549,603.86468 512.21841,588.64267 519.25419,552.29323 C 532.23689,485.21985 540.69456,422.15131 538.54787,408.42108 C 537.27628,400.28796 532.31109,392.81731 525.75930,389.17923 C 523.09837,387.70168 515.10899,385.39980 508.00512,384.06395 C 489.63963,380.61041 285.74876,356.85603 274.47137,356.85603 C 260.89873,356.85603 259.54184,359.32737 258.78121,385.43317 C 258.07642,409.62241 261.39592,504.65200 263.51253,520.87958 C 265.93901,539.48307 265.60689,539.23743 308.76751,554.35202 C 321.72852,558.89088 339.89181,565.50681 349.13038,569.05410 C 358.36897,572.60138 381.18498,580.72973 399.83263,587.11709 C 493.50000,619.20085 492.04640,618.86373 500.58749,610.48464 z M 440.19550,559.77610 C 394.68077,548.35022 303.09882,520.94563 293.34432,515.83299 C 289.55227,513.84545 286.50092,510.91127 285.83631,508.61328 C 283.74698,501.38900 284.19633,411.86482 286.33223,409.81621 C 287.39781,408.79417 290.50781,407.95796 293.24337,407.95796 C 297.49440,407.95796 371.01886,423.68900 387.72376,428.17266 C 395.47321,430.25265 421.15694,452.06380 436.95186,469.97816 C 457.08665,492.81475 467.58713,502.63931 470.65374,501.51062 C 473.93978,500.30118 477.16629,489.51192 480.55746,468.39316 C 483.13826,452.32105 484.59466,447.32554 484.59466,454.54537 C 484.59466,467.58748 472.22787,557.31320 469.83244,561.65089 C 467.73344,565.45179 461.14401,565.03495 440.19550,559.77610 z M 235.70951,576.03748 L 273.07066,545.12918 L 268.21143,540.32057 C 265.53884,537.67584 262.68089,533.26699 261.86044,530.52310 C 259.68643,523.25253 256.82774,458.78736 256.45965,408.73223 C 256.03443,350.90863 255.15765,352.44627 287.41102,354.45127 L 304.75084,355.52919 L 302.86418,337.51022 C 301.82651,327.59978 300.19994,318.74545 299.24957,317.83391 C 298.29922,316.92239 282.26882,315.13113 263.62646,313.85335 L 229.73126,311.53011 L 149.29417,338.23198 C 105.05376,352.91801 67.585640,365.57982 66.031667,366.36933 C 64.477694,367.15884 63.206266,369.15567 63.206266,370.80673 C 63.206266,373.56779 109.05843,518.04665 122.42155,557.39240 C 125.60346,566.76108 129.32091,575.65237 130.68253,577.15082 C 134.65294,581.52017 193.85348,609.50078 196.24795,608.13971 C 197.40319,607.48305 215.16089,593.03705 235.70951,576.03748 z "
+           id="path45464"
+           style="fill:#1919a4" />
+        <path
+           d="M 363.94924,634.83727 C 336.84825,627.58513 319.85912,612.02909 319.95860,594.55744 C 319.99283,588.54647 325.40898,577.13267 330.78959,571.73258 C 333.11446,569.39929 334.70632,567.25964 334.32707,566.97782 C 332.19976,565.39696 277.82625,547.11450 276.58616,547.56310 C 275.76810,547.85902 258.29277,562.03803 237.75207,579.07200 C 217.21137,596.10598 198.87980,610.70636 197.01523,611.51728 C 194.24554,612.72187 187.54978,610.02957 160.42846,596.80612 L 127.23182,580.62055 L 124.20787,572.10356 C 113.89413,543.05483 59.977239,372.67440 59.977239,369.13112 C 59.977239,365.30519 61.019605,364.44505 69.260700,361.47060 C 82.491400,356.69525 217.93855,311.82724 224.33658,310.10041 C 230.12197,308.53892 300.36932,312.81015 302.56811,314.85710 C 303.23960,315.48222 304.65411,325.14964 305.71146,336.34026 L 307.63393,356.68684 L 313.37039,357.56185 C 316.52546,358.04310 360.74007,363.30773 411.62509,369.26102 C 462.51011,375.21431 509.20823,381.19011 515.39868,382.54057 C 526.65915,384.99706 534.57954,389.66602 538.05630,395.89694 C 541.41795,401.92156 542.57686,417.68541 540.92901,434.97214 C 537.48816,471.06802 521.69782,564.48847 515.13301,587.58899 C 505.85778,620.22705 499.04050,623.42097 462.98974,612.01824 L 447.03040,606.97036 L 444.42020,610.81553 C 438.35744,619.74682 430.30701,626.58483 420.27979,631.32035 C 410.31062,636.02845 408.33965,636.39256 390.98863,636.73149 C 378.54999,636.97447 369.59036,636.34682 363.94924,634.83727 z M 414.18728,630.45040 C 419.14216,628.27468 425.66674,624.68712 428.68635,622.47806 C 434.42582,618.27923 443.66932,606.66438 442.30943,605.36007 C 441.87629,604.94463 432.87464,601.55756 422.30577,597.83327 L 403.08965,591.06182 L 401.30490,595.13304 C 397.58410,603.62058 396.16616,603.68726 376.23320,596.31198 L 357.85524,589.51208 L 357.37664,581.84222 L 356.89804,574.17236 L 347.95572,571.46873 C 339.36948,568.87275 338.88283,568.87780 335.73458,571.59573 C 329.88874,576.64247 323.17436,589.56271 323.15831,595.79575 C 323.13808,603.65218 326.35675,609.17780 335.40134,616.81386 C 356.15829,634.33828 391.43012,640.44326 414.18728,630.45040 z M 500.58749,610.48464 C 507.33549,603.86468 512.21841,588.64267 519.25419,552.29323 C 532.23689,485.21985 540.69456,422.15131 538.54787,408.42108 C 537.27628,400.28796 532.31109,392.81731 525.75930,389.17923 C 523.09837,387.70168 515.10899,385.39980 508.00512,384.06395 C 489.63963,380.61041 285.74876,356.85603 274.47137,356.85603 C 260.89873,356.85603 259.54184,359.32737 258.78121,385.43317 C 258.07642,409.62241 261.39592,504.65200 263.51253,520.87958 C 265.93901,539.48307 265.60689,539.23743 308.76751,554.35202 C 321.72852,558.89088 339.89181,565.50681 349.13038,569.05410 C 358.36897,572.60138 381.18498,580.72973 399.83263,587.11709 C 493.50000,619.20085 492.04640,618.86373 500.58749,610.48464 z M 456.34064,558.64063 C 408.33561,548.00633 306.17148,519.28172 292.84526,512.67206 C 284.97733,508.76965 284.03023,503.24447 284.65486,464.89124 C 285.36741,421.14003 284.33714,422.44927 308.42552,434.68384 C 318.04618,439.57019 336.53114,448.01287 349.50324,453.44537 C 391.61717,471.08196 406.58593,482.26446 437.12905,518.90674 C 447.32369,531.13715 457.45516,542.26904 459.64344,543.64426 C 467.24621,548.42224 469.38704,544.09081 475.80961,510.93609 C 478.98454,494.54646 479.55303,492.81965 478.86844,501.64483 C 477.88832,514.27964 472.06248,553.85662 470.67061,557.33555 C 469.73587,559.67191 463.54232,560.23598 456.34064,558.64063 z M 480.12568,485.38513 C 480.12568,482.40418 480.45795,481.18471 480.86405,482.67517 C 481.27013,484.16565 481.27013,486.60461 480.86405,488.09508 C 480.45795,489.58555 480.12568,488.36608 480.12568,485.38513 z M 481.68037,472.22251 C 481.64747,469.66742 481.98239,468.43468 482.42465,469.48309 C 482.86690,470.53150 482.89382,472.62204 482.48447,474.12872 C 482.07512,475.63540 481.71328,474.77761 481.68037,472.22251 z M 235.70951,576.03748 L 273.07066,545.12918 L 268.21143,540.32057 C 265.53884,537.67584 262.68089,533.26699 261.86044,530.52310 C 259.68643,523.25253 256.82774,458.78736 256.45965,408.73223 C 256.03443,350.90863 255.15765,352.44627 287.41102,354.45127 L 304.75084,355.52919 L 302.86418,337.51022 C 301.82651,327.59978 300.19994,318.74545 299.24957,317.83391 C 298.29922,316.92239 282.26882,315.13113 263.62646,313.85335 L 229.73126,311.53011 L 149.29417,338.23198 C 105.05376,352.91801 67.585640,365.57982 66.031667,366.36933 C 64.477694,367.15884 63.206266,369.15567 63.206266,370.80673 C 63.206266,373.56779 109.05843,518.04665 122.42155,557.39240 C 125.60346,566.76108 129.32091,575.65237 130.68253,577.15082 C 134.65294,581.52017 193.85348,609.50078 196.24795,608.13971 C 197.40319,607.48305 215.16089,593.03705 235.70951,576.03748 z "
+           id="path45466"
+           style="fill:#0c0c95" />
+        <path
+           d="M 363.94924,634.83727 C 336.84825,627.58513 319.85912,612.02909 319.95860,594.55744 C 319.99283,588.54647 325.40898,577.13267 330.78959,571.73258 C 333.11446,569.39929 334.70632,567.25964 334.32707,566.97782 C 332.19976,565.39696 277.82625,547.11450 276.58616,547.56310 C 275.76810,547.85902 258.29277,562.03803 237.75207,579.07200 C 217.21137,596.10598 198.87980,610.70636 197.01523,611.51728 C 194.24554,612.72187 187.54978,610.02957 160.42846,596.80612 L 127.23182,580.62055 L 124.20787,572.10356 C 113.89413,543.05483 59.977239,372.67440 59.977239,369.13112 C 59.977239,365.30519 61.019605,364.44505 69.260700,361.47060 C 82.491400,356.69525 217.93855,311.82724 224.33658,310.10041 C 230.12197,308.53892 300.36932,312.81015 302.56811,314.85710 C 303.23960,315.48222 304.65411,325.14964 305.71146,336.34026 L 307.63393,356.68684 L 313.37039,357.56185 C 316.52546,358.04310 360.74007,363.30773 411.62509,369.26102 C 462.51011,375.21431 509.20823,381.19011 515.39868,382.54057 C 526.65915,384.99706 534.57954,389.66602 538.05630,395.89694 C 541.41795,401.92156 542.57686,417.68541 540.92901,434.97214 C 537.48816,471.06802 521.69782,564.48847 515.13301,587.58899 C 505.85778,620.22705 499.04050,623.42097 462.98974,612.01824 L 447.03040,606.97036 L 444.42020,610.81553 C 438.35744,619.74682 430.30701,626.58483 420.27979,631.32035 C 410.31062,636.02845 408.33965,636.39256 390.98863,636.73149 C 378.54999,636.97447 369.59036,636.34682 363.94924,634.83727 z M 414.18728,630.45040 C 419.14216,628.27468 425.66674,624.68712 428.68635,622.47806 C 434.42582,618.27923 443.66932,606.66438 442.30943,605.36007 C 441.87629,604.94463 432.87464,601.55756 422.30577,597.83327 L 403.08965,591.06182 L 401.30490,595.13304 C 397.58410,603.62058 396.16616,603.68726 376.23320,596.31198 L 357.85524,589.51208 L 357.37664,581.84222 L 356.89804,574.17236 L 347.95572,571.46873 C 339.36948,568.87275 338.88283,568.87780 335.73458,571.59573 C 329.88874,576.64247 323.17436,589.56271 323.15831,595.79575 C 323.13808,603.65218 326.35675,609.17780 335.40134,616.81386 C 356.15829,634.33828 391.43012,640.44326 414.18728,630.45040 z M 500.58749,610.48464 C 507.33549,603.86468 512.21841,588.64267 519.25419,552.29323 C 532.23689,485.21985 540.69456,422.15131 538.54787,408.42108 C 537.27628,400.28796 532.31109,392.81731 525.75930,389.17923 C 523.09837,387.70168 515.10899,385.39980 508.00512,384.06395 C 489.63963,380.61041 285.74876,356.85603 274.47137,356.85603 C 260.89873,356.85603 259.54184,359.32737 258.78121,385.43317 C 258.07642,409.62241 261.39592,504.65200 263.51253,520.87958 C 265.93901,539.48307 265.60689,539.23743 308.76751,554.35202 C 321.72852,558.89088 339.89181,565.50681 349.13038,569.05410 C 358.36897,572.60138 381.18498,580.72973 399.83263,587.11709 C 493.50000,619.20085 492.04640,618.86373 500.58749,610.48464 z M 235.70951,576.03748 L 273.07066,545.12918 L 268.21143,540.32057 C 265.53884,537.67584 262.68089,533.26699 261.86044,530.52310 C 259.68643,523.25253 256.82774,458.78736 256.45965,408.73223 C 256.03443,350.90863 255.15765,352.44627 287.41102,354.45127 L 304.75084,355.52919 L 302.86418,337.51022 C 301.82651,327.59978 300.19994,318.74545 299.24957,317.83391 C 298.29922,316.92239 282.26882,315.13113 263.62646,313.85335 L 229.73126,311.53011 L 149.29417,338.23198 C 105.05376,352.91801 67.585640,365.57982 66.031667,366.36933 C 64.477694,367.15884 63.206266,369.15567 63.206266,370.80673 C 63.206266,373.56779 109.05843,518.04665 122.42155,557.39240 C 125.60346,566.76108 129.32091,575.65237 130.68253,577.15082 C 134.65294,581.52017 193.85348,609.50078 196.24795,608.13971 C 197.40319,607.48305 215.16089,593.03705 235.70951,576.03748 z "
+           id="path45468"
+           style="fill:#030303" />
+      </g>
+      <g
+         transform="matrix(-0.619386,0.000000,0.000000,0.619386,703.3654,769.0874)"
+         id="g47825"
+         inkscape:label="Layer 1">
+        <path
+           d="M 19.080644,63.143320 C 19.080644,63.143320 23.055778,65.130887 24.645831,66.919698 C 26.235885,68.708508 40.745124,81.031424 42.136421,82.820234 C 43.527718,84.609044 45.714042,89.379205 46.509069,91.764286 C 47.304096,94.149366 48.894149,99.714554 49.092906,102.29839 C 49.291663,104.88223 50.682959,109.05612 51.080473,111.24244 C 51.477986,113.42877 54.061823,117.80141 53.266797,117.60266 C 52.471770,117.40390 34.981180,113.42877 33.391126,112.63374 C 31.801073,111.83871 17.093077,105.08098 16.496806,103.68969 C 15.900536,102.29839 15.105509,91.565529 15.304266,89.776719 C 15.503023,87.987908 15.701780,72.087372 16.099293,70.497318 C 16.496806,68.907265 16.496806,64.733374 17.291833,63.938347 C 18.086860,63.143320 18.285617,61.354510 19.080644,63.143320 z "
+           id="path1063"
+           style="fill:url(#linearGradient47963);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        <path
+           d="M 43.328961,83.368278 C 43.328961,83.368278 60.024525,74.074939 62.210848,73.279912 C 64.397172,72.484886 85.067869,63.540834 86.459166,63.342077 C 87.850463,63.143320 109.51494,56.584349 110.90624,57.578133 C 112.29754,58.571916 117.06770,70.894832 117.86273,74.472453 C 118.65775,78.050073 122.03662,86.994125 120.84408,88.584179 C 119.65154,90.174232 63.602145,114.42255 61.813335,115.01882 C 61.289405,115.19346 55.326703,116.77938 52.985713,117.23924 C 52.190686,115.45043 50.484203,109.25488 50.086689,107.86358 C 49.689176,106.47228 47.701609,97.130717 47.105339,95.540663 C 46.509069,93.950610 42.335178,84.362062 43.328961,83.368278 z "
+           id="path1686"
+           sodipodi:nodetypes="ccccccccccc"
+           style="fill:url(#linearGradient47965);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        <path
+           d="M 18.270488,63.004370 C 22.627297,59.069188 28.248985,54.712379 33.308505,53.166415 C 35.697722,52.463704 85.168581,39.814905 86.574003,39.814905 C 93.320029,40.236532 109.76347,54.571838 110.60672,56.961055 C 105.96883,58.788103 92.757860,60.615152 89.947016,61.739490 C 88.682136,62.863828 72.098155,68.063890 70.130564,69.328770 C 68.162973,70.593650 53.124957,77.620760 52.422245,78.323471 C 50.595196,79.307266 45.676220,81.837027 43.146459,84.085702 C 40.476157,81.134315 20.238079,63.425997 18.270488,63.004370 z "
+           id="path47829"
+           sodipodi:nodetypes="ccccccccc"
+           style="fill:url(#linearGradient47967);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        <path
+           d="M 59.027729,112.19414 C 57.903392,111.91306 55.373632,114.30228 55.092548,113.03740 C 54.811463,111.77252 52.422245,104.74541 53.124957,103.62107 C 53.827668,102.49673 57.200681,100.66968 59.730441,99.966972 C 62.260200,99.264261 85.028039,90.691186 85.449666,89.988475 C 85.871292,89.285764 105.96883,80.291062 107.51479,80.150520 C 109.06076,80.009978 115.94733,77.761302 116.36895,79.026182 C 116.79058,80.291062 116.93112,86.474920 117.35275,87.458715 C 117.77437,88.442511 60.292609,112.05360 59.027729,112.19414 z "
+           id="path47831"
+           style="fill:url(#linearGradient47969);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        <path
+           d="M 92.195692,45.296051 C 92.195692,45.296051 95.990332,48.950149 95.006536,49.652860 C 95.006536,50.777198 84.465870,53.025873 83.200990,53.447500 C 81.936110,53.869126 65.071045,60.052984 63.384538,60.755695 C 61.698032,61.458406 50.876281,67.361179 49.470859,67.782805 C 48.065437,68.204432 37.665313,73.685578 36.962602,73.685578 C 36.259891,73.685578 31.621998,69.469312 31.903082,68.344974 C 32.184167,67.220636 33.730131,65.815214 34.995011,65.393588 C 36.259891,64.971961 87.698341,45.717678 88.401052,45.858220 C 89.103763,45.998762 91.211896,45.014967 92.195692,45.296051 z "
+           id="path1689"
+           sodipodi:nodetypes="cccccccccc"
+           style="fill:url(#linearGradient47971);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        <path
+           d="M 105.26612,64.128708 C 105.26612,64.128708 106.24991,66.939552 107.37425,66.517925 C 108.49859,66.096299 110.60672,64.971961 109.90401,63.425997 C 109.20130,61.880032 106.24991,61.177321 105.26612,64.128708 z "
+           id="path47834"
+           style="fill:url(#linearGradient47973);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        <path
+           d="M 73.784662,9.0361603 C 73.784662,9.0361603 52.703330,13.392969 50.876281,13.392969 C 49.049232,13.392969 33.167962,16.625440 31.340914,17.609235 C 29.513865,18.593031 20.940790,21.263333 21.081332,21.966044 C 21.221874,22.668755 27.827358,38.268941 28.248985,39.814905 C 28.670611,41.360869 34.292300,53.869126 34.292300,55.977259 C 34.292300,58.085393 36.540975,72.420698 36.540975,72.982867 C 36.540975,73.545036 44.692424,70.312565 45.816761,69.609854 C 46.941099,68.907143 61.698032,61.317864 63.243996,60.755695 C 64.789960,60.193526 75.892795,55.836717 77.157675,55.555633 C 78.422555,55.274548 86.433462,51.901535 87.979426,51.901535 C 87.838883,50.917740 87.136172,49.512317 87.136172,46.279847 C 86.292919,47.123100 77.157675,18.171404 76.595506,17.047066 C 76.033337,15.922729 73.784662,9.0361603 73.784662,9.0361603 z "
+           id="path47836"
+           sodipodi:nodetypes="cccccccccccccc"
+           style="fill:url(#linearGradient47975);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        <path
+           d="M 58.325018,106.85354 C 58.325018,106.85354 71.114360,114.16174 71.957613,115.42662 C 72.800866,116.69150 92.195692,128.91867 92.476776,130.18355 C 92.757861,131.44843 93.601114,135.10253 92.617318,135.52415 C 91.633523,135.94578 78.984724,130.32409 77.860386,128.63758 C 76.736048,126.95108 66.898093,117.95638 65.633214,117.11312 C 64.368334,116.26987 58.746645,112.47523 58.325018,111.49143 C 57.903392,110.50764 57.762850,107.13463 58.325018,106.85354 z "
+           id="path1692"
+           style="fill:url(#linearGradient47977);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        <path
+           d="M 58.184476,106.43191 C 58.184476,106.43191 86.433461,94.766910 87.557799,94.626368 C 88.682136,94.485826 111.16889,84.366786 112.15269,84.366786 C 113.13648,84.366786 119.88251,89.004680 120.72576,89.566848 C 121.56901,90.129017 145.60173,101.93456 145.74227,102.91836 C 145.88282,103.90215 144.05577,104.60487 142.36926,105.58866 C 140.49731,106.94335 133.65564,111.21035 127.33124,114.58336 C 124.80148,115.00499 100.20660,126.38891 98.660634,127.23216 C 97.114669,128.07541 93.882198,130.60517 92.757861,130.04301 C 91.633523,129.48084 76.454964,118.65909 75.190084,117.81583 C 73.925204,116.97258 59.449356,105.72920 58.184476,106.43191 z "
+           id="path47839"
+           sodipodi:nodetypes="ccccccccccc"
+           style="fill:url(#linearGradient47979);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        <path
+           d="M 145.85372,103.73108 C 145.85372,103.73108 142.14479,105.86372 140.84666,106.69823 C 139.54854,107.53274 131.85251,112.35435 130.73983,112.81796 C 129.62715,113.28158 116.36772,119.30859 115.25504,119.95766 C 114.14236,120.60672 93.835960,129.22999 92.908728,130.15722 C 91.981495,131.08445 93.186897,135.16428 92.816004,135.34972 C 92.445111,135.53517 97.730338,133.03164 98.472124,132.47530 C 99.213911,131.91896 121.83839,122.09029 123.78558,121.44123 C 125.73277,120.79217 134.63420,117.54685 134.91237,117.45413 C 135.19054,117.36141 142.05207,114.48698 142.70113,113.93064 C 143.35019,113.37430 148.26453,110.03627 145.85372,103.73108 z "
+           id="path1695"
+           style="fill:url(#linearGradient47981);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        <path
+           d="M 74.150197,8.3374480 C 71.171005,10.179813 75.991316,14.788417 75.786127,17.611512 C 80.134618,28.541739 84.151002,40.731681 87.681063,51.945193 C 90.184268,51.291671 84.210343,46.003072 91.500364,45.686394 C 91.236640,45.058828 86.715164,46.511763 87.103406,43.275956 C 83.768378,36.969820 92.678016,43.042674 95.114909,44.323664 C 101.52831,48.450245 108.17024,53.110713 111.93468,59.935254 C 113.12466,64.503638 116.00848,69.790731 117.34750,74.783941 C 118.29002,78.563294 121.29268,86.268651 119.63125,88.007825 C 116.26255,87.099693 118.69003,83.962049 117.21324,80.617488 C 118.15843,74.746352 111.89506,80.885134 108.28624,79.460273 C 100.73322,80.782124 94.273521,85.132537 87.581356,88.540046 C 78.724622,92.322298 69.879887,96.118683 60.765492,99.254107 C 57.348688,101.23039 49.041339,101.44327 52.577055,107.20982 C 52.898485,109.34814 55.107509,116.99007 55.523060,111.66682 C 54.394730,107.57053 51.244617,101.82604 58.058164,101.39117 C 67.139797,98.072649 75.883615,94.526443 84.695879,90.538405 C 90.418489,88.400987 93.315542,86.277541 98.152244,84.219360 C 103.39615,81.045042 108.93615,80.753413 114.59794,79.192283 C 116.78090,78.938290 115.40495,84.281047 116.66575,86.230573 C 115.68117,84.054424 110.04128,83.544345 113.61575,85.918434 C 124.09881,92.141391 134.86854,97.880824 145.58608,103.69185 C 149.02125,101.95035 141.05241,100.85522 140.02306,99.311529 C 133.91389,96.100319 127.96170,92.603597 121.89697,89.310650 C 120.92380,78.894169 116.99666,69.025219 113.07045,59.416270 C 112.08584,55.999284 108.26887,52.811675 105.45231,50.212775 C 100.95347,45.987397 94.356346,42.571516 89.822959,39.659065 C 88.576669,38.674488 85.311343,39.756539 85.362369,38.617635 C 82.793465,31.633007 80.174341,24.666792 77.493529,17.724335 C 77.141497,14.861937 74.771636,10.349392 74.150197,8.3374480 z M 74.089437,8.5842685 C 68.448913,9.9920031 60.106365,11.090689 54.367221,12.414594 C 43.708420,14.057374 32.696780,15.824315 22.954398,20.664864 C 18.191054,21.622029 21.650667,25.291344 22.833983,28.357511 C 27.508569,40.293997 33.718137,52.001081 34.586867,65.023574 C 32.243341,66.716715 29.530791,70.892980 33.383419,67.140897 C 35.173243,62.568327 35.806282,73.564937 33.506929,68.565630 C 28.354616,65.920689 35.393887,73.839044 36.813341,73.947871 C 39.050901,72.260401 43.388851,71.367598 46.182798,69.649026 C 55.971252,64.050573 65.888309,59.831165 76.494036,56.089638 C 82.433289,53.640126 88.477240,51.917477 94.784560,50.732222 C 97.964594,49.215458 92.915900,43.601241 91.015200,45.457713 C 93.384024,46.758507 97.257545,50.864079 91.310601,50.811613 C 81.593918,53.037600 72.478936,57.236189 63.107811,60.553000 C 54.192745,64.026211 46.139683,69.330382 37.302144,72.951287 C 36.561272,71.146538 36.290491,65.583346 35.925701,64.222538 C 34.851114,50.575967 27.709141,38.668353 22.948886,26.080838 C 18.243242,20.123854 29.465963,19.849625 33.090226,17.524126 C 42.910282,14.613973 53.131737,13.320827 63.224099,11.730870 C 66.063466,11.603152 74.184013,10.022387 74.089437,8.5842685 z M 32.782688,52.965945 C 26.991101,54.409705 21.561286,58.697543 17.456546,62.861133 C 14.370554,66.644544 15.512772,73.405793 14.671440,78.295068 C 14.358526,86.655715 14.500440,95.064126 15.557356,103.37218 C 17.524322,105.85052 23.908108,109.15021 27.777305,111.25091 C 35.919261,115.00275 55.499749,117.69460 52.799885,118.36638 C 57.594949,116.54808 62.626625,113.12684 66.279748,118.72960 C 71.475825,121.97311 74.667017,127.41842 79.743630,130.76019 C 83.315255,132.18835 88.849412,137.74830 92.674133,135.82802 C 86.213056,133.40571 78.203600,128.87293 73.817675,123.17180 C 68.904058,118.60822 62.714006,114.07154 57.605769,109.72689 C 58.790243,112.24412 54.307087,112.06032 55.039972,112.82633 C 54.614499,114.56762 59.242878,111.89952 60.158426,113.92139 C 63.044041,115.88421 54.564311,116.15189 52.853150,117.43011 C 51.312192,116.33136 47.134263,115.41267 43.806802,114.79362 C 34.292894,111.84234 24.800964,109.09955 16.941320,102.91336 C 15.195634,90.794853 15.209350,78.342795 17.181889,66.255958 C 17.254614,59.573213 23.037717,67.548292 25.867088,68.773917 C 31.976218,73.572648 37.854088,78.764848 42.725179,84.842848 C 45.107873,82.418160 50.141849,79.773816 54.051383,77.835696 C 70.582993,69.053938 90.444589,60.774147 108.98970,57.938921 C 111.57763,58.134061 113.11263,56.045313 110.18461,57.052949 C 105.62104,57.575159 101.34739,58.859440 96.734839,59.820844 C 78.199231,64.313977 59.714558,73.452152 43.466358,83.356987 C 44.061282,83.486018 38.540630,78.340929 36.753276,76.435724 C 31.358615,71.282399 25.467635,66.679180 19.472320,62.251885 C 22.795663,58.509116 28.591752,55.932611 32.882169,53.749803 C 33.903414,53.237468 32.514590,53.177022 32.782688,52.965945 z M 108.15135,60.837842 C 106.41992,61.407099 102.14597,65.977603 105.75713,64.546156 C 106.75329,59.280680 112.07334,64.812017 107.43303,66.072832 C 106.32919,62.477203 102.76135,65.275646 106.10550,66.960380 C 109.77431,67.996845 112.76718,61.926401 108.15135,60.837842 z M 43.616091,83.250850 C 40.779241,85.685802 46.848659,91.563454 46.472316,95.236933 C 47.980658,101.09377 50.193188,107.11366 50.221795,113.18027 C 51.477182,112.45001 52.412009,120.78095 53.691781,117.07588 C 52.747302,113.50170 50.080759,108.91352 49.728833,104.34364 C 48.626680,97.446857 46.789725,89.508470 43.616091,83.250850 z M 112.17261,83.664740 C 95.779614,90.858949 78.719670,97.808942 61.890615,103.93139 C 60.094360,105.03829 56.425042,105.57286 56.839367,108.11827 C 56.868442,113.60218 58.969999,108.68513 58.833660,107.88833 C 68.440720,113.56299 77.557953,119.99865 86.481768,126.68522 C 90.037520,127.33221 92.397102,132.94152 92.388917,135.92203 C 95.100903,134.39077 91.632357,129.17439 96.093201,129.22233 C 106.39110,124.57825 116.64882,119.41053 126.95606,114.80211 C 133.32975,111.49328 139.73845,108.08309 145.42060,103.73322 C 140.45578,106.15618 136.34667,110.14589 131.13475,112.27319 C 121.65116,117.17180 111.58506,120.84830 101.94264,125.43134 C 98.510514,126.03258 94.478246,130.53087 91.896006,128.45557 C 88.689901,125.44682 85.431494,124.77829 82.105166,121.87092 C 74.680282,116.22589 66.777759,111.27623 58.941633,106.23789 C 71.168716,102.16787 82.966375,96.865976 94.911470,92.038580 C 100.20359,89.557196 107.73633,87.662917 112.87915,84.961650 C 114.40098,85.131858 112.00645,83.795781 112.17261,83.664740 z M 146.42394,102.61943 C 143.03257,103.82767 146.74606,110.01080 144.41669,112.01931 C 137.50666,117.55965 128.37231,119.10715 120.27365,122.29490 C 110.67720,125.88281 101.00336,129.97296 92.453477,135.63546 C 96.635187,133.53682 100.99311,131.56259 105.29809,129.62761 C 114.85290,124.68039 125.12371,121.42418 135.11086,117.56464 C 139.34541,114.87808 146.69082,114.12918 146.61805,108.45494 C 146.83242,106.66757 146.44845,104.42298 146.42394,102.61943 z "
+           id="path1062"
+           sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
+           style="fill:#000000;fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+      </g>
+    </g>
+    <path
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#ffff00;stroke-width:6.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       d="M 452.41155,1595.0471 L 452.41155,1645.3604 L 805.03980,1645.3604 L 805.03980,1704.0633"
+       id="path48007"
+       sodipodi:nodetypes="cccc" />
+    <g
+       id="g9390"
+       transform="translate(334.2619,1017.360)">
+      <g
+         transform="matrix(0.431948,0.000000,0.000000,0.433902,171.8626,276.7653)"
+         id="g8046">
+        <g
+           transform="matrix(1.059522,1.078931,0.000000,1.074180,-550.2758,-151.3259)"
+           id="g8340">
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-53.02380)"
+             style="fill:url(#linearGradient40927);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.0875835"
+             id="rect7908"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-53.02380)"
+             style="fill:url(#linearGradient40929);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.9051003"
+             id="rect7909"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,-41.84268)"
+             style="fill:url(#linearGradient40931);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.0875835"
+             id="rect7911"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,-41.84268)"
+             style="fill:url(#linearGradient40933);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.9051003"
+             id="rect7912"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-30.66156)"
+             style="fill:url(#linearGradient40935);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.0875835"
+             id="rect7922"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-30.66156)"
+             style="fill:url(#linearGradient40937);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.9051003"
+             id="rect7923"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,-19.48044)"
+             style="fill:url(#linearGradient40939);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.0875835"
+             id="rect7925"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,-19.48044)"
+             style="fill:url(#linearGradient40941);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.9051003"
+             id="rect7926"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-8.299320)"
+             style="fill:url(#linearGradient40943);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.0875835"
+             id="rect7945"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-8.299320)"
+             style="fill:url(#linearGradient40945);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.9051003"
+             id="rect7946"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,2.881800)"
+             style="fill:url(#linearGradient40947);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.0875835"
+             id="rect7948"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,2.881800)"
+             style="fill:url(#linearGradient40949);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.9051003"
+             id="rect7949"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,14.06291)"
+             style="fill:url(#linearGradient40951);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.0875835"
+             id="rect7952"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,14.06291)"
+             style="fill:url(#linearGradient40953);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.9051003"
+             id="rect7953"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,25.24403)"
+             style="fill:url(#linearGradient40955);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.0875835"
+             id="rect7955"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,25.24403)"
+             style="fill:url(#linearGradient40957);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.9051003"
+             id="rect7956"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,36.42515)"
+             style="fill:url(#linearGradient40959);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.0875835"
+             id="rect7992"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,36.42515)"
+             style="fill:url(#linearGradient40961);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.9051003"
+             id="rect7993"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,47.60627)"
+             style="fill:url(#linearGradient40963);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.0875835"
+             id="rect7995"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,47.60627)"
+             style="fill:url(#linearGradient40965);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.9051003"
+             id="rect7996"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,58.78738)"
+             style="fill:url(#linearGradient40967);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.0875835"
+             id="rect7999"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,58.78738)"
+             style="fill:url(#linearGradient40969);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.9051003"
+             id="rect8000"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,69.96850)"
+             style="fill:url(#linearGradient40971);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.0875835"
+             id="rect8002"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,69.96850)"
+             style="fill:url(#linearGradient40973);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.9051003"
+             id="rect8003"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,81.14961)"
+             style="fill:url(#linearGradient40975);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.0875835"
+             id="rect8007"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,81.14961)"
+             style="fill:url(#linearGradient40977);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.9051003"
+             id="rect8008"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,92.33073)"
+             style="fill:url(#linearGradient40979);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.0875835"
+             id="rect8010"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,92.33073)"
+             style="fill:url(#linearGradient40981);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.9051003"
+             id="rect8011"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,103.5118)"
+             style="fill:url(#linearGradient40983);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.0875835"
+             id="rect8014"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,103.5118)"
+             style="fill:url(#linearGradient40985);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.9051003"
+             id="rect8015"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,114.6930)"
+             style="fill:url(#linearGradient40987);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.0875835"
+             id="rect8017"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,114.6930)"
+             style="fill:url(#linearGradient40989);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.4764462"
+             rx="4.9051003"
+             id="rect8018"
+             height="9.9311152" />
+        </g>
+        <g
+           transform="matrix(1.360647,1.382723,0.000000,1.047373,-601.9655,-195.6688)"
+           id="g6119">
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-53.02380)"
+             style="fill:url(#linearGradient40991);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.0137298"
+             id="rect6121"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-53.02380)"
+             style="fill:url(#linearGradient40993);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.6164770"
+             id="rect6123"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,-41.84268)"
+             style="fill:url(#linearGradient40995);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.0137298"
+             id="rect6125"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,-41.84268)"
+             style="fill:url(#linearGradient40997);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.6164770"
+             id="rect6127"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-30.66156)"
+             style="fill:url(#linearGradient40999);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.0137298"
+             id="rect6129"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-30.66156)"
+             style="fill:url(#linearGradient41001);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.6164770"
+             id="rect6131"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,-19.48044)"
+             style="fill:url(#linearGradient41003);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.0137298"
+             id="rect6133"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,-19.48044)"
+             style="fill:url(#linearGradient41005);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.6164770"
+             id="rect6135"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-8.299320)"
+             style="fill:url(#linearGradient41007);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.0137298"
+             id="rect6137"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-8.299320)"
+             style="fill:url(#linearGradient41009);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.6164770"
+             id="rect6139"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,2.881800)"
+             style="fill:url(#linearGradient41011);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.0137298"
+             id="rect6141"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,2.881800)"
+             style="fill:url(#linearGradient41013);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.6164770"
+             id="rect6143"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,14.06291)"
+             style="fill:url(#linearGradient41015);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.0137298"
+             id="rect6145"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,14.06291)"
+             style="fill:url(#linearGradient41017);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.6164770"
+             id="rect6147"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,25.24403)"
+             style="fill:url(#linearGradient41019);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.0137298"
+             id="rect6149"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,25.24403)"
+             style="fill:url(#linearGradient41021);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.6164770"
+             id="rect6151"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,36.42515)"
+             style="fill:url(#linearGradient41023);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.0137298"
+             id="rect6153"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,36.42515)"
+             style="fill:url(#linearGradient41025);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.6164770"
+             id="rect6155"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,47.60627)"
+             style="fill:url(#linearGradient41027);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.0137298"
+             id="rect6157"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,47.60627)"
+             style="fill:url(#linearGradient41029);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.6164770"
+             id="rect6159"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,58.78738)"
+             style="fill:url(#linearGradient41031);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.0137298"
+             id="rect6161"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,58.78738)"
+             style="fill:url(#linearGradient41033);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.6164770"
+             id="rect6163"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,69.96850)"
+             style="fill:url(#linearGradient41035);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.0137298"
+             id="rect6165"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,69.96850)"
+             style="fill:url(#linearGradient41037);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.6164770"
+             id="rect6167"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,81.14961)"
+             style="fill:url(#linearGradient41039);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.0137298"
+             id="rect6169"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,81.14961)"
+             style="fill:url(#linearGradient41041);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.6164770"
+             id="rect6171"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,92.33073)"
+             style="fill:url(#linearGradient41043);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.0137298"
+             id="rect6173"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,92.33073)"
+             style="fill:url(#linearGradient41045);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.6164770"
+             id="rect6175"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,103.5118)"
+             style="fill:url(#linearGradient41047);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.0137298"
+             id="rect6177"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,103.5118)"
+             style="fill:url(#linearGradient41049);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.6164770"
+             id="rect6179"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,114.6930)"
+             style="fill:url(#linearGradient41051);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.0137298"
+             id="rect6181"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,114.6930)"
+             style="fill:url(#linearGradient41053);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5910254"
+             rx="3.6164770"
+             id="rect6183"
+             height="9.9311152" />
+        </g>
+        <g
+           transform="matrix(1.461460,1.523666,0.000000,1.062187,-580.2286,-188.9042)"
+           id="g6249">
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-53.02380)"
+             style="fill:url(#linearGradient41055);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="2.8336697"
+             id="rect6251"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-53.02380)"
+             style="fill:url(#linearGradient41057);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="3.4004042"
+             id="rect6253"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,-41.84268)"
+             style="fill:url(#linearGradient41059);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="2.8336697"
+             id="rect6255"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,-41.84268)"
+             style="fill:url(#linearGradient41061);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="3.4004042"
+             id="rect6257"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-30.66156)"
+             style="fill:url(#linearGradient41063);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="2.8336697"
+             id="rect6259"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-30.66156)"
+             style="fill:url(#linearGradient41065);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="3.4004042"
+             id="rect6261"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,-19.48044)"
+             style="fill:url(#linearGradient41067);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="2.8336697"
+             id="rect6263"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,-19.48044)"
+             style="fill:url(#linearGradient41069);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="3.4004042"
+             id="rect6265"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-8.299320)"
+             style="fill:url(#linearGradient41071);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="2.8336697"
+             id="rect6267"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-8.299320)"
+             style="fill:url(#linearGradient41073);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="3.4004042"
+             id="rect6269"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,2.881800)"
+             style="fill:url(#linearGradient41075);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="2.8336697"
+             id="rect6271"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,2.881800)"
+             style="fill:url(#linearGradient41077);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="3.4004042"
+             id="rect6273"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,14.06291)"
+             style="fill:url(#linearGradient41079);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="2.8336697"
+             id="rect6275"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,14.06291)"
+             style="fill:url(#linearGradient41081);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="3.4004042"
+             id="rect6277"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,25.24403)"
+             style="fill:url(#linearGradient41083);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="2.8336697"
+             id="rect6279"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,25.24403)"
+             style="fill:url(#linearGradient41085);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="3.4004042"
+             id="rect6281"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,36.42515)"
+             style="fill:url(#linearGradient41087);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="2.8336697"
+             id="rect6283"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,36.42515)"
+             style="fill:url(#linearGradient41089);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="3.4004042"
+             id="rect6285"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,47.60627)"
+             style="fill:url(#linearGradient41091);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="2.8336697"
+             id="rect6287"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,47.60627)"
+             style="fill:url(#linearGradient41093);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="3.4004042"
+             id="rect6289"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,58.78738)"
+             style="fill:url(#linearGradient41095);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="2.8336697"
+             id="rect6291"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,58.78738)"
+             style="fill:url(#linearGradient41097);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="3.4004042"
+             id="rect6293"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,69.96850)"
+             style="fill:url(#linearGradient41099);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="2.8336697"
+             id="rect6295"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,69.96850)"
+             style="fill:url(#linearGradient41101);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="3.4004042"
+             id="rect6297"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,81.14961)"
+             style="fill:url(#linearGradient41103);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="2.8336697"
+             id="rect6299"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,81.14961)"
+             style="fill:url(#linearGradient41105);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="3.4004042"
+             id="rect6301"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,92.33073)"
+             style="fill:url(#linearGradient41107);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="2.8336697"
+             id="rect6303"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,92.33073)"
+             style="fill:url(#linearGradient41109);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="3.4004042"
+             id="rect6305"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,103.5118)"
+             style="fill:url(#linearGradient41111);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="2.8336697"
+             id="rect6307"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,103.5118)"
+             style="fill:url(#linearGradient41113);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="3.4004042"
+             id="rect6309"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,114.6930)"
+             style="fill:url(#linearGradient41115);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="2.8336697"
+             id="rect6311"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,114.6930)"
+             style="fill:url(#linearGradient41117);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.5269871"
+             rx="3.4004042"
+             id="rect6313"
+             height="9.9311152" />
+        </g>
+        <g
+           transform="matrix(1.608839,-1.179621e-2,0.803039,0.868349,-872.9361,218.0530)"
+           id="g6509">
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-53.02380)"
+             style="fill:url(#linearGradient41119);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.2986829"
+             id="rect6511"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-53.02380)"
+             style="fill:url(#linearGradient41121);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.9584198"
+             id="rect6513"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,-41.84268)"
+             style="fill:url(#linearGradient41123);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.2986829"
+             id="rect6515"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,-41.84268)"
+             style="fill:url(#linearGradient41125);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.9584198"
+             id="rect6517"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-30.66156)"
+             style="fill:url(#linearGradient41127);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.2986829"
+             id="rect6519"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-30.66156)"
+             style="fill:url(#linearGradient41129);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.9584198"
+             id="rect6521"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,-19.48044)"
+             style="fill:url(#linearGradient41131);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.2986829"
+             id="rect6523"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,-19.48044)"
+             style="fill:url(#linearGradient41133);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.9584198"
+             id="rect6525"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-8.299320)"
+             style="fill:url(#linearGradient41135);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.2986829"
+             id="rect6527"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-8.299320)"
+             style="fill:url(#linearGradient41137);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.9584198"
+             id="rect6529"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,2.881800)"
+             style="fill:url(#linearGradient41139);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.2986829"
+             id="rect6531"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,2.881800)"
+             style="fill:url(#linearGradient41141);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.9584198"
+             id="rect6533"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,14.06291)"
+             style="fill:url(#linearGradient41143);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.2986829"
+             id="rect6535"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,14.06291)"
+             style="fill:url(#linearGradient41145);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.9584198"
+             id="rect6537"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,25.24403)"
+             style="fill:url(#linearGradient41147);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.2986829"
+             id="rect6539"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,25.24403)"
+             style="fill:url(#linearGradient41149);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.9584198"
+             id="rect6541"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,36.42515)"
+             style="fill:url(#linearGradient41151);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.2986829"
+             id="rect6543"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,36.42515)"
+             style="fill:url(#linearGradient41153);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.9584198"
+             id="rect6545"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,47.60627)"
+             style="fill:url(#linearGradient41155);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.2986829"
+             id="rect6547"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,47.60627)"
+             style="fill:url(#linearGradient41157);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.9584198"
+             id="rect6549"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,58.78738)"
+             style="fill:url(#linearGradient41159);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.2986829"
+             id="rect6551"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,58.78738)"
+             style="fill:url(#linearGradient41161);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.9584198"
+             id="rect6553"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,69.96850)"
+             style="fill:url(#linearGradient41163);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.2986829"
+             id="rect6555"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,69.96850)"
+             style="fill:url(#linearGradient41165);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.9584198"
+             id="rect6557"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,81.14961)"
+             style="fill:url(#linearGradient41167);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.2986829"
+             id="rect6559"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,81.14961)"
+             style="fill:url(#linearGradient41169);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.9584198"
+             id="rect6561"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,92.33073)"
+             style="fill:url(#linearGradient41171);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.2986829"
+             id="rect6563"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,92.33073)"
+             style="fill:url(#linearGradient41173);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.9584198"
+             id="rect6565"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,103.5118)"
+             style="fill:url(#linearGradient41175);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.2986829"
+             id="rect6567"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,103.5118)"
+             style="fill:url(#linearGradient41177);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.9584198"
+             id="rect6569"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,114.6930)"
+             style="fill:url(#linearGradient41179);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.2986829"
+             id="rect6571"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,114.6930)"
+             style="fill:url(#linearGradient41181);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.3305864"
+             rx="3.9584198"
+             id="rect6573"
+             height="9.9311152" />
+        </g>
+        <path
+           style="opacity:0.72777778;fill:url(#linearGradient41183);fill-opacity:1.0000000;fill-rule:evenodd;stroke:url(#linearGradient41185);stroke-width:0.72444959pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.72803348"
+           sodipodi:stroke-cmyk="(0.00000000 0.00000000 0.00000000 0.73640168)"
+           sodipodi:nodetypes="cccccccssc"
+           inkscape:label="Fire"
+           id="path7371"
+           d="M -121.82393,695.17096 C -96.775916,708.13767 -70.614851,685.18017 -71.307364,666.54481 C -75.462481,671.75547 -80.367837,672.38392 -94.913376,673.00695 C -61.908089,643.90601 -93.904753,638.96322 -103.60004,576.14503 C -131.00343,594.67754 -138.77438,595.36118 -126.30901,644.64893 C -132.54169,629.87486 -134.64133,626.39640 -147.91650,612.25555 C -139.60625,632.23733 -137.04067,637.62931 -146.04343,647.70471 C -145.35093,640.11495 -162.72618,619.44371 -160.84424,623.70064 C -154.12123,638.90807 -156.77471,645.03513 -150.62939,663.73632 C -145.65938,678.86077 -131.70705,689.40199 -121.82393,695.17096 z " />
+        <path
+           style="opacity:0.72777778;fill:url(#linearGradient41187);fill-opacity:1.0000000;fill-rule:evenodd;stroke:url(#linearGradient41189);stroke-width:0.89272099pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.72803348"
+           sodipodi:stroke-cmyk="(0.00000000 0.00000000 0.00000000 0.73640168)"
+           sodipodi:nodetypes="cccccccssc"
+           inkscape:label="Fire"
+           id="Fire"
+           d="M -170.76032,649.47909 C -145.71232,660.32755 -119.55125,616.23212 -120.24376,588.17877 C -124.39888,597.55786 -129.30423,600.24364 -143.84977,606.32404 C -110.84448,550.48392 -142.84115,554.27263 -152.53643,462.30537 C -179.93983,500.11994 -187.71077,503.90108 -175.24541,574.34449 C -181.47808,554.11011 -183.57772,549.56916 -196.85289,532.78222 C -188.54265,560.19115 -185.97706,567.47331 -194.97982,585.95060 C -194.28732,574.18112 -211.66257,548.92498 -209.78063,554.72485 C -203.05763,575.44425 -205.71111,585.68483 -199.56579,611.91340 C -194.59578,633.12557 -180.64346,644.20749 -170.76032,649.47909 z " />
+        <path
+           style="opacity:0.72777778;fill:url(#linearGradient41191);fill-opacity:1.0000000;fill-rule:evenodd;stroke:url(#linearGradient41193);stroke-width:0.99829950pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.72803348"
+           sodipodi:stroke-cmyk="(0.00000000 0.00000000 0.00000000 0.73640168)"
+           sodipodi:nodetypes="cccccccssc"
+           inkscape:label="Fire"
+           id="path7377"
+           d="M -224.87574,600.79264 C -199.82773,625.41532 -173.66667,581.82096 -174.35918,546.43403 C -178.51430,556.32863 -183.41966,557.52198 -197.96519,558.70507 C -164.95989,503.44486 -196.95657,494.05896 -206.65185,374.77256 C -234.05525,409.96423 -241.82620,411.26241 -229.36083,504.85561 C -235.59351,476.80092 -237.69314,470.19560 -250.96832,443.34336 C -242.65807,481.28702 -240.09248,491.52594 -249.09525,510.65826 C -248.40274,496.24596 -265.77800,456.99304 -263.89605,465.07660 C -257.17305,493.95420 -259.82653,505.58899 -253.68121,541.10095 C -248.71120,569.82099 -234.75888,589.83786 -224.87574,600.79264 z " />
+        <g
+           transform="matrix(1.461460,2.284648e-2,0.000000,1.032806,-524.8630,328.8915)"
+           id="g6379">
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-53.02380)"
+             style="fill:url(#linearGradient41195);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.3111374"
+             id="rect6381"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-53.02380)"
+             style="fill:url(#linearGradient41197);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.7733645"
+             id="rect6383"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,-41.84268)"
+             style="fill:url(#linearGradient41199);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.3111374"
+             id="rect6385"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,-41.84268)"
+             style="fill:url(#linearGradient41201);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.7733645"
+             id="rect6387"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-30.66156)"
+             style="fill:url(#linearGradient41203);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.3111374"
+             id="rect6389"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-30.66156)"
+             style="fill:url(#linearGradient41205);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.7733645"
+             id="rect6391"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,-19.48044)"
+             style="fill:url(#linearGradient41207);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.3111374"
+             id="rect6393"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,-19.48044)"
+             style="fill:url(#linearGradient41209);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.7733645"
+             id="rect6395"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-8.299320)"
+             style="fill:url(#linearGradient41211);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.3111374"
+             id="rect6397"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,-8.299320)"
+             style="fill:url(#linearGradient41213);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.7733645"
+             id="rect6399"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,2.881800)"
+             style="fill:url(#linearGradient41215);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.3111374"
+             id="rect6401"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,2.881800)"
+             style="fill:url(#linearGradient41217);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.7733645"
+             id="rect6403"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,14.06291)"
+             style="fill:url(#linearGradient41219);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.3111374"
+             id="rect6405"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,14.06291)"
+             style="fill:url(#linearGradient41221);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.7733645"
+             id="rect6407"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,25.24403)"
+             style="fill:url(#linearGradient41223);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.3111374"
+             id="rect6409"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,25.24403)"
+             style="fill:url(#linearGradient41225);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.7733645"
+             id="rect6411"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,36.42515)"
+             style="fill:url(#linearGradient41227);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.3111374"
+             id="rect6413"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,36.42515)"
+             style="fill:url(#linearGradient41229);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.7733645"
+             id="rect6415"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,47.60627)"
+             style="fill:url(#linearGradient41231);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.3111374"
+             id="rect6417"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,47.60627)"
+             style="fill:url(#linearGradient41233);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.7733645"
+             id="rect6419"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,58.78738)"
+             style="fill:url(#linearGradient41235);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.3111374"
+             id="rect6421"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,58.78738)"
+             style="fill:url(#linearGradient41237);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.7733645"
+             id="rect6423"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,69.96850)"
+             style="fill:url(#linearGradient41239);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.3111374"
+             id="rect6425"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,69.96850)"
+             style="fill:url(#linearGradient41241);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.7733645"
+             id="rect6427"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,81.14961)"
+             style="fill:url(#linearGradient41243);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.3111374"
+             id="rect6429"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,81.14961)"
+             style="fill:url(#linearGradient41245);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.7733645"
+             id="rect6431"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,92.33073)"
+             style="fill:url(#linearGradient41247);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.3111374"
+             id="rect6433"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,92.33073)"
+             style="fill:url(#linearGradient41249);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.7733645"
+             id="rect6435"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,103.5118)"
+             style="fill:url(#linearGradient41251);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.3111374"
+             id="rect6437"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(-1.000000,0.000000,0.000000,-1.000000,0.320159,103.5118)"
+             style="fill:url(#linearGradient41253);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.7733645"
+             id="rect6439"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-315.78238"
+             width="14.422236"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,114.6930)"
+             style="fill:url(#linearGradient41255);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:0.79871912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.3111374"
+             id="rect6441"
+             height="9.9311152" />
+          <rect
+             y="-258.46179"
+             x="-339.51367"
+             width="22.607079"
+             transform="matrix(1.000000,0.000000,0.000000,-1.000000,641.3198,114.6930)"
+             style="fill:url(#linearGradient41257);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             ry="4.6557741"
+             rx="2.7733645"
+             id="rect6443"
+             height="9.9311152" />
+        </g>
+        <path
+           style="opacity:0.72777778;fill:url(#linearGradient41259);fill-opacity:1.0000000;fill-rule:evenodd;stroke:url(#linearGradient41261);stroke-width:0.98183594pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.72803348"
+           sodipodi:stroke-cmyk="(0.00000000 0.00000000 0.00000000 0.73640168)"
+           sodipodi:nodetypes="cccccccssc"
+           inkscape:label="Fire"
+           id="path7365"
+           d="M -78.430221,726.96995 C -53.382197,726.11027 -27.221144,658.16846 -27.913661,624.62133 C -32.068762,638.28584 -36.974130,644.27285 -51.519673,659.74724 C -18.514369,573.77834 -50.511046,596.22215 -60.206323,490.38939 C -87.609722,551.42730 -95.380670,560.33887 -82.915306,638.58980 C -89.147980,617.59317 -91.247609,613.27243 -104.52279,600.37708 C -96.212548,628.89242 -93.646961,636.26883 -102.64972,663.64468 C -101.95722,649.02160 -119.33248,628.17052 -117.45053,634.13559 C -110.72752,655.44517 -113.38101,669.31356 -107.23569,697.60956 C -102.26569,720.49378 -88.313349,726.11022 -78.430221,726.96995 z " />
+      </g>
+      <text
+         sodipodi:linespacing="125.00000%"
+         id="text8554"
+         y="504.12314"
+         x="-89.860985"
+         style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+         xml:space="preserve"><tspan
+           y="504.12314"
+           x="-89.860985"
+           id="tspan8556"
+           sodipodi:role="line">Intranet</tspan><tspan
+           id="tspan8558"
+           y="544.12314"
+           x="-89.860985"
+           sodipodi:role="line">firewall/gateway</tspan></text>
+    </g>
+    <g
+       transform="translate(1001.051,2311.465)"
+       id="g48747">
+      <path
+         style="fill:#ffff00;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+         d="M -86.419853,-691.35483 C -76.144661,-694.12138 -64.683870,-695.22800 -55.594278,-689.69490 C -64.091071,-673.09562 -66.659869,-647.36672 -63.300672,-629.93747 C -71.402265,-637.40715 -83.060655,-635.74723 -94.719045,-632.42736 C -98.473443,-651.23989 -96.892644,-670.05241 -86.419853,-691.35483 z "
+         id="path48749"
+         sodipodi:nodetypes="ccccc" />
+      <path
+         style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+         d="M -85.234254,-677.24544 C -79.701458,-679.45868 -75.354262,-680.84195 -68.635867,-676.41547"
+         id="path48751"
+         sodipodi:nodetypes="cc" />
+      <path
+         sodipodi:nodetypes="cc"
+         id="path48753"
+         d="M -87.605452,-667.28587 C -82.072656,-669.49911 -77.725460,-670.88238 -71.007065,-666.45590"
+         style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+    </g>
+    <g
+       id="g49689"
+       transform="translate(321.2698,937.7139)">
+      <rect
+         y="156.89761"
+         x="216.43214"
+         height="271.14737"
+         width="458.32129"
+         id="rect19260"
+         style="fill:#ffffff;fill-opacity:0.0000000;stroke:#ff0000;stroke-width:4.0000000;stroke-linecap:butt;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+      <g
+         transform="translate(22.64328,0.000000)"
+         id="g49670">
+        <g
+           id="g1440"
+           transform="matrix(-0.679077,0.000000,0.000000,0.679077,613.1959,111.1484)">
+          <g
+             id="g731">
+            <path
+               transform="translate(26.10760,-0.791130)"
+               style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path703"
+               d="M 10.284800,152.69000 C 10.284800,152.69000 305.38000,146.36100 306.96200,146.36100 C 308.54400,146.36100 450.15800,253.95600 450.15800,253.95600 L 90.981000,268.98700 C 90.981000,268.98700 10.284800,151.10800 10.284800,152.69000 z " />
+            <g
+               id="g722">
+              <path
+                 transform="translate(26.10760,-0.791130)"
+                 style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path702"
+                 d="M 90.189900,340.98100 L 10.284800,194.62000 L 9.4936800,152.68900 L 90.981000,268.19600 C 94.145600,270.56900 94.936700,337.02500 90.189900,340.98100 z " />
+              <g
+                 id="g715">
+                <path
+                   transform="matrix(1.004310,0.000000,0.000000,1.000000,25.72227,-0.791130)"
+                   style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="cccccc"
+                   id="path701"
+                   d="M 93.354500,268.19600 L 449.36700,253.16400 C 449.36700,253.16400 456.48800,273.73500 456.48800,288.76600 C 456.48800,306.17100 452.53200,321.99400 451.74100,322.78500 L 89.398800,340.19000 C 94.145700,328.32200 94.145500,315.66400 93.354500,268.19600 z " />
+                <g
+                   id="g710">
+                  <path
+                     style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                     sodipodi:nodetypes="ccccc"
+                     id="path706"
+                     d="M 449.36700,298.26000 L 463.60800,297.46800 L 463.60800,309.33500 L 449.36700,310.12700 L 449.36700,298.26000 z " />
+                  <g
+                     id="g707">
+                    <path
+                       style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:2.5000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                       sodipodi:nodetypes="ccccc"
+                       id="path704"
+                       d="M 134.49400,281.64600 L 265.03200,276.10800 L 264.24100,310.12700 L 133.70200,317.24600 L 134.49400,281.64600 z " />
+                    <path
+                       style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                       sodipodi:nodetypes="ccccc"
+                       id="path705"
+                       d="M 443.82900,268.19600 C 444.62000,268.19600 465.98100,267.40500 465.98100,267.40500 L 465.98100,283.22800 L 443.82900,284.01900 L 443.82900,268.19600 z " />
+                  </g>
+                </g>
+              </g>
+            </g>
+          </g>
+          <path
+             style="fill:#000000;fill-opacity:0.25185201;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path567"
+             d="M 228.10400,151.93700 C 228.10400,151.93700 321.70800,150.12000 328.97900,151.02800 C 336.24900,151.93700 403.49900,208.28100 403.49900,208.28100 C 403.49900,208.28100 345.33700,150.11900 228.10400,151.93700 z " />
+          <path
+             style="fill:#ffffff;fill-opacity:0.49999997;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path568"
+             d="M 125.41200,328.24000 C 125.41200,327.33200 120.86800,274.62200 125.41200,274.62200 C 129.95600,274.62200 258.09400,265.53500 258.09400,265.53500 C 258.09400,265.53500 123.59400,279.16600 125.41200,328.24000 z " />
+          <path
+             style="fill:#ffffff;fill-opacity:0.49803898;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path569"
+             d="M 94.513200,243.72400 C 94.513200,243.72400 111.78000,266.44300 112.68900,271.89600 C 113.59800,277.34900 115.41500,323.69700 115.41500,323.69700 C 115.41500,323.69700 111.78000,275.53100 94.513200,243.72400 z " />
+        </g>
+        <text
+           xml:space="preserve"
+           style="font-size:48.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+           x="424.72989"
+           y="395.88855"
+           id="text6614"
+           sodipodi:linespacing="125.00000%"><tspan
+             sodipodi:role="line"
+             id="tspan9784"
+             x="424.72989"
+             y="395.88855">HotelGate server</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g7497">
+      <g
+         id="g5142">
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0643784px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path18927"
+           d="M 1207.3813,1491.0307 C 1224.1769,1497.2363 1227.8281,1511.9747 1227.8281,1511.9747" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.6768856px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path18936"
+           d="M 1209.7952,1478.6913 C 1236.0060,1488.5613 1241.7040,1512.0023 1241.7040,1512.0023" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:2.3075068px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path18941"
+           d="M 1212.2605,1466.3177 C 1249.5475,1479.4553 1257.6533,1510.6571 1257.6533,1510.6571" />
+      </g>
+      <g
+         id="g7477">
+        <path
+           style="stroke:#000000;stroke-width:1.9965503;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="rect14325"
+           d="M 1156.0601,1507.6159 L 1156.0601,1507.6159 L 1162.4343,1518.1688 L 1161.7261,1518.1688 L 1156.0601,1507.6159 z " />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0643784px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path18943"
+           d="M 1156.4687,1491.2187 C 1139.6731,1497.4244 1136.0219,1512.1627 1136.0219,1512.1627" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.6768856px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path18945"
+           d="M 1154.0548,1478.8794 C 1127.8440,1488.7493 1122.1460,1512.1904 1122.1460,1512.1904" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:2.3075068px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path18947"
+           d="M 1151.5895,1466.5057 C 1114.3025,1479.6433 1106.1967,1510.8452 1106.1967,1510.8452" />
+      </g>
+      <g
+         id="g7483">
+        <rect
+           y="1518.8215"
+           x="1161.8298"
+           width="0.70825261"
+           style="stroke:#000000;stroke-width:2.4680953;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="rect14323"
+           height="16.368162" />
+        <rect
+           y="1519.0090"
+           x="1199.7802"
+           width="0.70825261"
+           style="stroke:#000000;stroke-width:2.4680953;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="rect15087"
+           height="16.368162" />
+        <path
+           style="stroke:#000000;stroke-width:2.0792346;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="path15089"
+           d="M 1208.0097,1507.8461 L 1208.0097,1507.8461 L 1200.7578,1518.3990 L 1199.9897,1518.3990 L 1208.0097,1507.8461 z " />
+        <rect
+           y="1536.8550"
+           x="1148.7272"
+           width="67.992256"
+           style="fill:url(#linearGradient5131);fill-opacity:1.0000000;fill-rule:evenodd;stroke:url(#linearGradient5133);stroke-width:3.3941357;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="rect11991"
+           height="75.981194" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:url(#linearGradient5128);stroke-width:1.7308000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path13531"
+           d="M 1165.3353,1574.9768 L 1200.1982,1574.9768" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:url(#linearGradient5125);stroke-width:1.7308000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path14299"
+           d="M 1165.3353,1578.9198 L 1200.1982,1578.9198" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:url(#linearGradient5122);stroke-width:1.7308000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path14303"
+           d="M 1165.3353,1586.8057 L 1200.1982,1586.8057" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:url(#linearGradient5119);stroke-width:1.7308000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path14307"
+           d="M 1165.3353,1590.7487 L 1200.1982,1590.7487" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:url(#linearGradient5116);stroke-width:1.7308000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path14311"
+           d="M 1165.3353,1594.6916 L 1200.1982,1594.6916" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:url(#linearGradient5113);stroke-width:1.7308000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path14315"
+           d="M 1165.3353,1598.6346 L 1200.1982,1598.6346" />
+        <path
+           style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:url(#linearGradient5110);stroke-width:1.7308000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path14319"
+           d="M 1165.3353,1582.8627 L 1200.1982,1582.8627" />
+        <rect
+           y="1548.8127"
+           x="1168.9612"
+           width="27.524021"
+           style="fill:url(#linearGradient5099);fill-opacity:1.0000000;fill-rule:evenodd;stroke:url(#linearGradient5101);stroke-width:0.88177949;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
+           id="rect19707"
+           height="12.668211" />
+      </g>
+    </g>
+    <g
+       id="g6959">
+      <g
+         id="g6184">
+        <g
+           inkscape:label="Layer 1"
+           id="g13521"
+           transform="matrix(0.278462,0.000000,0.000000,0.278462,1084.375,1621.130)">
+          <g
+             id="g13349">
+            <path
+               style="fill:#0c0d0d;fill-opacity:0.46428570;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path1318"
+               d="M 457.69310,531.23993 L 408.33448,567.36840 L 397.13974,576.01888 L 383.40075,576.01888 L 370.17060,572.45692 L 177.82466,522.58945 L 145.25815,513.93897 L 144.74930,510.88586 L 150.34667,508.34160 L 183.42203,498.16457 L 377.80338,524.62486 L 434.79477,524.11600 L 457.69310,531.23993 z " />
+            <path
+               style="fill:#404348;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="cccccccccccscccccccccccccccc"
+               id="path1316"
+               d="M 144.31900,498.16042 C 144.87838,499.97839 145.43775,501.79637 145.99713,503.61434 C 148.09479,503.89403 150.19245,504.17371 152.29011,504.45340 C 238.93475,527.27504 322.01742,549.07897 389.32569,565.28554 C 394.22023,564.02694 399.11477,562.76835 404.00931,561.50975 C 420.93043,549.34332 437.85156,537.17690 454.77268,525.01047 C 455.47190,526.40891 456.17112,527.80735 456.87034,529.20579 C 459.24769,527.52766 461.62503,525.84954 464.00238,524.17141 C 477.00787,514.10264 490.01337,504.03387 503.01886,493.96510 C 503.85792,492.14713 504.69699,490.32916 505.53605,488.51119 C 506.09543,488.09166 506.65480,487.67212 507.21418,487.25259 C 507.21418,487.25259 507.21418,487.25259 507.21418,484.73540 C 507.21418,482.21821 507.21418,480.12055 507.21418,480.12055 C 485.81805,494.66432 464.42191,509.20810 443.02578,523.75187 C 442.60625,523.75187 442.18672,523.75187 441.76719,523.75187 C 441.48750,523.89172 441.20781,524.03156 440.92812,524.17141 C 440.64843,524.73078 440.36875,525.29016 440.08906,525.84953 C 438.97031,526.40891 437.85155,526.96828 436.73280,527.52766 C 436.31327,527.52766 435.89374,527.52766 435.47421,527.52766 C 435.33436,528.22688 435.19452,528.92610 435.05467,529.62532 C 433.51639,530.46438 431.97810,531.30345 430.43982,532.14251 C 429.88044,532.14251 429.32107,532.14251 428.76169,532.14251 C 427.36325,533.40111 425.96482,534.65970 424.56638,535.91830 C 424.28669,536.47768 424.00700,537.03705 423.72731,537.59643 C 417.15464,542.21128 410.58198,546.82614 404.00931,551.44099 C 402.19134,553.53865 400.37336,555.63631 398.55539,557.73397 C 396.03820,558.43319 393.52101,559.13241 391.00382,559.83163 C 307.24899,540.80112 224.00301,520.24405 144.31900,498.16042 z " />
+            <path
+               style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="cccccccccccccccccccccccc"
+               id="path1320"
+               d="M 507.32515,478.88631 C 479.50792,497.03535 451.69070,515.18440 423.87347,533.33344 C 416.57993,538.42196 409.28639,543.51047 401.99285,548.59899 C 399.44859,550.63440 396.90433,552.66981 394.36007,554.70522 C 391.81581,554.70522 389.27156,554.70522 386.72730,554.70522 C 366.03399,552.16096 346.86725,545.54589 326.17394,540.96622 C 265.45097,526.88799 206.76341,512.80976 144.00503,494.15186 C 143.83541,495.50880 143.66580,496.86574 143.49618,498.22268 C 226.09977,518.91598 308.70337,539.60928 391.30696,560.30258 C 393.68160,559.28488 396.05625,558.26717 398.43089,557.24947 C 400.46630,554.70521 402.50170,552.16096 404.53711,549.61670 C 409.28639,547.07244 414.03567,544.52818 418.78495,541.98392 C 420.14189,540.79660 421.49883,539.60928 422.85577,538.42196 C 423.70386,537.06502 424.55194,535.70809 425.40003,534.35115 C 426.75697,533.50306 428.11390,532.65498 429.47084,531.80689 C 430.31893,531.97651 431.16701,532.14612 432.01510,532.31574 C 432.86319,531.46765 433.71127,530.61957 434.55936,529.77148 C 434.72898,529.09301 434.89859,528.41454 435.06821,527.73607 C 435.74668,527.73607 436.42514,527.73607 437.10361,527.73607 C 438.29093,527.05760 439.47826,526.37914 440.66558,525.70067 C 440.66558,525.19182 440.66558,524.68296 440.66558,524.17411 C 441.85290,523.83488 443.04022,523.49564 444.22754,523.15641 C 451.18185,518.40713 458.13615,513.65784 465.09046,508.90856 C 479.16869,498.90114 493.24692,488.89373 507.32515,478.88631 z " />
+            <path
+               style="fill:#cecdc9;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#414746;stroke-width:0.50000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="path2049"
+               d="M 505.98161,478.68538 L 412.86175,541.27414 L 399.63160,549.92462 L 393.52538,553.99543 L 390.98112,554.50428 L 385.38375,553.99543 L 379.78639,554.50428 L 354.85265,548.39806 L 233.23709,518.88466 L 160.47130,499.54830 L 145.20575,494.96863 L 142.66149,492.93323 L 143.67919,491.40667 L 150.29427,488.86241 L 209.82992,467.99949 L 203.21484,471.05260 L 208.30336,473.59686 L 268.34786,485.30045 L 275.47179,483.26504 L 289.21078,485.30045 L 324.83040,493.44208 L 326.35696,495.98634 L 325.33925,497.51289 L 425.07419,518.88466 L 435.25122,520.92007 L 440.33974,517.86696 L 498.85768,480.72078 L 499.36654,479.19423 L 505.98161,478.68538 z " />
+            <path
+               style="fill:#e0e0e2;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#59595e;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path2779"
+               d="M 276.33662,487.33585 L 252.42059,499.03944 L 297.19954,508.19877 L 318.57131,497.00404 L 318.57131,495.47748 L 276.33662,487.33585 z " />
+            <path
+               style="fill:#cbcbcd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#524a50;stroke-width:0.50000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="path2781"
+               d="M 304.83231,510.23418 L 300.25265,513.28729 L 294.14643,513.28729 L 245.29666,503.61911 L 242.75240,501.58370 L 243.26126,499.54829 L 247.33207,497.51289 L 250.89403,497.51289 L 304.83231,510.23418 z " />
+            <path
+               style="fill:#a5a5a5;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#555959;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path2777"
+               d="M 266.66844,504.12797 L 255.47370,508.70763 L 253.94715,511.25189 L 257.50911,512.26960 L 264.12418,512.77845 L 272.77466,509.21649 L 276.33662,506.67223 L 274.30121,504.63682 L 266.66844,504.12797 z " />
+            <path
+               style="fill:#454344;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path4961"
+               d="M 269.72155,519.90236 L 274.81007,521.42892 L 276.84547,520.41122 L 277.35433,518.88466 L 271.24811,517.35811 L 269.72155,519.90236 z " />
+            <path
+               style="fill:#939192;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path4963"
+               d="M 427.43543,513.99708 L 466.61701,492.11646 L 474.75864,488.04564 L 476.79405,483.46598 L 278.34188,448.35521 L 223.89475,468.20043 L 227.96556,471.25354 L 392.32466,505.34660 L 389.27155,506.36430 L 427.43543,513.99708 z M 497.65697,478.88631 L 497.65697,478.88631 z M 494.09501,483.46598 L 445.24524,515.52363 L 437.61247,518.57674 L 430.48854,518.57674 L 410.13447,514.50593 L 326.17394,496.18727 L 325.66509,493.13416 L 322.10313,491.60760 L 278.34188,481.93942 L 270.70911,482.95712 L 266.12944,484.48368 L 205.57609,471.76239 L 203.54068,470.23583 L 204.04953,468.20043 L 282.92155,442.24899 L 288.51892,441.74014 L 343.47490,450.39062 L 467.63472,472.27124 L 493.58615,477.35976 L 499.18352,478.37746 L 498.67467,480.41287 L 494.09501,483.46598 z " />
+            <path
+               style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path4973"
+               d="M 475.85951,484.04815 L 440.93696,506.02069 L 473.20582,487.76331 L 474.90418,487.02027 L 475.85951,484.04815 z " />
+            <path
+               style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path5703"
+               d="M 350.65332,277.68888 L 549.36155,286.18068 L 503.50580,448.37415 L 298.00413,418.65284 L 350.65332,277.68888 z " />
+            <path
+               style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path5701"
+               d="M 351.70743,277.78707 L 550.41566,286.27887 L 504.55991,448.47234 L 299.05824,418.75103 L 351.70743,277.78707 z M 508.80582,472.24940 L 561.45501,282.03297 L 559.75664,277.78707 L 552.96320,275.23953 L 539.37631,273.54116 L 350.00907,266.74772 L 346.61234,269.29526 L 288.01889,434.03627 L 293.11397,439.98054 L 344.06480,447.62316 L 346.61234,437.43300 L 371.23858,441.67890 L 369.54022,449.32152 L 371.23858,454.41661 L 503.71073,473.94776 L 508.80582,472.24940 z " />
+            <path
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,171.4076,234.8891)"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:type="arc"
+               sodipodi:ry="3.3967218"
+               sodipodi:rx="3.3967218"
+               sodipodi:cy="402.73911"
+               sodipodi:cx="413.55090"
+               id="path5710"
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z" />
+            <path
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,179.7138,236.1077)"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:type="arc"
+               sodipodi:ry="3.3967218"
+               sodipodi:rx="3.3967218"
+               sodipodi:cy="402.73911"
+               sodipodi:cx="413.55090"
+               id="path6440"
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z" />
+            <path
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,187.0261,237.1521)"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:type="arc"
+               sodipodi:ry="3.3967218"
+               sodipodi:rx="3.3967218"
+               sodipodi:cy="402.73911"
+               sodipodi:cx="413.55090"
+               id="path6442"
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z" />
+            <path
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,193.5815,238.3358)"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:type="arc"
+               sodipodi:ry="3.3967218"
+               sodipodi:rx="3.3967218"
+               sodipodi:cy="402.73911"
+               sodipodi:cx="413.55090"
+               id="path6444"
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z" />
+            <path
+               style="fill:#78797b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path6446"
+               d="M 285.63627,429.08304 L 288.83668,436.28396 L 292.03708,435.48385 L 292.03708,441.08456 L 287.23647,437.88416 L 285.63627,429.08304 z " />
+            <path
+               style="fill:#1c1b21;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path7174"
+               d="M 297.50241,431.25366 L 294.91197,430.85513 L 293.11859,434.84043 L 292.32153,436.43454 L 292.72006,439.82205 L 293.11859,441.81470 L 295.50977,442.61175 L 296.30683,441.41617 L 296.30683,439.22425 L 295.90830,437.43087 L 295.90830,435.23896 L 297.50241,432.84778 L 297.50241,431.25366 z " />
+            <path
+               style="fill:#6a6a6b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path7176"
+               d="M 296.94250,438.46583 L 340.19282,445.56663 L 340.19282,448.79427 L 298.87908,441.69347 L 296.94250,438.46583 z " />
+            <path
+               style="fill:#424041;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path7904"
+               d="M 342.77493,448.79427 L 342.12941,444.27558 L 346.00257,439.75689 L 369.88707,443.63005 L 368.59602,448.14874 L 368.59602,452.66743 L 342.77493,448.79427 z " />
+            <path
+               style="fill:#f4f3ee;fill-opacity:0.41071430;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path7906"
+               d="M 345.63607,440.61481 L 343.97437,442.51392 L 368.30657,446.19342 L 369.73090,444.53170 L 345.63607,440.61481 z " />
+            <path
+               style="fill:#6a6a6b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path8634"
+               d="M 369.56539,450.47664 L 489.43134,469.90055 L 489.43134,473.22306 L 370.07654,452.52127 L 369.56539,450.47664 z " />
+            <path
+               style="fill:#353533;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path9362"
+               d="M 491.28555,474.61928 L 490.41974,471.77447 L 490.54343,469.79547 L 491.40924,466.45592 L 493.14086,462.86899 L 496.48042,463.36374 L 495.98567,465.96117 L 494.50142,468.31123 C 494.50142,468.31123 493.88299,470.53760 493.88299,471.03235 C 493.88299,471.52710 494.00667,473.75347 494.00667,473.75347 L 494.37773,475.11402 L 491.28555,474.61928 z " />
+            <path
+               transform="matrix(1.555556,0.000000,0.000000,1.555556,-270.0425,-255.0483)"
+               style="opacity:1.0000000;fill:#030000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:type="arc"
+               sodipodi:ry="1.4729594"
+               sodipodi:rx="1.4729594"
+               sodipodi:cy="459.08688"
+               sodipodi:cx="486.07657"
+               id="path9364"
+               d="M 487.54953 459.08688 A 1.4729594 1.4729594 0 1 1  484.60361,459.08688 A 1.4729594 1.4729594 0 1 1  487.54953 459.08688 z" />
+            <path
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,199.8980,239.2676)"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:type="arc"
+               sodipodi:ry="3.3967218"
+               sodipodi:rx="3.3967218"
+               sodipodi:cy="402.73911"
+               sodipodi:cx="413.55090"
+               id="path10092"
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z" />
+            <path
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,207.5076,240.8516)"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:type="arc"
+               sodipodi:ry="3.3967218"
+               sodipodi:rx="3.3967218"
+               sodipodi:cy="402.73911"
+               sodipodi:cx="413.55090"
+               id="path10094"
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z" />
+            <g
+               transform="matrix(1.135954,0.000000,0.000000,0.881004,-272.0857,-176.6878)"
+               id="g11792">
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path10826"
+                 d="M 517.05812,722.17999 L 517.00316,722.99711 L 525.56375,725.05053 L 526.50287,724.68934 L 531.27053,721.58311 L 531.19831,720.57178 L 522.81873,719.19926 L 517.05812,722.17999 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path10828"
+                 d="M 525.55974,724.02550 L 531.25938,720.79265 L 531.17024,721.51561 L 526.31645,724.56907 L 525.59407,724.85802 L 524.87170,724.56907 L 517.14222,722.76312 L 517.21459,722.07553 L 525.55974,724.02550 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11556"
+                 d="M 507.26354,719.73135 L 507.20858,720.54846 L 515.76918,722.60189 L 516.70830,722.24070 L 521.47598,719.13447 L 521.40376,718.12314 L 513.02415,716.75062 L 507.26354,719.73135 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11558"
+                 d="M 515.76517,721.57686 L 521.46483,718.34401 L 521.37569,719.06697 L 516.52187,722.12043 L 515.79950,722.40938 L 515.07713,722.12043 L 507.34765,720.31448 L 507.42002,719.62689 L 515.76517,721.57686 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11560"
+                 d="M 497.16289,717.58879 L 497.10793,718.40590 L 505.66853,720.45932 L 506.60765,720.09813 L 511.37533,716.99191 L 511.30310,715.98058 L 502.92350,714.60805 L 497.16289,717.58879 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11562"
+                 d="M 505.66452,719.43430 L 511.36417,716.20145 L 511.27504,716.92441 L 506.42122,719.97786 L 505.69885,720.26682 L 504.97647,719.97786 L 497.24699,718.17192 L 497.31937,717.48432 L 505.66452,719.43430 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11564"
+                 d="M 487.06224,715.44622 L 487.00728,716.26334 L 495.56787,718.31676 L 496.50700,717.95558 L 501.27468,714.84935 L 501.20245,713.83802 L 492.82285,712.46550 L 487.06224,715.44622 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11566"
+                 d="M 495.56386,717.29174 L 501.26352,714.05889 L 501.17439,714.78185 L 496.32057,717.83531 L 495.59819,718.12426 L 494.87582,717.83531 L 487.14634,716.02936 L 487.21872,715.34177 L 495.56386,717.29174 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11568"
+                 d="M 477.57375,712.99759 L 477.51879,713.81469 L 486.07938,715.86812 L 487.01850,715.50693 L 491.78619,712.40070 L 491.71397,711.38938 L 483.33436,710.01685 L 477.57375,712.99759 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11570"
+                 d="M 486.07537,714.84309 L 491.77503,711.61024 L 491.68589,712.33320 L 486.83208,715.38666 L 486.10970,715.67561 L 485.38733,715.38666 L 477.65785,713.58072 L 477.73022,712.89312 L 486.07537,714.84309 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11572"
+                 d="M 510.32435,726.15904 L 510.26939,726.97614 L 518.82998,729.02958 L 519.76912,728.66838 L 524.53674,725.56215 L 524.46452,724.55083 L 516.08497,723.17831 L 510.32435,726.15904 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11574"
+                 d="M 518.82597,728.00455 L 524.52559,724.77169 L 524.43645,725.49465 L 519.58270,728.54811 L 518.86030,728.83706 L 518.13793,728.54811 L 510.40846,726.74217 L 510.48083,726.05457 L 518.82597,728.00455 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11576"
+                 d="M 500.52977,723.71039 L 500.47482,724.52751 L 509.03541,726.58093 L 509.97453,726.21974 L 514.74222,723.11352 L 514.67000,722.10218 L 506.29039,720.72966 L 500.52977,723.71039 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11578"
+                 d="M 509.03140,725.55590 L 514.73107,722.32306 L 514.64192,723.04601 L 509.78811,726.09947 L 509.06574,726.38842 L 508.34336,726.09947 L 500.61389,724.29352 L 500.68625,723.60593 L 509.03140,725.55590 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11580"
+                 d="M 490.42912,721.56783 L 490.37417,722.38494 L 498.93476,724.43836 L 499.87388,724.07718 L 504.64156,720.97095 L 504.56934,719.95962 L 496.18974,718.58710 L 490.42912,721.56783 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11582"
+                 d="M 498.93075,723.41334 L 504.63041,720.18049 L 504.54127,720.90345 L 499.68746,723.95691 L 498.96508,724.24586 L 498.24270,723.95691 L 490.51323,722.15096 L 490.58560,721.46337 L 498.93075,723.41334 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11584"
+                 d="M 480.32847,719.42527 L 480.27352,720.24238 L 488.83411,722.29581 L 489.77323,721.93462 L 494.54091,718.82839 L 494.46869,717.81706 L 486.08909,716.44454 L 480.32847,719.42527 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11586"
+                 d="M 488.83010,721.27078 L 494.52976,718.03793 L 494.44062,718.76089 L 489.58681,721.81435 L 488.86443,722.10330 L 488.14205,721.81435 L 480.41258,720.00840 L 480.48495,719.32081 L 488.83010,721.27078 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11588"
+                 d="M 470.83998,716.97663 L 470.78503,717.79374 L 479.34561,719.84716 L 480.28474,719.48597 L 485.05242,716.37975 L 484.98020,715.36842 L 476.60060,713.99589 L 470.83998,716.97663 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11590"
+                 d="M 479.34160,718.82213 L 485.04127,715.58929 L 484.95213,716.31225 L 480.09832,719.36571 L 479.37594,719.65466 L 478.65356,719.36571 L 470.92409,717.55976 L 470.99646,716.87216 L 479.34160,718.82213 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11592"
+                 d="M 503.59059,730.75024 L 503.53563,731.56735 L 512.09622,733.62078 L 513.03535,733.25959 L 517.80298,730.15336 L 517.73075,729.14203 L 509.35120,727.76951 L 503.59059,730.75024 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11594"
+                 d="M 512.09220,732.59575 L 517.79182,729.36290 L 517.70269,730.08586 L 512.84893,733.13932 L 512.12654,733.42826 L 511.40417,733.13932 L 503.67469,731.33337 L 503.74706,730.64578 L 512.09220,732.59575 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11596"
+                 d="M 493.79601,728.30160 L 493.74106,729.11871 L 502.30164,731.17213 L 503.24076,730.81095 L 508.00845,727.70472 L 507.93623,726.69338 L 499.55663,725.32086 L 493.79601,728.30160 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11598"
+                 d="M 502.29763,730.14710 L 507.99730,726.91426 L 507.90816,727.63722 L 503.05435,730.69068 L 502.33197,730.97963 L 501.60960,730.69068 L 493.88012,728.88472 L 493.95248,728.19713 L 502.29763,730.14710 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11600"
+                 d="M 483.69536,726.15904 L 483.64040,726.97614 L 492.20099,729.02958 L 493.14011,728.66838 L 497.90780,725.56215 L 497.83558,724.55083 L 489.45597,723.17831 L 483.69536,726.15904 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11602"
+                 d="M 492.19698,728.00455 L 497.89665,724.77169 L 497.80750,725.49465 L 492.95369,728.54811 L 492.23132,728.83706 L 491.50894,728.54811 L 483.77946,726.74217 L 483.85183,726.05457 L 492.19698,728.00455 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11604"
+                 d="M 473.59471,724.01648 L 473.53975,724.83359 L 482.10034,726.88701 L 483.03946,726.52582 L 487.80714,723.41959 L 487.73492,722.40826 L 479.35532,721.03574 L 473.59471,724.01648 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11606"
+                 d="M 482.09633,725.86198 L 487.79599,722.62914 L 487.70685,723.35209 L 482.85304,726.40555 L 482.13067,726.69450 L 481.40829,726.40555 L 473.67881,724.59960 L 473.75118,723.91201 L 482.09633,725.86198 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11608"
+                 d="M 464.10622,721.56783 L 464.05126,722.38494 L 472.61184,724.43836 L 473.55097,724.07718 L 478.31865,720.97095 L 478.24643,719.95962 L 469.86683,718.58710 L 464.10622,721.56783 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11610"
+                 d="M 472.60783,723.41334 L 478.30750,720.18049 L 478.21837,720.90345 L 473.36455,723.95691 L 472.64217,724.24586 L 471.91980,723.95691 L 464.19032,722.15096 L 464.26270,721.46337 L 472.60783,723.41334 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11612"
+                 d="M 565.33192,734.24843 L 565.27691,735.06555 L 573.83757,737.11897 L 574.77667,736.75778 L 579.54429,733.65155 L 579.47207,732.64023 L 571.09250,731.26771 L 565.33192,734.24843 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11614"
+                 d="M 573.83354,736.09395 L 579.53318,732.86109 L 579.44399,733.58405 L 574.59023,736.63751 L 573.86787,736.92646 L 573.14552,736.63751 L 565.41600,734.83157 L 565.48838,734.14398 L 573.83354,736.09395 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11616"
+                 d="M 555.53735,731.79979 L 555.48235,732.61691 L 564.04292,734.67033 L 564.98210,734.30914 L 569.74973,731.20291 L 569.67751,730.19158 L 561.29793,728.81906 L 555.53735,731.79979 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11618"
+                 d="M 564.03897,733.64530 L 569.73861,730.41245 L 569.64951,731.13541 L 564.79567,734.18887 L 564.07331,734.47782 L 563.35087,734.18887 L 555.62143,732.38292 L 555.69382,731.69533 L 564.03897,733.64530 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11620"
+                 d="M 545.43670,729.65723 L 545.38169,730.47434 L 553.94227,732.52776 L 554.88145,732.16658 L 559.64908,729.06035 L 559.57686,728.04902 L 551.19728,726.67649 L 545.43670,729.65723 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11622"
+                 d="M 553.93832,731.50274 L 559.63796,728.26989 L 559.54886,728.99285 L 554.69502,732.04631 L 553.97266,732.33526 L 553.25022,732.04631 L 545.52078,730.24036 L 545.59316,729.55277 L 553.93832,731.50274 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11624"
+                 d="M 535.33602,727.51467 L 535.28107,728.33178 L 543.84162,730.38521 L 544.78080,730.02402 L 549.54842,726.91779 L 549.47620,725.90646 L 541.09663,724.53394 L 535.33602,727.51467 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11626"
+                 d="M 543.83767,729.36018 L 549.53731,726.12733 L 549.44821,726.85029 L 544.59436,729.90375 L 543.87201,730.19270 L 543.14957,729.90375 L 535.42013,728.09780 L 535.49250,727.41021 L 543.83767,729.36018 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11628"
+                 d="M 525.84753,725.06603 L 525.79257,725.88314 L 534.35317,727.93656 L 535.29229,727.57537 L 540.05995,724.46915 L 539.98775,723.45782 L 531.60814,722.08529 L 525.84753,725.06603 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11630"
+                 d="M 534.34916,726.91153 L 540.04881,723.67869 L 539.95968,724.40165 L 535.10587,727.45510 L 534.38349,727.74406 L 533.66111,727.45510 L 525.93163,725.64916 L 526.00401,724.96156 L 534.34916,726.91153 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11632"
+                 d="M 558.59815,738.22748 L 558.54314,739.04459 L 567.10380,741.09802 L 568.04290,740.73682 L 572.81052,737.63059 L 572.73831,736.61927 L 564.35873,735.24675 L 558.59815,738.22748 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11634"
+                 d="M 567.09977,740.07299 L 572.79941,736.84014 L 572.71022,737.56309 L 567.85646,740.61655 L 567.13411,740.90550 L 566.41175,740.61655 L 558.68223,738.81061 L 558.75461,738.12301 L 567.09977,740.07299 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11636"
+                 d="M 548.80359,735.77883 L 548.74858,736.59595 L 557.30916,738.64937 L 558.24834,738.28819 L 563.01596,735.18196 L 562.94374,734.17062 L 554.56416,732.79810 L 548.80359,735.77883 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11638"
+                 d="M 557.30520,737.62434 L 563.00484,734.39150 L 562.91574,735.11446 L 558.06190,738.16792 L 557.33954,738.45687 L 556.61710,738.16792 L 548.88766,736.36196 L 548.96005,735.67437 L 557.30520,737.62434 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11640"
+                 d="M 538.70291,733.63628 L 538.64796,734.45338 L 547.20850,736.50681 L 548.14768,736.14562 L 552.91531,733.03939 L 552.84309,732.02807 L 544.46351,730.65554 L 538.70291,733.63628 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11642"
+                 d="M 547.20455,735.48179 L 552.90419,732.24893 L 552.81509,732.97189 L 547.96125,736.02535 L 547.23889,736.31430 L 546.51645,736.02535 L 538.78702,734.21941 L 538.85939,733.53181 L 547.20455,735.48179 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11644"
+                 d="M 528.60226,731.49371 L 528.54731,732.31083 L 537.10789,734.36425 L 538.04701,734.00306 L 542.81466,730.89683 L 542.74244,729.88550 L 534.36288,728.51298 L 528.60226,731.49371 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11646"
+                 d="M 537.10388,733.33922 L 542.80354,730.10638 L 542.71444,730.82933 L 537.86059,733.88279 L 537.13821,734.17174 L 536.41584,733.88279 L 528.68637,732.07684 L 528.75873,731.38925 L 537.10388,733.33922 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11648"
+                 d="M 519.11376,729.04507 L 519.05881,729.86218 L 527.61940,731.91560 L 528.55852,731.55442 L 533.32620,728.44819 L 533.25398,727.43686 L 524.87438,726.06434 L 519.11376,729.04507 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11650"
+                 d="M 527.61539,730.89058 L 533.31505,727.65773 L 533.22591,728.38069 L 528.37210,731.43415 L 527.64973,731.72310 L 526.92735,731.43415 L 519.19787,729.62820 L 519.27024,728.94061 L 527.61539,730.89058 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11652"
+                 d="M 551.86438,742.81868 L 551.80937,743.63580 L 560.37003,745.68922 L 561.30913,745.32803 L 566.07676,742.22181 L 566.00454,741.21047 L 557.62496,739.83795 L 551.86438,742.81868 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11654"
+                 d="M 560.36600,744.66419 L 566.06564,741.43134 L 565.97646,742.15430 L 561.12270,745.20776 L 560.40034,745.49671 L 559.67798,745.20776 L 551.94846,743.40181 L 552.02084,742.71422 L 560.36600,744.66419 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11656"
+                 d="M 542.06982,740.37004 L 542.01481,741.18715 L 550.57539,743.24057 L 551.51457,742.87939 L 556.28219,739.77316 L 556.20997,738.76183 L 547.83040,737.38931 L 542.06982,740.37004 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11658"
+                 d="M 550.57143,742.21555 L 556.27108,738.98270 L 556.18197,739.70566 L 551.32813,742.75912 L 550.60577,743.04807 L 549.88342,742.75912 L 542.15389,740.95317 L 542.22628,740.26558 L 550.57143,742.21555 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11660"
+                 d="M 531.96915,738.22748 L 531.91419,739.04459 L 540.47473,741.09802 L 541.41391,740.73682 L 546.18154,737.63059 L 546.10932,736.61927 L 537.72976,735.24675 L 531.96915,738.22748 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11662"
+                 d="M 540.47078,740.07299 L 546.17042,736.84014 L 546.08132,737.56309 L 541.22748,740.61655 L 540.50512,740.90550 L 539.78273,740.61655 L 532.05325,738.81061 L 532.12562,738.12301 L 540.47078,740.07299 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11664"
+                 d="M 521.86850,736.08492 L 521.81354,736.90203 L 530.37412,738.95545 L 531.31325,738.59426 L 536.08093,735.48804 L 536.00871,734.47670 L 527.62911,733.10418 L 521.86850,736.08492 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11666"
+                 d="M 530.37011,737.93042 L 536.06978,734.69758 L 535.98064,735.42054 L 531.12683,738.47400 L 530.40445,738.76295 L 529.68208,738.47400 L 521.95260,736.66804 L 522.02497,735.98045 L 530.37011,737.93042 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11668"
+                 d="M 512.38000,733.63628 L 512.32504,734.45338 L 520.88563,736.50681 L 521.82475,736.14562 L 526.59244,733.03939 L 526.52022,732.02807 L 518.14061,730.65554 L 512.38000,733.63628 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11670"
+                 d="M 520.88162,735.48179 L 526.58129,732.24893 L 526.49215,732.97189 L 521.63833,736.02535 L 520.91596,736.31430 L 520.19359,736.02535 L 512.46411,734.21941 L 512.53648,733.53181 L 520.88162,735.48179 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11672"
+                 d="M 497.14518,734.85186 L 497.09022,735.66897 L 505.65081,737.72240 L 506.58993,737.36120 L 511.35759,734.25497 L 511.28537,733.24365 L 502.90579,731.87113 L 497.14518,734.85186 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11674"
+                 d="M 505.64680,736.69737 L 511.34644,733.46451 L 511.25730,734.18747 L 506.40351,737.24093 L 505.68113,737.52988 L 504.95876,737.24093 L 497.22928,735.43499 L 497.30166,734.74740 L 505.64680,736.69737 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11676"
+                 d="M 487.35061,732.40321 L 487.29565,733.22033 L 495.85624,735.27375 L 496.79536,734.91256 L 501.56305,731.80634 L 501.49082,730.79500 L 493.11122,729.42248 L 487.35061,732.40321 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11678"
+                 d="M 495.85223,734.24872 L 501.55189,731.01588 L 501.46275,731.73884 L 496.60894,734.79229 L 495.88656,735.08125 L 495.16419,734.79229 L 487.43471,732.98634 L 487.50708,732.29875 L 495.85223,734.24872 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11680"
+                 d="M 477.24995,730.26065 L 477.19499,731.07776 L 485.75559,733.13119 L 486.69471,732.77000 L 491.46239,729.66377 L 491.39017,728.65245 L 483.01056,727.27992 L 477.24995,730.26065 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11682"
+                 d="M 485.75158,732.10617 L 491.45124,728.87331 L 491.36210,729.59627 L 486.50828,732.64973 L 485.78591,732.93868 L 485.06353,732.64973 L 477.33405,730.84379 L 477.40643,730.15619 L 485.75158,732.10617 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11684"
+                 d="M 467.14930,728.11809 L 467.09434,728.93520 L 475.65494,730.98863 L 476.59406,730.62744 L 481.36174,727.52121 L 481.28951,726.50988 L 472.90991,725.13736 L 467.14930,728.11809 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11686"
+                 d="M 475.65093,729.96360 L 481.35058,726.73075 L 481.26145,727.45371 L 476.40763,730.50717 L 475.68526,730.79612 L 474.96288,730.50717 L 467.23340,728.70122 L 467.30578,728.01363 L 475.65093,729.96360 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11688"
+                 d="M 457.66081,725.66945 L 457.60585,726.48656 L 466.16644,728.53998 L 467.10557,728.17880 L 471.87325,725.07257 L 471.80103,724.06124 L 463.42142,722.68871 L 457.66081,725.66945 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11690"
+                 d="M 466.16243,727.51495 L 471.86209,724.28211 L 471.77296,725.00507 L 466.91915,728.05853 L 466.19676,728.34748 L 465.47439,728.05853 L 457.74491,726.25258 L 457.81729,725.56499 L 466.16243,727.51495 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11692"
+                 d="M 490.41141,738.83090 L 490.35645,739.64801 L 498.91705,741.70144 L 499.85618,741.34024 L 504.62380,738.23402 L 504.55158,737.22269 L 496.17203,735.85017 L 490.41141,738.83090 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11694"
+                 d="M 498.91303,740.67641 L 504.61265,737.44356 L 504.52351,738.16652 L 499.66976,741.21998 L 498.94737,741.50893 L 498.22499,741.21998 L 490.49552,739.41403 L 490.56789,738.72643 L 498.91303,740.67641 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11696"
+                 d="M 480.61684,736.38226 L 480.56189,737.19937 L 489.12247,739.25279 L 490.06159,738.89161 L 494.82928,735.78538 L 494.75706,734.77405 L 486.37746,733.40153 L 480.61684,736.38226 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11698"
+                 d="M 489.11846,738.22777 L 494.81813,734.99492 L 494.72899,735.71788 L 489.87518,738.77134 L 489.15280,739.06029 L 488.43042,738.77134 L 480.70095,736.96539 L 480.77331,736.27780 L 489.11846,738.22777 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11700"
+                 d="M 470.51618,734.23970 L 470.46123,735.05681 L 479.02182,737.11023 L 479.96094,736.74904 L 484.72863,733.64281 L 484.65641,732.63149 L 476.27680,731.25896 L 470.51618,734.23970 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11702"
+                 d="M 479.01781,736.08521 L 484.71748,732.85235 L 484.62833,733.57531 L 479.77452,736.62877 L 479.05214,736.91772 L 478.32977,736.62877 L 470.60029,734.82283 L 470.67266,734.13523 L 479.01781,736.08521 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11704"
+                 d="M 460.41553,732.09713 L 460.36058,732.91425 L 468.92117,734.96767 L 469.86029,734.60648 L 474.62797,731.50026 L 474.55575,730.48892 L 466.17615,729.11640 L 460.41553,732.09713 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11706"
+                 d="M 468.91716,733.94264 L 474.61682,730.70980 L 474.52768,731.43276 L 469.67387,734.48622 L 468.95149,734.77517 L 468.22911,734.48622 L 460.49964,732.68026 L 460.57201,731.99267 L 468.91716,733.94264 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11708"
+                 d="M 450.92704,729.64850 L 450.87209,730.46560 L 459.43267,732.51903 L 460.37180,732.15784 L 465.13948,729.05161 L 465.06726,728.04029 L 456.68766,726.66776 L 450.92704,729.64850 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11710"
+                 d="M 459.42866,731.49400 L 465.12833,728.26115 L 465.03919,728.98411 L 460.18538,732.03757 L 459.46300,732.32652 L 458.74062,732.03757 L 451.01115,730.23163 L 451.08352,729.54403 L 459.42866,731.49400 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11712"
+                 d="M 483.67765,743.42210 L 483.62269,744.23922 L 492.18328,746.29264 L 493.12242,745.93146 L 497.89004,742.82523 L 497.81781,741.81389 L 489.43826,740.44137 L 483.67765,743.42210 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11714"
+                 d="M 492.17927,745.26761 L 497.87888,742.03476 L 497.78975,742.75773 L 492.93600,745.81119 L 492.21361,746.10013 L 491.49123,745.81119 L 483.76175,744.00523 L 483.83412,743.31764 L 492.17927,745.26761 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11716"
+                 d="M 473.88308,740.97347 L 473.82812,741.79057 L 482.38870,743.84400 L 483.32783,743.48281 L 488.09551,740.37658 L 488.02329,739.36525 L 479.64369,737.99273 L 473.88308,740.97347 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11718"
+                 d="M 482.38469,742.81897 L 488.08436,739.58612 L 487.99522,740.30908 L 483.14141,743.36254 L 482.41903,743.65149 L 481.69666,743.36254 L 473.96718,741.55659 L 474.03955,740.86900 L 482.38469,742.81897 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11720"
+                 d="M 463.78242,738.83090 L 463.72747,739.64801 L 472.28805,741.70144 L 473.22717,741.34024 L 477.99486,738.23402 L 477.92264,737.22269 L 469.54304,735.85017 L 463.78242,738.83090 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11722"
+                 d="M 472.28404,740.67641 L 477.98371,737.44356 L 477.89457,738.16652 L 473.04075,741.21998 L 472.31838,741.50893 L 471.59601,741.21998 L 463.86653,739.41403 L 463.93889,738.72643 L 472.28404,740.67641 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11724"
+                 d="M 453.68177,736.68834 L 453.62681,737.50545 L 462.18740,739.55887 L 463.12652,739.19769 L 467.89420,736.09146 L 467.82199,735.08013 L 459.44238,733.70761 L 453.68177,736.68834 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11726"
+                 d="M 462.18339,738.53385 L 467.88305,735.30100 L 467.79391,736.02396 L 462.94010,739.07742 L 462.21773,739.36637 L 461.49535,739.07742 L 453.76587,737.27147 L 453.83824,736.58388 L 462.18339,738.53385 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11728"
+                 d="M 444.19328,734.23970 L 444.13832,735.05681 L 452.69891,737.11023 L 453.63803,736.74904 L 458.40571,733.64281 L 458.33349,732.63149 L 449.95389,731.25896 L 444.19328,734.23970 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11730"
+                 d="M 452.69490,736.08521 L 458.39456,732.85235 L 458.30543,733.57531 L 453.45161,736.62877 L 452.72924,736.91772 L 452.00686,736.62877 L 444.27738,734.82283 L 440.79696,733.43047 L 452.69490,736.08521 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11732"
+                 d="M 545.41900,746.92030 L 545.36399,747.73741 L 553.92465,749.79084 L 554.86375,749.42964 L 559.63137,746.32342 L 559.55915,745.31209 L 551.17957,743.93957 L 545.41900,746.92030 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11734"
+                 d="M 553.92061,748.76581 L 559.62025,745.53296 L 559.53107,746.25592 L 554.67731,749.30937 L 553.95495,749.59833 L 553.23260,749.30937 L 545.50307,747.50343 L 545.57546,746.81584 L 553.92061,748.76581 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11736"
+                 d="M 535.62442,744.47165 L 535.56941,745.28877 L 544.13000,747.34219 L 545.06918,746.98101 L 549.83681,743.87478 L 549.76459,742.86345 L 541.38501,741.49093 L 535.62442,744.47165 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11738"
+                 d="M 544.12605,746.31717 L 549.82569,743.08432 L 549.73659,743.80728 L 544.88275,746.86074 L 544.16039,747.14969 L 543.43795,746.86074 L 535.70849,745.05479 L 535.78088,744.36720 L 544.12605,746.31717 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11740"
+                 d="M 525.52376,742.32910 L 525.46875,743.14620 L 534.02933,745.19963 L 534.96851,744.83844 L 539.73614,741.73221 L 539.66392,740.72089 L 531.28434,739.34836 L 525.52376,742.32910 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11742"
+                 d="M 534.02538,744.17461 L 539.72502,740.94175 L 539.63592,741.66471 L 534.78208,744.71817 L 534.05972,745.00712 L 533.33728,744.71817 L 525.60784,742.91223 L 525.68022,742.22463 L 534.02538,744.17461 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11744"
+                 d="M 515.42309,740.18653 L 515.36813,741.00365 L 523.92868,743.05707 L 524.86786,742.69588 L 529.63549,739.58966 L 529.56327,738.57832 L 521.18369,737.20580 L 515.42309,740.18653 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11746"
+                 d="M 523.92473,742.03204 L 529.62437,738.79920 L 529.53527,739.52216 L 524.68142,742.57561 L 523.95907,742.86457 L 523.23663,742.57561 L 515.50719,740.76966 L 515.57956,740.08207 L 523.92473,742.03204 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11748"
+                 d="M 505.93459,737.73789 L 505.87963,738.55500 L 514.44023,740.60843 L 515.37935,740.24724 L 520.14701,737.14101 L 520.07481,736.12969 L 511.69520,734.75716 L 505.93459,737.73789 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11750"
+                 d="M 514.43622,739.58340 L 520.13588,736.35055 L 520.04674,737.07351 L 515.19293,740.12697 L 514.47055,740.41592 L 513.74818,740.12697 L 506.01870,738.32103 L 506.09107,737.63343 L 514.43622,739.58340 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11752"
+                 d="M 538.68521,750.89934 L 538.63020,751.71645 L 547.19088,753.76988 L 548.12998,753.40869 L 552.89760,750.30246 L 552.82538,749.29113 L 544.44581,747.91861 L 538.68521,750.89934 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11754"
+                 d="M 547.18685,752.74485 L 552.88649,749.51200 L 552.79730,750.23496 L 547.94354,753.28842 L 547.22118,753.57737 L 546.49883,753.28842 L 538.76929,751.48247 L 538.84167,750.79488 L 547.18685,752.74485 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11756"
+                 d="M 528.89065,748.45070 L 528.83564,749.26781 L 537.39622,751.32124 L 538.33540,750.96005 L 543.10304,747.85382 L 543.03082,746.84249 L 534.65123,745.46997 L 528.89065,748.45070 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11758"
+                 d="M 537.39226,750.29621 L 543.09192,747.06336 L 543.00282,747.78632 L 538.14896,750.83978 L 537.42660,751.12873 L 536.70416,750.83978 L 528.97472,749.03383 L 529.04711,748.34624 L 537.39226,750.29621 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11760"
+                 d="M 518.78997,746.30814 L 518.73502,747.12525 L 527.29556,749.17867 L 528.23474,748.81748 L 533.00237,745.71126 L 532.93015,744.69993 L 524.55057,743.32740 L 518.78997,746.30814 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11762"
+                 d="M 527.29161,748.15365 L 532.99125,744.92080 L 532.90215,745.64376 L 528.04831,748.69721 L 527.32595,748.98617 L 526.60351,748.69721 L 518.87408,746.89127 L 518.94645,746.20367 L 527.29161,748.15365 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11764"
+                 d="M 508.68932,744.16557 L 508.63437,744.98269 L 517.19495,747.03611 L 518.13408,746.67493 L 522.90172,743.56870 L 522.82950,742.55737 L 514.44994,741.18485 L 508.68932,744.16557 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11766"
+                 d="M 517.19094,746.01109 L 522.89060,742.77824 L 522.80150,743.50120 L 517.94766,746.55466 L 517.22527,746.84361 L 516.50290,746.55466 L 508.77343,744.74871 L 508.84580,744.06112 L 517.19094,746.01109 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11768"
+                 d="M 499.20082,741.71694 L 499.14587,742.53404 L 507.70646,744.58747 L 508.64558,744.22628 L 513.41327,741.12005 L 513.34105,740.10873 L 504.96144,738.73620 L 499.20082,741.71694 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11770"
+                 d="M 507.70245,743.56244 L 513.40212,740.32959 L 513.31297,741.05255 L 508.45916,744.10601 L 507.73679,744.39496 L 507.01441,744.10601 L 499.28494,742.30007 L 499.35730,741.61247 L 507.70245,743.56244 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11772"
+                 d="M 531.95144,755.49055 L 531.89644,756.30766 L 540.45711,758.36108 L 541.39621,757.99990 L 546.16384,754.89367 L 546.09162,753.88234 L 537.71202,752.50982 L 531.95144,755.49055 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11774"
+                 d="M 540.45308,757.33606 L 546.15272,754.10320 L 546.06354,754.82617 L 541.20977,757.87963 L 540.48742,758.16857 L 539.76504,757.87963 L 532.03552,756.07368 L 532.10790,755.38609 L 540.45308,757.33606 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11776"
+                 d="M 522.15688,753.04191 L 522.10187,753.85902 L 530.66245,755.91244 L 531.60163,755.55125 L 536.36925,752.44502 L 536.29703,751.43369 L 527.91746,750.06117 L 522.15688,753.04191 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11778"
+                 d="M 530.65850,754.88741 L 536.35814,751.65457 L 536.26904,752.37752 L 531.41519,755.43098 L 530.69284,755.71993 L 529.97048,755.43098 L 522.24096,753.62503 L 522.31334,752.93744 L 530.65850,754.88741 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11780"
+                 d="M 512.05621,750.89934 L 512.00125,751.71645 L 520.56180,753.76988 L 521.50098,753.40869 L 526.26860,750.30246 L 526.19638,749.29113 L 517.81682,747.91861 L 512.05621,750.89934 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11782"
+                 d="M 520.55784,752.74485 L 526.25748,749.51200 L 526.16838,750.23496 L 521.31454,753.28842 L 520.59218,753.57737 L 519.86979,753.28842 L 512.14031,751.48247 L 512.21268,750.79488 L 520.55784,752.74485 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11784"
+                 d="M 501.95556,748.75679 L 501.90060,749.57389 L 510.46119,751.62732 L 511.40031,751.26613 L 516.16799,748.15990 L 516.09577,747.14857 L 507.71617,745.77605 L 501.95556,748.75679 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11786"
+                 d="M 510.45718,750.60229 L 516.15684,747.36944 L 516.06770,748.09240 L 511.21389,751.14586 L 510.49151,751.43481 L 509.76914,751.14586 L 502.03966,749.33991 L 502.11203,748.65232 L 510.45718,750.60229 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11788"
+                 d="M 492.46706,746.30814 L 492.41211,747.12525 L 500.97269,749.17867 L 501.91181,748.81748 L 506.67950,745.71126 L 506.60728,744.69993 L 498.22768,743.32740 L 492.46706,746.30814 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11790"
+                 d="M 500.96868,748.15365 L 506.66835,744.92080 L 506.57921,745.64376 L 501.72540,748.69721 L 501.00302,748.98617 L 500.28065,748.69721 L 492.55117,746.89127 L 492.62354,746.20367 L 500.96868,748.15365 z " />
+            </g>
+            <g
+               transform="matrix(1.000000,0.000000,0.000000,1.076560,-146.5725,-175.7068)"
+               id="g12276">
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11916"
+                 d="M 571.83790,609.68864 L 571.77547,610.40852 L 581.49990,612.21760 L 582.56670,611.89939 L 587.98254,609.16279 L 587.90051,608.27180 L 578.38169,607.06260 L 571.83790,609.68864 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11918"
+                 d="M 581.49535,611.31454 L 587.96988,608.46639 L 587.86862,609.10332 L 582.35494,611.79343 L 581.53435,612.04799 L 580.71377,611.79343 L 571.93343,610.20238 L 572.01564,609.59661 L 581.49535,611.31454 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11920"
+                 d="M 560.71171,607.53138 L 560.64928,608.25125 L 570.37372,610.06033 L 571.44052,609.74212 L 576.85639,607.00552 L 576.77435,606.11454 L 567.25550,604.90534 L 560.71171,607.53138 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11922"
+                 d="M 570.36917,609.15728 L 576.84372,606.30913 L 576.74246,606.94606 L 571.22874,609.63617 L 570.40817,609.89073 L 569.58759,609.63617 L 560.80725,608.04512 L 560.88946,607.43935 L 570.36917,609.15728 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11924"
+                 d="M 549.23783,605.64377 L 549.17540,606.36365 L 558.89985,608.17272 L 559.96665,607.85451 L 565.38251,605.11792 L 565.30046,604.22693 L 555.78162,603.01773 L 549.23783,605.64377 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11926"
+                 d="M 558.89529,607.26968 L 565.36983,604.42152 L 565.26859,605.05845 L 559.75487,607.74855 L 558.93429,608.00313 L 558.11370,607.74855 L 549.33337,606.15751 L 549.41559,605.55173 L 558.89529,607.26968 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11928"
+                 d="M 537.76396,603.75616 L 537.70153,604.47605 L 547.42596,606.28512 L 548.49277,605.96692 L 553.90864,603.23032 L 553.82659,602.33933 L 544.30775,601.13013 L 537.76396,603.75616 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11930"
+                 d="M 547.42141,605.38207 L 553.89596,602.53392 L 553.79471,603.17085 L 548.28100,605.86096 L 547.46041,606.11552 L 546.63983,605.86096 L 537.85949,604.26991 L 537.94171,603.66414 L 547.42141,605.38207 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11932"
+                 d="M 526.98547,601.59891 L 526.92304,602.31878 L 536.64748,604.12786 L 537.71427,603.80965 L 543.13015,601.07305 L 543.04811,600.18207 L 533.52926,598.97286 L 526.98547,601.59891 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11934"
+                 d="M 536.64292,603.22480 L 543.11747,600.37665 L 543.01621,601.01358 L 537.50251,603.70369 L 536.68192,603.95825 L 535.86134,603.70369 L 527.08101,602.11265 L 527.16321,601.50687 L 536.64292,603.22480 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11936"
+                 d="M 564.18865,613.19420 L 564.12621,613.91407 L 573.85065,615.72316 L 574.91747,615.40494 L 580.33327,612.66834 L 580.25123,611.77736 L 570.73245,610.56816 L 564.18865,613.19420 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11938"
+                 d="M 573.84610,614.82010 L 580.32060,611.97194 L 580.21934,612.60887 L 574.70571,615.29898 L 573.88509,615.55354 L 573.06451,615.29898 L 564.28419,613.70794 L 564.36640,613.10216 L 573.84610,614.82010 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11940"
+                 d="M 553.06245,611.03693 L 553.00003,611.75681 L 562.72447,613.56588 L 563.79127,613.24767 L 569.20714,610.51108 L 569.12511,609.62009 L 559.60625,608.41089 L 553.06245,611.03693 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11942"
+                 d="M 562.71991,612.66283 L 569.19448,609.81468 L 569.09321,610.45161 L 563.57950,613.14172 L 562.75892,613.39628 L 561.93833,613.14172 L 553.15801,611.55067 L 553.24021,610.94490 L 562.71991,612.66283 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11944"
+                 d="M 541.58858,609.14932 L 541.52616,609.86920 L 551.25060,611.67827 L 552.31739,611.36007 L 557.73326,608.62347 L 557.65122,607.73248 L 548.13238,606.52329 L 541.58858,609.14932 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11946"
+                 d="M 551.24604,610.77523 L 557.72059,607.92707 L 557.61933,608.56400 L 552.10563,611.25411 L 551.28504,611.50868 L 550.46445,611.25411 L 541.68413,609.66306 L 541.76633,609.05729 L 551.24604,610.77523 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11948"
+                 d="M 530.11471,607.26172 L 530.05229,607.98160 L 539.77672,609.79068 L 540.84352,609.47247 L 546.25938,606.73587 L 546.17735,605.84488 L 536.65851,604.63568 L 530.11471,607.26172 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11950"
+                 d="M 539.77217,608.88762 L 546.24672,606.03947 L 546.14546,606.67640 L 540.63176,609.36651 L 539.81116,609.62107 L 538.99057,609.36651 L 530.21025,607.77546 L 530.29246,607.16969 L 539.77217,608.88762 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11952"
+                 d="M 519.33622,605.10446 L 519.27380,605.82434 L 528.99822,607.63341 L 530.06503,607.31520 L 535.48090,604.57860 L 535.39886,603.68762 L 525.88002,602.47841 L 519.33622,605.10446 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11954"
+                 d="M 528.99367,606.73035 L 535.46823,603.88221 L 535.36697,604.51914 L 529.85327,607.20925 L 529.03268,607.46381 L 528.21209,607.20925 L 519.43176,605.61820 L 519.51397,605.01242 L 528.99367,606.73035 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11956"
+                 d="M 556.53941,617.23906 L 556.47697,617.95894 L 566.20141,619.76802 L 567.26822,619.44981 L 572.68403,616.71321 L 572.60198,615.82222 L 563.08319,614.61303 L 556.53941,617.23906 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11958"
+                 d="M 566.19684,618.86497 L 572.67135,616.01681 L 572.57010,616.65374 L 567.05645,619.34385 L 566.23585,619.59841 L 565.41527,619.34385 L 556.63494,617.75280 L 556.71715,617.14703 L 566.19684,618.86497 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11960"
+                 d="M 545.41321,615.08180 L 545.35079,615.80168 L 555.07522,617.61075 L 556.14201,617.29255 L 561.55789,614.55595 L 561.47585,613.66495 L 551.95701,612.45576 L 545.41321,615.08180 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11962"
+                 d="M 555.07066,616.70769 L 561.54522,613.85955 L 561.44397,614.49648 L 555.93026,617.18659 L 555.10967,617.44116 L 554.28909,617.18659 L 545.50876,615.59553 L 545.59096,614.98976 L 555.07066,616.70769 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11964"
+                 d="M 533.93934,613.19420 L 533.87691,613.91407 L 543.60134,615.72316 L 544.66814,615.40494 L 550.08402,612.66834 L 550.00198,611.77736 L 540.48313,610.56816 L 533.93934,613.19420 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11966"
+                 d="M 543.59679,614.82010 L 550.07135,611.97194 L 549.97008,612.60887 L 544.45638,615.29898 L 543.63580,615.55354 L 542.81521,615.29898 L 534.03487,613.70794 L 534.11708,613.10216 L 543.59679,614.82010 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11968"
+                 d="M 522.46547,611.30659 L 522.40303,612.02647 L 532.12747,613.83554 L 533.19427,613.51733 L 538.61013,610.78073 L 538.52809,609.88975 L 529.00925,608.68055 L 522.46547,611.30659 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11970"
+                 d="M 532.12291,612.93249 L 538.59747,610.08434 L 538.49621,610.72126 L 532.98250,613.41137 L 532.16192,613.66594 L 531.34133,613.41137 L 522.56100,611.82032 L 522.64321,611.21456 L 532.12291,612.93249 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11972"
+                 d="M 511.68698,609.14932 L 511.62455,609.86920 L 521.34897,611.67827 L 522.41578,611.36007 L 527.83164,608.62347 L 527.74961,607.73248 L 518.23077,606.52329 L 511.68698,609.14932 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11974"
+                 d="M 521.34441,610.77523 L 527.81898,607.92707 L 527.71773,608.56400 L 522.20401,611.25411 L 521.38342,611.50868 L 520.56284,611.25411 L 511.78251,609.66306 L 511.86473,609.05729 L 521.34441,610.77523 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11984"
+                 d="M 604.07466,616.27612 L 604.01217,616.99599 L 613.73660,618.80507 L 614.80346,618.48686 L 620.21927,615.75026 L 620.13723,614.85928 L 610.61842,613.65007 L 604.07466,616.27612 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11986"
+                 d="M 613.73211,617.90202 L 620.20664,615.05387 L 620.10543,615.69080 L 614.59169,618.38091 L 613.77112,618.63547 L 612.95046,618.38091 L 604.17017,616.78986 L 604.25239,616.18409 L 613.73211,617.90202 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11988"
+                 d="M 592.60075,614.38851 L 592.53833,615.10839 L 602.26272,616.91747 L 603.32959,616.59926 L 608.74539,613.86266 L 608.66335,612.97167 L 599.14454,611.76248 L 592.60075,614.38851 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11990"
+                 d="M 602.25824,616.01442 L 608.73277,613.16626 L 608.63155,613.80319 L 603.11780,616.49330 L 602.29725,616.74787 L 601.47659,616.49330 L 592.69630,614.90225 L 592.77851,614.29648 L 602.25824,616.01442 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path11992"
+                 d="M 581.82227,612.23125 L 581.75983,612.95113 L 591.48428,614.76020 L 592.55108,614.44199 L 597.96692,611.70540 L 597.88490,610.81441 L 588.36605,609.60521 L 581.82227,612.23125 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path11994"
+                 d="M 591.47973,613.85714 L 597.95427,611.00900 L 597.85302,611.64593 L 592.33931,614.33603 L 591.51872,614.59061 L 590.69813,614.33603 L 581.91780,612.74499 L 582.00002,612.13921 L 591.47973,613.85714 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12004"
+                 d="M 596.42539,619.78168 L 596.36296,620.50154 L 606.08734,622.31062 L 607.15421,621.99241 L 612.57002,619.25581 L 612.48798,618.36484 L 602.96916,617.15563 L 596.42539,619.78168 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12006"
+                 d="M 606.08286,621.40758 L 612.55739,618.55942 L 612.45617,619.19635 L 606.94243,621.88646 L 606.12187,622.14102 L 605.30121,621.88646 L 596.52093,620.29542 L 596.60314,619.68964 L 606.08286,621.40758 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12008"
+                 d="M 584.95151,617.89406 L 584.88909,618.61395 L 594.61352,620.42302 L 595.68031,620.10481 L 601.09614,617.36821 L 601.01411,616.47722 L 591.49531,615.26803 L 584.95151,617.89406 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12010"
+                 d="M 594.60896,619.51997 L 601.08351,616.67182 L 600.98230,617.30874 L 595.46855,619.99885 L 594.64796,620.25342 L 593.82738,619.99885 L 585.04706,618.40780 L 585.12925,617.80203 L 594.60896,619.51997 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12012"
+                 d="M 574.17301,615.73680 L 574.11059,616.45668 L 583.83503,618.26575 L 584.90183,617.94755 L 590.31769,615.21095 L 590.23565,614.31996 L 580.71681,613.11077 L 574.17301,615.73680 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12014"
+                 d="M 583.83047,617.36270 L 590.30502,614.51455 L 590.20377,615.15148 L 584.69006,617.84159 L 583.86948,618.09616 L 583.04889,617.84159 L 574.26856,616.25054 L 574.35077,615.64477 L 583.83047,617.36270 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12024"
+                 d="M 588.77614,623.82654 L 588.71371,624.54642 L 598.43809,626.35550 L 599.50496,626.03728 L 604.92077,623.30068 L 604.83873,622.40970 L 595.31993,621.20051 L 588.77614,623.82654 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12026"
+                 d="M 598.43360,625.45244 L 604.90813,622.60429 L 604.80692,623.24121 L 599.29318,625.93132 L 598.47261,626.18589 L 597.65201,625.93132 L 588.87168,624.34028 L 588.95389,623.73450 L 598.43360,625.45244 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12028"
+                 d="M 577.30227,621.93894 L 577.23984,622.65882 L 586.96426,624.46789 L 588.03107,624.14968 L 593.44694,621.41308 L 593.36490,620.52209 L 583.84606,619.31289 L 577.30227,621.93894 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12030"
+                 d="M 586.95971,623.56483 L 593.43427,620.71669 L 593.33301,621.35362 L 587.81931,624.04373 L 586.99872,624.29829 L 586.17814,624.04373 L 577.39780,622.45267 L 577.48001,621.84690 L 586.95971,623.56483 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12032"
+                 d="M 566.52377,619.78168 L 566.46134,620.50154 L 576.18577,622.31062 L 577.25257,621.99241 L 582.66845,619.25581 L 582.58641,618.36484 L 573.06756,617.15563 L 566.52377,619.78168 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12034"
+                 d="M 576.18122,621.40758 L 582.65578,618.55942 L 582.55452,619.19635 L 577.04081,621.88646 L 576.22023,622.14102 L 575.39965,621.88646 L 566.61932,620.29542 L 566.70152,619.68964 L 576.18122,621.40758 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12036"
+                 d="M 549.21772,620.85261 L 549.15528,621.57248 L 558.87972,623.38156 L 559.94652,623.06335 L 565.36236,620.32674 L 565.28032,619.43577 L 555.76150,618.22657 L 549.21772,620.85261 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12038"
+                 d="M 558.87517,622.47851 L 565.34969,619.63035 L 565.24843,620.26728 L 559.73475,622.95739 L 558.91416,623.21195 L 558.09358,622.95739 L 549.31325,621.36635 L 549.39547,620.76058 L 558.87517,622.47851 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12040"
+                 d="M 538.09153,618.69534 L 538.02910,619.41522 L 547.75354,621.22429 L 548.82034,620.90608 L 554.23621,618.16949 L 554.15416,617.27850 L 544.63532,616.06930 L 538.09153,618.69534 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12042"
+                 d="M 547.74898,620.32124 L 554.22354,617.47309 L 554.12228,618.11002 L 548.60857,620.80013 L 547.78798,621.05470 L 546.96740,620.80013 L 538.18707,619.20908 L 538.26928,618.60331 L 547.74898,620.32124 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12044"
+                 d="M 526.61765,616.80773 L 526.55522,617.52761 L 536.27967,619.33669 L 537.34646,619.01848 L 542.76233,616.28188 L 542.68029,615.39090 L 533.16144,614.18170 L 526.61765,616.80773 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12046"
+                 d="M 536.27511,618.43364 L 542.74966,615.58548 L 542.64840,616.22241 L 537.13469,618.91252 L 536.31411,619.16709 L 535.49352,618.91252 L 526.71318,617.32148 L 526.79540,616.71570 L 536.27511,618.43364 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12048"
+                 d="M 515.14378,614.92013 L 515.08134,615.64001 L 524.80579,617.44909 L 525.87259,617.13088 L 531.28845,614.39428 L 531.20640,613.50329 L 521.68756,612.29409 L 515.14378,614.92013 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12050"
+                 d="M 524.80124,616.54603 L 531.27578,613.69788 L 531.17453,614.33481 L 525.66081,617.02492 L 524.84023,617.27948 L 524.01964,617.02492 L 515.23931,615.43387 L 515.32153,614.82810 L 524.80124,616.54603 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12052"
+                 d="M 504.36529,612.76287 L 504.30286,613.48274 L 514.02729,615.29182 L 515.09410,614.97361 L 520.50997,612.23701 L 520.42793,611.34603 L 510.90908,610.13682 L 504.36529,612.76287 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12054"
+                 d="M 514.02274,614.38876 L 520.49729,611.54062 L 520.39604,612.17755 L 514.88234,614.86766 L 514.06173,615.12222 L 513.24116,614.86766 L 504.46082,613.27661 L 504.54304,612.67084 L 514.02274,614.38876 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12056"
+                 d="M 541.56846,624.35816 L 541.50603,625.07803 L 551.23048,626.88711 L 552.29729,626.56890 L 557.71308,623.83230 L 557.63105,622.94132 L 548.11226,621.73212 L 541.56846,624.35816 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12058"
+                 d="M 551.22591,625.98406 L 557.70042,623.13591 L 557.59916,623.77284 L 552.08552,626.46295 L 551.26492,626.71751 L 550.44433,626.46295 L 541.66401,624.87190 L 541.74622,624.26612 L 551.22591,625.98406 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12060"
+                 d="M 530.44228,622.20090 L 530.37986,622.92077 L 540.10429,624.72984 L 541.17108,624.41164 L 546.58696,621.67504 L 546.50492,620.78406 L 536.98608,619.57486 L 530.44228,622.20090 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12062"
+                 d="M 540.09973,623.82680 L 546.57429,620.97864 L 546.47304,621.61557 L 540.95933,624.30568 L 540.13874,624.56025 L 539.31815,624.30568 L 530.53783,622.71464 L 530.62002,622.10887 L 540.09973,623.82680 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12064"
+                 d="M 518.96840,620.31329 L 518.90598,621.03317 L 528.63041,622.84224 L 529.69721,622.52403 L 535.11309,619.78743 L 535.03105,618.89645 L 525.51220,617.68725 L 518.96840,620.31329 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12066"
+                 d="M 528.62586,621.93919 L 535.10042,619.09103 L 534.99915,619.72796 L 529.48545,622.41807 L 528.66485,622.67264 L 527.84428,622.41807 L 519.06394,620.82703 L 519.14615,620.22125 L 528.62586,621.93919 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12068"
+                 d="M 507.49452,618.42568 L 507.43210,619.14556 L 517.15654,620.95464 L 518.22334,620.63643 L 523.63920,617.89983 L 523.55716,617.00884 L 514.03832,615.79964 L 507.49452,618.42568 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12070"
+                 d="M 517.15198,620.05158 L 523.62654,617.20344 L 523.52528,617.84037 L 518.01157,620.53048 L 517.19098,620.78504 L 516.37039,620.53048 L 507.59007,618.93942 L 507.67228,618.33365 L 517.15198,620.05158 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12072"
+                 d="M 496.71603,616.26843 L 496.65361,616.98829 L 506.37804,618.79737 L 507.44485,618.47916 L 512.86071,615.74256 L 512.77867,614.85159 L 503.25983,613.64238 L 496.71603,616.26843 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12074"
+                 d="M 506.37348,617.89432 L 512.84805,615.04617 L 512.74679,615.68310 L 507.23308,618.37321 L 506.41249,618.62777 L 505.59190,618.37321 L 496.81158,616.78217 L 496.89379,616.17639 L 506.37348,617.89432 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12076"
+                 d="M 533.91922,628.40302 L 533.85679,629.12291 L 543.58123,630.93198 L 544.64805,630.61378 L 550.06384,627.87718 L 549.98179,626.98618 L 540.46301,625.77699 L 533.91922,628.40302 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12078"
+                 d="M 543.57667,630.02892 L 550.05117,627.18077 L 549.94992,627.81771 L 544.43628,630.50782 L 543.61568,630.76238 L 542.79509,630.50782 L 534.01475,628.91676 L 534.09696,628.31099 L 543.57667,630.02892 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12080"
+                 d="M 522.79304,626.24577 L 522.73061,626.96564 L 532.45503,628.77472 L 533.52184,628.45651 L 538.93771,625.71991 L 538.85567,624.82892 L 529.33683,623.61973 L 522.79304,626.24577 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12082"
+                 d="M 532.45048,627.87166 L 538.92504,625.02351 L 538.82378,625.66044 L 533.31008,628.35055 L 532.48949,628.60512 L 531.66891,628.35055 L 522.88857,626.75950 L 522.97078,626.15373 L 532.45048,627.87166 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12084"
+                 d="M 511.31916,624.35816 L 511.25673,625.07803 L 520.98116,626.88711 L 522.04796,626.56890 L 527.46383,623.83230 L 527.38179,622.94132 L 517.86295,621.73212 L 511.31916,624.35816 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12086"
+                 d="M 520.97660,625.98406 L 527.45117,623.13591 L 527.34991,623.77284 L 521.83619,626.46295 L 521.01561,626.71751 L 520.19503,626.46295 L 511.41470,624.87190 L 511.49690,624.26612 L 520.97660,625.98406 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12088"
+                 d="M 499.84528,622.47055 L 499.78285,623.19043 L 509.50729,624.99950 L 510.57408,624.68130 L 515.98995,621.94470 L 515.90792,621.05371 L 506.38907,619.84452 L 499.84528,622.47055 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12090"
+                 d="M 509.50273,624.09645 L 515.97728,621.24830 L 515.87602,621.88523 L 510.36232,624.57534 L 509.54174,624.82991 L 508.72115,624.57534 L 499.94082,622.98429 L 500.02302,622.37852 L 509.50273,624.09645 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12092"
+                 d="M 489.06679,620.31329 L 489.00436,621.03317 L 498.72880,622.84224 L 499.79559,622.52403 L 505.21146,619.78743 L 505.12942,618.89645 L 495.61058,617.68725 L 489.06679,620.31329 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12094"
+                 d="M 498.72424,621.93919 L 505.19879,619.09103 L 505.09755,619.72796 L 499.58383,622.41807 L 498.76325,622.67264 L 497.94266,622.41807 L 489.16233,620.82703 L 489.24455,620.22125 L 498.72424,621.93919 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12104"
+                 d="M 581.45448,627.44009 L 581.39199,628.15995 L 591.11641,629.96903 L 592.18328,629.65082 L 597.59909,626.91422 L 597.51705,626.02325 L 587.99823,624.81404 L 581.45448,627.44009 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12106"
+                 d="M 591.11193,629.06599 L 597.58646,626.21782 L 597.48524,626.85476 L 591.97150,629.54487 L 591.15094,629.79943 L 590.33028,629.54487 L 581.54999,627.95383 L 581.63221,627.34805 L 591.11193,629.06599 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12108"
+                 d="M 569.98058,625.55247 L 569.91815,626.27236 L 579.64254,628.08143 L 580.70941,627.76322 L 586.12521,625.02663 L 586.04317,624.13563 L 576.52436,622.92644 L 569.98058,625.55247 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12110"
+                 d="M 579.63805,627.17837 L 586.11258,624.33023 L 586.01137,624.96716 L 580.49762,627.65726 L 579.67706,627.91184 L 578.85640,627.65726 L 570.07611,626.06621 L 570.15832,625.46044 L 579.63805,627.17837 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12112"
+                 d="M 559.20208,623.39521 L 559.13965,624.11509 L 568.86410,625.92417 L 569.93089,625.60596 L 575.34674,622.86936 L 575.26472,621.97838 L 565.74587,620.76918 L 559.20208,623.39521 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12114"
+                 d="M 568.85954,625.02111 L 575.33409,622.17296 L 575.23283,622.80989 L 569.71913,625.50000 L 568.89854,625.75457 L 568.07796,625.50000 L 559.29763,623.90896 L 559.37984,623.30318 L 568.85954,625.02111 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12124"
+                 d="M 573.80520,630.94564 L 573.74278,631.66551 L 583.46716,633.47458 L 584.53403,633.15637 L 589.94983,630.41978 L 589.86780,629.52880 L 580.34898,628.31959 L 573.80520,630.94564 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12126"
+                 d="M 583.46267,632.57154 L 589.93720,629.72338 L 589.83599,630.36031 L 584.32225,633.05042 L 583.50168,633.30499 L 582.68102,633.05042 L 573.90075,631.45938 L 573.98296,630.85360 L 583.46267,632.57154 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12128"
+                 d="M 562.33133,629.05802 L 562.26891,629.77791 L 571.99333,631.58698 L 573.06014,631.26878 L 578.47596,628.53218 L 578.39392,627.64119 L 568.87513,626.43200 L 562.33133,629.05802 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12130"
+                 d="M 571.98878,630.68393 L 578.46333,627.83578 L 578.36212,628.47271 L 572.84838,631.16282 L 572.02777,631.41739 L 571.20720,631.16282 L 562.42687,629.57177 L 562.50908,628.96600 L 571.98878,630.68393 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12132"
+                 d="M 551.55283,626.90077 L 551.49041,627.62064 L 561.21484,629.42972 L 562.28164,629.11151 L 567.69752,626.37491 L 567.61548,625.48393 L 558.09663,624.27473 L 551.55283,626.90077 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12134"
+                 d="M 561.21029,628.52666 L 567.68485,625.67851 L 567.58358,626.31544 L 562.06988,629.00555 L 561.24930,629.26012 L 560.42871,629.00555 L 551.64838,627.41451 L 551.73058,626.80873 L 561.21029,628.52666 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12144"
+                 d="M 566.15596,634.99050 L 566.09353,635.71038 L 575.81792,637.51946 L 576.88478,637.20125 L 582.30058,634.46465 L 582.21854,633.57366 L 572.69975,632.36447 L 566.15596,634.99050 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12146"
+                 d="M 575.81342,636.61640 L 582.28795,633.76825 L 582.18674,634.40518 L 576.67300,637.09529 L 575.85243,637.34986 L 575.03183,637.09529 L 566.25149,635.50424 L 566.33370,634.89847 L 575.81342,636.61640 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12148"
+                 d="M 554.68209,633.10291 L 554.61965,633.82277 L 564.34409,635.63185 L 565.41089,635.31364 L 570.82675,632.57704 L 570.74471,631.68606 L 561.22587,630.47686 L 554.68209,633.10291 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12150"
+                 d="M 564.33954,634.72880 L 570.81409,631.88065 L 570.71283,632.51758 L 565.19912,635.20769 L 564.37853,635.46225 L 563.55795,635.20769 L 554.77762,633.61664 L 554.85983,633.01087 L 564.33954,634.72880 z " />
+              <path
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path12152"
+                 d="M 543.90359,630.94564 L 543.84117,631.66551 L 553.56559,633.47458 L 554.63239,633.15637 L 560.04826,630.41978 L 559.96623,629.52880 L 550.44739,628.31959 L 543.90359,630.94564 z " />
+              <path
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path12154"
+                 d="M 553.56104,632.57154 L 560.03560,629.72338 L 559.93434,630.36031 L 554.42064,633.05042 L 553.60004,633.30499 L 552.77947,633.05042 L 543.99913,631.45938 L 544.08134,630.85360 L 553.56104,632.57154 z " />
+            </g>
+            <path
+               style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+               id="path12374"
+               d="M 252.70452,458.78596 L 235.94034,467.16805 L 230.97318,469.34118 L 227.24780,467.47850 L 252.70452,458.78596 z " />
+            <text
+               y="307.40585"
+               x="433.62375"
+               transform="matrix(1.152915,6.902673e-2,-0.472362,0.839085,0.000000,0.000000)"
+               style="font-size:10.008980px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#00b800;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans Mono"
+               space="preserve"
+               sodipodi:linespacing="125.00000%"
+               id="text12617">
+              <tspan
+                 y="307.40585"
+                 x="433.62375"
+                 sodipodi:role="line"
+                 id="tspan12621">tux@linux#</tspan>
+            </text>
+          </g>
+        </g>
+        <g
+           transform="translate(1358.023,2415.499)"
+           id="g40705">
+          <path
+             style="fill:#ffff00;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+             d="M -86.419853,-691.35483 C -76.144661,-694.12138 -64.683870,-695.22800 -55.594278,-689.69490 C -64.091071,-673.09562 -66.659869,-647.36672 -63.300672,-629.93747 C -71.402265,-637.40715 -83.060655,-635.74723 -94.719045,-632.42736 C -98.473443,-651.23989 -96.892644,-670.05241 -86.419853,-691.35483 z "
+             id="path40707"
+             sodipodi:nodetypes="ccccc" />
+          <path
+             style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+             d="M -85.234254,-677.24544 C -79.701458,-679.45868 -75.354262,-680.84195 -68.635867,-676.41547"
+             id="path40709"
+             sodipodi:nodetypes="cc" />
+          <path
+             sodipodi:nodetypes="cc"
+             id="path40711"
+             d="M -87.605452,-667.28587 C -82.072656,-669.49911 -77.725460,-670.88238 -71.007065,-666.45590"
+             style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+        </g>
+        <g
+           id="g5147"
+           transform="translate(31.67467,192.2077)">
+          <path
+             style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0643784px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path5149"
+             d="M 1207.3813,1491.0307 C 1224.1769,1497.2363 1227.8281,1511.9747 1227.8281,1511.9747" />
+          <path
+             style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.6768856px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path5151"
+             d="M 1209.7952,1478.6913 C 1236.0060,1488.5613 1241.7040,1512.0023 1241.7040,1512.0023" />
+          <path
+             style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:2.3075068px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path5153"
+             d="M 1212.2605,1466.3177 C 1249.5475,1479.4553 1257.6533,1510.6571 1257.6533,1510.6571" />
+        </g>
+      </g>
+      <g
+         transform="translate(210.9245,0.000000)"
+         id="g6443">
+        <g
+           transform="matrix(0.278462,0.000000,0.000000,0.278462,1084.375,1621.130)"
+           id="g6445"
+           inkscape:label="Layer 1">
+          <g
+             id="g6447">
+            <path
+               d="M 457.69310,531.23993 L 408.33448,567.36840 L 397.13974,576.01888 L 383.40075,576.01888 L 370.17060,572.45692 L 177.82466,522.58945 L 145.25815,513.93897 L 144.74930,510.88586 L 150.34667,508.34160 L 183.42203,498.16457 L 377.80338,524.62486 L 434.79477,524.11600 L 457.69310,531.23993 z "
+               id="path6449"
+               style="fill:#0c0d0d;fill-opacity:0.46428570;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 144.31900,498.16042 C 144.87838,499.97839 145.43775,501.79637 145.99713,503.61434 C 148.09479,503.89403 150.19245,504.17371 152.29011,504.45340 C 238.93475,527.27504 322.01742,549.07897 389.32569,565.28554 C 394.22023,564.02694 399.11477,562.76835 404.00931,561.50975 C 420.93043,549.34332 437.85156,537.17690 454.77268,525.01047 C 455.47190,526.40891 456.17112,527.80735 456.87034,529.20579 C 459.24769,527.52766 461.62503,525.84954 464.00238,524.17141 C 477.00787,514.10264 490.01337,504.03387 503.01886,493.96510 C 503.85792,492.14713 504.69699,490.32916 505.53605,488.51119 C 506.09543,488.09166 506.65480,487.67212 507.21418,487.25259 C 507.21418,487.25259 507.21418,487.25259 507.21418,484.73540 C 507.21418,482.21821 507.21418,480.12055 507.21418,480.12055 C 485.81805,494.66432 464.42191,509.20810 443.02578,523.75187 C 442.60625,523.75187 442.18672,523.75187 441.76719,523.75187 C 441.48750,523.89172 441.20781,524.03156 440.92812,524.17141 C 440.64843,524.73078 440.36875,525.29016 440.08906,525.84953 C 438.97031,526.40891 437.85155,526.96828 436.73280,527.52766 C 436.31327,527.52766 435.89374,527.52766 435.47421,527.52766 C 435.33436,528.22688 435.19452,528.92610 435.05467,529.62532 C 433.51639,530.46438 431.97810,531.30345 430.43982,532.14251 C 429.88044,532.14251 429.32107,532.14251 428.76169,532.14251 C 427.36325,533.40111 425.96482,534.65970 424.56638,535.91830 C 424.28669,536.47768 424.00700,537.03705 423.72731,537.59643 C 417.15464,542.21128 410.58198,546.82614 404.00931,551.44099 C 402.19134,553.53865 400.37336,555.63631 398.55539,557.73397 C 396.03820,558.43319 393.52101,559.13241 391.00382,559.83163 C 307.24899,540.80112 224.00301,520.24405 144.31900,498.16042 z "
+               id="path6451"
+               sodipodi:nodetypes="cccccccccccscccccccccccccccc"
+               style="fill:#404348;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 507.32515,478.88631 C 479.50792,497.03535 451.69070,515.18440 423.87347,533.33344 C 416.57993,538.42196 409.28639,543.51047 401.99285,548.59899 C 399.44859,550.63440 396.90433,552.66981 394.36007,554.70522 C 391.81581,554.70522 389.27156,554.70522 386.72730,554.70522 C 366.03399,552.16096 346.86725,545.54589 326.17394,540.96622 C 265.45097,526.88799 206.76341,512.80976 144.00503,494.15186 C 143.83541,495.50880 143.66580,496.86574 143.49618,498.22268 C 226.09977,518.91598 308.70337,539.60928 391.30696,560.30258 C 393.68160,559.28488 396.05625,558.26717 398.43089,557.24947 C 400.46630,554.70521 402.50170,552.16096 404.53711,549.61670 C 409.28639,547.07244 414.03567,544.52818 418.78495,541.98392 C 420.14189,540.79660 421.49883,539.60928 422.85577,538.42196 C 423.70386,537.06502 424.55194,535.70809 425.40003,534.35115 C 426.75697,533.50306 428.11390,532.65498 429.47084,531.80689 C 430.31893,531.97651 431.16701,532.14612 432.01510,532.31574 C 432.86319,531.46765 433.71127,530.61957 434.55936,529.77148 C 434.72898,529.09301 434.89859,528.41454 435.06821,527.73607 C 435.74668,527.73607 436.42514,527.73607 437.10361,527.73607 C 438.29093,527.05760 439.47826,526.37914 440.66558,525.70067 C 440.66558,525.19182 440.66558,524.68296 440.66558,524.17411 C 441.85290,523.83488 443.04022,523.49564 444.22754,523.15641 C 451.18185,518.40713 458.13615,513.65784 465.09046,508.90856 C 479.16869,498.90114 493.24692,488.89373 507.32515,478.88631 z "
+               id="path6453"
+               sodipodi:nodetypes="cccccccccccccccccccccccc"
+               style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 505.98161,478.68538 L 412.86175,541.27414 L 399.63160,549.92462 L 393.52538,553.99543 L 390.98112,554.50428 L 385.38375,553.99543 L 379.78639,554.50428 L 354.85265,548.39806 L 233.23709,518.88466 L 160.47130,499.54830 L 145.20575,494.96863 L 142.66149,492.93323 L 143.67919,491.40667 L 150.29427,488.86241 L 209.82992,467.99949 L 203.21484,471.05260 L 208.30336,473.59686 L 268.34786,485.30045 L 275.47179,483.26504 L 289.21078,485.30045 L 324.83040,493.44208 L 326.35696,495.98634 L 325.33925,497.51289 L 425.07419,518.88466 L 435.25122,520.92007 L 440.33974,517.86696 L 498.85768,480.72078 L 499.36654,479.19423 L 505.98161,478.68538 z "
+               id="path6455"
+               style="fill:#cecdc9;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#414746;stroke-width:0.50000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+            <path
+               d="M 276.33662,487.33585 L 252.42059,499.03944 L 297.19954,508.19877 L 318.57131,497.00404 L 318.57131,495.47748 L 276.33662,487.33585 z "
+               id="path6457"
+               style="fill:#e0e0e2;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#59595e;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 304.83231,510.23418 L 300.25265,513.28729 L 294.14643,513.28729 L 245.29666,503.61911 L 242.75240,501.58370 L 243.26126,499.54829 L 247.33207,497.51289 L 250.89403,497.51289 L 304.83231,510.23418 z "
+               id="path6459"
+               style="fill:#cbcbcd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#524a50;stroke-width:0.50000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+            <path
+               d="M 266.66844,504.12797 L 255.47370,508.70763 L 253.94715,511.25189 L 257.50911,512.26960 L 264.12418,512.77845 L 272.77466,509.21649 L 276.33662,506.67223 L 274.30121,504.63682 L 266.66844,504.12797 z "
+               id="path6461"
+               style="fill:#a5a5a5;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#555959;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 269.72155,519.90236 L 274.81007,521.42892 L 276.84547,520.41122 L 277.35433,518.88466 L 271.24811,517.35811 L 269.72155,519.90236 z "
+               id="path6463"
+               style="fill:#454344;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 427.43543,513.99708 L 466.61701,492.11646 L 474.75864,488.04564 L 476.79405,483.46598 L 278.34188,448.35521 L 223.89475,468.20043 L 227.96556,471.25354 L 392.32466,505.34660 L 389.27155,506.36430 L 427.43543,513.99708 z M 497.65697,478.88631 L 497.65697,478.88631 z M 494.09501,483.46598 L 445.24524,515.52363 L 437.61247,518.57674 L 430.48854,518.57674 L 410.13447,514.50593 L 326.17394,496.18727 L 325.66509,493.13416 L 322.10313,491.60760 L 278.34188,481.93942 L 270.70911,482.95712 L 266.12944,484.48368 L 205.57609,471.76239 L 203.54068,470.23583 L 204.04953,468.20043 L 282.92155,442.24899 L 288.51892,441.74014 L 343.47490,450.39062 L 467.63472,472.27124 L 493.58615,477.35976 L 499.18352,478.37746 L 498.67467,480.41287 L 494.09501,483.46598 z "
+               id="path6465"
+               style="fill:#939192;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 475.85951,484.04815 L 440.93696,506.02069 L 473.20582,487.76331 L 474.90418,487.02027 L 475.85951,484.04815 z "
+               id="path6467"
+               sodipodi:nodetypes="ccccc"
+               style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 350.65332,277.68888 L 549.36155,286.18068 L 503.50580,448.37415 L 298.00413,418.65284 L 350.65332,277.68888 z "
+               id="path6469"
+               style="fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 351.70743,277.78707 L 550.41566,286.27887 L 504.55991,448.47234 L 299.05824,418.75103 L 351.70743,277.78707 z M 508.80582,472.24940 L 561.45501,282.03297 L 559.75664,277.78707 L 552.96320,275.23953 L 539.37631,273.54116 L 350.00907,266.74772 L 346.61234,269.29526 L 288.01889,434.03627 L 293.11397,439.98054 L 344.06480,447.62316 L 346.61234,437.43300 L 371.23858,441.67890 L 369.54022,449.32152 L 371.23858,454.41661 L 503.71073,473.94776 L 508.80582,472.24940 z "
+               id="path6471"
+               style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z"
+               id="path6473"
+               sodipodi:cx="413.55090"
+               sodipodi:cy="402.73911"
+               sodipodi:rx="3.3967218"
+               sodipodi:ry="3.3967218"
+               sodipodi:type="arc"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,171.4076,234.8891)" />
+            <path
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z"
+               id="path6475"
+               sodipodi:cx="413.55090"
+               sodipodi:cy="402.73911"
+               sodipodi:rx="3.3967218"
+               sodipodi:ry="3.3967218"
+               sodipodi:type="arc"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,179.7138,236.1077)" />
+            <path
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z"
+               id="path6477"
+               sodipodi:cx="413.55090"
+               sodipodi:cy="402.73911"
+               sodipodi:rx="3.3967218"
+               sodipodi:ry="3.3967218"
+               sodipodi:type="arc"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,187.0261,237.1521)" />
+            <path
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z"
+               id="path6479"
+               sodipodi:cx="413.55090"
+               sodipodi:cy="402.73911"
+               sodipodi:rx="3.3967218"
+               sodipodi:ry="3.3967218"
+               sodipodi:type="arc"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,193.5815,238.3358)" />
+            <path
+               d="M 285.63627,429.08304 L 288.83668,436.28396 L 292.03708,435.48385 L 292.03708,441.08456 L 287.23647,437.88416 L 285.63627,429.08304 z "
+               id="path6481"
+               style="fill:#78797b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 297.50241,431.25366 L 294.91197,430.85513 L 293.11859,434.84043 L 292.32153,436.43454 L 292.72006,439.82205 L 293.11859,441.81470 L 295.50977,442.61175 L 296.30683,441.41617 L 296.30683,439.22425 L 295.90830,437.43087 L 295.90830,435.23896 L 297.50241,432.84778 L 297.50241,431.25366 z "
+               id="path6483"
+               style="fill:#1c1b21;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 296.94250,438.46583 L 340.19282,445.56663 L 340.19282,448.79427 L 298.87908,441.69347 L 296.94250,438.46583 z "
+               id="path6485"
+               style="fill:#6a6a6b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 342.77493,448.79427 L 342.12941,444.27558 L 346.00257,439.75689 L 369.88707,443.63005 L 368.59602,448.14874 L 368.59602,452.66743 L 342.77493,448.79427 z "
+               id="path6487"
+               style="fill:#424041;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 345.63607,440.61481 L 343.97437,442.51392 L 368.30657,446.19342 L 369.73090,444.53170 L 345.63607,440.61481 z "
+               id="path6489"
+               sodipodi:nodetypes="ccccc"
+               style="fill:#f4f3ee;fill-opacity:0.41071430;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 369.56539,450.47664 L 489.43134,469.90055 L 489.43134,473.22306 L 370.07654,452.52127 L 369.56539,450.47664 z "
+               id="path6491"
+               style="fill:#6a6a6b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 491.28555,474.61928 L 490.41974,471.77447 L 490.54343,469.79547 L 491.40924,466.45592 L 493.14086,462.86899 L 496.48042,463.36374 L 495.98567,465.96117 L 494.50142,468.31123 C 494.50142,468.31123 493.88299,470.53760 493.88299,471.03235 C 493.88299,471.52710 494.00667,473.75347 494.00667,473.75347 L 494.37773,475.11402 L 491.28555,474.61928 z "
+               id="path6493"
+               style="fill:#353533;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <path
+               d="M 487.54953 459.08688 A 1.4729594 1.4729594 0 1 1  484.60361,459.08688 A 1.4729594 1.4729594 0 1 1  487.54953 459.08688 z"
+               id="path6495"
+               sodipodi:cx="486.07657"
+               sodipodi:cy="459.08688"
+               sodipodi:rx="1.4729594"
+               sodipodi:ry="1.4729594"
+               sodipodi:type="arc"
+               style="opacity:1.0000000;fill:#030000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               transform="matrix(1.555556,0.000000,0.000000,1.555556,-270.0425,-255.0483)" />
+            <path
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z"
+               id="path6497"
+               sodipodi:cx="413.55090"
+               sodipodi:cy="402.73911"
+               sodipodi:rx="3.3967218"
+               sodipodi:ry="3.3967218"
+               sodipodi:type="arc"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,199.8980,239.2676)" />
+            <path
+               d="M 416.94763 402.73911 A 3.3967218 3.3967218 0 1 1  410.15418,402.73911 A 3.3967218 3.3967218 0 1 1  416.94763 402.73911 z"
+               id="path6499"
+               sodipodi:cx="413.55090"
+               sodipodi:cy="402.73911"
+               sodipodi:rx="3.3967218"
+               sodipodi:ry="3.3967218"
+               sodipodi:type="arc"
+               style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:0.50000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+               transform="matrix(0.524240,0.000000,0.000000,0.524240,207.5076,240.8516)" />
+            <g
+               id="g6501"
+               transform="matrix(1.135954,0.000000,0.000000,0.881004,-272.0857,-176.6878)">
+              <path
+                 d="M 517.05812,722.17999 L 517.00316,722.99711 L 525.56375,725.05053 L 526.50287,724.68934 L 531.27053,721.58311 L 531.19831,720.57178 L 522.81873,719.19926 L 517.05812,722.17999 z "
+                 id="path6503"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 525.55974,724.02550 L 531.25938,720.79265 L 531.17024,721.51561 L 526.31645,724.56907 L 525.59407,724.85802 L 524.87170,724.56907 L 517.14222,722.76312 L 517.21459,722.07553 L 525.55974,724.02550 z "
+                 id="path6505"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 507.26354,719.73135 L 507.20858,720.54846 L 515.76918,722.60189 L 516.70830,722.24070 L 521.47598,719.13447 L 521.40376,718.12314 L 513.02415,716.75062 L 507.26354,719.73135 z "
+                 id="path6507"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 515.76517,721.57686 L 521.46483,718.34401 L 521.37569,719.06697 L 516.52187,722.12043 L 515.79950,722.40938 L 515.07713,722.12043 L 507.34765,720.31448 L 507.42002,719.62689 L 515.76517,721.57686 z "
+                 id="path6509"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 497.16289,717.58879 L 497.10793,718.40590 L 505.66853,720.45932 L 506.60765,720.09813 L 511.37533,716.99191 L 511.30310,715.98058 L 502.92350,714.60805 L 497.16289,717.58879 z "
+                 id="path6511"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 505.66452,719.43430 L 511.36417,716.20145 L 511.27504,716.92441 L 506.42122,719.97786 L 505.69885,720.26682 L 504.97647,719.97786 L 497.24699,718.17192 L 497.31937,717.48432 L 505.66452,719.43430 z "
+                 id="path6513"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 487.06224,715.44622 L 487.00728,716.26334 L 495.56787,718.31676 L 496.50700,717.95558 L 501.27468,714.84935 L 501.20245,713.83802 L 492.82285,712.46550 L 487.06224,715.44622 z "
+                 id="path6515"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 495.56386,717.29174 L 501.26352,714.05889 L 501.17439,714.78185 L 496.32057,717.83531 L 495.59819,718.12426 L 494.87582,717.83531 L 487.14634,716.02936 L 487.21872,715.34177 L 495.56386,717.29174 z "
+                 id="path6517"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 477.57375,712.99759 L 477.51879,713.81469 L 486.07938,715.86812 L 487.01850,715.50693 L 491.78619,712.40070 L 491.71397,711.38938 L 483.33436,710.01685 L 477.57375,712.99759 z "
+                 id="path6519"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 486.07537,714.84309 L 491.77503,711.61024 L 491.68589,712.33320 L 486.83208,715.38666 L 486.10970,715.67561 L 485.38733,715.38666 L 477.65785,713.58072 L 477.73022,712.89312 L 486.07537,714.84309 z "
+                 id="path6521"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 510.32435,726.15904 L 510.26939,726.97614 L 518.82998,729.02958 L 519.76912,728.66838 L 524.53674,725.56215 L 524.46452,724.55083 L 516.08497,723.17831 L 510.32435,726.15904 z "
+                 id="path6523"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 518.82597,728.00455 L 524.52559,724.77169 L 524.43645,725.49465 L 519.58270,728.54811 L 518.86030,728.83706 L 518.13793,728.54811 L 510.40846,726.74217 L 510.48083,726.05457 L 518.82597,728.00455 z "
+                 id="path6525"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 500.52977,723.71039 L 500.47482,724.52751 L 509.03541,726.58093 L 509.97453,726.21974 L 514.74222,723.11352 L 514.67000,722.10218 L 506.29039,720.72966 L 500.52977,723.71039 z "
+                 id="path6527"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 509.03140,725.55590 L 514.73107,722.32306 L 514.64192,723.04601 L 509.78811,726.09947 L 509.06574,726.38842 L 508.34336,726.09947 L 500.61389,724.29352 L 500.68625,723.60593 L 509.03140,725.55590 z "
+                 id="path6529"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 490.42912,721.56783 L 490.37417,722.38494 L 498.93476,724.43836 L 499.87388,724.07718 L 504.64156,720.97095 L 504.56934,719.95962 L 496.18974,718.58710 L 490.42912,721.56783 z "
+                 id="path6531"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 498.93075,723.41334 L 504.63041,720.18049 L 504.54127,720.90345 L 499.68746,723.95691 L 498.96508,724.24586 L 498.24270,723.95691 L 490.51323,722.15096 L 490.58560,721.46337 L 498.93075,723.41334 z "
+                 id="path6533"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 480.32847,719.42527 L 480.27352,720.24238 L 488.83411,722.29581 L 489.77323,721.93462 L 494.54091,718.82839 L 494.46869,717.81706 L 486.08909,716.44454 L 480.32847,719.42527 z "
+                 id="path6535"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 488.83010,721.27078 L 494.52976,718.03793 L 494.44062,718.76089 L 489.58681,721.81435 L 488.86443,722.10330 L 488.14205,721.81435 L 480.41258,720.00840 L 480.48495,719.32081 L 488.83010,721.27078 z "
+                 id="path6537"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 470.83998,716.97663 L 470.78503,717.79374 L 479.34561,719.84716 L 480.28474,719.48597 L 485.05242,716.37975 L 484.98020,715.36842 L 476.60060,713.99589 L 470.83998,716.97663 z "
+                 id="path6539"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 479.34160,718.82213 L 485.04127,715.58929 L 484.95213,716.31225 L 480.09832,719.36571 L 479.37594,719.65466 L 478.65356,719.36571 L 470.92409,717.55976 L 470.99646,716.87216 L 479.34160,718.82213 z "
+                 id="path6541"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 503.59059,730.75024 L 503.53563,731.56735 L 512.09622,733.62078 L 513.03535,733.25959 L 517.80298,730.15336 L 517.73075,729.14203 L 509.35120,727.76951 L 503.59059,730.75024 z "
+                 id="path6543"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 512.09220,732.59575 L 517.79182,729.36290 L 517.70269,730.08586 L 512.84893,733.13932 L 512.12654,733.42826 L 511.40417,733.13932 L 503.67469,731.33337 L 503.74706,730.64578 L 512.09220,732.59575 z "
+                 id="path6545"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 493.79601,728.30160 L 493.74106,729.11871 L 502.30164,731.17213 L 503.24076,730.81095 L 508.00845,727.70472 L 507.93623,726.69338 L 499.55663,725.32086 L 493.79601,728.30160 z "
+                 id="path6547"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 502.29763,730.14710 L 507.99730,726.91426 L 507.90816,727.63722 L 503.05435,730.69068 L 502.33197,730.97963 L 501.60960,730.69068 L 493.88012,728.88472 L 493.95248,728.19713 L 502.29763,730.14710 z "
+                 id="path6549"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 483.69536,726.15904 L 483.64040,726.97614 L 492.20099,729.02958 L 493.14011,728.66838 L 497.90780,725.56215 L 497.83558,724.55083 L 489.45597,723.17831 L 483.69536,726.15904 z "
+                 id="path6551"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 492.19698,728.00455 L 497.89665,724.77169 L 497.80750,725.49465 L 492.95369,728.54811 L 492.23132,728.83706 L 491.50894,728.54811 L 483.77946,726.74217 L 483.85183,726.05457 L 492.19698,728.00455 z "
+                 id="path6553"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 473.59471,724.01648 L 473.53975,724.83359 L 482.10034,726.88701 L 483.03946,726.52582 L 487.80714,723.41959 L 487.73492,722.40826 L 479.35532,721.03574 L 473.59471,724.01648 z "
+                 id="path6555"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 482.09633,725.86198 L 487.79599,722.62914 L 487.70685,723.35209 L 482.85304,726.40555 L 482.13067,726.69450 L 481.40829,726.40555 L 473.67881,724.59960 L 473.75118,723.91201 L 482.09633,725.86198 z "
+                 id="path6557"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 464.10622,721.56783 L 464.05126,722.38494 L 472.61184,724.43836 L 473.55097,724.07718 L 478.31865,720.97095 L 478.24643,719.95962 L 469.86683,718.58710 L 464.10622,721.56783 z "
+                 id="path6559"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 472.60783,723.41334 L 478.30750,720.18049 L 478.21837,720.90345 L 473.36455,723.95691 L 472.64217,724.24586 L 471.91980,723.95691 L 464.19032,722.15096 L 464.26270,721.46337 L 472.60783,723.41334 z "
+                 id="path6561"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 565.33192,734.24843 L 565.27691,735.06555 L 573.83757,737.11897 L 574.77667,736.75778 L 579.54429,733.65155 L 579.47207,732.64023 L 571.09250,731.26771 L 565.33192,734.24843 z "
+                 id="path6563"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 573.83354,736.09395 L 579.53318,732.86109 L 579.44399,733.58405 L 574.59023,736.63751 L 573.86787,736.92646 L 573.14552,736.63751 L 565.41600,734.83157 L 565.48838,734.14398 L 573.83354,736.09395 z "
+                 id="path6565"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 555.53735,731.79979 L 555.48235,732.61691 L 564.04292,734.67033 L 564.98210,734.30914 L 569.74973,731.20291 L 569.67751,730.19158 L 561.29793,728.81906 L 555.53735,731.79979 z "
+                 id="path6567"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 564.03897,733.64530 L 569.73861,730.41245 L 569.64951,731.13541 L 564.79567,734.18887 L 564.07331,734.47782 L 563.35087,734.18887 L 555.62143,732.38292 L 555.69382,731.69533 L 564.03897,733.64530 z "
+                 id="path6569"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 545.43670,729.65723 L 545.38169,730.47434 L 553.94227,732.52776 L 554.88145,732.16658 L 559.64908,729.06035 L 559.57686,728.04902 L 551.19728,726.67649 L 545.43670,729.65723 z "
+                 id="path6571"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 553.93832,731.50274 L 559.63796,728.26989 L 559.54886,728.99285 L 554.69502,732.04631 L 553.97266,732.33526 L 553.25022,732.04631 L 545.52078,730.24036 L 545.59316,729.55277 L 553.93832,731.50274 z "
+                 id="path6573"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 535.33602,727.51467 L 535.28107,728.33178 L 543.84162,730.38521 L 544.78080,730.02402 L 549.54842,726.91779 L 549.47620,725.90646 L 541.09663,724.53394 L 535.33602,727.51467 z "
+                 id="path6575"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 543.83767,729.36018 L 549.53731,726.12733 L 549.44821,726.85029 L 544.59436,729.90375 L 543.87201,730.19270 L 543.14957,729.90375 L 535.42013,728.09780 L 535.49250,727.41021 L 543.83767,729.36018 z "
+                 id="path6577"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 525.84753,725.06603 L 525.79257,725.88314 L 534.35317,727.93656 L 535.29229,727.57537 L 540.05995,724.46915 L 539.98775,723.45782 L 531.60814,722.08529 L 525.84753,725.06603 z "
+                 id="path6579"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 534.34916,726.91153 L 540.04881,723.67869 L 539.95968,724.40165 L 535.10587,727.45510 L 534.38349,727.74406 L 533.66111,727.45510 L 525.93163,725.64916 L 526.00401,724.96156 L 534.34916,726.91153 z "
+                 id="path6581"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 558.59815,738.22748 L 558.54314,739.04459 L 567.10380,741.09802 L 568.04290,740.73682 L 572.81052,737.63059 L 572.73831,736.61927 L 564.35873,735.24675 L 558.59815,738.22748 z "
+                 id="path6583"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 567.09977,740.07299 L 572.79941,736.84014 L 572.71022,737.56309 L 567.85646,740.61655 L 567.13411,740.90550 L 566.41175,740.61655 L 558.68223,738.81061 L 558.75461,738.12301 L 567.09977,740.07299 z "
+                 id="path6585"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 548.80359,735.77883 L 548.74858,736.59595 L 557.30916,738.64937 L 558.24834,738.28819 L 563.01596,735.18196 L 562.94374,734.17062 L 554.56416,732.79810 L 548.80359,735.77883 z "
+                 id="path6587"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 557.30520,737.62434 L 563.00484,734.39150 L 562.91574,735.11446 L 558.06190,738.16792 L 557.33954,738.45687 L 556.61710,738.16792 L 548.88766,736.36196 L 548.96005,735.67437 L 557.30520,737.62434 z "
+                 id="path6589"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 538.70291,733.63628 L 538.64796,734.45338 L 547.20850,736.50681 L 548.14768,736.14562 L 552.91531,733.03939 L 552.84309,732.02807 L 544.46351,730.65554 L 538.70291,733.63628 z "
+                 id="path6591"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 547.20455,735.48179 L 552.90419,732.24893 L 552.81509,732.97189 L 547.96125,736.02535 L 547.23889,736.31430 L 546.51645,736.02535 L 538.78702,734.21941 L 538.85939,733.53181 L 547.20455,735.48179 z "
+                 id="path6593"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 528.60226,731.49371 L 528.54731,732.31083 L 537.10789,734.36425 L 538.04701,734.00306 L 542.81466,730.89683 L 542.74244,729.88550 L 534.36288,728.51298 L 528.60226,731.49371 z "
+                 id="path6595"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 537.10388,733.33922 L 542.80354,730.10638 L 542.71444,730.82933 L 537.86059,733.88279 L 537.13821,734.17174 L 536.41584,733.88279 L 528.68637,732.07684 L 528.75873,731.38925 L 537.10388,733.33922 z "
+                 id="path6597"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 519.11376,729.04507 L 519.05881,729.86218 L 527.61940,731.91560 L 528.55852,731.55442 L 533.32620,728.44819 L 533.25398,727.43686 L 524.87438,726.06434 L 519.11376,729.04507 z "
+                 id="path6599"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 527.61539,730.89058 L 533.31505,727.65773 L 533.22591,728.38069 L 528.37210,731.43415 L 527.64973,731.72310 L 526.92735,731.43415 L 519.19787,729.62820 L 519.27024,728.94061 L 527.61539,730.89058 z "
+                 id="path6601"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 551.86438,742.81868 L 551.80937,743.63580 L 560.37003,745.68922 L 561.30913,745.32803 L 566.07676,742.22181 L 566.00454,741.21047 L 557.62496,739.83795 L 551.86438,742.81868 z "
+                 id="path6603"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 560.36600,744.66419 L 566.06564,741.43134 L 565.97646,742.15430 L 561.12270,745.20776 L 560.40034,745.49671 L 559.67798,745.20776 L 551.94846,743.40181 L 552.02084,742.71422 L 560.36600,744.66419 z "
+                 id="path6605"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 542.06982,740.37004 L 542.01481,741.18715 L 550.57539,743.24057 L 551.51457,742.87939 L 556.28219,739.77316 L 556.20997,738.76183 L 547.83040,737.38931 L 542.06982,740.37004 z "
+                 id="path6607"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 550.57143,742.21555 L 556.27108,738.98270 L 556.18197,739.70566 L 551.32813,742.75912 L 550.60577,743.04807 L 549.88342,742.75912 L 542.15389,740.95317 L 542.22628,740.26558 L 550.57143,742.21555 z "
+                 id="path6609"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 531.96915,738.22748 L 531.91419,739.04459 L 540.47473,741.09802 L 541.41391,740.73682 L 546.18154,737.63059 L 546.10932,736.61927 L 537.72976,735.24675 L 531.96915,738.22748 z "
+                 id="path6611"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 540.47078,740.07299 L 546.17042,736.84014 L 546.08132,737.56309 L 541.22748,740.61655 L 540.50512,740.90550 L 539.78273,740.61655 L 532.05325,738.81061 L 532.12562,738.12301 L 540.47078,740.07299 z "
+                 id="path6613"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 521.86850,736.08492 L 521.81354,736.90203 L 530.37412,738.95545 L 531.31325,738.59426 L 536.08093,735.48804 L 536.00871,734.47670 L 527.62911,733.10418 L 521.86850,736.08492 z "
+                 id="path6615"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 530.37011,737.93042 L 536.06978,734.69758 L 535.98064,735.42054 L 531.12683,738.47400 L 530.40445,738.76295 L 529.68208,738.47400 L 521.95260,736.66804 L 522.02497,735.98045 L 530.37011,737.93042 z "
+                 id="path6617"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 512.38000,733.63628 L 512.32504,734.45338 L 520.88563,736.50681 L 521.82475,736.14562 L 526.59244,733.03939 L 526.52022,732.02807 L 518.14061,730.65554 L 512.38000,733.63628 z "
+                 id="path6619"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 520.88162,735.48179 L 526.58129,732.24893 L 526.49215,732.97189 L 521.63833,736.02535 L 520.91596,736.31430 L 520.19359,736.02535 L 512.46411,734.21941 L 512.53648,733.53181 L 520.88162,735.48179 z "
+                 id="path6621"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 497.14518,734.85186 L 497.09022,735.66897 L 505.65081,737.72240 L 506.58993,737.36120 L 511.35759,734.25497 L 511.28537,733.24365 L 502.90579,731.87113 L 497.14518,734.85186 z "
+                 id="path6623"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 505.64680,736.69737 L 511.34644,733.46451 L 511.25730,734.18747 L 506.40351,737.24093 L 505.68113,737.52988 L 504.95876,737.24093 L 497.22928,735.43499 L 497.30166,734.74740 L 505.64680,736.69737 z "
+                 id="path6625"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 487.35061,732.40321 L 487.29565,733.22033 L 495.85624,735.27375 L 496.79536,734.91256 L 501.56305,731.80634 L 501.49082,730.79500 L 493.11122,729.42248 L 487.35061,732.40321 z "
+                 id="path6627"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 495.85223,734.24872 L 501.55189,731.01588 L 501.46275,731.73884 L 496.60894,734.79229 L 495.88656,735.08125 L 495.16419,734.79229 L 487.43471,732.98634 L 487.50708,732.29875 L 495.85223,734.24872 z "
+                 id="path6629"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 477.24995,730.26065 L 477.19499,731.07776 L 485.75559,733.13119 L 486.69471,732.77000 L 491.46239,729.66377 L 491.39017,728.65245 L 483.01056,727.27992 L 477.24995,730.26065 z "
+                 id="path6631"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 485.75158,732.10617 L 491.45124,728.87331 L 491.36210,729.59627 L 486.50828,732.64973 L 485.78591,732.93868 L 485.06353,732.64973 L 477.33405,730.84379 L 477.40643,730.15619 L 485.75158,732.10617 z "
+                 id="path6633"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 467.14930,728.11809 L 467.09434,728.93520 L 475.65494,730.98863 L 476.59406,730.62744 L 481.36174,727.52121 L 481.28951,726.50988 L 472.90991,725.13736 L 467.14930,728.11809 z "
+                 id="path6635"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 475.65093,729.96360 L 481.35058,726.73075 L 481.26145,727.45371 L 476.40763,730.50717 L 475.68526,730.79612 L 474.96288,730.50717 L 467.23340,728.70122 L 467.30578,728.01363 L 475.65093,729.96360 z "
+                 id="path6637"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 457.66081,725.66945 L 457.60585,726.48656 L 466.16644,728.53998 L 467.10557,728.17880 L 471.87325,725.07257 L 471.80103,724.06124 L 463.42142,722.68871 L 457.66081,725.66945 z "
+                 id="path6639"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 466.16243,727.51495 L 471.86209,724.28211 L 471.77296,725.00507 L 466.91915,728.05853 L 466.19676,728.34748 L 465.47439,728.05853 L 457.74491,726.25258 L 457.81729,725.56499 L 466.16243,727.51495 z "
+                 id="path6641"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 490.41141,738.83090 L 490.35645,739.64801 L 498.91705,741.70144 L 499.85618,741.34024 L 504.62380,738.23402 L 504.55158,737.22269 L 496.17203,735.85017 L 490.41141,738.83090 z "
+                 id="path6643"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 498.91303,740.67641 L 504.61265,737.44356 L 504.52351,738.16652 L 499.66976,741.21998 L 498.94737,741.50893 L 498.22499,741.21998 L 490.49552,739.41403 L 490.56789,738.72643 L 498.91303,740.67641 z "
+                 id="path6645"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 480.61684,736.38226 L 480.56189,737.19937 L 489.12247,739.25279 L 490.06159,738.89161 L 494.82928,735.78538 L 494.75706,734.77405 L 486.37746,733.40153 L 480.61684,736.38226 z "
+                 id="path6647"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 489.11846,738.22777 L 494.81813,734.99492 L 494.72899,735.71788 L 489.87518,738.77134 L 489.15280,739.06029 L 488.43042,738.77134 L 480.70095,736.96539 L 480.77331,736.27780 L 489.11846,738.22777 z "
+                 id="path6649"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 470.51618,734.23970 L 470.46123,735.05681 L 479.02182,737.11023 L 479.96094,736.74904 L 484.72863,733.64281 L 484.65641,732.63149 L 476.27680,731.25896 L 470.51618,734.23970 z "
+                 id="path6651"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 479.01781,736.08521 L 484.71748,732.85235 L 484.62833,733.57531 L 479.77452,736.62877 L 479.05214,736.91772 L 478.32977,736.62877 L 470.60029,734.82283 L 470.67266,734.13523 L 479.01781,736.08521 z "
+                 id="path6653"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 460.41553,732.09713 L 460.36058,732.91425 L 468.92117,734.96767 L 469.86029,734.60648 L 474.62797,731.50026 L 474.55575,730.48892 L 466.17615,729.11640 L 460.41553,732.09713 z "
+                 id="path6655"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 468.91716,733.94264 L 474.61682,730.70980 L 474.52768,731.43276 L 469.67387,734.48622 L 468.95149,734.77517 L 468.22911,734.48622 L 460.49964,732.68026 L 460.57201,731.99267 L 468.91716,733.94264 z "
+                 id="path6657"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 450.92704,729.64850 L 450.87209,730.46560 L 459.43267,732.51903 L 460.37180,732.15784 L 465.13948,729.05161 L 465.06726,728.04029 L 456.68766,726.66776 L 450.92704,729.64850 z "
+                 id="path6659"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 459.42866,731.49400 L 465.12833,728.26115 L 465.03919,728.98411 L 460.18538,732.03757 L 459.46300,732.32652 L 458.74062,732.03757 L 451.01115,730.23163 L 451.08352,729.54403 L 459.42866,731.49400 z "
+                 id="path6661"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 483.67765,743.42210 L 483.62269,744.23922 L 492.18328,746.29264 L 493.12242,745.93146 L 497.89004,742.82523 L 497.81781,741.81389 L 489.43826,740.44137 L 483.67765,743.42210 z "
+                 id="path6663"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 492.17927,745.26761 L 497.87888,742.03476 L 497.78975,742.75773 L 492.93600,745.81119 L 492.21361,746.10013 L 491.49123,745.81119 L 483.76175,744.00523 L 483.83412,743.31764 L 492.17927,745.26761 z "
+                 id="path6665"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 473.88308,740.97347 L 473.82812,741.79057 L 482.38870,743.84400 L 483.32783,743.48281 L 488.09551,740.37658 L 488.02329,739.36525 L 479.64369,737.99273 L 473.88308,740.97347 z "
+                 id="path6667"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 482.38469,742.81897 L 488.08436,739.58612 L 487.99522,740.30908 L 483.14141,743.36254 L 482.41903,743.65149 L 481.69666,743.36254 L 473.96718,741.55659 L 474.03955,740.86900 L 482.38469,742.81897 z "
+                 id="path6669"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 463.78242,738.83090 L 463.72747,739.64801 L 472.28805,741.70144 L 473.22717,741.34024 L 477.99486,738.23402 L 477.92264,737.22269 L 469.54304,735.85017 L 463.78242,738.83090 z "
+                 id="path6671"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 472.28404,740.67641 L 477.98371,737.44356 L 477.89457,738.16652 L 473.04075,741.21998 L 472.31838,741.50893 L 471.59601,741.21998 L 463.86653,739.41403 L 463.93889,738.72643 L 472.28404,740.67641 z "
+                 id="path6673"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 453.68177,736.68834 L 453.62681,737.50545 L 462.18740,739.55887 L 463.12652,739.19769 L 467.89420,736.09146 L 467.82199,735.08013 L 459.44238,733.70761 L 453.68177,736.68834 z "
+                 id="path6675"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 462.18339,738.53385 L 467.88305,735.30100 L 467.79391,736.02396 L 462.94010,739.07742 L 462.21773,739.36637 L 461.49535,739.07742 L 453.76587,737.27147 L 453.83824,736.58388 L 462.18339,738.53385 z "
+                 id="path6677"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 444.19328,734.23970 L 444.13832,735.05681 L 452.69891,737.11023 L 453.63803,736.74904 L 458.40571,733.64281 L 458.33349,732.63149 L 449.95389,731.25896 L 444.19328,734.23970 z "
+                 id="path6679"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 452.69490,736.08521 L 458.39456,732.85235 L 458.30543,733.57531 L 453.45161,736.62877 L 452.72924,736.91772 L 452.00686,736.62877 L 444.27738,734.82283 L 440.79696,733.43047 L 452.69490,736.08521 z "
+                 id="path6681"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 545.41900,746.92030 L 545.36399,747.73741 L 553.92465,749.79084 L 554.86375,749.42964 L 559.63137,746.32342 L 559.55915,745.31209 L 551.17957,743.93957 L 545.41900,746.92030 z "
+                 id="path6683"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 553.92061,748.76581 L 559.62025,745.53296 L 559.53107,746.25592 L 554.67731,749.30937 L 553.95495,749.59833 L 553.23260,749.30937 L 545.50307,747.50343 L 545.57546,746.81584 L 553.92061,748.76581 z "
+                 id="path6685"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 535.62442,744.47165 L 535.56941,745.28877 L 544.13000,747.34219 L 545.06918,746.98101 L 549.83681,743.87478 L 549.76459,742.86345 L 541.38501,741.49093 L 535.62442,744.47165 z "
+                 id="path6687"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 544.12605,746.31717 L 549.82569,743.08432 L 549.73659,743.80728 L 544.88275,746.86074 L 544.16039,747.14969 L 543.43795,746.86074 L 535.70849,745.05479 L 535.78088,744.36720 L 544.12605,746.31717 z "
+                 id="path6689"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 525.52376,742.32910 L 525.46875,743.14620 L 534.02933,745.19963 L 534.96851,744.83844 L 539.73614,741.73221 L 539.66392,740.72089 L 531.28434,739.34836 L 525.52376,742.32910 z "
+                 id="path6691"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 534.02538,744.17461 L 539.72502,740.94175 L 539.63592,741.66471 L 534.78208,744.71817 L 534.05972,745.00712 L 533.33728,744.71817 L 525.60784,742.91223 L 525.68022,742.22463 L 534.02538,744.17461 z "
+                 id="path6693"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 515.42309,740.18653 L 515.36813,741.00365 L 523.92868,743.05707 L 524.86786,742.69588 L 529.63549,739.58966 L 529.56327,738.57832 L 521.18369,737.20580 L 515.42309,740.18653 z "
+                 id="path6695"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 523.92473,742.03204 L 529.62437,738.79920 L 529.53527,739.52216 L 524.68142,742.57561 L 523.95907,742.86457 L 523.23663,742.57561 L 515.50719,740.76966 L 515.57956,740.08207 L 523.92473,742.03204 z "
+                 id="path6697"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 505.93459,737.73789 L 505.87963,738.55500 L 514.44023,740.60843 L 515.37935,740.24724 L 520.14701,737.14101 L 520.07481,736.12969 L 511.69520,734.75716 L 505.93459,737.73789 z "
+                 id="path6699"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 514.43622,739.58340 L 520.13588,736.35055 L 520.04674,737.07351 L 515.19293,740.12697 L 514.47055,740.41592 L 513.74818,740.12697 L 506.01870,738.32103 L 506.09107,737.63343 L 514.43622,739.58340 z "
+                 id="path6701"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 538.68521,750.89934 L 538.63020,751.71645 L 547.19088,753.76988 L 548.12998,753.40869 L 552.89760,750.30246 L 552.82538,749.29113 L 544.44581,747.91861 L 538.68521,750.89934 z "
+                 id="path6703"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 547.18685,752.74485 L 552.88649,749.51200 L 552.79730,750.23496 L 547.94354,753.28842 L 547.22118,753.57737 L 546.49883,753.28842 L 538.76929,751.48247 L 538.84167,750.79488 L 547.18685,752.74485 z "
+                 id="path6705"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 528.89065,748.45070 L 528.83564,749.26781 L 537.39622,751.32124 L 538.33540,750.96005 L 543.10304,747.85382 L 543.03082,746.84249 L 534.65123,745.46997 L 528.89065,748.45070 z "
+                 id="path6707"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 537.39226,750.29621 L 543.09192,747.06336 L 543.00282,747.78632 L 538.14896,750.83978 L 537.42660,751.12873 L 536.70416,750.83978 L 528.97472,749.03383 L 529.04711,748.34624 L 537.39226,750.29621 z "
+                 id="path6709"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 518.78997,746.30814 L 518.73502,747.12525 L 527.29556,749.17867 L 528.23474,748.81748 L 533.00237,745.71126 L 532.93015,744.69993 L 524.55057,743.32740 L 518.78997,746.30814 z "
+                 id="path6711"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 527.29161,748.15365 L 532.99125,744.92080 L 532.90215,745.64376 L 528.04831,748.69721 L 527.32595,748.98617 L 526.60351,748.69721 L 518.87408,746.89127 L 518.94645,746.20367 L 527.29161,748.15365 z "
+                 id="path6713"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 508.68932,744.16557 L 508.63437,744.98269 L 517.19495,747.03611 L 518.13408,746.67493 L 522.90172,743.56870 L 522.82950,742.55737 L 514.44994,741.18485 L 508.68932,744.16557 z "
+                 id="path6715"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 517.19094,746.01109 L 522.89060,742.77824 L 522.80150,743.50120 L 517.94766,746.55466 L 517.22527,746.84361 L 516.50290,746.55466 L 508.77343,744.74871 L 508.84580,744.06112 L 517.19094,746.01109 z "
+                 id="path6717"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 499.20082,741.71694 L 499.14587,742.53404 L 507.70646,744.58747 L 508.64558,744.22628 L 513.41327,741.12005 L 513.34105,740.10873 L 504.96144,738.73620 L 499.20082,741.71694 z "
+                 id="path6719"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 507.70245,743.56244 L 513.40212,740.32959 L 513.31297,741.05255 L 508.45916,744.10601 L 507.73679,744.39496 L 507.01441,744.10601 L 499.28494,742.30007 L 499.35730,741.61247 L 507.70245,743.56244 z "
+                 id="path6721"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 531.95144,755.49055 L 531.89644,756.30766 L 540.45711,758.36108 L 541.39621,757.99990 L 546.16384,754.89367 L 546.09162,753.88234 L 537.71202,752.50982 L 531.95144,755.49055 z "
+                 id="path6723"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 540.45308,757.33606 L 546.15272,754.10320 L 546.06354,754.82617 L 541.20977,757.87963 L 540.48742,758.16857 L 539.76504,757.87963 L 532.03552,756.07368 L 532.10790,755.38609 L 540.45308,757.33606 z "
+                 id="path6725"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 522.15688,753.04191 L 522.10187,753.85902 L 530.66245,755.91244 L 531.60163,755.55125 L 536.36925,752.44502 L 536.29703,751.43369 L 527.91746,750.06117 L 522.15688,753.04191 z "
+                 id="path6727"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 530.65850,754.88741 L 536.35814,751.65457 L 536.26904,752.37752 L 531.41519,755.43098 L 530.69284,755.71993 L 529.97048,755.43098 L 522.24096,753.62503 L 522.31334,752.93744 L 530.65850,754.88741 z "
+                 id="path6729"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 512.05621,750.89934 L 512.00125,751.71645 L 520.56180,753.76988 L 521.50098,753.40869 L 526.26860,750.30246 L 526.19638,749.29113 L 517.81682,747.91861 L 512.05621,750.89934 z "
+                 id="path6731"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 520.55784,752.74485 L 526.25748,749.51200 L 526.16838,750.23496 L 521.31454,753.28842 L 520.59218,753.57737 L 519.86979,753.28842 L 512.14031,751.48247 L 512.21268,750.79488 L 520.55784,752.74485 z "
+                 id="path6733"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 501.95556,748.75679 L 501.90060,749.57389 L 510.46119,751.62732 L 511.40031,751.26613 L 516.16799,748.15990 L 516.09577,747.14857 L 507.71617,745.77605 L 501.95556,748.75679 z "
+                 id="path6735"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 510.45718,750.60229 L 516.15684,747.36944 L 516.06770,748.09240 L 511.21389,751.14586 L 510.49151,751.43481 L 509.76914,751.14586 L 502.03966,749.33991 L 502.11203,748.65232 L 510.45718,750.60229 z "
+                 id="path6737"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 492.46706,746.30814 L 492.41211,747.12525 L 500.97269,749.17867 L 501.91181,748.81748 L 506.67950,745.71126 L 506.60728,744.69993 L 498.22768,743.32740 L 492.46706,746.30814 z "
+                 id="path6739"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 500.96868,748.15365 L 506.66835,744.92080 L 506.57921,745.64376 L 501.72540,748.69721 L 501.00302,748.98617 L 500.28065,748.69721 L 492.55117,746.89127 L 492.62354,746.20367 L 500.96868,748.15365 z "
+                 id="path6741"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            </g>
+            <g
+               id="g6743"
+               transform="matrix(1.000000,0.000000,0.000000,1.076560,-146.5725,-175.7068)">
+              <path
+                 d="M 571.83790,609.68864 L 571.77547,610.40852 L 581.49990,612.21760 L 582.56670,611.89939 L 587.98254,609.16279 L 587.90051,608.27180 L 578.38169,607.06260 L 571.83790,609.68864 z "
+                 id="path6745"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 581.49535,611.31454 L 587.96988,608.46639 L 587.86862,609.10332 L 582.35494,611.79343 L 581.53435,612.04799 L 580.71377,611.79343 L 571.93343,610.20238 L 572.01564,609.59661 L 581.49535,611.31454 z "
+                 id="path6747"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 560.71171,607.53138 L 560.64928,608.25125 L 570.37372,610.06033 L 571.44052,609.74212 L 576.85639,607.00552 L 576.77435,606.11454 L 567.25550,604.90534 L 560.71171,607.53138 z "
+                 id="path6749"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 570.36917,609.15728 L 576.84372,606.30913 L 576.74246,606.94606 L 571.22874,609.63617 L 570.40817,609.89073 L 569.58759,609.63617 L 560.80725,608.04512 L 560.88946,607.43935 L 570.36917,609.15728 z "
+                 id="path6751"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 549.23783,605.64377 L 549.17540,606.36365 L 558.89985,608.17272 L 559.96665,607.85451 L 565.38251,605.11792 L 565.30046,604.22693 L 555.78162,603.01773 L 549.23783,605.64377 z "
+                 id="path6753"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 558.89529,607.26968 L 565.36983,604.42152 L 565.26859,605.05845 L 559.75487,607.74855 L 558.93429,608.00313 L 558.11370,607.74855 L 549.33337,606.15751 L 549.41559,605.55173 L 558.89529,607.26968 z "
+                 id="path6755"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 537.76396,603.75616 L 537.70153,604.47605 L 547.42596,606.28512 L 548.49277,605.96692 L 553.90864,603.23032 L 553.82659,602.33933 L 544.30775,601.13013 L 537.76396,603.75616 z "
+                 id="path6757"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 547.42141,605.38207 L 553.89596,602.53392 L 553.79471,603.17085 L 548.28100,605.86096 L 547.46041,606.11552 L 546.63983,605.86096 L 537.85949,604.26991 L 537.94171,603.66414 L 547.42141,605.38207 z "
+                 id="path6759"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 526.98547,601.59891 L 526.92304,602.31878 L 536.64748,604.12786 L 537.71427,603.80965 L 543.13015,601.07305 L 543.04811,600.18207 L 533.52926,598.97286 L 526.98547,601.59891 z "
+                 id="path6761"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 536.64292,603.22480 L 543.11747,600.37665 L 543.01621,601.01358 L 537.50251,603.70369 L 536.68192,603.95825 L 535.86134,603.70369 L 527.08101,602.11265 L 527.16321,601.50687 L 536.64292,603.22480 z "
+                 id="path6763"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 564.18865,613.19420 L 564.12621,613.91407 L 573.85065,615.72316 L 574.91747,615.40494 L 580.33327,612.66834 L 580.25123,611.77736 L 570.73245,610.56816 L 564.18865,613.19420 z "
+                 id="path6765"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 573.84610,614.82010 L 580.32060,611.97194 L 580.21934,612.60887 L 574.70571,615.29898 L 573.88509,615.55354 L 573.06451,615.29898 L 564.28419,613.70794 L 564.36640,613.10216 L 573.84610,614.82010 z "
+                 id="path6767"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 553.06245,611.03693 L 553.00003,611.75681 L 562.72447,613.56588 L 563.79127,613.24767 L 569.20714,610.51108 L 569.12511,609.62009 L 559.60625,608.41089 L 553.06245,611.03693 z "
+                 id="path6769"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 562.71991,612.66283 L 569.19448,609.81468 L 569.09321,610.45161 L 563.57950,613.14172 L 562.75892,613.39628 L 561.93833,613.14172 L 553.15801,611.55067 L 553.24021,610.94490 L 562.71991,612.66283 z "
+                 id="path6771"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 541.58858,609.14932 L 541.52616,609.86920 L 551.25060,611.67827 L 552.31739,611.36007 L 557.73326,608.62347 L 557.65122,607.73248 L 548.13238,606.52329 L 541.58858,609.14932 z "
+                 id="path6773"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 551.24604,610.77523 L 557.72059,607.92707 L 557.61933,608.56400 L 552.10563,611.25411 L 551.28504,611.50868 L 550.46445,611.25411 L 541.68413,609.66306 L 541.76633,609.05729 L 551.24604,610.77523 z "
+                 id="path6775"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 530.11471,607.26172 L 530.05229,607.98160 L 539.77672,609.79068 L 540.84352,609.47247 L 546.25938,606.73587 L 546.17735,605.84488 L 536.65851,604.63568 L 530.11471,607.26172 z "
+                 id="path6777"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 539.77217,608.88762 L 546.24672,606.03947 L 546.14546,606.67640 L 540.63176,609.36651 L 539.81116,609.62107 L 538.99057,609.36651 L 530.21025,607.77546 L 530.29246,607.16969 L 539.77217,608.88762 z "
+                 id="path6779"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 519.33622,605.10446 L 519.27380,605.82434 L 528.99822,607.63341 L 530.06503,607.31520 L 535.48090,604.57860 L 535.39886,603.68762 L 525.88002,602.47841 L 519.33622,605.10446 z "
+                 id="path6781"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 528.99367,606.73035 L 535.46823,603.88221 L 535.36697,604.51914 L 529.85327,607.20925 L 529.03268,607.46381 L 528.21209,607.20925 L 519.43176,605.61820 L 519.51397,605.01242 L 528.99367,606.73035 z "
+                 id="path6783"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 556.53941,617.23906 L 556.47697,617.95894 L 566.20141,619.76802 L 567.26822,619.44981 L 572.68403,616.71321 L 572.60198,615.82222 L 563.08319,614.61303 L 556.53941,617.23906 z "
+                 id="path6785"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 566.19684,618.86497 L 572.67135,616.01681 L 572.57010,616.65374 L 567.05645,619.34385 L 566.23585,619.59841 L 565.41527,619.34385 L 556.63494,617.75280 L 556.71715,617.14703 L 566.19684,618.86497 z "
+                 id="path6787"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 545.41321,615.08180 L 545.35079,615.80168 L 555.07522,617.61075 L 556.14201,617.29255 L 561.55789,614.55595 L 561.47585,613.66495 L 551.95701,612.45576 L 545.41321,615.08180 z "
+                 id="path6789"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 555.07066,616.70769 L 561.54522,613.85955 L 561.44397,614.49648 L 555.93026,617.18659 L 555.10967,617.44116 L 554.28909,617.18659 L 545.50876,615.59553 L 545.59096,614.98976 L 555.07066,616.70769 z "
+                 id="path6791"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 533.93934,613.19420 L 533.87691,613.91407 L 543.60134,615.72316 L 544.66814,615.40494 L 550.08402,612.66834 L 550.00198,611.77736 L 540.48313,610.56816 L 533.93934,613.19420 z "
+                 id="path6793"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 543.59679,614.82010 L 550.07135,611.97194 L 549.97008,612.60887 L 544.45638,615.29898 L 543.63580,615.55354 L 542.81521,615.29898 L 534.03487,613.70794 L 534.11708,613.10216 L 543.59679,614.82010 z "
+                 id="path6795"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 522.46547,611.30659 L 522.40303,612.02647 L 532.12747,613.83554 L 533.19427,613.51733 L 538.61013,610.78073 L 538.52809,609.88975 L 529.00925,608.68055 L 522.46547,611.30659 z "
+                 id="path6797"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 532.12291,612.93249 L 538.59747,610.08434 L 538.49621,610.72126 L 532.98250,613.41137 L 532.16192,613.66594 L 531.34133,613.41137 L 522.56100,611.82032 L 522.64321,611.21456 L 532.12291,612.93249 z "
+                 id="path6799"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 511.68698,609.14932 L 511.62455,609.86920 L 521.34897,611.67827 L 522.41578,611.36007 L 527.83164,608.62347 L 527.74961,607.73248 L 518.23077,606.52329 L 511.68698,609.14932 z "
+                 id="path6801"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 521.34441,610.77523 L 527.81898,607.92707 L 527.71773,608.56400 L 522.20401,611.25411 L 521.38342,611.50868 L 520.56284,611.25411 L 511.78251,609.66306 L 511.86473,609.05729 L 521.34441,610.77523 z "
+                 id="path6803"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 604.07466,616.27612 L 604.01217,616.99599 L 613.73660,618.80507 L 614.80346,618.48686 L 620.21927,615.75026 L 620.13723,614.85928 L 610.61842,613.65007 L 604.07466,616.27612 z "
+                 id="path6805"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 613.73211,617.90202 L 620.20664,615.05387 L 620.10543,615.69080 L 614.59169,618.38091 L 613.77112,618.63547 L 612.95046,618.38091 L 604.17017,616.78986 L 604.25239,616.18409 L 613.73211,617.90202 z "
+                 id="path6807"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 592.60075,614.38851 L 592.53833,615.10839 L 602.26272,616.91747 L 603.32959,616.59926 L 608.74539,613.86266 L 608.66335,612.97167 L 599.14454,611.76248 L 592.60075,614.38851 z "
+                 id="path6809"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 602.25824,616.01442 L 608.73277,613.16626 L 608.63155,613.80319 L 603.11780,616.49330 L 602.29725,616.74787 L 601.47659,616.49330 L 592.69630,614.90225 L 592.77851,614.29648 L 602.25824,616.01442 z "
+                 id="path6811"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 581.82227,612.23125 L 581.75983,612.95113 L 591.48428,614.76020 L 592.55108,614.44199 L 597.96692,611.70540 L 597.88490,610.81441 L 588.36605,609.60521 L 581.82227,612.23125 z "
+                 id="path6813"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 591.47973,613.85714 L 597.95427,611.00900 L 597.85302,611.64593 L 592.33931,614.33603 L 591.51872,614.59061 L 590.69813,614.33603 L 581.91780,612.74499 L 582.00002,612.13921 L 591.47973,613.85714 z "
+                 id="path6815"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 596.42539,619.78168 L 596.36296,620.50154 L 606.08734,622.31062 L 607.15421,621.99241 L 612.57002,619.25581 L 612.48798,618.36484 L 602.96916,617.15563 L 596.42539,619.78168 z "
+                 id="path6817"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 606.08286,621.40758 L 612.55739,618.55942 L 612.45617,619.19635 L 606.94243,621.88646 L 606.12187,622.14102 L 605.30121,621.88646 L 596.52093,620.29542 L 596.60314,619.68964 L 606.08286,621.40758 z "
+                 id="path6819"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 584.95151,617.89406 L 584.88909,618.61395 L 594.61352,620.42302 L 595.68031,620.10481 L 601.09614,617.36821 L 601.01411,616.47722 L 591.49531,615.26803 L 584.95151,617.89406 z "
+                 id="path6821"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 594.60896,619.51997 L 601.08351,616.67182 L 600.98230,617.30874 L 595.46855,619.99885 L 594.64796,620.25342 L 593.82738,619.99885 L 585.04706,618.40780 L 585.12925,617.80203 L 594.60896,619.51997 z "
+                 id="path6823"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 574.17301,615.73680 L 574.11059,616.45668 L 583.83503,618.26575 L 584.90183,617.94755 L 590.31769,615.21095 L 590.23565,614.31996 L 580.71681,613.11077 L 574.17301,615.73680 z "
+                 id="path6825"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 583.83047,617.36270 L 590.30502,614.51455 L 590.20377,615.15148 L 584.69006,617.84159 L 583.86948,618.09616 L 583.04889,617.84159 L 574.26856,616.25054 L 574.35077,615.64477 L 583.83047,617.36270 z "
+                 id="path6827"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 588.77614,623.82654 L 588.71371,624.54642 L 598.43809,626.35550 L 599.50496,626.03728 L 604.92077,623.30068 L 604.83873,622.40970 L 595.31993,621.20051 L 588.77614,623.82654 z "
+                 id="path6829"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 598.43360,625.45244 L 604.90813,622.60429 L 604.80692,623.24121 L 599.29318,625.93132 L 598.47261,626.18589 L 597.65201,625.93132 L 588.87168,624.34028 L 588.95389,623.73450 L 598.43360,625.45244 z "
+                 id="path6831"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 577.30227,621.93894 L 577.23984,622.65882 L 586.96426,624.46789 L 588.03107,624.14968 L 593.44694,621.41308 L 593.36490,620.52209 L 583.84606,619.31289 L 577.30227,621.93894 z "
+                 id="path6833"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 586.95971,623.56483 L 593.43427,620.71669 L 593.33301,621.35362 L 587.81931,624.04373 L 586.99872,624.29829 L 586.17814,624.04373 L 577.39780,622.45267 L 577.48001,621.84690 L 586.95971,623.56483 z "
+                 id="path6835"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 566.52377,619.78168 L 566.46134,620.50154 L 576.18577,622.31062 L 577.25257,621.99241 L 582.66845,619.25581 L 582.58641,618.36484 L 573.06756,617.15563 L 566.52377,619.78168 z "
+                 id="path6837"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 576.18122,621.40758 L 582.65578,618.55942 L 582.55452,619.19635 L 577.04081,621.88646 L 576.22023,622.14102 L 575.39965,621.88646 L 566.61932,620.29542 L 566.70152,619.68964 L 576.18122,621.40758 z "
+                 id="path6839"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 549.21772,620.85261 L 549.15528,621.57248 L 558.87972,623.38156 L 559.94652,623.06335 L 565.36236,620.32674 L 565.28032,619.43577 L 555.76150,618.22657 L 549.21772,620.85261 z "
+                 id="path6841"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 558.87517,622.47851 L 565.34969,619.63035 L 565.24843,620.26728 L 559.73475,622.95739 L 558.91416,623.21195 L 558.09358,622.95739 L 549.31325,621.36635 L 549.39547,620.76058 L 558.87517,622.47851 z "
+                 id="path6843"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 538.09153,618.69534 L 538.02910,619.41522 L 547.75354,621.22429 L 548.82034,620.90608 L 554.23621,618.16949 L 554.15416,617.27850 L 544.63532,616.06930 L 538.09153,618.69534 z "
+                 id="path6845"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 547.74898,620.32124 L 554.22354,617.47309 L 554.12228,618.11002 L 548.60857,620.80013 L 547.78798,621.05470 L 546.96740,620.80013 L 538.18707,619.20908 L 538.26928,618.60331 L 547.74898,620.32124 z "
+                 id="path6847"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 526.61765,616.80773 L 526.55522,617.52761 L 536.27967,619.33669 L 537.34646,619.01848 L 542.76233,616.28188 L 542.68029,615.39090 L 533.16144,614.18170 L 526.61765,616.80773 z "
+                 id="path6849"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 536.27511,618.43364 L 542.74966,615.58548 L 542.64840,616.22241 L 537.13469,618.91252 L 536.31411,619.16709 L 535.49352,618.91252 L 526.71318,617.32148 L 526.79540,616.71570 L 536.27511,618.43364 z "
+                 id="path6851"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 515.14378,614.92013 L 515.08134,615.64001 L 524.80579,617.44909 L 525.87259,617.13088 L 531.28845,614.39428 L 531.20640,613.50329 L 521.68756,612.29409 L 515.14378,614.92013 z "
+                 id="path6853"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 524.80124,616.54603 L 531.27578,613.69788 L 531.17453,614.33481 L 525.66081,617.02492 L 524.84023,617.27948 L 524.01964,617.02492 L 515.23931,615.43387 L 515.32153,614.82810 L 524.80124,616.54603 z "
+                 id="path6855"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 504.36529,612.76287 L 504.30286,613.48274 L 514.02729,615.29182 L 515.09410,614.97361 L 520.50997,612.23701 L 520.42793,611.34603 L 510.90908,610.13682 L 504.36529,612.76287 z "
+                 id="path6857"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 514.02274,614.38876 L 520.49729,611.54062 L 520.39604,612.17755 L 514.88234,614.86766 L 514.06173,615.12222 L 513.24116,614.86766 L 504.46082,613.27661 L 504.54304,612.67084 L 514.02274,614.38876 z "
+                 id="path6859"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 541.56846,624.35816 L 541.50603,625.07803 L 551.23048,626.88711 L 552.29729,626.56890 L 557.71308,623.83230 L 557.63105,622.94132 L 548.11226,621.73212 L 541.56846,624.35816 z "
+                 id="path6861"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 551.22591,625.98406 L 557.70042,623.13591 L 557.59916,623.77284 L 552.08552,626.46295 L 551.26492,626.71751 L 550.44433,626.46295 L 541.66401,624.87190 L 541.74622,624.26612 L 551.22591,625.98406 z "
+                 id="path6863"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 530.44228,622.20090 L 530.37986,622.92077 L 540.10429,624.72984 L 541.17108,624.41164 L 546.58696,621.67504 L 546.50492,620.78406 L 536.98608,619.57486 L 530.44228,622.20090 z "
+                 id="path6865"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 540.09973,623.82680 L 546.57429,620.97864 L 546.47304,621.61557 L 540.95933,624.30568 L 540.13874,624.56025 L 539.31815,624.30568 L 530.53783,622.71464 L 530.62002,622.10887 L 540.09973,623.82680 z "
+                 id="path6867"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 518.96840,620.31329 L 518.90598,621.03317 L 528.63041,622.84224 L 529.69721,622.52403 L 535.11309,619.78743 L 535.03105,618.89645 L 525.51220,617.68725 L 518.96840,620.31329 z "
+                 id="path6869"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 528.62586,621.93919 L 535.10042,619.09103 L 534.99915,619.72796 L 529.48545,622.41807 L 528.66485,622.67264 L 527.84428,622.41807 L 519.06394,620.82703 L 519.14615,620.22125 L 528.62586,621.93919 z "
+                 id="path6871"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 507.49452,618.42568 L 507.43210,619.14556 L 517.15654,620.95464 L 518.22334,620.63643 L 523.63920,617.89983 L 523.55716,617.00884 L 514.03832,615.79964 L 507.49452,618.42568 z "
+                 id="path6873"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 517.15198,620.05158 L 523.62654,617.20344 L 523.52528,617.84037 L 518.01157,620.53048 L 517.19098,620.78504 L 516.37039,620.53048 L 507.59007,618.93942 L 507.67228,618.33365 L 517.15198,620.05158 z "
+                 id="path6875"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 496.71603,616.26843 L 496.65361,616.98829 L 506.37804,618.79737 L 507.44485,618.47916 L 512.86071,615.74256 L 512.77867,614.85159 L 503.25983,613.64238 L 496.71603,616.26843 z "
+                 id="path6877"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 506.37348,617.89432 L 512.84805,615.04617 L 512.74679,615.68310 L 507.23308,618.37321 L 506.41249,618.62777 L 505.59190,618.37321 L 496.81158,616.78217 L 496.89379,616.17639 L 506.37348,617.89432 z "
+                 id="path6879"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 533.91922,628.40302 L 533.85679,629.12291 L 543.58123,630.93198 L 544.64805,630.61378 L 550.06384,627.87718 L 549.98179,626.98618 L 540.46301,625.77699 L 533.91922,628.40302 z "
+                 id="path6881"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 543.57667,630.02892 L 550.05117,627.18077 L 549.94992,627.81771 L 544.43628,630.50782 L 543.61568,630.76238 L 542.79509,630.50782 L 534.01475,628.91676 L 534.09696,628.31099 L 543.57667,630.02892 z "
+                 id="path6883"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 522.79304,626.24577 L 522.73061,626.96564 L 532.45503,628.77472 L 533.52184,628.45651 L 538.93771,625.71991 L 538.85567,624.82892 L 529.33683,623.61973 L 522.79304,626.24577 z "
+                 id="path6885"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 532.45048,627.87166 L 538.92504,625.02351 L 538.82378,625.66044 L 533.31008,628.35055 L 532.48949,628.60512 L 531.66891,628.35055 L 522.88857,626.75950 L 522.97078,626.15373 L 532.45048,627.87166 z "
+                 id="path6887"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 511.31916,624.35816 L 511.25673,625.07803 L 520.98116,626.88711 L 522.04796,626.56890 L 527.46383,623.83230 L 527.38179,622.94132 L 517.86295,621.73212 L 511.31916,624.35816 z "
+                 id="path6889"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 520.97660,625.98406 L 527.45117,623.13591 L 527.34991,623.77284 L 521.83619,626.46295 L 521.01561,626.71751 L 520.19503,626.46295 L 511.41470,624.87190 L 511.49690,624.26612 L 520.97660,625.98406 z "
+                 id="path6891"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 499.84528,622.47055 L 499.78285,623.19043 L 509.50729,624.99950 L 510.57408,624.68130 L 515.98995,621.94470 L 515.90792,621.05371 L 506.38907,619.84452 L 499.84528,622.47055 z "
+                 id="path6893"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 509.50273,624.09645 L 515.97728,621.24830 L 515.87602,621.88523 L 510.36232,624.57534 L 509.54174,624.82991 L 508.72115,624.57534 L 499.94082,622.98429 L 500.02302,622.37852 L 509.50273,624.09645 z "
+                 id="path6895"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 489.06679,620.31329 L 489.00436,621.03317 L 498.72880,622.84224 L 499.79559,622.52403 L 505.21146,619.78743 L 505.12942,618.89645 L 495.61058,617.68725 L 489.06679,620.31329 z "
+                 id="path6897"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 498.72424,621.93919 L 505.19879,619.09103 L 505.09755,619.72796 L 499.58383,622.41807 L 498.76325,622.67264 L 497.94266,622.41807 L 489.16233,620.82703 L 489.24455,620.22125 L 498.72424,621.93919 z "
+                 id="path6899"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 581.45448,627.44009 L 581.39199,628.15995 L 591.11641,629.96903 L 592.18328,629.65082 L 597.59909,626.91422 L 597.51705,626.02325 L 587.99823,624.81404 L 581.45448,627.44009 z "
+                 id="path6901"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 591.11193,629.06599 L 597.58646,626.21782 L 597.48524,626.85476 L 591.97150,629.54487 L 591.15094,629.79943 L 590.33028,629.54487 L 581.54999,627.95383 L 581.63221,627.34805 L 591.11193,629.06599 z "
+                 id="path6903"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 569.98058,625.55247 L 569.91815,626.27236 L 579.64254,628.08143 L 580.70941,627.76322 L 586.12521,625.02663 L 586.04317,624.13563 L 576.52436,622.92644 L 569.98058,625.55247 z "
+                 id="path6905"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 579.63805,627.17837 L 586.11258,624.33023 L 586.01137,624.96716 L 580.49762,627.65726 L 579.67706,627.91184 L 578.85640,627.65726 L 570.07611,626.06621 L 570.15832,625.46044 L 579.63805,627.17837 z "
+                 id="path6907"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 559.20208,623.39521 L 559.13965,624.11509 L 568.86410,625.92417 L 569.93089,625.60596 L 575.34674,622.86936 L 575.26472,621.97838 L 565.74587,620.76918 L 559.20208,623.39521 z "
+                 id="path6909"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 568.85954,625.02111 L 575.33409,622.17296 L 575.23283,622.80989 L 569.71913,625.50000 L 568.89854,625.75457 L 568.07796,625.50000 L 559.29763,623.90896 L 559.37984,623.30318 L 568.85954,625.02111 z "
+                 id="path6911"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 573.80520,630.94564 L 573.74278,631.66551 L 583.46716,633.47458 L 584.53403,633.15637 L 589.94983,630.41978 L 589.86780,629.52880 L 580.34898,628.31959 L 573.80520,630.94564 z "
+                 id="path6913"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 583.46267,632.57154 L 589.93720,629.72338 L 589.83599,630.36031 L 584.32225,633.05042 L 583.50168,633.30499 L 582.68102,633.05042 L 573.90075,631.45938 L 573.98296,630.85360 L 583.46267,632.57154 z "
+                 id="path6915"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 562.33133,629.05802 L 562.26891,629.77791 L 571.99333,631.58698 L 573.06014,631.26878 L 578.47596,628.53218 L 578.39392,627.64119 L 568.87513,626.43200 L 562.33133,629.05802 z "
+                 id="path6917"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 571.98878,630.68393 L 578.46333,627.83578 L 578.36212,628.47271 L 572.84838,631.16282 L 572.02777,631.41739 L 571.20720,631.16282 L 562.42687,629.57177 L 562.50908,628.96600 L 571.98878,630.68393 z "
+                 id="path6919"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 551.55283,626.90077 L 551.49041,627.62064 L 561.21484,629.42972 L 562.28164,629.11151 L 567.69752,626.37491 L 567.61548,625.48393 L 558.09663,624.27473 L 551.55283,626.90077 z "
+                 id="path6921"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 561.21029,628.52666 L 567.68485,625.67851 L 567.58358,626.31544 L 562.06988,629.00555 L 561.24930,629.26012 L 560.42871,629.00555 L 551.64838,627.41451 L 551.73058,626.80873 L 561.21029,628.52666 z "
+                 id="path6923"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 566.15596,634.99050 L 566.09353,635.71038 L 575.81792,637.51946 L 576.88478,637.20125 L 582.30058,634.46465 L 582.21854,633.57366 L 572.69975,632.36447 L 566.15596,634.99050 z "
+                 id="path6925"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 575.81342,636.61640 L 582.28795,633.76825 L 582.18674,634.40518 L 576.67300,637.09529 L 575.85243,637.34986 L 575.03183,637.09529 L 566.25149,635.50424 L 566.33370,634.89847 L 575.81342,636.61640 z "
+                 id="path6927"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 554.68209,633.10291 L 554.61965,633.82277 L 564.34409,635.63185 L 565.41089,635.31364 L 570.82675,632.57704 L 570.74471,631.68606 L 561.22587,630.47686 L 554.68209,633.10291 z "
+                 id="path6929"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 564.33954,634.72880 L 570.81409,631.88065 L 570.71283,632.51758 L 565.19912,635.20769 L 564.37853,635.46225 L 563.55795,635.20769 L 554.77762,633.61664 L 554.85983,633.01087 L 564.33954,634.72880 z "
+                 id="path6931"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 543.90359,630.94564 L 543.84117,631.66551 L 553.56559,633.47458 L 554.63239,633.15637 L 560.04826,630.41978 L 559.96623,629.52880 L 550.44739,628.31959 L 543.90359,630.94564 z "
+                 id="path6933"
+                 sodipodi:nodetypes="cccccccc"
+                 style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+              <path
+                 d="M 553.56104,632.57154 L 560.03560,629.72338 L 559.93434,630.36031 L 554.42064,633.05042 L 553.60004,633.30499 L 552.77947,633.05042 L 543.99913,631.45938 L 544.08134,630.85360 L 553.56104,632.57154 z "
+                 id="path6935"
+                 sodipodi:nodetypes="ccccccccc"
+                 style="fill:#fefefd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            </g>
+            <path
+               d="M 252.70452,458.78596 L 235.94034,467.16805 L 230.97318,469.34118 L 227.24780,467.47850 L 252.70452,458.78596 z "
+               id="path6937"
+               style="fill:#5c575b;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+            <text
+               id="text6939"
+               sodipodi:linespacing="125.00000%"
+               space="preserve"
+               style="font-size:10.008980px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#00b800;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans Mono"
+               transform="matrix(1.152915,6.902673e-2,-0.472362,0.839085,0.000000,0.000000)"
+               x="433.62375"
+               y="307.40585">
+              <tspan
+                 id="tspan6941"
+                 sodipodi:role="line"
+                 x="433.62375"
+                 y="307.40585">tux@linux#</tspan>
+            </text>
+          </g>
+        </g>
+        <g
+           id="g6943"
+           transform="translate(1358.023,2415.499)">
+          <path
+             sodipodi:nodetypes="ccccc"
+             id="path6945"
+             d="M -86.419853,-691.35483 C -76.144661,-694.12138 -64.683870,-695.22800 -55.594278,-689.69490 C -64.091071,-673.09562 -66.659869,-647.36672 -63.300672,-629.93747 C -71.402265,-637.40715 -83.060655,-635.74723 -94.719045,-632.42736 C -98.473443,-651.23989 -96.892644,-670.05241 -86.419853,-691.35483 z "
+             style="fill:#ffff00;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+          <path
+             sodipodi:nodetypes="cc"
+             id="path6947"
+             d="M -85.234254,-677.24544 C -79.701458,-679.45868 -75.354262,-680.84195 -68.635867,-676.41547"
+             style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+          <path
+             style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+             d="M -87.605452,-667.28587 C -82.072656,-669.49911 -77.725460,-670.88238 -71.007065,-666.45590"
+             id="path6949"
+             sodipodi:nodetypes="cc" />
+        </g>
+        <g
+           transform="translate(31.67467,192.2077)"
+           id="g6951">
+          <path
+             d="M 1207.3813,1491.0307 C 1224.1769,1497.2363 1227.8281,1511.9747 1227.8281,1511.9747"
+             id="path6953"
+             style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0643784px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+          <path
+             d="M 1209.7952,1478.6913 C 1236.0060,1488.5613 1241.7040,1512.0023 1241.7040,1512.0023"
+             id="path6955"
+             style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.6768856px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+          <path
+             d="M 1212.2605,1466.3177 C 1249.5475,1479.4553 1257.6533,1510.6571 1257.6533,1510.6571"
+             id="path6957"
+             style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:2.3075068px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+        </g>
+      </g>
+    </g>
+  </g>
+</svg>
diff --git a/product/hotelgate/hotelsevendays.jpeg b/product/hotelgate/hotelsevendays.jpeg
new file mode 100644 (file)
index 0000000..e357932
Binary files /dev/null and b/product/hotelgate/hotelsevendays.jpeg differ
diff --git a/product/hotelgate/rack-1u.jpeg b/product/hotelgate/rack-1u.jpeg
new file mode 100644 (file)
index 0000000..18af75e
Binary files /dev/null and b/product/hotelgate/rack-1u.jpeg differ
diff --git a/product/hotelgate/rooms.svg b/product/hotelgate/rooms.svg
new file mode 100644 (file)
index 0000000..33685b2
--- /dev/null
@@ -0,0 +1,16081 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="1250.0000pt"
+   height="1170.0000pt"
+   id="svg2"
+   sodipodi:version="0.32"
+   inkscape:version="0.42"
+   sodipodi:docbase="/home/lace/www/www.jankratochvil.net/product/hotelgate"
+   sodipodi:docname="rooms.svg">
+  <defs
+     id="defs4">
+    <marker
+       inkscape:stockid="Arrow2Lstart"
+       orient="auto"
+       refY="0.0"
+       refX="0.0"
+       id="Arrow2Lstart"
+       style="overflow:visible">
+      <path
+         sodipodi:nodetypes="cccc"
+         id="path5097"
+         style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round"
+         d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+         transform="scale(1.1) translate(-5,0)" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Lend"
+       orient="auto"
+       refY="0.0"
+       refX="0.0"
+       id="Arrow2Lend"
+       style="overflow:visible;">
+      <path
+         sodipodi:nodetypes="cccc"
+         id="path5106"
+         style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
+         d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
+         transform="scale(1.1) rotate(180) translate(-5,0)" />
+    </marker>
+    <linearGradient
+       y2="0.46093750"
+       y1="0.46093750"
+       xlink:href="#linearGradient650"
+       x2="1.16666818"
+       x1="1.22222710"
+       spreadMethod="repeat"
+       id="linearGradient654"
+       gradientUnits="objectBoundingBox" />
+    <linearGradient
+       y2="0.53906250"
+       y1="0.53125000"
+       xlink:href="#linearGradient650"
+       x2="1.16666901"
+       x1="1.00000548"
+       spreadMethod="repeat"
+       id="linearGradient653"
+       gradientUnits="objectBoundingBox" />
+    <linearGradient
+       id="linearGradient650">
+      <stop
+         style="stop-color:#000;stop-opacity:1;"
+         offset="0"
+         id="stop651" />
+      <stop
+         style="stop-color:#fff;stop-opacity:1;"
+         offset="1"
+         id="stop652" />
+    </linearGradient>
+    <linearGradient
+       y2="-0.12500010"
+       y1="0.60155678"
+       xlink:href="#linearGradient1164"
+       x2="-0.13106795"
+       x1="0.47572812"
+       spreadMethod="reflect"
+       id="linearGradient1167"
+       gradientUnits="objectBoundingBox" />
+    <linearGradient
+       id="linearGradient1164">
+      <stop
+         style="stop-color:#263d42;stop-opacity:1;"
+         offset="0.000000"
+         id="stop1165" />
+      <stop
+         style="stop-color:#9acde7;stop-opacity:1;"
+         offset="1.000000"
+         id="stop1166" />
+    </linearGradient>
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="27.789434"
+       id="radialGradient6764"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(2.561113,0.390455)"
+       fy="253.38283"
+       fx="47.074745"
+       cy="253.38283"
+       cx="47.074745" />
+    <radialGradient
+       xlink:href="#linearGradient12744"
+       r="22.012070"
+       id="radialGradient6763"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(2.746613,0.364085)"
+       fy="234.79250"
+       fx="41.158657"
+       cy="234.79250"
+       cx="41.158657" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6762"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6761"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6760"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6759"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6758"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6757"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6756"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6755"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6754"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6753"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6752"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6751"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6750"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6749"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6748"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6747"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6746"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="97.536598"
+       cy="113.72600"
+       cx="97.536598" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6745"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="97.536598"
+       cy="126.99414"
+       cx="97.536598" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6744"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="100.67591"
+       cy="113.72600"
+       cx="100.67591" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6743"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="100.67591"
+       cy="126.99414"
+       cx="100.67591" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6742"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="104.00187"
+       cy="113.72600"
+       cx="104.00187" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6741"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="104.00187"
+       cy="126.99414"
+       cx="104.00187" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6740"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="107.14119"
+       cy="113.72600"
+       cx="107.14119" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6739"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="107.14119"
+       cy="126.99414"
+       cx="107.14119" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6738"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="110.13468"
+       cy="113.72600"
+       cx="110.13468" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6737"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="110.13468"
+       cy="126.99414"
+       cx="110.13468" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6736"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="113.27399"
+       cy="113.72600"
+       cx="113.27399" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6735"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="113.27399"
+       cy="126.99414"
+       cx="113.27399" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6734"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="116.42374"
+       cy="113.72600"
+       cx="116.42374" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6733"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="116.42374"
+       cy="126.99414"
+       cx="116.42374" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6732"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="119.56305"
+       cy="113.72600"
+       cx="119.56305" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6731"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="119.56305"
+       cy="126.99414"
+       cx="119.56305" />
+    <radialGradient
+       xlink:href="#linearGradient12744"
+       r="19.324974"
+       id="radialGradient6730"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(3.448440,0.289986)"
+       fy="247.99883"
+       fx="34.697765"
+       cy="247.99883"
+       cx="34.697765" />
+    <radialGradient
+       xlink:href="#linearGradient12744"
+       r="9.3962202"
+       id="radialGradient6729"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(0.705209,1.418019)"
+       fy="56.345604"
+       fx="255.34476"
+       cy="56.345604"
+       cx="255.34476" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6728"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.75461"
+       fx="39.188126"
+       cy="126.75461"
+       cx="39.188126" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6727"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="124.37913"
+       fx="39.188126"
+       cy="124.37913"
+       cx="39.188126" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6726"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="122.00374"
+       fx="39.188126"
+       cy="122.00374"
+       cx="39.188126" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6725"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="119.71113"
+       fx="39.188126"
+       cy="119.71113"
+       cx="39.188126" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6724"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6723"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6722"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6721"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6720"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6719"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6718"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6717"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6716"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6715"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6714"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6713"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6712"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6711"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6710"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6709"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6708"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="71.480988"
+       cy="113.72600"
+       cx="71.480988" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6707"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="71.480988"
+       cy="126.99414"
+       cx="71.480988" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6706"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="74.620308"
+       cy="113.72600"
+       cx="74.620308" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6705"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="74.620308"
+       cy="126.99414"
+       cx="74.620308" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6704"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="77.946259"
+       cy="113.72600"
+       cx="77.946259" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6703"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="77.946259"
+       cy="126.99414"
+       cx="77.946259" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6702"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="81.085587"
+       cy="113.72600"
+       cx="81.085587" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6701"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="81.085587"
+       cy="126.99414"
+       cx="81.085587" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6700"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="84.079071"
+       cy="113.72600"
+       cx="84.079071" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6699"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="84.079071"
+       cy="126.99414"
+       cx="84.079071" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6698"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="87.218399"
+       cy="113.72600"
+       cx="87.218399" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6697"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="87.218399"
+       cy="126.99414"
+       cx="87.218399" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6696"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="90.368126"
+       cy="113.72600"
+       cx="90.368126" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6695"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="90.368126"
+       cy="126.99414"
+       cx="90.368126" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6694"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="93.507462"
+       cy="113.72600"
+       cx="93.507462" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6693"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="93.507462"
+       cy="126.99414"
+       cx="93.507462" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6692"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6691"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6690"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6689"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6688"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6687"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6686"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6685"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6684"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6683"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6682"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6681"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6680"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6679"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6678"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="2.8901422"
+       id="radialGradient6677"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       fy="84.146240"
+       fx="-75.268890"
+       cy="84.146240"
+       cx="-75.268890" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6676"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="45.452175"
+       cy="113.72600"
+       cx="45.452175" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6675"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="45.452175"
+       cy="126.99414"
+       cx="45.452175" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6674"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="48.591496"
+       cy="113.72600"
+       cx="48.591496" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6673"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="48.591496"
+       cy="126.99414"
+       cx="48.591496" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6672"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="51.917450"
+       cy="113.72600"
+       cx="51.917450" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6671"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="51.917450"
+       cy="126.99414"
+       cx="51.917450" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6670"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="55.056770"
+       cy="113.72600"
+       cx="55.056770" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6669"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="55.056770"
+       cy="126.99414"
+       cx="55.056770" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6668"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="58.050255"
+       cy="113.72600"
+       cx="58.050255" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6667"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="58.050255"
+       cy="126.99414"
+       cx="58.050255" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6666"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="61.189575"
+       cy="113.72600"
+       cx="61.189575" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6665"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="61.189575"
+       cy="126.99414"
+       cx="61.189575" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6664"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="64.339317"
+       cy="113.72600"
+       cx="64.339317" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6663"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="64.339317"
+       cy="126.99414"
+       cx="64.339317" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6662"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="113.72600"
+       fx="67.478638"
+       cy="113.72600"
+       cx="67.478638" />
+    <radialGradient
+       xlink:href="#linearGradient6658"
+       r="0.55242717"
+       id="radialGradient6661"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.414214,0.707107)"
+       fy="126.99414"
+       fx="67.478638"
+       cy="126.99414"
+       cx="67.478638" />
+    <radialGradient
+       xlink:href="#linearGradient13376"
+       r="31.620827"
+       id="radialGradient6036"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.671462,0.000000,0.000000,0.500968,169.5594,-31.08157)"
+       fy="254.35735"
+       fx="-19.038713"
+       cy="253.63734"
+       cx="-19.261518" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient6035"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.681494,0.000000,0.000000,0.399114,149.8356,-15.39627)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6034"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028579e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6033"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6032"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028394e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6031"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6030"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029314e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6029"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6028"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029170e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6027"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6026"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029185e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6025"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6024"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029166e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6023"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6022"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028733e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6021"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6020"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029128e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6019"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6018"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027107e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6017"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6016"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026922e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6015"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6014"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028328e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6013"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6012"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028184e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6011"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6010"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028199e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6009"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6008"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028180e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6007"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6006"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028142e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6005"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient6004"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028179e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient6003"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient6002"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,163.6663,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient6001"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,163.6662,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient6000"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,168.1059,60.95613)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5999"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,168.1059,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5998"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,172.8091,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5997"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,172.8091,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5996"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,177.2488,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5995"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,177.2488,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5994"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,181.4822,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5993"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,181.4822,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5992"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,185.9219,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5991"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,185.9219,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5990"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,190.3763,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5989"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,190.3763,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5988"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,194.8160,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5987"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,194.8159,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient14835"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient5986"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.500039,0.000000,0.000000,0.399114,143.6876,-33.39267)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient5985"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.505549,0.000000,0.000000,0.350818,264.3597,-4.249573)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5984"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,81.14952,70.16883)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5983"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,81.14952,68.48913)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5982"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,81.14952,66.80943)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5981"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,81.14942,65.18833)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5980"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025590e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5979"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5978"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025405e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5977"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5976"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026325e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5975"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5974"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026181e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5973"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5972"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026196e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5971"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5970"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026177e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5969"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5968"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025744e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5967"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5966"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026139e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5965"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5964"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.024340e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5963"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5962"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.024155e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5961"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5960"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025561e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5959"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5958"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025417e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5957"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5956"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025432e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5955"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5954"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025413e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5953"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5952"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025375e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5951"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5950"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025412e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5949"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5948"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,126.8181,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5947"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,126.8180,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5946"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,131.2577,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5945"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,131.2577,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5944"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,135.9609,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5943"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,135.9609,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5942"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,140.4006,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5941"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,140.4006,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5940"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,144.6340,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5939"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,144.6340,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5938"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,149.0736,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5937"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,149.0736,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5936"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,153.5280,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5935"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,153.5280,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5934"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,157.9677,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5933"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,157.9676,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5932"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026202e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5931"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5930"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026017e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5929"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5928"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026937e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5927"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5926"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026793e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5925"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5924"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026808e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5923"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5922"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026789e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5921"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5920"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026356e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5919"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5918"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026751e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5917"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5916"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.024695e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5915"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5914"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.024510e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5913"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5912"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025916e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5911"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5910"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025772e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5909"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5908"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025787e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5907"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5906"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025768e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5905"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5904"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025730e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5903"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient5902"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025767e-10)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient5901"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5900"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,90.00792,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5899"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,90.00782,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5898"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,94.44748,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5897"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,94.44748,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5896"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,99.15068,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5895"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,99.15068,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5894"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,103.5904,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5893"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,103.5904,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5892"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,107.8238,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5891"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,107.8238,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5890"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,112.2635,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5889"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,112.2635,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5888"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,116.7179,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5887"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,116.7179,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5886"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,121.1576,60.95623)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient5885"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,121.1575,70.33823)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       id="linearGradient14160">
+      <stop
+         style="stop-color:#4af853;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop14161" />
+      <stop
+         style="stop-color:#68b96d;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop14162" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient10810">
+      <stop
+         style="stop-color:#0e0000;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop10811" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1.0000000;"
+         offset="0.50000000"
+         id="stop10814" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop10812" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient11442">
+      <stop
+         style="stop-color:#6e6e6e;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop11443" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop11444" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient12744">
+      <stop
+         style="stop-color:#839da4;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop12745" />
+      <stop
+         style="stop-color:#496d77;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop12746" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient13376">
+      <stop
+         style="stop-color:#c0c0c0;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop13377" />
+      <stop
+         style="stop-color:#c7c7c7;stop-opacity:0.49803922;"
+         offset="0.50000000"
+         id="stop13380" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.0000000;"
+         offset="1.0000000"
+         id="stop13378" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient14835">
+      <stop
+         style="stop-color:#bed1d0;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop14836" />
+      <stop
+         style="stop-color:#52727b;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop14837" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6658">
+      <stop
+         style="stop-color:#677883;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop6659" />
+      <stop
+         style="stop-color:#677883;stop-opacity:0.0000000;"
+         offset="1.0000000"
+         id="stop6660" />
+    </linearGradient>
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient10048"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient10046"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,215.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient10044"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient10036"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient10028"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient7293"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,215.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient7287"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient7281"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,169.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient7275"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,143.0464,89.10950)" />
+    <linearGradient
+       y2="87.802277"
+       y1="164.80815"
+       xlink:href="#linearGradient8474"
+       x2="70.638657"
+       x1="68.268654"
+       inkscape:collect="always"
+       id="linearGradient4929"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,118.9307,88.97860)" />
+    <radialGradient
+       xlink:href="#linearGradient1851"
+       r="125.20509"
+       id="radialGradient1875"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1.270510,0.000000,0.000000,0.218761,-207.1544,6.085000e-2)"
+       fy="552.23833"
+       fx="-285.65439"
+       cy="598.36652"
+       cx="-289.09140"
+       collect="always" />
+    <linearGradient
+       id="linearGradient1851"
+       collect="always">
+      <stop
+         style="stop-color:#000000;stop-opacity:0.37241378;"
+         offset="0.0000000"
+         id="stop1852" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0.11034483;"
+         offset="0.50000000"
+         id="stop1854" />
+      <stop
+         style="stop-color:#adadad;stop-opacity:0.0000000;"
+         offset="1.0000000"
+         id="stop1853" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8468"
+       collect="always">
+      <stop
+         style="stop-color:#000000;stop-opacity:0.58620691;"
+         offset="0.0000000"
+         id="stop8469" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0.0068965517;"
+         offset="1.0000000"
+         id="stop8470" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient1806">
+      <stop
+         style="stop-color:#000000;stop-opacity:0.53103447;"
+         offset="0.0000000"
+         id="stop1807" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0.073446326;"
+         offset="0.64777780"
+         id="stop3276" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0.0000000;"
+         offset="1.0000000"
+         id="stop1808" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8474"
+       collect="always">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop8475" />
+      <stop
+         style="stop-color:#a2a2a2;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop8476" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient8481"
+       collect="always">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop8482" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.0039215689;"
+         offset="1.0000000"
+         id="stop8483" />
+    </linearGradient>
+    <linearGradient
+       y2="-0.12500010"
+       y1="0.60155678"
+       xlink:href="#linearGradient1164"
+       x2="-0.13106795"
+       x1="0.47572812"
+       spreadMethod="reflect"
+       id="linearGradient3917"
+       gradientUnits="objectBoundingBox" />
+    <linearGradient
+       id="linearGradient3911">
+      <stop
+         style="stop-color:#263d42;stop-opacity:1;"
+         offset="0.000000"
+         id="stop3913" />
+      <stop
+         style="stop-color:#9acde7;stop-opacity:1;"
+         offset="1.000000"
+         id="stop3915" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4239"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.335120,0.000000,0.000000,-0.596114,-231.8379,185.4951)"
+       x1="312.61248"
+       y1="135.90253"
+       x2="339.46602"
+       y2="316.70622" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1806"
+       id="linearGradient4241"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.335120,0.000000,0.000000,-0.596114,-231.8379,185.4951)"
+       x1="310.44888"
+       y1="142.43878"
+       x2="311.96148"
+       y2="261.76054" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8468"
+       id="linearGradient4243"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.423388,0.000000,0.000000,-0.464941,-231.8379,154.7338)"
+       x1="282.27411"
+       y1="419.36390"
+       x2="282.27411"
+       y2="211.77074" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4245"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.423388,0.000000,0.000000,-0.464941,-231.8379,154.7338)"
+       x1="151.97781"
+       y1="82.293232"
+       x2="200.30677"
+       y2="418.78640" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8468"
+       id="linearGradient4247"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.050391,0.000000,0.000000,1.342646,-91.51548,-60.79889)"
+       x1="68.268656"
+       y1="164.80815"
+       x2="70.638656"
+       y2="87.802278" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8481"
+       id="linearGradient4249"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.427745,0.000000,0.000000,-0.463522,-231.8379,154.7338)"
+       x1="280.30070"
+       y1="418.04542"
+       x2="283.50529"
+       y2="212.07808" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1851"
+       id="radialGradient4251"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-1.270510,0.000000,0.000000,0.218761,-207.1544,6.085000e-2)"
+       cx="-289.09140"
+       cy="598.36652"
+       fx="-285.65439"
+       fy="552.23833"
+       r="125.20509" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4253"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)"
+       x1="68.268654"
+       y1="164.80815"
+       x2="70.638657"
+       y2="87.802277" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4255"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,215.0464,89.10950)"
+       x1="68.268654"
+       y1="164.80815"
+       x2="70.638657"
+       y2="87.802277" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4257"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)"
+       x1="68.268654"
+       y1="164.80815"
+       x2="70.638657"
+       y2="87.802277" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4259"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)"
+       x1="68.268654"
+       y1="164.80815"
+       x2="70.638657"
+       y2="87.802277" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4261"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.272455,0.000000,0.000000,0.204889,193.0464,89.10950)"
+       x1="68.268654"
+       y1="164.80815"
+       x2="70.638657"
+       y2="87.802277" />
+    <linearGradient
+       id="linearGradient6508">
+      <stop
+         style="stop-color:#ff0000;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop6509" />
+      <stop
+         style="stop-color:#ffb900;stop-opacity:1.0000000;"
+         offset="0.64370060"
+         id="stop6511" />
+      <stop
+         style="stop-color:#ffff00;stop-opacity:0.84102565;"
+         offset="0.79038113"
+         id="stop6512" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.21568628;"
+         offset="1.0000000"
+         id="stop6510" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12744"
+       id="linearGradient22995"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(6.726506,0.000000,0.000000,1.001174,900.9314,23.92146)"
+       x1="-35.945030"
+       y1="233.36613"
+       x2="8.3977861"
+       y2="275.81308" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12744"
+       id="radialGradient22997"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(6.889857,0.000000,0.000000,0.913304,525.0700,62.54288)"
+       cx="41.158657"
+       cy="234.79250"
+       fx="41.158657"
+       fy="234.79250"
+       r="22.012070" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient22999"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23001"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23003"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029022e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23005"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23007"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23009"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23011"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028837e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23013"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23015"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23017"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23019"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029757e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23021"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23023"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23025"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23027"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029613e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23029"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23031"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23033"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23035"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029628e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23037"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23039"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23041"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23043"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029609e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23045"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23047"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23049"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23051"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029176e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23053"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23055"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23057"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23059"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029571e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23061"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23063"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23065"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23067"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028944e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23069"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23071"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23073"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23075"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028759e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23077"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23079"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23081"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23083"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.030165e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23085"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23087"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23089"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23091"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.030021e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23093"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23095"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23097"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23099"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.030036e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23101"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23103"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23105"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23107"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.030017e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23109"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23111"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23113"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23115"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029979e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23117"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23119"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23121"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23123"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.030016e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23125"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23127"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,935.6256,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23129"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="97.536598"
+       cy="113.72600"
+       fx="97.536598"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23131"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,935.6254,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23133"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="97.536598"
+       cy="126.99414"
+       fx="97.536598"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23135"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,946.7623,215.4508)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23137"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="100.67591"
+       cy="113.72600"
+       fx="100.67591"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23139"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,946.7623,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23141"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="100.67591"
+       cy="126.99414"
+       fx="100.67591"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23143"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,958.5602,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23145"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="104.00187"
+       cy="113.72600"
+       fx="104.00187"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23147"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,958.5602,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23149"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="104.00187"
+       cy="126.99414"
+       fx="104.00187"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23151"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,969.6972,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23153"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="107.14119"
+       cy="113.72600"
+       fx="107.14119"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23155"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,969.6972,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23157"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="107.14119"
+       cy="126.99414"
+       fx="107.14119"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23159"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,980.3166,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23161"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="110.13468"
+       cy="113.72600"
+       fx="110.13468"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23163"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,980.3166,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23165"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="110.13468"
+       cy="126.99414"
+       fx="110.13468"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23167"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,991.4536,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23169"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="113.27399"
+       cy="113.72600"
+       fx="113.27399"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23171"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,991.4536,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23173"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="113.27399"
+       cy="126.99414"
+       fx="113.27399"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23175"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,1002.627,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23177"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="116.42374"
+       cy="113.72600"
+       fx="116.42374"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23179"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,1002.627,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23181"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="116.42374"
+       cy="126.99414"
+       fx="116.42374"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23183"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,1013.764,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23185"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="119.56305"
+       cy="113.72600"
+       fx="119.56305"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23187"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,1013.764,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23189"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="119.56305"
+       cy="126.99414"
+       fx="119.56305"
+       fy="126.99414"
+       r="0.55242717" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14835"
+       id="linearGradient23191"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(6.271328,0.000000,0.000000,1.001174,885.5092,-21.22237)"
+       x1="-35.945030"
+       y1="233.36613"
+       x2="8.3977861"
+       y2="275.81308" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12744"
+       id="radialGradient23193"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(8.650384,0.000000,0.000000,0.727428,525.0700,62.54288)"
+       cx="34.697765"
+       cy="247.99883"
+       fx="34.697765"
+       fy="247.99883"
+       r="19.324974" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12744"
+       id="linearGradient23195"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(6.285150,0.000000,0.000000,0.880024,1188.214,51.88286)"
+       x1="-35.945030"
+       y1="233.36613"
+       x2="8.3977861"
+       y2="275.81308" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12744"
+       id="radialGradient23197"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.769011,0.000000,0.000000,3.557089,525.0700,62.54288)"
+       cx="255.34476"
+       cy="56.345604"
+       fx="255.34476"
+       fy="56.345604"
+       r="9.3962202" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23199"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,728.6329,238.5608)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23201"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="39.188126"
+       cy="126.75461"
+       fx="39.188126"
+       fy="126.75461"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23203"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,728.6329,234.3473)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23205"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="39.188126"
+       cy="124.37913"
+       fx="39.188126"
+       fy="124.37913"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23207"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,728.6329,230.1338)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23209"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="39.188126"
+       cy="122.00374"
+       fx="39.188126"
+       fy="122.00374"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23211"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,728.6327,226.0673)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23213"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="39.188126"
+       cy="119.71113"
+       fx="39.188126"
+       fy="119.71113"
+       r="0.55242717" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23215"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23217"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23219"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026033e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23221"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23223"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23225"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23227"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025848e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23229"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23231"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23233"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23235"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026768e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23237"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23239"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23241"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23243"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026624e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23245"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23247"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23249"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23251"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026639e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23253"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23255"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23257"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23259"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026620e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23261"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23263"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23265"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23267"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026187e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23269"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23271"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23273"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23275"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026582e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23277"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23279"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23281"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23283"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026177e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23285"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23287"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23289"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23291"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025992e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23293"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23295"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23297"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23299"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027398e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23301"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23303"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23305"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23307"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027254e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23309"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23311"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23313"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23315"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027269e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23317"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23319"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23321"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23323"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027250e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23325"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23327"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23329"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23331"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027212e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23333"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23335"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23337"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23339"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027249e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23341"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23343"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,843.1922,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23345"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="71.480988"
+       cy="113.72600"
+       fx="71.480988"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23347"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,843.1919,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23349"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="71.480988"
+       cy="126.99414"
+       fx="71.480988"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23351"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,854.3289,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23353"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="74.620308"
+       cy="113.72600"
+       fx="74.620308"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23355"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,854.3289,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23357"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="74.620308"
+       cy="126.99414"
+       fx="74.620308"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23359"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,866.1268,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23361"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="77.946259"
+       cy="113.72600"
+       fx="77.946259"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23363"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,866.1268,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23365"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="77.946259"
+       cy="126.99414"
+       fx="77.946259"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23367"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,877.2638,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23369"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="81.085587"
+       cy="113.72600"
+       fx="81.085587"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23371"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,877.2638,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23373"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="81.085587"
+       cy="126.99414"
+       fx="81.085587"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23375"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,887.8832,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23377"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="84.079071"
+       cy="113.72600"
+       fx="84.079071"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23379"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,887.8832,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23381"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="84.079071"
+       cy="126.99414"
+       fx="84.079071"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23383"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,899.0199,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23385"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="87.218399"
+       cy="113.72600"
+       fx="87.218399"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23387"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,899.0199,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23389"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="87.218399"
+       cy="126.99414"
+       fx="87.218399"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23391"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,910.1938,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23393"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="90.368126"
+       cy="113.72600"
+       fx="90.368126"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23395"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,910.1938,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23397"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="90.368126"
+       cy="126.99414"
+       fx="90.368126"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23399"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,921.3307,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23401"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="93.507462"
+       cy="113.72600"
+       fx="93.507462"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23403"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,921.3305,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23405"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="93.507462"
+       cy="126.99414"
+       fx="93.507462"
+       fy="126.99414"
+       r="0.55242717" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23407"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23409"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23411"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026645e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23413"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23415"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23417"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23419"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026460e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23421"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23423"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23425"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23427"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027380e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23429"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23431"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23433"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23435"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027236e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23437"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23439"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23441"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23443"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027251e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23445"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23447"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23449"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23451"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027232e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23453"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23455"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23457"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23459"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026799e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23461"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23463"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23465"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23467"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027194e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23469"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23471"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23473"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23475"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026532e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23477"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23479"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23481"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23483"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026347e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23485"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23487"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23489"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23491"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027753e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23493"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23495"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23497"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23499"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027609e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23501"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23503"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23505"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23507"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027624e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23509"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23511"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23513"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23515"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027605e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23517"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23519"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23521"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23523"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027567e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23525"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient23527"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23529"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient23531"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027604e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23533"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23535"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,750.8541,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23537"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="45.452175"
+       cy="113.72600"
+       fx="45.452175"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23539"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,750.8539,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23541"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="45.452175"
+       cy="126.99414"
+       fx="45.452175"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23543"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,761.9907,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23545"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="48.591496"
+       cy="113.72600"
+       fx="48.591496"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23547"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,761.9907,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23549"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="48.591496"
+       cy="126.99414"
+       fx="48.591496"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23551"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,773.7887,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23553"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="51.917450"
+       cy="113.72600"
+       fx="51.917450"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23555"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,773.7887,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23557"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="51.917450"
+       cy="126.99414"
+       fx="51.917450"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23559"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,784.9257,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23561"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="55.056770"
+       cy="113.72600"
+       fx="55.056770"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23563"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,784.9257,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23565"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="55.056770"
+       cy="126.99414"
+       fx="55.056770"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23567"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,795.5451,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23569"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="58.050255"
+       cy="113.72600"
+       fx="58.050255"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23571"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,795.5451,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23573"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="58.050255"
+       cy="126.99414"
+       fx="58.050255"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23575"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,806.6821,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23577"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="61.189575"
+       cy="113.72600"
+       fx="61.189575"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23579"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,806.6821,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23581"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="61.189575"
+       cy="126.99414"
+       fx="61.189575"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23583"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,817.8559,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23585"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="64.339317"
+       cy="113.72600"
+       fx="64.339317"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23587"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,817.8559,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23589"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="64.339317"
+       cy="126.99414"
+       fx="64.339317"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23591"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,828.9929,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23593"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="67.478638"
+       cy="113.72600"
+       fx="67.478638"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient23595"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,828.9926,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient23597"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="67.478638"
+       cy="126.99414"
+       fx="67.478638"
+       fy="126.99414"
+       r="0.55242717" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12744"
+       id="linearGradient36882"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(6.726506,0.000000,0.000000,1.001174,900.9314,23.92146)"
+       x1="-35.945030"
+       y1="233.36613"
+       x2="8.3977861"
+       y2="275.81308" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12744"
+       id="radialGradient36884"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(6.889857,0.000000,0.000000,0.913304,525.0700,62.54288)"
+       cx="41.158657"
+       cy="234.79250"
+       fx="41.158657"
+       fy="234.79250"
+       r="22.012070" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36888"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36890"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36892"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028881e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36894"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36898"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36900"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36902"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028696e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36904"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36908"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36910"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36912"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029616e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36914"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36918"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36920"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36922"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029472e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36924"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36928"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36930"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36932"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029487e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36934"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36938"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36940"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36942"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029468e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36944"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36948"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36950"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36952"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029035e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36954"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36958"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36960"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36962"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.029430e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36964"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36968"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36970"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36972"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027562e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36974"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36978"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36980"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36982"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027377e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36984"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36988"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36990"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient36992"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028783e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient36994"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient36998"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37000"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37002"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028639e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37004"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37008"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37010"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37012"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028654e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37014"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37018"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37020"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37022"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028635e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37024"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37028"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37030"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37032"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028597e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37034"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37038"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37040"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37042"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.028634e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37044"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37046"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,935.6256,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37048"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="97.536598"
+       cy="113.72600"
+       fx="97.536598"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37050"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,935.6254,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37052"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="97.536598"
+       cy="126.99414"
+       fx="97.536598"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37054"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,946.7623,215.4508)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37056"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="100.67591"
+       cy="113.72600"
+       fx="100.67591"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37058"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,946.7623,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37060"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="100.67591"
+       cy="126.99414"
+       fx="100.67591"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37062"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,958.5602,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37064"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="104.00187"
+       cy="113.72600"
+       fx="104.00187"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37066"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,958.5602,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37068"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="104.00187"
+       cy="126.99414"
+       fx="104.00187"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37070"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,969.6972,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37072"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="107.14119"
+       cy="113.72600"
+       fx="107.14119"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37074"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,969.6972,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37076"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="107.14119"
+       cy="126.99414"
+       fx="107.14119"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37078"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,980.3166,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37080"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="110.13468"
+       cy="113.72600"
+       fx="110.13468"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37082"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,980.3166,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37084"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="110.13468"
+       cy="126.99414"
+       fx="110.13468"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37086"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,991.4536,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37088"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="113.27399"
+       cy="113.72600"
+       fx="113.27399"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37090"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,991.4536,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37092"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="113.27399"
+       cy="126.99414"
+       fx="113.27399"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37094"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,1002.627,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37096"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="116.42374"
+       cy="113.72600"
+       fx="116.42374"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37098"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,1002.627,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37100"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="116.42374"
+       cy="126.99414"
+       fx="116.42374"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37102"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,1013.764,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37104"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="119.56305"
+       cy="113.72600"
+       fx="119.56305"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37106"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,1013.764,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37108"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="119.56305"
+       cy="126.99414"
+       fx="119.56305"
+       fy="126.99414"
+       r="0.55242717" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14835"
+       id="linearGradient37110"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(6.271328,0.000000,0.000000,1.001174,885.5092,-21.22237)"
+       x1="-35.945030"
+       y1="233.36613"
+       x2="8.3977861"
+       y2="275.81308" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12744"
+       id="radialGradient37112"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(8.650384,0.000000,0.000000,0.727428,525.0700,62.54288)"
+       cx="34.697765"
+       cy="247.99883"
+       fx="34.697765"
+       fy="247.99883"
+       r="19.324974" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12744"
+       id="linearGradient37114"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(6.285150,0.000000,0.000000,0.880024,1188.214,51.88286)"
+       x1="-35.945030"
+       y1="233.36613"
+       x2="8.3977861"
+       y2="275.81308" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12744"
+       id="radialGradient37116"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.769011,0.000000,0.000000,3.557089,525.0700,62.54288)"
+       cx="255.34476"
+       cy="56.345604"
+       fx="255.34476"
+       fy="56.345604"
+       r="9.3962202" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37118"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,728.6329,238.5608)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37120"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="39.188126"
+       cy="126.75461"
+       fx="39.188126"
+       fy="126.75461"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37122"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,728.6329,234.3473)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37124"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="39.188126"
+       cy="124.37913"
+       fx="39.188126"
+       fy="124.37913"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37126"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,728.6329,230.1338)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37128"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="39.188126"
+       cy="122.00374"
+       fx="39.188126"
+       fy="122.00374"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37130"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,728.6327,226.0673)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37132"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="39.188126"
+       cy="119.71113"
+       fx="39.188126"
+       fy="119.71113"
+       r="0.55242717" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37136"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37138"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37140"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025892e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37142"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37146"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37148"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37150"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025707e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37152"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37156"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37158"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37160"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026627e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37162"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37166"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37168"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37170"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026483e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37172"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37176"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37178"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37180"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026498e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37182"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37186"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37188"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37190"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026479e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37192"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37196"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37198"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37200"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026046e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37202"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37206"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37208"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37210"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026441e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37212"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37216"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37218"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37220"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.024795e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37222"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37226"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37228"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37230"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.024610e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37232"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37236"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37238"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37240"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026016e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37242"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37246"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37248"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37250"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025872e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37252"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37256"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37258"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37260"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025887e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37262"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37266"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37268"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37270"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025868e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37272"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37276"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37278"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37280"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025830e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37282"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37286"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37288"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37290"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025867e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37292"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37294"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,843.1922,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37296"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="71.480988"
+       cy="113.72600"
+       fx="71.480988"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37298"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,843.1919,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37300"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="71.480988"
+       cy="126.99414"
+       fx="71.480988"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37302"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,854.3289,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37304"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="74.620308"
+       cy="113.72600"
+       fx="74.620308"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37306"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,854.3289,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37308"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="74.620308"
+       cy="126.99414"
+       fx="74.620308"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37310"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,866.1268,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37312"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="77.946259"
+       cy="113.72600"
+       fx="77.946259"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37314"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,866.1268,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37316"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="77.946259"
+       cy="126.99414"
+       fx="77.946259"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37318"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,877.2638,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37320"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="81.085587"
+       cy="113.72600"
+       fx="81.085587"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37322"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,877.2638,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37324"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="81.085587"
+       cy="126.99414"
+       fx="81.085587"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37326"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,887.8832,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37328"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="84.079071"
+       cy="113.72600"
+       fx="84.079071"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37330"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,887.8832,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37332"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="84.079071"
+       cy="126.99414"
+       fx="84.079071"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37334"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,899.0199,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37336"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="87.218399"
+       cy="113.72600"
+       fx="87.218399"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37338"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,899.0199,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37340"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="87.218399"
+       cy="126.99414"
+       fx="87.218399"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37342"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,910.1938,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37344"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="90.368126"
+       cy="113.72600"
+       fx="90.368126"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37346"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,910.1938,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37348"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="90.368126"
+       cy="126.99414"
+       fx="90.368126"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37350"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,921.3307,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37352"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="93.507462"
+       cy="113.72600"
+       fx="93.507462"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37354"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,921.3305,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37356"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="93.507462"
+       cy="126.99414"
+       fx="93.507462"
+       fy="126.99414"
+       r="0.55242717" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37360"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37362"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37364"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026504e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37366"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37370"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37372"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37374"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026319e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37376"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37380"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37382"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37384"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027239e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37386"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37390"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37392"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37394"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027095e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37396"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37400"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37402"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37404"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027110e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37406"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37410"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37412"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37414"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027091e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37416"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37420"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37422"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37424"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026658e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37426"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37430"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37432"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37434"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.027053e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37436"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37440"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37442"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37444"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.025150e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37446"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37450"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37452"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37454"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.024965e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37456"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37460"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37462"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37464"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026371e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37466"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37470"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37472"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37474"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026227e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37476"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37480"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37482"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37484"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026242e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37486"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37490"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37492"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37494"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026223e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37496"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37500"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37502"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37504"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026185e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37506"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient10810"
+       id="linearGradient37510"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.731264,0.000000,0.000000,1.388554,183.0968,-38.74554)"
+       x1="-156.03067"
+       y1="80.490494"
+       x2="-152.33473"
+       y2="84.271248" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37512"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient11442"
+       id="linearGradient37514"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.372284,0.000000,0.000000,0.916806,6.735873,-1.026222e-10)"
+       x1="-64.000694"
+       y1="83.947449"
+       x2="-63.953007"
+       y2="80.317116" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37516"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.112677,0.898733)"
+       cx="-75.268890"
+       cy="84.146240"
+       fx="-75.268890"
+       fy="84.146240"
+       r="2.8901422" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37518"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,750.8541,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37520"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="45.452175"
+       cy="113.72600"
+       fx="45.452175"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37522"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,750.8539,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37524"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="45.452175"
+       cy="126.99414"
+       fx="45.452175"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37526"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,761.9907,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37528"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="48.591496"
+       cy="113.72600"
+       fx="48.591496"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37530"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,761.9907,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37532"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="48.591496"
+       cy="126.99414"
+       fx="48.591496"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37534"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,773.7887,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37536"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="51.917450"
+       cy="113.72600"
+       fx="51.917450"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37538"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,773.7887,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37540"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="51.917450"
+       cy="126.99414"
+       fx="51.917450"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37542"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,784.9257,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37544"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="55.056770"
+       cy="113.72600"
+       fx="55.056770"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37546"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,784.9257,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37548"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="55.056770"
+       cy="126.99414"
+       fx="55.056770"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37550"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,795.5451,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37552"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="58.050255"
+       cy="113.72600"
+       fx="58.050255"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37554"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,795.5451,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37556"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="58.050255"
+       cy="126.99414"
+       fx="58.050255"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37558"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,806.6821,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37560"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="61.189575"
+       cy="113.72600"
+       fx="61.189575"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37562"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,806.6821,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37564"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="61.189575"
+       cy="126.99414"
+       fx="61.189575"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37566"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,817.8559,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37568"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="64.339317"
+       cy="113.72600"
+       fx="64.339317"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37570"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,817.8559,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37572"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="64.339317"
+       cy="126.99414"
+       fx="64.339317"
+       fy="126.99414"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37574"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,828.9929,215.4511)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37576"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="67.478638"
+       cy="113.72600"
+       fx="67.478638"
+       fy="113.72600"
+       r="0.55242717" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient14160"
+       id="radialGradient37578"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.976428,0.000000,0.000000,0.488215,828.9926,238.9858)"
+       cx="-66.099426"
+       cy="99.988457"
+       fx="-66.099426"
+       fy="99.988457"
+       r="2.0070677" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6658"
+       id="radialGradient37580"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.547545,0.000000,0.000000,1.773772,525.0700,62.54288)"
+       cx="67.478638"
+       cy="126.99414"
+       fx="67.478638"
+       fy="126.99414"
+       r="0.55242717" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40927"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40929"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40931"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40933"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40935"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40937"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40939"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40941"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40943"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40945"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40947"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40949"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40951"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40953"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40955"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40957"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40959"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40961"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40963"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40965"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40967"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40969"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40971"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40973"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40975"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40977"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40979"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40981"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40983"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40985"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40987"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40989"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40991"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40993"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40995"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40997"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient40999"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41001"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41003"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41005"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41007"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41009"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41011"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41013"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41015"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41017"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41019"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41021"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41023"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41025"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41027"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41029"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41031"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41033"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41035"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41037"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41039"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41041"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41043"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41045"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41047"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41049"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41051"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41053"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41055"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41057"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41059"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41061"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41063"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41065"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41067"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41069"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41071"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41073"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41075"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41077"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41079"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41081"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41083"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41085"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41087"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41089"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41091"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41093"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41095"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41097"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41099"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41101"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41103"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41105"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41107"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41109"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41111"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41113"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41115"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41117"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41119"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41121"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41123"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41125"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41127"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41129"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41131"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41133"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41135"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41137"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41139"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41141"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41143"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41145"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41147"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41149"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41151"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41153"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41155"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41157"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41159"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41161"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41163"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41165"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41167"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41169"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41171"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41173"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41175"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41177"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41179"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41181"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41183"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.936460,0.502279,0.000000,1.336134,-538.0405,127.8727)"
+       x1="497.27309"
+       y1="244.14597"
+       x2="438.40750"
+       y2="174.45950" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41185"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.936460,0.502279,0.000000,1.336134,-538.0405,127.8727)"
+       x1="469.85454"
+       y1="245.17311"
+       x2="436.90248"
+       y2="186.03951" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41187"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.936460,0.432158,0.000000,2.028921,-586.9772,-65.04681)"
+       x1="497.27309"
+       y1="244.14597"
+       x2="438.40750"
+       y2="174.45950" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41189"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.936460,0.432158,0.000000,2.028921,-586.9772,-65.04681)"
+       x1="469.85454"
+       y1="245.17311"
+       x2="436.90248"
+       y2="186.03951" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41191"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.936460,0.953784,0.000000,2.537202,-641.0926,-476.4579)"
+       x1="497.27309"
+       y1="244.14597"
+       x2="438.40750"
+       y2="174.45950" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41193"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.936460,0.953784,0.000000,2.537202,-641.0926,-476.4579)"
+       x1="469.85454"
+       y1="245.17311"
+       x2="436.90248"
+       y2="186.03951" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41195"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41197"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41199"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41201"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41203"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41205"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41207"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41209"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41211"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41213"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41215"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41217"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41219"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41221"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41223"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41225"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41227"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41229"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41231"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41233"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41235"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41237"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41239"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41241"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41243"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41245"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41247"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41249"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41251"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41253"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41255"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.187820,0.841878)"
+       x1="-259.81807"
+       y1="-307.19340"
+       x2="-259.74080"
+       y2="-284.47438" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41257"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.460717,0.684595)"
+       x1="-224.73973"
+       y1="-377.94208"
+       x2="-224.64251"
+       y2="-349.36030" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41259"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.936460,0.000000,0.000000,2.454207,-494.6470,95.00727)"
+       x1="497.27309"
+       y1="244.14597"
+       x2="438.40750"
+       y2="174.45950" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6508"
+       id="linearGradient41261"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.936460,0.000000,0.000000,2.454207,-494.6470,95.00727)"
+       x1="469.85454"
+       y1="245.17311"
+       x2="436.90248"
+       y2="186.03951" />
+    <radialGradient
+       xlink:href="#linearGradient3017"
+       r="32.400997"
+       inkscape:collect="always"
+       id="radialGradient3020"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.017812,0.982500)"
+       fy="39.714470"
+       fx="67.252083"
+       cy="39.714470"
+       cx="67.252083" />
+    <linearGradient
+       id="linearGradient1696">
+      <stop
+         style="stop-color:#d7d4d5;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop1697" />
+      <stop
+         style="stop-color:#f2f2f2;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop1698" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient1727">
+      <stop
+         style="stop-color:#00c042;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop1728" />
+      <stop
+         style="stop-color:#6cff49;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop1729" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient1731">
+      <stop
+         style="stop-color:#606060;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop1732" />
+      <stop
+         style="stop-color:#f0f0f0;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop1733" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient1739">
+      <stop
+         style="stop-color:#d0f0f0;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop1740" />
+      <stop
+         style="stop-color:#faffff;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop1741" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3017">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.52577317;"
+         offset="0.0000000"
+         id="stop3018" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop3019" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1696"
+       id="linearGradient47963"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(0.831022,1.203337)"
+       x1="52.039398"
+       y1="93.432655"
+       x2="38.779137"
+       y2="73.709610" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1696"
+       id="linearGradient47965"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.141840,0.875779)"
+       x1="101.58556"
+       y1="123.73905"
+       x2="68.683929"
+       y2="94.950119" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1696"
+       id="linearGradient47967"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.444200,0.692425)"
+       x1="61.318573"
+       y1="69.988159"
+       x2="43.187496"
+       y2="113.94408" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1731"
+       id="linearGradient47969"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.360554,0.734995)"
+       x1="69.758781"
+       y1="149.86493"
+       x2="49.088371"
+       y2="125.84365" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1731"
+       id="linearGradient47971"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.491631,0.670407)"
+       x1="38.475441"
+       y1="76.877792"
+       x2="50.980556"
+       y2="97.393562" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1727"
+       id="linearGradient47973"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.033879,0.967231)"
+       x1="106.06989"
+       y1="68.346664"
+       x2="103.55814"
+       y2="66.288597" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1739"
+       id="linearGradient47975"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.022308,0.978179)"
+       x1="68.967087"
+       y1="61.385227"
+       x2="48.944408"
+       y2="32.755234" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1696"
+       id="linearGradient47977"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.106451,0.903791)"
+       x1="56.598106"
+       y1="146.75134"
+       x2="75.084007"
+       y2="133.35785" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1696"
+       id="linearGradient47979"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.383369,0.722873)"
+       x1="91.206520"
+       y1="122.64465"
+       x2="76.282440"
+       y2="169.12962" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1696"
+       id="linearGradient47981"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(1.306220,0.765568)"
+       x1="107.47197"
+       y1="172.93613"
+       x2="80.993660"
+       y2="152.92480" />
+    <linearGradient
+       id="linearGradient5022">
+      <stop
+         style="stop-color:#d4d4d4;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop5024" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.49803922;"
+         offset="0.50000000"
+         id="stop5026" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0.0000000;"
+         offset="1.0000000"
+         id="stop5028" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5016">
+      <stop
+         style="stop-color:#839da4;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop5018" />
+      <stop
+         style="stop-color:#496d77;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop5020" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5008">
+      <stop
+         style="stop-color:#0e0000;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop5010" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1.0000000;"
+         offset="0.50000000"
+         id="stop5012" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop5014" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient5002">
+      <stop
+         style="stop-color:#6e6e6e;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop5004" />
+      <stop
+         style="stop-color:#000000;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop5006" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4996">
+      <stop
+         style="stop-color:#4af853;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop4998" />
+      <stop
+         style="stop-color:#68b96d;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop5000" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4990">
+      <stop
+         style="stop-color:#bed1d0;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop4992" />
+      <stop
+         style="stop-color:#52727b;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop4994" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient29203">
+      <stop
+         style="stop-color:#d3d3d3;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop29205" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop29207" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient4981">
+      <stop
+         style="stop-color:#677883;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop4983" />
+      <stop
+         style="stop-color:#677883;stop-opacity:0.0000000;"
+         offset="1.0000000"
+         id="stop4985" />
+    </linearGradient>
+    <radialGradient
+       xlink:href="#linearGradient13376"
+       r="31.620827"
+       id="radialGradient32223"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.406487,0.000000,0.000000,1.203260,-97.64080,46.36617)"
+       fy="254.35735"
+       fx="-19.038713"
+       cy="253.63734"
+       cx="-19.261518" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32220"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.515689,0.000000,0.000000,1.150508,-137.5541,-43.81501)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32217"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.505549,0.000000,0.000000,2.080336,-137.8628,-216.3766)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient14835"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32214"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.500039,0.000000,0.000000,0.399114,-137.7513,113.5911)" />
+    <linearGradient
+       y2="232.23291"
+       y1="267.04773"
+       xlink:href="#linearGradient41493"
+       x2="30.608046"
+       x1="66.153191"
+       id="linearGradient32211"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.038476,0.000000,0.000000,0.962950,-247.3571,5.821430)" />
+    <linearGradient
+       id="linearGradient41493">
+      <stop
+         style="stop-color:#181818;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop41495" />
+      <stop
+         style="stop-color:#5e5e5e;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop41497" />
+    </linearGradient>
+    <linearGradient
+       y2="232.23291"
+       y1="267.04773"
+       xlink:href="#linearGradient41493"
+       x2="30.608046"
+       x1="66.153191"
+       id="linearGradient32208"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.038476,0.000000,0.000000,0.962950,-186.4643,5.821435)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32205"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.505549,0.000000,0.000000,0.324136,-13.01420,148.1464)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32202"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.229222,0.000000,0.000000,0.297185,-134.1312,199.6513)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32199"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.229222,0.000000,0.000000,0.299657,-134.1312,210.6030)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32196"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.229222,0.000000,0.000000,0.299657,-134.1311,222.1030)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32193"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.229222,0.000000,0.000000,0.299657,-134.1312,233.6030)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32190"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.229222,0.000000,0.000000,0.299657,-134.1312,245.1030)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32187"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.229222,0.000000,0.000000,0.299657,-134.1311,256.6030)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient32184"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.229222,0.000000,0.000000,0.299657,-134.1311,268.3530)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32181"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-114.7782,37.26488)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32178"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-126.7684,37.26487)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient32175"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-186.6780,258.5642)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient32172"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-186.6780,257.2634)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient32169"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-186.6780,256.0888)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient32166"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-186.6779,254.7020)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient32163"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-186.6778,253.4259)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient32160"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-186.6778,251.9992)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient41493"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32157"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.378708,0.000000,0.000000,0.180665,-159.3178,192.0174)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32154"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-197.6440,59.68751)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42556"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32147"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-107.8837,59.68751)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42560"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32140"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-143.7878,59.68751)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42564"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32133"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-125.8358,59.68751)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42568"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32126"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-161.7399,59.68751)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42572"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32119"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-179.6920,59.68751)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42576"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32112"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-196.9848,70.81251)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42580"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="463.46982"
+       y1="468.39120"
+       xlink:href="#linearGradient29203"
+       x2="-7.1335540"
+       x1="-1.5289621"
+       id="linearGradient32105"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.614247,0.000000,0.000000,0.511109,-183.7827,71.06251)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient42584"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.983338,0.000000,0.000000,0.530755,103.6490,228.5002)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32098"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,25.76900,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32095"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-82.03920,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32092"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,21.39650,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32089"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-86.41170,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32086"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,17.02410,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32083"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-90.78410,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32080"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,12.65160,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32077"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-95.15660,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32074"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,8.279100,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32071"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-99.52910,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32068"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,3.906600,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32065"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-103.9016,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32062"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,52.00380,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32059"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-55.80440,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32056"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,47.63140,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32053"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-60.17680,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32050"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,43.25890,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32047"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-64.54930,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32044"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,38.88640,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32041"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-68.92180,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32038"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,30.14150,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32035"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-77.66670,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32032"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,34.51400,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32029"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-73.29420,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32026"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-0.465800,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32023"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-108.2740,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32020"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-4.838300,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32017"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-112.6465,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32014"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-9.210800,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32011"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-117.0190,267.4325)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient32008"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-13.58330,245.0020)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient32005"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-121.3915,267.4325)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient32002"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-151.0295,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31999"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-146.6475,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31996"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-142.2655,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31993"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-137.8836,294.1509)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31990"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-115.9737,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31987"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-107.2098,294.1509)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31984"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-102.8279,294.1509)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31981"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-94.06390,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31978"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-98.44590,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31975"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-89.68200,294.1509)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31972"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-85.30000,294.5045)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31969"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-111.5918,294.1509)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31966"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-133.5016,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31963"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-129.1196,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31960"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-124.7377,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31957"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-120.3557,294.1510)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31954"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,25.60230,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31951"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-82.20590,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31948"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,21.22990,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31945"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-86.57830,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31942"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,16.85740,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31939"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-90.95080,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31936"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,12.48490,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31933"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-95.32330,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31930"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,8.112400,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31927"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-99.69580,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31924"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,3.740000,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31921"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-104.0682,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31918"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,51.83710,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31915"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-55.97110,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31912"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,47.46470,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31909"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-60.34350,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31906"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,43.09220,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31903"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-64.71600,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31900"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,38.71970,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31897"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-69.08850,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31894"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,29.97480,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31891"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-77.83340,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31888"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,34.34730,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31885"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-73.46090,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31882"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-0.632500,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31879"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-108.4407,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31876"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-5.005000,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31873"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-112.8132,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31870"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-9.377500,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31867"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-117.1857,263.6863)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31864"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-13.74990,241.2558)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31861"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-121.5581,263.6863)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31858"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-151.3911,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31855"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-147.0092,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31852"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-142.6272,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31849"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-138.2452,285.3549)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31846"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-116.3354,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31843"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-107.5715,285.3549)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31840"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-103.1895,285.3549)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31837"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-94.42560,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31834"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-98.80760,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31831"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-90.04360,285.3549)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31828"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-85.66170,285.7085)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31825"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-111.9535,285.3549)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31822"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-133.8633,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31819"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-129.4813,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31816"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-125.0994,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31813"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-120.7174,285.3550)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31810"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,27.58400,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31807"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-80.22420,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31804"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,23.21150,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31801"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-84.59670,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31798"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,18.83900,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31795"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-88.96920,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31792"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,14.46650,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31789"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-93.34170,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31786"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,10.09410,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31783"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-97.71410,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31780"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,5.721600,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31777"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-102.0866,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31774"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,53.81880,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31771"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-53.98940,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31768"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,49.44630,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31765"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-58.36190,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31762"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,45.07380,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31759"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-62.73440,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31756"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,40.70140,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31753"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-67.10680,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31750"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,31.95640,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31747"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-75.85180,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31744"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,36.32890,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31741"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-71.47930,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31738"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,1.349100,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31735"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-106.4591,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31732"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-3.023400,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31729"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-110.8316,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31726"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-7.395800,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31723"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-115.2040,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31720"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-11.76830,256.5809)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31717"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-119.5765,279.0341)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31714"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-149.2145,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31711"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-144.8326,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31708"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-140.4506,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31705"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-136.0686,305.9066)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31702"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-114.1588,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31699"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-105.3949,305.9066)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31696"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-101.0129,305.9066)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31693"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-92.24900,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31690"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-96.63090,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31687"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-87.86700,305.9066)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31684"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-83.48510,305.9066)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31681"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-109.7768,305.9066)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31678"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-131.6867,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31675"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-127.3047,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31672"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-122.9227,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31669"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-118.5408,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31666"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,27.41730,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31663"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-80.39090,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31660"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,23.04480,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31657"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-84.76340,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31654"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,18.67230,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31651"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-89.13590,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31648"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,14.29990,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31645"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-93.50830,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31642"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,9.927400,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31639"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-97.88080,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31636"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,5.554900,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31633"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-102.2533,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31630"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,53.65210,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31627"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-54.15610,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31624"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,49.27960,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31621"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-58.52860,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31618"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,44.90720,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31615"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-62.90100,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31612"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,40.53470,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31609"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-67.27350,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31606"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,31.78970,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31603"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-76.01850,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31600"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,36.16220,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31597"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-71.64600,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31594"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,1.182400,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31591"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-106.6258,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31588"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-3.190000,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31585"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-110.9982,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31582"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-7.562500,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31579"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-115.3707,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31576"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-11.93500,252.8348)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31573"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-119.7432,275.2879)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31570"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-149.5762,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31567"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-145.1942,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31564"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-140.8123,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31561"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-136.4303,297.1106)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31558"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-114.5205,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31555"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-105.7565,297.1106)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31552"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-101.3746,297.1106)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31549"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-92.61070,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31546"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-96.99260,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31543"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-88.22870,297.1106)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31540"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-83.84670,297.1106)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31537"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-110.1385,297.1106)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31534"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-132.0483,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31531"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-127.6664,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31528"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-123.2844,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31525"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-118.9024,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31522"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-16.43390,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31519"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-124.2421,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31516"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-20.80640,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31513"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-128.6146,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31510"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-25.17890,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31507"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-132.9871,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31504"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-29.55130,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31501"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-137.3595,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31498"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-33.92380,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31495"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-141.7320,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31492"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-38.29630,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31489"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-146.1045,279.0341)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31486"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-42.66880,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31483"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-150.4770,279.0341)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31480"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-184.4874,305.9068)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31477"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-180.1055,305.9068)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31474"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-175.7235,305.9068)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31471"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-171.3416,305.9067)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31468"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-166.9596,305.9068)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31465"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-162.5776,305.9068)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31462"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-158.1957,305.9068)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31459"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-153.8137,305.9068)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31456"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-16.60060,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31453"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-124.4088,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31450"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-20.97310,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31447"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-128.7813,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31444"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-25.34550,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31441"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-133.1537,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31438"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-29.71800,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31435"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-137.5262,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31432"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-34.09050,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31429"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-141.8987,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31426"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-38.46300,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31423"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-146.2712,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31420"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-42.83550,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31417"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-150.6437,275.2879)" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31414"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-47.20790,252.8347)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31411"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-155.0161,275.2879)" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31408"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-184.8491,297.1108)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31405"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-180.4672,297.1108)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31402"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-176.0852,297.1108)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31399"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-171.7033,297.1107)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31396"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-167.3213,297.1108)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31393"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-162.9393,297.1108)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31390"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-158.5573,297.1108)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <radialGradient
+       xlink:href="#linearGradient14160"
+       r="2.0070677"
+       id="radialGradient31387"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.389249,0.000000,0.000000,0.194625,-154.1754,297.1108)"
+       fy="99.988457"
+       fx="-66.099426"
+       cy="99.988457"
+       cx="-66.099426" />
+    <linearGradient
+       y2="84.271248"
+       y1="80.490494"
+       xlink:href="#linearGradient10810"
+       x2="-152.33473"
+       x1="-156.03067"
+       id="linearGradient31383"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.058310,0.000000,0.000000,0.803858,-47.19847,256.5810)" />
+    <linearGradient
+       y2="80.317116"
+       y1="83.947449"
+       xlink:href="#linearGradient11442"
+       x2="-63.953007"
+       x1="-64.000694"
+       id="linearGradient31380"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.838868,0.000000,0.000000,0.530755,-155.0067,279.0341)" />
+    <radialGradient
+       xlink:href="#linearGradient13376"
+       r="31.620827"
+       id="radialGradient52163"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(3.406487,0.000000,0.000000,1.203260,155.9766,239.3125)"
+       fy="254.35735"
+       fx="-19.038713"
+       cy="253.63734"
+       cx="-19.261518" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient52165"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.505549,0.000000,0.000000,1.098874,112.8796,242.7912)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient14835"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient52167"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.500039,0.000000,0.000000,0.399114,113.0498,274.1564)" />
+    <linearGradient
+       y2="232.23291"
+       y1="267.04773"
+       xlink:href="#linearGradient41493"
+       x2="30.608046"
+       x1="66.153191"
+       id="linearGradient52169"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.038476,0.000000,0.000000,0.962950,3.444000,280.3867)" />
+    <linearGradient
+       y2="232.23291"
+       y1="267.04773"
+       xlink:href="#linearGradient41493"
+       x2="30.608046"
+       x1="66.153191"
+       id="linearGradient52171"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.038476,0.000000,0.000000,0.962950,64.33680,280.3867)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient14835"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient52173"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.470326,0.000000,0.000000,0.399114,111.8541,432.6787)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient52175"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.505549,0.000000,0.000000,0.408796,237.7869,297.6224)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient52177"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.505549,0.000000,0.000000,2.776405,112.8758,-256.1552)" />
+    <linearGradient
+       y2="275.81308"
+       y1="233.36613"
+       xlink:href="#linearGradient12744"
+       x2="8.3977861"
+       x1="-35.945030"
+       id="linearGradient52179"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.505549,0.000000,0.000000,0.393631,113.3054,407.4747)" />
+    <radialGradient
+       xlink:href="#linearGradient18155"
+       r="20.140131"
+       id="radialGradient19735"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.035725,0.000000,0.000000,0.965507,2.474874,3.535534)"
+       fy="685.42749"
+       fx="-156.00693"
+       cy="685.42743"
+       cx="-156.58647" />
+    <linearGradient
+       id="linearGradient18155">
+      <stop
+         style="stop-color:#000000;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop18157" />
+      <stop
+         style="stop-color:#000000;stop-opacity:0.0000000;"
+         offset="1.0000000"
+         id="stop18159" />
+    </linearGradient>
+    <linearGradient
+       y2="605.07910"
+       y1="633.65204"
+       xlink:href="#linearGradient12759"
+       x2="-158.15326"
+       x1="-191.02443"
+       id="linearGradient19737"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(0.942809,1.060660)" />
+    <linearGradient
+       id="linearGradient12759">
+      <stop
+         style="stop-color:#b4b4b4;stop-opacity:1.0000000;"
+         offset="0.0000000"
+         id="stop12761" />
+      <stop
+         style="stop-color:#d7d8de;stop-opacity:1.0000000;"
+         offset="1.0000000"
+         id="stop12763" />
+    </linearGradient>
+    <linearGradient
+       y2="638.04340"
+       y1="605.33868"
+       xlink:href="#linearGradient12759"
+       x2="-157.56822"
+       x1="-190.57690"
+       id="linearGradient19739"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(0.944312,1.058972)" />
+    <linearGradient
+       y2="3027.5479"
+       y1="3026.5081"
+       xlink:href="#linearGradient12759"
+       x2="-37.858898"
+       x1="-33.914631"
+       id="linearGradient19741"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671070e-2,-2.232191)" />
+    <linearGradient
+       y2="3027.5479"
+       y1="3026.5081"
+       xlink:href="#linearGradient12759"
+       x2="-37.858898"
+       x1="-33.914631"
+       id="linearGradient19743"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.670770e-2,-0.250690)" />
+    <linearGradient
+       y2="3027.5479"
+       y1="3026.5081"
+       xlink:href="#linearGradient12759"
+       x2="-37.858898"
+       x1="-33.914631"
+       id="linearGradient19745"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,3.712324)" />
+    <linearGradient
+       y2="3027.5479"
+       y1="3026.5081"
+       xlink:href="#linearGradient12759"
+       x2="-37.858898"
+       x1="-33.914631"
+       id="linearGradient19747"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,5.693830)" />
+    <linearGradient
+       y2="3027.5479"
+       y1="3026.5081"
+       xlink:href="#linearGradient12759"
+       x2="-37.858898"
+       x1="-33.914631"
+       id="linearGradient19749"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,7.675337)" />
+    <linearGradient
+       y2="3027.5479"
+       y1="3026.5081"
+       xlink:href="#linearGradient12759"
+       x2="-37.858898"
+       x1="-33.914631"
+       id="linearGradient19751"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,9.656847)" />
+    <linearGradient
+       y2="3027.5479"
+       y1="3026.5081"
+       xlink:href="#linearGradient12759"
+       x2="-37.858898"
+       x1="-33.914631"
+       id="linearGradient19753"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,1.730818)" />
+    <linearGradient
+       y2="605.07910"
+       y1="633.65204"
+       xlink:href="#linearGradient12759"
+       x2="-158.15326"
+       x1="-191.02443"
+       id="linearGradient19755"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.381659,0.000000,0.000000,0.176842,-98.06087,537.6347)" />
+    <linearGradient
+       y2="638.04340"
+       y1="605.33868"
+       xlink:href="#linearGradient12759"
+       x2="-157.56822"
+       x1="-190.57690"
+       id="linearGradient19757"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.382268,0.000000,0.000000,0.176560,-98.06087,537.6347)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient18155"
+       id="radialGradient5074"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.035725,0.000000,0.000000,0.965507,2.474874,3.535534)"
+       cx="-156.58647"
+       cy="685.42743"
+       fx="-156.00693"
+       fy="685.42749"
+       r="20.140131" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5076"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(0.942809,1.060660)"
+       x1="-191.02443"
+       y1="633.65204"
+       x2="-158.15326"
+       y2="605.07910" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5078"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="scale(0.944312,1.058972)"
+       x1="-190.57690"
+       y1="605.33868"
+       x2="-157.56822"
+       y2="638.04340" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5080"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671070e-2,-2.232191)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5082"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.670770e-2,-0.250690)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5084"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,3.712324)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5086"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,5.693830)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5088"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,7.675337)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5090"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,9.656847)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5092"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(4.590798,0.000000,0.000000,0.217827,-6.671370e-2,1.730818)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5094"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.381659,0.000000,0.000000,0.176842,-98.06087,537.6347)"
+       x1="-191.02443"
+       y1="633.65204"
+       x2="-158.15326"
+       y2="605.07910" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5096"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.382268,0.000000,0.000000,0.176560,-98.06087,537.6347)"
+       x1="-190.57690"
+       y1="605.33868"
+       x2="-157.56822"
+       y2="638.04340" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5099"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.764555,0.000000,0.000000,0.351895,1316.329,1337.145)"
+       x1="-191.02443"
+       y1="633.65204"
+       x2="-158.15326"
+       y2="605.07910" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5101"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.765775,0.000000,0.000000,0.351334,1316.329,1337.145)"
+       x1="-190.57690"
+       y1="605.33868"
+       x2="-157.56822"
+       y2="638.04340" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5110"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(9.196475,0.000000,0.000000,0.433450,1512.635,270.7592)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5113"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(9.196475,0.000000,0.000000,0.433450,1512.635,286.5311)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5116"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(9.196475,0.000000,0.000000,0.433450,1512.635,282.5881)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5119"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(9.196475,0.000000,0.000000,0.433450,1512.635,278.6451)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5122"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(9.196475,0.000000,0.000000,0.433450,1512.635,274.7022)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5125"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(9.196475,0.000000,0.000000,0.433450,1512.635,266.8163)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5128"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(9.196475,0.000000,0.000000,0.433450,1512.635,262.8733)"
+       x1="-33.914631"
+       y1="3026.5081"
+       x2="-37.858898"
+       y2="3027.5479" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5131"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.888674,0.000000,0.000000,2.110588,1512.769,267.3151)"
+       x1="-191.02443"
+       y1="633.65204"
+       x2="-158.15326"
+       y2="605.07910" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient12759"
+       id="linearGradient5133"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.891685,0.000000,0.000000,2.107229,1512.769,267.3151)"
+       x1="-190.57690"
+       y1="605.33868"
+       x2="-157.56822"
+       y2="638.04340" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient18155"
+       id="radialGradient5140"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(2.074807,0.000000,0.000000,1.921245,1517.727,274.3504)"
+       cx="-156.58647"
+       cy="685.42743"
+       fx="-156.00693"
+       fy="685.42749"
+       r="20.140131" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1851"
+       id="radialGradient4312"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(-0.597418,0.000000,0.000000,0.102866,259.1690,1177.855)"
+       cx="-289.09140"
+       cy="598.36652"
+       fx="-285.65439"
+       fy="552.23833"
+       r="125.20509" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8481"
+       id="linearGradient4315"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.671353,0.000000,0.000000,-0.217957,247.5623,1250.585)"
+       x1="280.30070"
+       y1="418.04542"
+       x2="283.50529"
+       y2="212.07808" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8468"
+       id="linearGradient4318"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.904571,0.000000,0.000000,0.631338,313.5446,1149.237)"
+       x1="68.268656"
+       y1="164.80815"
+       x2="70.638656"
+       y2="87.802278" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4321"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.669304,0.000000,0.000000,-0.218624,247.5623,1250.585)"
+       x1="151.97781"
+       y1="82.293232"
+       x2="200.30677"
+       y2="418.78640" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8468"
+       id="linearGradient4324"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.669304,0.000000,0.000000,-0.218624,247.5623,1250.585)"
+       x1="282.27411"
+       y1="419.36390"
+       x2="282.27411"
+       y2="211.77074" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient8474"
+       id="linearGradient4327"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.627799,0.000000,0.000000,-0.280304,247.5623,1265.049)"
+       x1="312.61248"
+       y1="135.90253"
+       x2="339.46602"
+       y2="316.70622" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1806"
+       id="linearGradient4329"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.627799,0.000000,0.000000,-0.280304,247.5623,1265.049)"
+       x1="310.44888"
+       y1="142.43878"
+       x2="311.96148"
+       y2="261.76054" />
+    <linearGradient
+       y2="-0.12500010"
+       y1="0.60155678"
+       xlink:href="#linearGradient1164"
+       x2="-0.13106795"
+       x1="0.47572812"
+       spreadMethod="reflect"
+       id="linearGradient15504"
+       gradientUnits="objectBoundingBox" />
+    <linearGradient
+       id="linearGradient15498">
+      <stop
+         style="stop-color:#263d42;stop-opacity:1;"
+         offset="0.000000"
+         id="stop15500" />
+      <stop
+         style="stop-color:#9acde7;stop-opacity:1;"
+         offset="1.000000"
+         id="stop15502" />
+    </linearGradient>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.39272727"
+     inkscape:cx="937.50000"
+     inkscape:cy="469.02778"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     inkscape:window-width="1280"
+     inkscape:window-height="977"
+     inkscape:window-x="0"
+     inkscape:window-y="25" />
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1">
+    <path
+       sodipodi:nodetypes="ccc"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       d="M 1106.2698,1010.7060 L 1106.2698,1201.6903 L 907.47273,1201.6903"
+       id="path19238" />
+    <path
+       id="path19227"
+       d="M 673.53972,1201.6903 L 480.74095,1201.6903"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       sodipodi:nodetypes="cc" />
+    <path
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       d="M 427.80525,1179.3674 L 293.91201,819.44979"
+       id="path12258"
+       sodipodi:nodetypes="cc" />
+    <g
+       id="g3919"
+       transform="matrix(0.537179,0.000000,0.000000,0.537179,70.11473,646.6451)">
+      <path
+         transform="matrix(0.961691,0.000000,0.000000,1.000000,12.63789,0.000000)"
+         style="fill:#ffffff;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+         sodipodi:nodetypes="cccccccccccccccccc"
+         id="path1503"
+         d="M 127.50000,106.25000 C 127.50000,106.25000 126.25000,18.750100 231.25000,45.000000 C 336.25000,71.250000 317.50000,115.00000 318.75000,115.00000 C 320.00000,115.00000 300.00000,61.250000 380.00000,51.250000 C 452.50000,57.500000 486.25000,71.250000 482.50000,117.50000 C 478.75000,163.75000 443.75000,175.00000 443.75000,175.00000 C 443.75000,175.00000 507.50000,181.25000 490.00000,275.00000 C 462.50000,340.00000 462.50000,333.75000 398.75000,341.25000 C 370.00000,330.00000 368.75000,320.00000 368.75000,320.00000 C 368.75000,320.00000 421.25000,368.75000 342.50000,400.00000 C 253.75000,423.75000 242.50000,402.50000 205.00000,391.25000 C 168.75000,368.75000 176.25000,341.25000 176.25000,341.25000 C 176.25000,341.25000 198.75000,387.50000 122.50000,396.25000 C 46.250000,405.00000 17.500000,387.50000 3.7500000,316.25000 C 2.0861600e-06,262.50000 67.500000,257.50000 67.500000,257.50000 C 67.500000,257.50000 26.250000,258.75000 15.000000,231.25000 C 3.7500000,203.75000 -3.7500000,167.50000 30.000000,118.75000 C 92.500000,60.000000 135.00000,98.750000 127.50000,106.25000 z " />
+      <g
+         transform="matrix(0.298665,0.000000,0.000000,0.283273,76.42833,82.09869)"
+         style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+         id="g1556">
+        <g
+           transform="translate(107.0886,1.392441)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g770">
+          <path
+             style="fill:#b3b2b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+             sodipodi:nodetypes="ccccc"
+             id="path743"
+             d="M 299.84200,180.38000 L 177.21500,74.367000 L 250.79100,71.993600 L 385.28500,162.18300 C 385.28500,162.18300 353.63900,191.45600 299.84200,180.38000 z " />
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g761">
+            <path
+               style="fill:#b3b2b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path744"
+               d="M 176.42400,74.367000 L 178.00600,238.92400 L 300.63300,364.71500 L 301.42400,181.96200 L 176.42400,74.367000 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g754">
+              <path
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccc"
+                 id="path742"
+                 d="M 302.21600,181.17100 C 302.21600,181.17100 328.32300,184.33500 348.10200,180.38000 C 375.00000,170.09500 386.07600,163.76600 386.07600,163.76600 L 386.86700,342.56300 C 386.86700,342.56300 371.83500,353.63900 353.64000,360.75900 C 323.57600,367.08800 300.63300,364.71500 300.63300,364.71500 L 302.21600,181.17100 z " />
+              <g
+                 style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="g749">
+                <path
+                   transform="translate(-1.582260,0.000000)"
+                   style="fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   id="path745"
+                   d="M 315.66500,205.69600 C 315.66500,205.69600 378.95600,192.24700 378.95600,193.03800 C 378.95600,193.82900 378.16500,218.35400 378.16500,218.35400 C 378.16500,218.35400 316.45600,231.80400 315.66500,231.80400 C 314.87400,231.80400 314.87400,207.27800 315.66500,205.69600 z " />
+                <path
+                   style="fill:#000100;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path746"
+                   d="M 323.57600,246.83500 L 370.25300,237.34200 L 370.25300,241.29800 L 323.57600,251.58200 L 323.57600,246.83500 z " />
+                <path
+                   style="fill:#00b300;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path747"
+                   d="M 360.76000,268.98700 L 372.62700,267.40500 L 372.62700,279.27200 L 360.76000,281.64600 L 360.76000,268.98700 z " />
+                <path
+                   style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path748"
+                   d="M 365.50600,298.25900 L 373.41800,297.46800 L 373.41800,306.96200 L 365.50600,308.54400 L 365.50600,298.25900 z " />
+              </g>
+            </g>
+          </g>
+        </g>
+        <g
+           transform="matrix(0.868723,0.000000,0.000000,0.841809,-27.91207,15.52193)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g818">
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g801">
+            <path
+               transform="translate(-0.847921,19.50222)"
+               style="font-size:12.000000px;fill:#b3b3b3;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path607"
+               d="M 119.55700,425.38300 L 119.55700,438.10200 L 435.83200,344.83000 L 436.68000,329.56800 L 119.55700,425.38300 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g798">
+              <path
+                 transform="translate(-0.847921,19.50222)"
+                 style="font-size:12.000000px;fill:#cccccc;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path606"
+                 d="M 166.19300,347.37400 L 119.55700,426.23100 L 436.68000,329.56800 L 345.10400,298.19400 L 166.19300,347.37400 z " />
+              <path
+                 transform="matrix(0.708121,0.000000,0.000000,0.825311,71.30738,59.20586)"
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path605"
+                 d="M 139.05900,335.50300 C 139.05900,335.50300 127.18800,354.15700 132.27500,369.42000 C 136.51500,388.07500 150.08200,392.31400 153.47400,392.31400 C 156.86600,392.31400 377.17700,334.88400 377.17700,334.88400 C 377.17700,334.88400 383.26000,322.78400 386.65200,303.28200 C 379.86900,279.54000 367.15000,276.99600 352.73500,276.99600 C 328.99300,263.43000 353.58400,276.99600 353.58400,276.99600 L 139.05900,335.50300 z " />
+            </g>
+          </g>
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g811">
+            <path
+               style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="cccccccc"
+               id="path602"
+               d="M 420.57000,16.684400 C 420.57000,17.532300 399.37100,11.596800 377.32500,9.9009300 C 367.15000,10.748900 66.137900,65.863800 63.594200,65.863800 C 67.833800,65.015900 54.267000,65.863800 50.875300,73.495100 C 47.483600,81.126400 47.483600,343.13400 47.483600,343.13400 C 47.483600,343.13400 47.483700,350.76600 52.571200,356.70100 C 60.202500,360.09300 80.552600,360.94100 72.921300,360.94100 L 420.57000,16.684400 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g806">
+              <path
+                 transform="matrix(0.995445,0.000000,0.000000,0.910163,2.817975,-20.11005)"
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path600"
+                 d="M 71.233200,108.00900 L 418.87300,40.426100 C 423.96100,43.817800 429.04900,41.274100 431.59300,51.449200 C 434.13700,61.624100 430.74500,304.97800 430.74500,304.97800 C 430.74500,304.97800 432.44000,312.60900 426.50500,316.84900 C 420.56900,321.08800 79.669900,416.90400 79.669900,416.90400 C 79.669900,416.90400 69.494600,421.14300 63.559300,412.66400 C 55.080300,410.12100 60.202500,124.37000 60.202500,124.37000 C 60.202500,124.37000 61.027100,110.72000 71.233200,108.00900 z " />
+              <g
+                 style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="g795">
+                <path
+                   style="fill:url(#linearGradient614);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccccccccc"
+                   id="path603"
+                   d="M 89.031800,98.084400 L 394.28400,38.730300 C 394.28400,38.730300 401.91500,36.186500 407.85100,45.513700 C 413.78600,54.840800 412.09000,59.080400 412.09000,59.080400 L 412.09000,234.60000 C 411.24200,243.92700 412.93800,240.53500 407.85100,250.71100 C 397.67500,254.10200 105.14200,333.80700 105.14200,333.80700 C 105.14200,333.80700 105.14200,335.50300 94.967300,333.80700 C 84.792200,332.11100 81.400500,316.00100 81.400500,315.15300 C 81.400500,314.30500 78.008800,115.89100 78.008800,115.89100 C 78.008800,115.89100 79.704800,101.47600 89.031800,98.084400 z " />
+                <path
+                   style="fill:#00feb3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path604"
+                   d="M 368.84600,266.82100 L 398.52300,258.34200 L 398.52300,271.90900 C 398.52300,271.90900 368.84600,279.54000 368.84600,280.38800 C 368.84600,281.23600 368.84600,266.82100 368.84600,266.82100 z " />
+              </g>
+            </g>
+          </g>
+        </g>
+        <g
+           transform="matrix(1.060794,0.000000,0.000000,0.913679,-36.36050,196.9337)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g878">
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g875">
+            <path
+               transform="translate(3.955698,-6.329117)"
+               style="fill:#b2b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path831"
+               d="M 35.601300,306.96200 L 454.11400,242.08800 L 454.11400,266.61400 L 35.601200,332.27900 L 35.601300,306.96200 z " />
+            <path
+               style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path832"
+               d="M 39.557000,300.63300 C 41.930400,296.67700 90.981000,199.36700 90.981000,199.36700 L 371.04400,173.25900 L 458.07000,235.75900 L 39.557000,300.63300 z " />
+          </g>
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g859">
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g844">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path841"
+                 d="M 331.48700,184.33500 C 331.48700,184.33500 332.27900,193.03800 332.27900,193.82900 C 332.27900,194.62000 366.29800,234.17700 366.29800,234.17700 L 424.05100,224.68300 L 423.26000,218.35400 L 422.46800,218.35400 L 331.48700,184.33500 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path840"
+                 d="M 332.27900,184.33600 L 369.46200,180.38000 L 424.05100,218.35400 L 370.25300,225.47500 L 332.27900,184.33600 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g847">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path843"
+                 d="M 297.46800,195.41100 C 297.46800,195.41100 297.46800,203.32300 297.46800,204.11400 C 297.46800,204.90500 318.03800,241.29700 318.82900,241.29700 C 319.62000,241.29700 353.63900,236.55100 353.63900,236.55100 L 352.05700,227.05700" />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path842"
+                 d="M 298.26000,195.41100 C 299.05100,195.41100 322.78500,193.03800 322.78500,193.03800 L 352.84800,227.05700 L 321.99400,231.80400 L 298.26000,195.41100 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g850">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path833"
+                 d="M 90.189900,208.86100 L 98.101300,195.41100 L 272.94300,178.00600 L 282.43700,189.08200 L 90.189900,208.86100 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path834"
+                 d="M 90.189900,209.65200 L 89.398800,215.19000 L 282.43700,194.62000 L 282.43700,188.29100 L 90.189900,209.65200 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g853">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path835"
+                 d="M 90.981000,215.98100 L 287.18400,194.62000 L 309.33600,229.43000 L 71.993600,261.86700 L 90.981000,215.98100 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path836"
+                 d="M 71.993700,261.07600 L 71.202600,268.98700 L 309.33600,236.55100 C 310.12700,236.55100 308.54400,230.22100 308.54400,229.43000 C 308.54400,228.63900 71.993700,263.44900 71.993700,261.07600 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g856">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path838"
+                 d="M 82.278500,274.52500 L 301.42400,242.08900 L 306.17100,250.79100 L 79.905100,284.01900 L 82.278500,274.52500 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path839"
+                 d="M 79.113900,284.81000 L 79.113900,291.93000 L 306.17100,255.53800 L 305.38000,250.00000 L 79.113900,284.81000 z " />
+            </g>
+          </g>
+        </g>
+      </g>
+      <g
+         transform="matrix(0.298665,0.000000,0.000000,0.283273,290.1783,87.09869)"
+         style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+         id="g1647">
+        <g
+           transform="translate(107.0886,1.392441)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g1648">
+          <path
+             style="fill:#b3b2b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+             sodipodi:nodetypes="ccccc"
+             id="path1649"
+             d="M 299.84200,180.38000 L 177.21500,74.367000 L 250.79100,71.993600 L 385.28500,162.18300 C 385.28500,162.18300 353.63900,191.45600 299.84200,180.38000 z " />
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1650">
+            <path
+               style="fill:#b3b2b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1651"
+               d="M 176.42400,74.367000 L 178.00600,238.92400 L 300.63300,364.71500 L 301.42400,181.96200 L 176.42400,74.367000 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1652">
+              <path
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccc"
+                 id="path1653"
+                 d="M 302.21600,181.17100 C 302.21600,181.17100 328.32300,184.33500 348.10200,180.38000 C 375.00000,170.09500 386.07600,163.76600 386.07600,163.76600 L 386.86700,342.56300 C 386.86700,342.56300 371.83500,353.63900 353.64000,360.75900 C 323.57600,367.08800 300.63300,364.71500 300.63300,364.71500 L 302.21600,181.17100 z " />
+              <g
+                 style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="g1654">
+                <path
+                   transform="translate(-1.582260,0.000000)"
+                   style="fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   id="path1655"
+                   d="M 315.66500,205.69600 C 315.66500,205.69600 378.95600,192.24700 378.95600,193.03800 C 378.95600,193.82900 378.16500,218.35400 378.16500,218.35400 C 378.16500,218.35400 316.45600,231.80400 315.66500,231.80400 C 314.87400,231.80400 314.87400,207.27800 315.66500,205.69600 z " />
+                <path
+                   style="fill:#000100;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1656"
+                   d="M 323.57600,246.83500 L 370.25300,237.34200 L 370.25300,241.29800 L 323.57600,251.58200 L 323.57600,246.83500 z " />
+                <path
+                   style="fill:#00b300;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1657"
+                   d="M 360.76000,268.98700 L 372.62700,267.40500 L 372.62700,279.27200 L 360.76000,281.64600 L 360.76000,268.98700 z " />
+                <path
+                   style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1658"
+                   d="M 365.50600,298.25900 L 373.41800,297.46800 L 373.41800,306.96200 L 365.50600,308.54400 L 365.50600,298.25900 z " />
+              </g>
+            </g>
+          </g>
+        </g>
+        <g
+           transform="matrix(0.868723,0.000000,0.000000,0.841809,-27.91207,15.52193)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g1659">
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1660">
+            <path
+               transform="translate(-0.847921,19.50222)"
+               style="font-size:12.000000px;fill:#b3b3b3;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1661"
+               d="M 119.55700,425.38300 L 119.55700,438.10200 L 435.83200,344.83000 L 436.68000,329.56800 L 119.55700,425.38300 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1662">
+              <path
+                 transform="translate(-0.847921,19.50222)"
+                 style="font-size:12.000000px;fill:#cccccc;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1663"
+                 d="M 166.19300,347.37400 L 119.55700,426.23100 L 436.68000,329.56800 L 345.10400,298.19400 L 166.19300,347.37400 z " />
+              <path
+                 transform="matrix(0.708121,0.000000,0.000000,0.825311,71.30738,59.20586)"
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path1664"
+                 d="M 139.05900,335.50300 C 139.05900,335.50300 127.18800,354.15700 132.27500,369.42000 C 136.51500,388.07500 150.08200,392.31400 153.47400,392.31400 C 156.86600,392.31400 377.17700,334.88400 377.17700,334.88400 C 377.17700,334.88400 383.26000,322.78400 386.65200,303.28200 C 379.86900,279.54000 367.15000,276.99600 352.73500,276.99600 C 328.99300,263.43000 353.58400,276.99600 353.58400,276.99600 L 139.05900,335.50300 z " />
+            </g>
+          </g>
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1665">
+            <path
+               style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="cccccccc"
+               id="path1666"
+               d="M 420.57000,16.684400 C 420.57000,17.532300 399.37100,11.596800 377.32500,9.9009300 C 367.15000,10.748900 66.137900,65.863800 63.594200,65.863800 C 67.833800,65.015900 54.267000,65.863800 50.875300,73.495100 C 47.483600,81.126400 47.483600,343.13400 47.483600,343.13400 C 47.483600,343.13400 47.483700,350.76600 52.571200,356.70100 C 60.202500,360.09300 80.552600,360.94100 72.921300,360.94100 L 420.57000,16.684400 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1667">
+              <path
+                 transform="matrix(0.995445,0.000000,0.000000,0.910163,2.817975,-20.11005)"
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path1668"
+                 d="M 71.233200,108.00900 L 418.87300,40.426100 C 423.96100,43.817800 429.04900,41.274100 431.59300,51.449200 C 434.13700,61.624100 430.74500,304.97800 430.74500,304.97800 C 430.74500,304.97800 432.44000,312.60900 426.50500,316.84900 C 420.56900,321.08800 79.669900,416.90400 79.669900,416.90400 C 79.669900,416.90400 69.494600,421.14300 63.559300,412.66400 C 55.080300,410.12100 60.202500,124.37000 60.202500,124.37000 C 60.202500,124.37000 61.027100,110.72000 71.233200,108.00900 z " />
+              <g
+                 style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="g1669">
+                <path
+                   style="fill:url(#linearGradient614);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccccccccc"
+                   id="path1670"
+                   d="M 89.031800,98.084400 L 394.28400,38.730300 C 394.28400,38.730300 401.91500,36.186500 407.85100,45.513700 C 413.78600,54.840800 412.09000,59.080400 412.09000,59.080400 L 412.09000,234.60000 C 411.24200,243.92700 412.93800,240.53500 407.85100,250.71100 C 397.67500,254.10200 105.14200,333.80700 105.14200,333.80700 C 105.14200,333.80700 105.14200,335.50300 94.967300,333.80700 C 84.792200,332.11100 81.400500,316.00100 81.400500,315.15300 C 81.400500,314.30500 78.008800,115.89100 78.008800,115.89100 C 78.008800,115.89100 79.704800,101.47600 89.031800,98.084400 z " />
+                <path
+                   style="fill:#00feb3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1671"
+                   d="M 368.84600,266.82100 L 398.52300,258.34200 L 398.52300,271.90900 C 398.52300,271.90900 368.84600,279.54000 368.84600,280.38800 C 368.84600,281.23600 368.84600,266.82100 368.84600,266.82100 z " />
+              </g>
+            </g>
+          </g>
+        </g>
+        <g
+           transform="matrix(1.060794,0.000000,0.000000,0.913679,-36.36050,196.9337)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g1672">
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1673">
+            <path
+               transform="translate(3.955698,-6.329117)"
+               style="fill:#b2b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1674"
+               d="M 35.601300,306.96200 L 454.11400,242.08800 L 454.11400,266.61400 L 35.601200,332.27900 L 35.601300,306.96200 z " />
+            <path
+               style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1675"
+               d="M 39.557000,300.63300 C 41.930400,296.67700 90.981000,199.36700 90.981000,199.36700 L 371.04400,173.25900 L 458.07000,235.75900 L 39.557000,300.63300 z " />
+          </g>
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1676">
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1677">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1678"
+                 d="M 331.48700,184.33500 C 331.48700,184.33500 332.27900,193.03800 332.27900,193.82900 C 332.27900,194.62000 366.29800,234.17700 366.29800,234.17700 L 424.05100,224.68300 L 423.26000,218.35400 L 422.46800,218.35400 L 331.48700,184.33500 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1679"
+                 d="M 332.27900,184.33600 L 369.46200,180.38000 L 424.05100,218.35400 L 370.25300,225.47500 L 332.27900,184.33600 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1680">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1681"
+                 d="M 297.46800,195.41100 C 297.46800,195.41100 297.46800,203.32300 297.46800,204.11400 C 297.46800,204.90500 318.03800,241.29700 318.82900,241.29700 C 319.62000,241.29700 353.63900,236.55100 353.63900,236.55100 L 352.05700,227.05700" />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1682"
+                 d="M 298.26000,195.41100 C 299.05100,195.41100 322.78500,193.03800 322.78500,193.03800 L 352.84800,227.05700 L 321.99400,231.80400 L 298.26000,195.41100 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1683">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1684"
+                 d="M 90.189900,208.86100 L 98.101300,195.41100 L 272.94300,178.00600 L 282.43700,189.08200 L 90.189900,208.86100 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1685"
+                 d="M 90.189900,209.65200 L 89.398800,215.19000 L 282.43700,194.62000 L 282.43700,188.29100 L 90.189900,209.65200 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1686">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1687"
+                 d="M 90.981000,215.98100 L 287.18400,194.62000 L 309.33600,229.43000 L 71.993600,261.86700 L 90.981000,215.98100 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1688"
+                 d="M 71.993700,261.07600 L 71.202600,268.98700 L 309.33600,236.55100 C 310.12700,236.55100 308.54400,230.22100 308.54400,229.43000 C 308.54400,228.63900 71.993700,263.44900 71.993700,261.07600 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1689">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1690"
+                 d="M 82.278500,274.52500 L 301.42400,242.08900 L 306.17100,250.79100 L 79.905100,284.01900 L 82.278500,274.52500 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1691"
+                 d="M 79.113900,284.81000 L 79.113900,291.93000 L 306.17100,255.53800 L 305.38000,250.00000 L 79.113900,284.81000 z " />
+            </g>
+          </g>
+        </g>
+      </g>
+      <g
+         transform="matrix(0.298665,0.000000,0.000000,0.283273,177.6783,218.3487)"
+         style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+         id="g1692">
+        <g
+           transform="translate(107.0886,1.392441)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g1693">
+          <path
+             style="fill:#b3b2b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+             sodipodi:nodetypes="ccccc"
+             id="path1694"
+             d="M 299.84200,180.38000 L 177.21500,74.367000 L 250.79100,71.993600 L 385.28500,162.18300 C 385.28500,162.18300 353.63900,191.45600 299.84200,180.38000 z " />
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1695">
+            <path
+               style="fill:#b3b2b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1696"
+               d="M 176.42400,74.367000 L 178.00600,238.92400 L 300.63300,364.71500 L 301.42400,181.96200 L 176.42400,74.367000 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1697">
+              <path
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccc"
+                 id="path1698"
+                 d="M 302.21600,181.17100 C 302.21600,181.17100 328.32300,184.33500 348.10200,180.38000 C 375.00000,170.09500 386.07600,163.76600 386.07600,163.76600 L 386.86700,342.56300 C 386.86700,342.56300 371.83500,353.63900 353.64000,360.75900 C 323.57600,367.08800 300.63300,364.71500 300.63300,364.71500 L 302.21600,181.17100 z " />
+              <g
+                 style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="g1699">
+                <path
+                   transform="translate(-1.582260,0.000000)"
+                   style="fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   id="path1700"
+                   d="M 315.66500,205.69600 C 315.66500,205.69600 378.95600,192.24700 378.95600,193.03800 C 378.95600,193.82900 378.16500,218.35400 378.16500,218.35400 C 378.16500,218.35400 316.45600,231.80400 315.66500,231.80400 C 314.87400,231.80400 314.87400,207.27800 315.66500,205.69600 z " />
+                <path
+                   style="fill:#000100;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1701"
+                   d="M 323.57600,246.83500 L 370.25300,237.34200 L 370.25300,241.29800 L 323.57600,251.58200 L 323.57600,246.83500 z " />
+                <path
+                   style="fill:#00b300;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1702"
+                   d="M 360.76000,268.98700 L 372.62700,267.40500 L 372.62700,279.27200 L 360.76000,281.64600 L 360.76000,268.98700 z " />
+                <path
+                   style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1703"
+                   d="M 365.50600,298.25900 L 373.41800,297.46800 L 373.41800,306.96200 L 365.50600,308.54400 L 365.50600,298.25900 z " />
+              </g>
+            </g>
+          </g>
+        </g>
+        <g
+           transform="matrix(0.868723,0.000000,0.000000,0.841809,-27.91207,15.52193)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g1704">
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1705">
+            <path
+               transform="translate(-0.847921,19.50222)"
+               style="font-size:12.000000px;fill:#b3b3b3;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1706"
+               d="M 119.55700,425.38300 L 119.55700,438.10200 L 435.83200,344.83000 L 436.68000,329.56800 L 119.55700,425.38300 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1707">
+              <path
+                 transform="translate(-0.847921,19.50222)"
+                 style="font-size:12.000000px;fill:#cccccc;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1708"
+                 d="M 166.19300,347.37400 L 119.55700,426.23100 L 436.68000,329.56800 L 345.10400,298.19400 L 166.19300,347.37400 z " />
+              <path
+                 transform="matrix(0.708121,0.000000,0.000000,0.825311,71.30738,59.20586)"
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="cccccccc"
+                 id="path1709"
+                 d="M 139.05900,335.50300 C 139.05900,335.50300 127.18800,354.15700 132.27500,369.42000 C 136.51500,388.07500 150.08200,392.31400 153.47400,392.31400 C 156.86600,392.31400 377.17700,334.88400 377.17700,334.88400 C 377.17700,334.88400 383.26000,322.78400 386.65200,303.28200 C 379.86900,279.54000 367.15000,276.99600 352.73500,276.99600 C 328.99300,263.43000 353.58400,276.99600 353.58400,276.99600 L 139.05900,335.50300 z " />
+            </g>
+          </g>
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1710">
+            <path
+               style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="cccccccc"
+               id="path1711"
+               d="M 420.57000,16.684400 C 420.57000,17.532300 399.37100,11.596800 377.32500,9.9009300 C 367.15000,10.748900 66.137900,65.863800 63.594200,65.863800 C 67.833800,65.015900 54.267000,65.863800 50.875300,73.495100 C 47.483600,81.126400 47.483600,343.13400 47.483600,343.13400 C 47.483600,343.13400 47.483700,350.76600 52.571200,356.70100 C 60.202500,360.09300 80.552600,360.94100 72.921300,360.94100 L 420.57000,16.684400 z " />
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1712">
+              <path
+                 transform="matrix(0.995445,0.000000,0.000000,0.910163,2.817975,-20.11005)"
+                 style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccccccc"
+                 id="path1713"
+                 d="M 71.233200,108.00900 L 418.87300,40.426100 C 423.96100,43.817800 429.04900,41.274100 431.59300,51.449200 C 434.13700,61.624100 430.74500,304.97800 430.74500,304.97800 C 430.74500,304.97800 432.44000,312.60900 426.50500,316.84900 C 420.56900,321.08800 79.669900,416.90400 79.669900,416.90400 C 79.669900,416.90400 69.494600,421.14300 63.559300,412.66400 C 55.080300,410.12100 60.202500,124.37000 60.202500,124.37000 C 60.202500,124.37000 61.027100,110.72000 71.233200,108.00900 z " />
+              <g
+                 style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="g1714">
+                <path
+                   style="fill:url(#linearGradient614);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccccccccc"
+                   id="path1715"
+                   d="M 89.031800,98.084400 L 394.28400,38.730300 C 394.28400,38.730300 401.91500,36.186500 407.85100,45.513700 C 413.78600,54.840800 412.09000,59.080400 412.09000,59.080400 L 412.09000,234.60000 C 411.24200,243.92700 412.93800,240.53500 407.85100,250.71100 C 397.67500,254.10200 105.14200,333.80700 105.14200,333.80700 C 105.14200,333.80700 105.14200,335.50300 94.967300,333.80700 C 84.792200,332.11100 81.400500,316.00100 81.400500,315.15300 C 81.400500,314.30500 78.008800,115.89100 78.008800,115.89100 C 78.008800,115.89100 79.704800,101.47600 89.031800,98.084400 z " />
+                <path
+                   style="fill:#00feb3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="ccccc"
+                   id="path1716"
+                   d="M 368.84600,266.82100 L 398.52300,258.34200 L 398.52300,271.90900 C 398.52300,271.90900 368.84600,279.54000 368.84600,280.38800 C 368.84600,281.23600 368.84600,266.82100 368.84600,266.82100 z " />
+              </g>
+            </g>
+          </g>
+        </g>
+        <g
+           transform="matrix(1.060794,0.000000,0.000000,0.913679,-36.36050,196.9337)"
+           style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+           id="g1717">
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1718">
+            <path
+               transform="translate(3.955698,-6.329117)"
+               style="fill:#b2b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1719"
+               d="M 35.601300,306.96200 L 454.11400,242.08800 L 454.11400,266.61400 L 35.601200,332.27900 L 35.601300,306.96200 z " />
+            <path
+               style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path1720"
+               d="M 39.557000,300.63300 C 41.930400,296.67700 90.981000,199.36700 90.981000,199.36700 L 371.04400,173.25900 L 458.07000,235.75900 L 39.557000,300.63300 z " />
+          </g>
+          <g
+             style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+             id="g1721">
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1722">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1723"
+                 d="M 331.48700,184.33500 C 331.48700,184.33500 332.27900,193.03800 332.27900,193.82900 C 332.27900,194.62000 366.29800,234.17700 366.29800,234.17700 L 424.05100,224.68300 L 423.26000,218.35400 L 422.46800,218.35400 L 331.48700,184.33500 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1724"
+                 d="M 332.27900,184.33600 L 369.46200,180.38000 L 424.05100,218.35400 L 370.25300,225.47500 L 332.27900,184.33600 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1725">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1726"
+                 d="M 297.46800,195.41100 C 297.46800,195.41100 297.46800,203.32300 297.46800,204.11400 C 297.46800,204.90500 318.03800,241.29700 318.82900,241.29700 C 319.62000,241.29700 353.63900,236.55100 353.63900,236.55100 L 352.05700,227.05700" />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1727"
+                 d="M 298.26000,195.41100 C 299.05100,195.41100 322.78500,193.03800 322.78500,193.03800 L 352.84800,227.05700 L 321.99400,231.80400 L 298.26000,195.41100 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1728">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1729"
+                 d="M 90.189900,208.86100 L 98.101300,195.41100 L 272.94300,178.00600 L 282.43700,189.08200 L 90.189900,208.86100 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1730"
+                 d="M 90.189900,209.65200 L 89.398800,215.19000 L 282.43700,194.62000 L 282.43700,188.29100 L 90.189900,209.65200 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1731">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1732"
+                 d="M 90.981000,215.98100 L 287.18400,194.62000 L 309.33600,229.43000 L 71.993600,261.86700 L 90.981000,215.98100 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1733"
+                 d="M 71.993700,261.07600 L 71.202600,268.98700 L 309.33600,236.55100 C 310.12700,236.55100 308.54400,230.22100 308.54400,229.43000 C 308.54400,228.63900 71.993700,263.44900 71.993700,261.07600 z " />
+            </g>
+            <g
+               style="stroke:#000000;stroke-width:4.2974901;stroke-dasharray:none;stroke-opacity:1.0000000"
+               id="g1734">
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 id="path1735"
+                 d="M 82.278500,274.52500 L 301.42400,242.08900 L 306.17100,250.79100 L 79.905100,284.01900 L 82.278500,274.52500 z " />
+              <path
+                 style="fill:#e5e6e6;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.2974901;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path1736"
+                 d="M 79.113900,284.81000 L 79.113900,291.93000 L 306.17100,255.53800 L 305.38000,250.00000 L 79.113900,284.81000 z " />
+            </g>
+          </g>
+        </g>
+      </g>
+    </g>
+    <text
+       xml:space="preserve"
+       style="font-size:48.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="203.45128"
+       y="921.41278"
+       id="text4057"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan4059"
+         x="203.45128"
+         y="921.41278">Internet</tspan></text>
+    <g
+       id="g4331">
+      <path
+         style="fill:url(#linearGradient4327);fill-opacity:1.0000000;fill-rule:evenodd;stroke:url(#linearGradient4329);stroke-width:0.28469722pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:0.32704404"
+         id="path8486"
+         d="M 378.64586,1186.1097 L 371.10769,1219.6950 C 369.90235,1225.0652 376.38196,1233.1291 383.87233,1233.1291 L 478.55177,1233.1291 C 486.08041,1233.1291 492.65005,1225.1017 491.51743,1219.6950 L 484.48180,1186.1097 C 483.62900,1182.0388 475.87817,1179.3927 470.20953,1179.3927 L 393.01864,1179.3927 C 387.32185,1179.3927 379.56258,1182.0254 378.64586,1186.1097 z " />
+      <path
+         style="fill:url(#linearGradient4324);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.67866912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+         id="path8477"
+         d="M 381.13123,1184.9851 L 373.94885,1208.4599 C 372.80039,1212.2135 378.97418,1217.8498 386.11101,1217.8498 L 476.32176,1217.8498 C 483.49506,1217.8498 489.75462,1212.2389 488.67546,1208.4599 L 481.97190,1184.9851 C 481.15935,1182.1396 473.77434,1180.2901 468.37325,1180.2901 L 394.82564,1180.2901 C 389.39773,1180.2901 382.00468,1182.1303 381.13123,1184.9851 z " />
+      <path
+         style="fill:url(#linearGradient4321);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.67866912pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+         id="path8463"
+         d="M 379.88855,1184.6362 L 372.52827,1208.6924 C 371.35136,1212.5390 377.67806,1218.3149 384.99167,1218.3149 L 477.43677,1218.3149 C 484.78773,1218.3149 491.20233,1212.5651 490.09645,1208.6924 L 483.22685,1184.6362 C 482.39417,1181.7203 474.82626,1179.8249 469.29139,1179.8249 L 393.92214,1179.8249 C 388.35979,1179.8249 380.78363,1181.7107 379.88855,1184.6362 z " />
+      <path
+         style="fill:url(#linearGradient4318);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+         id="path1717"
+         d="M 381.83356,1183.5926 L 374.64393,1207.4394 C 373.49432,1211.2525 379.67433,1216.9781 386.81838,1216.9781 L 477.12019,1216.9781 C 484.30073,1216.9781 490.56663,1211.2784 489.48637,1207.4394 L 482.77605,1183.5926 C 481.96268,1180.7021 474.57021,1178.8232 469.16366,1178.8232 L 395.54180,1178.8232 C 390.10841,1178.8232 382.70789,1180.6926 381.83356,1183.5926 z " />
+      <path
+         style="fill:url(#linearGradient4315);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+         id="path8462"
+         d="M 383.94458,1185.6550 L 377.05716,1208.0287 C 375.95586,1211.6062 381.87611,1216.9781 388.71987,1216.9781 L 475.22599,1216.9781 C 482.10471,1216.9781 488.10722,1211.6305 487.07238,1208.0287 L 480.64411,1185.6550 C 479.86493,1182.9431 472.78320,1181.1803 467.60391,1181.1803 L 397.07662,1181.1803 C 391.87161,1181.1803 384.78216,1182.9342 383.94458,1185.6550 z " />
+      <g
+         transform="matrix(0.470219,0.000000,0.000000,0.470219,360.9633,1177.826)"
+         id="g10119">
+        <path
+           style="fill:#82ce7c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path7267"
+           d="M 99.661870,105.15823 L 99.184006,109.04052 C 99.107595,109.66129 99.518355,110.59343 99.993190,110.59343 L 105.99517,110.59343 C 106.47243,110.59343 106.88890,109.66550 106.81710,109.04052 L 106.37110,105.15823 C 106.31703,104.68765 105.82569,104.38177 105.46634,104.38177 L 100.57300,104.38177 C 100.21187,104.38177 99.719983,104.68610 99.661870,105.15823 z " />
+        <path
+           style="fill:#82ce7c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+           id="path7269"
+           d="M 99.661870,90.183030 L 99.184010,94.065320 C 99.107600,94.686090 99.518350,95.618230 99.993190,95.618230 L 105.99517,95.618230 C 106.47243,95.618230 106.88890,94.690300 106.81710,94.065320 L 106.37110,90.183030 C 106.31703,89.712450 105.82569,89.406570 105.46634,89.406570 L 100.57300,89.406570 C 100.21187,89.406570 99.719980,89.710900 99.661870,90.183030 z " />
+        <g
+           transform="translate(-3.625000,-0.500000)"
+           id="g10018">
+          <path
+             style="fill:url(#linearGradient4253);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path7283"
+             d="M 202.81540,100.25878 L 201.78690,107.99783 C 201.62244,109.23528 202.50651,111.09343 203.52849,111.09343 L 216.44646,111.09343 C 217.47366,111.09343 218.37001,109.24368 218.21548,107.99783 L 217.25555,100.25878 C 217.13919,99.320720 216.08168,98.710970 215.30825,98.710970 L 204.77640,98.710970 C 203.99914,98.710970 202.94047,99.317630 202.81540,100.25878 z " />
+          <path
+             style="fill:#82ce7c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path7285"
+             d="M 206.66187,90.683030 L 206.18400,94.565310 C 206.10759,95.186080 206.51835,96.118220 206.99319,96.118220 L 212.99517,96.118220 C 213.47243,96.118220 213.88890,95.190290 213.81710,94.565310 L 213.37109,90.683030 C 213.31703,90.212450 212.82569,89.906570 212.46633,89.906570 L 207.57300,89.906570 C 207.21186,89.906570 206.71998,90.210890 206.66187,90.683030 z " />
+        </g>
+        <g
+           transform="translate(0.000000,-0.500000)"
+           id="g10014">
+          <path
+             style="fill:url(#linearGradient4255);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path7289"
+             d="M 224.81540,100.25878 L 223.78690,107.99783 C 223.62244,109.23528 224.50651,111.09343 225.52849,111.09343 L 238.44646,111.09343 C 239.47366,111.09343 240.37001,109.24368 240.21548,107.99783 L 239.25555,100.25878 C 239.13919,99.320720 238.08168,98.710970 237.30825,98.710970 L 226.77640,98.710970 C 225.99914,98.710970 224.94047,99.317630 224.81540,100.25878 z " />
+          <path
+             style="fill:#ce7c85;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path7291"
+             d="M 228.66187,90.683030 L 228.18400,94.565310 C 228.10759,95.186080 228.51835,96.118220 228.99319,96.118220 L 234.99517,96.118220 C 235.47243,96.118220 235.88890,95.190290 235.81710,94.565310 L 235.37109,90.683030 C 235.31703,90.212450 234.82569,89.906570 234.46633,89.906570 L 229.57300,89.906570 C 229.21186,89.906570 228.71998,90.210890 228.66187,90.683030 z " />
+        </g>
+        <text
+           y="110.48015"
+           xml:space="preserve"
+           x="58.5"
+           style="font-size:8.0000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+           sodipodi:linespacing="100.00000%"
+           id="text7299"><tspan
+             y="110.48015"
+             x="58.500000"
+             sodipodi:role="line"
+             id="tspan7301">Collision</tspan></text>
+        <text
+           y="95.238602"
+           xml:space="preserve"
+           x="66.5"
+           style="font-size:8.0000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+           sodipodi:linespacing="100.00000%"
+           id="text7303"><tspan
+             y="95.238602"
+             x="66.500000"
+             sodipodi:role="line"
+             id="tspan7305">Power</tspan></text>
+        <g
+           transform="translate(-29.25000,-0.500000)"
+           id="g10022">
+          <path
+             style="fill:url(#linearGradient4257);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path10024"
+             d="M 202.81540,100.25878 L 201.78690,107.99783 C 201.62244,109.23528 202.50651,111.09343 203.52849,111.09343 L 216.44646,111.09343 C 217.47366,111.09343 218.37001,109.24368 218.21548,107.99783 L 217.25555,100.25878 C 217.13919,99.320720 216.08168,98.710970 215.30825,98.710970 L 204.77640,98.710970 C 203.99914,98.710970 202.94047,99.317630 202.81540,100.25878 z " />
+          <path
+             style="fill:#82ce7c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path10026"
+             d="M 206.66187,90.683030 L 206.18400,94.565310 C 206.10759,95.186080 206.51835,96.118220 206.99319,96.118220 L 212.99517,96.118220 C 213.47243,96.118220 213.88890,95.190290 213.81710,94.565310 L 213.37109,90.683030 C 213.31703,90.212450 212.82569,89.906570 212.46633,89.906570 L 207.57300,89.906570 C 207.21186,89.906570 206.71998,90.210890 206.66187,90.683030 z " />
+        </g>
+        <g
+           transform="translate(-54.87500,-0.500000)"
+           id="g10030">
+          <path
+             style="fill:url(#linearGradient4259);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path10032"
+             d="M 202.81540,100.25878 L 201.78690,107.99783 C 201.62244,109.23528 202.50651,111.09343 203.52849,111.09343 L 216.44646,111.09343 C 217.47366,111.09343 218.37001,109.24368 218.21548,107.99783 L 217.25555,100.25878 C 217.13919,99.320720 216.08168,98.710970 215.30825,98.710970 L 204.77640,98.710970 C 203.99914,98.710970 202.94047,99.317630 202.81540,100.25878 z " />
+          <path
+             style="fill:#82ce7c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path10034"
+             d="M 206.66187,90.683030 L 206.18400,94.565310 C 206.10759,95.186080 206.51835,96.118220 206.99319,96.118220 L 212.99517,96.118220 C 213.47243,96.118220 213.88890,95.190290 213.81710,94.565310 L 213.37109,90.683030 C 213.31703,90.212450 212.82569,89.906570 212.46633,89.906570 L 207.57300,89.906570 C 207.21186,89.906570 206.71998,90.210890 206.66187,90.683030 z " />
+        </g>
+        <g
+           transform="translate(-80.50000,-0.500000)"
+           id="g10038">
+          <path
+             style="fill:url(#linearGradient4261);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path10040"
+             d="M 202.81540,100.25878 L 201.78690,107.99783 C 201.62244,109.23528 202.50651,111.09343 203.52849,111.09343 L 216.44646,111.09343 C 217.47366,111.09343 218.37001,109.24368 218.21548,107.99783 L 217.25555,100.25878 C 217.13919,99.320720 216.08168,98.710970 215.30825,98.710970 L 204.77640,98.710970 C 203.99914,98.710970 202.94047,99.317630 202.81540,100.25878 z " />
+          <path
+             style="fill:#82ce7c;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.55278249pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path10042"
+             d="M 206.66187,90.683030 L 206.18400,94.565310 C 206.10759,95.186080 206.51835,96.118220 206.99319,96.118220 L 212.99517,96.118220 C 213.47243,96.118220 213.88890,95.190290 213.81710,94.565310 L 213.37109,90.683030 C 213.31703,90.212450 212.82569,89.906570 212.46633,89.906570 L 207.57300,89.906570 C 207.21186,89.906570 206.71998,90.210890 206.66187,90.683030 z " />
+        </g>
+      </g>
+    </g>
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="236.90706"
+       y="1220.9423"
+       id="text4202"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan4204"
+         x="236.90706"
+         y="1220.9423">ADSL modem</tspan></text>
+    <text
+       y="691.18127"
+       x="891.64758"
+       style="font-size:30.101904px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       space="preserve"
+       id="text20002">
+      <tspan
+         y="691.18127"
+         x="891.64758"
+         id="tspan20004" />
+    </text>
+    <path
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       d="M 1181.9247,550.71001 L 1181.9247,947.94609"
+       id="path21110"
+       sodipodi:nodetypes="cc" />
+    <text
+       id="text4699"
+       space="preserve"
+       style="font-size:30.101904px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="891.64758"
+       y="1019.8821">
+      <tspan
+         id="tspan4700"
+         x="891.64758"
+         y="1019.8821" />
+    </text>
+    <path
+       id="path31747"
+       d="M 1104.0267,950.20709 L 1104.0267,786.18627 L 471.26982,786.18627 L 471.26982,667.95792"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       sodipodi:nodetypes="cccc" />
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="421.3092"
+       y="820.78467"
+       id="text35483"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         x="421.30920"
+         y="820.78467"
+         id="tspan35487">Free access</tspan><tspan
+         sodipodi:role="line"
+         x="421.30920"
+         y="860.78467"
+         id="tspan36337">(for room 3)</tspan></text>
+    <rect
+       style="fill:#ffffff;fill-opacity:0.0000000;stroke:#000000;stroke-width:3.0000000;stroke-linecap:butt;stroke-miterlimit:4.0000000;stroke-dasharray:6.0000000 18.000000 ;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+       id="rect28789"
+       width="243.95662"
+       height="155.01654"
+       x="420.80725"
+       y="562.68579" />
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="542.66833"
+       y="622.00513"
+       id="text31743"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan31745"
+         x="542.66833"
+         y="622.00513">Room 3</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="488.86823"
+       y="699.95789"
+       id="text33229"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan33231"
+         x="488.86823"
+         y="699.95789">UTP-5</tspan></text>
+    <path
+       style="fill:#00ff00;fill-opacity:1.0000000;fill-rule:nonzero;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       id="path35559"
+       d="M 605.51034,680.99062 C 610.23885,684.15092 611.14330,691.93997 615.91065,694.85385 C 616.92879,695.47615 620.39198,693.21089 619.26934,693.61530 C 605.75056,698.48504 611.21029,697.06541 615.77314,688.43069 C 622.96372,674.14094 630.76107,660.15722 640.13847,647.18118 L 650.97268,642.50415 C 641.30361,655.26913 633.27019,669.10832 626.45207,683.59829 C 612.62221,713.06357 607.72140,702.32252 594.58524,688.17895 L 605.51034,680.99062 z " />
+    <path
+       sodipodi:nodetypes="cccc"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       d="M 1120.8698,946.30945 L 1120.8698,768.18627 L 757.06982,768.18627 L 757.06982,667.95792"
+       id="path35522" />
+    <text
+       sodipodi:linespacing="125.00000%"
+       id="text35536"
+       y="820.78467"
+       x="707.13593"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       xml:space="preserve"><tspan
+         id="tspan35540"
+         y="820.78467"
+         x="707.13593"
+         sodipodi:role="line">Free access</tspan><tspan
+         y="860.78467"
+         x="707.13593"
+         sodipodi:role="line"
+         id="tspan36339">(for room 4)</tspan></text>
+    <rect
+       y="562.68579"
+       x="706.63397"
+       height="155.01654"
+       width="243.95662"
+       id="rect35526"
+       style="fill:#ffffff;fill-opacity:0.0000000;stroke:#000000;stroke-width:3.0000000;stroke-linecap:butt;stroke-miterlimit:4.0000000;stroke-dasharray:6.0000000 18.000000 ;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+    <text
+       sodipodi:linespacing="125.00000%"
+       id="text35528"
+       y="622.00513"
+       x="828.49512"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       xml:space="preserve"><tspan
+         y="622.00513"
+         x="828.49512"
+         id="tspan35530"
+         sodipodi:role="line">Room 4</tspan></text>
+    <text
+       sodipodi:linespacing="125.00000%"
+       id="text35532"
+       y="699.95789"
+       x="774.69501"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       xml:space="preserve"><tspan
+         y="699.95789"
+         x="774.69501"
+         id="tspan35534"
+         sodipodi:role="line">UTP-5</tspan></text>
+    <path
+       sodipodi:nodetypes="cccc"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       d="M 1104.0267,491.58509 L 1104.0267,327.56427 L 471.26982,327.56427 L 471.26982,209.33592"
+       id="path36428" />
+    <text
+       sodipodi:linespacing="125.00000%"
+       id="text36430"
+       y="362.16272"
+       x="421.3092"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       xml:space="preserve"><tspan
+         id="tspan36434"
+         y="362.16272"
+         x="421.30920"
+         sodipodi:role="line">Free access</tspan><tspan
+         id="tspan36436"
+         y="402.16272"
+         x="421.30920"
+         sodipodi:role="line">(for room 1)</tspan></text>
+    <rect
+       y="104.06386"
+       x="420.80725"
+       height="155.01654"
+       width="243.95662"
+       id="rect36440"
+       style="fill:#ffffff;fill-opacity:0.0000000;stroke:#000000;stroke-width:3.0000000;stroke-linecap:butt;stroke-miterlimit:4.0000000;stroke-dasharray:6.0000000 18.000000 ;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+    <text
+       sodipodi:linespacing="125.00000%"
+       id="text36442"
+       y="163.38312"
+       x="542.66833"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       xml:space="preserve"><tspan
+         y="163.38312"
+         x="542.66833"
+         id="tspan36444"
+         sodipodi:role="line">Room 1</tspan></text>
+    <text
+       sodipodi:linespacing="125.00000%"
+       id="text36446"
+       y="241.33588"
+       x="488.86823"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       xml:space="preserve"><tspan
+         y="241.33588"
+         x="488.86823"
+         id="tspan36448"
+         sodipodi:role="line">UTP-5</tspan></text>
+    <path
+       d="M 605.51034,222.36862 C 610.23885,225.52892 611.14330,233.31797 615.91065,236.23185 C 616.92879,236.85415 620.39198,234.58889 619.26934,234.99330 C 605.75056,239.86304 611.21029,238.44341 615.77314,229.80869 C 622.96372,215.51894 630.76107,201.53522 640.13847,188.55918 L 650.97268,183.88215 C 641.30361,196.64713 633.27019,210.48632 626.45207,224.97629 C 612.62221,254.44157 607.72140,243.70052 594.58524,229.55695 L 605.51034,222.36862 z "
+       id="path36450"
+       style="fill:#00ff00;fill-opacity:1.0000000;fill-rule:nonzero;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+    <path
+       id="path36454"
+       d="M 1120.8698,487.68745 L 1120.8698,309.56427 L 757.06982,309.56427 L 757.06982,209.33592"
+       style="fill:none;fill-opacity:0.75000000;fill-rule:evenodd;stroke:#000000;stroke-width:4.0000000;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       sodipodi:nodetypes="cccc" />
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="707.13593"
+       y="362.16272"
+       id="text36456"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         x="707.13593"
+         y="362.16272"
+         id="tspan36460">Free access</tspan><tspan
+         id="tspan36462"
+         sodipodi:role="line"
+         x="707.13593"
+         y="402.16272">(for room 2)</tspan></text>
+    <rect
+       style="fill:#ffffff;fill-opacity:0.0000000;stroke:#000000;stroke-width:3.0000000;stroke-linecap:butt;stroke-miterlimit:4.0000000;stroke-dasharray:6.0000000 18.000000 ;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000"
+       id="rect36466"
+       width="243.95662"
+       height="155.01654"
+       x="706.63397"
+       y="104.06386" />
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="828.49512"
+       y="163.38312"
+       id="text36468"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan36470"
+         x="828.49512"
+         y="163.38312">Room 2</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="774.69501"
+       y="241.33588"
+       id="text36472"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan36474"
+         x="774.69501"
+         y="241.33588">UTP-5</tspan></text>
+    <path
+       d="M 892.63633,680.99062 C 897.36483,684.15092 898.26923,691.93997 903.03663,694.85385 C 904.05473,695.47615 907.51793,693.21089 906.39533,693.61530 C 892.87653,698.48504 898.33623,697.06541 902.89913,688.43069 C 910.08973,674.14094 917.88703,660.15722 927.26443,647.18118 L 938.09863,642.50415 C 928.42963,655.26913 920.39613,669.10832 913.57803,683.59829 C 899.74823,713.06357 894.84733,702.32252 881.71123,688.17895 L 892.63633,680.99062 z "
+       id="path40702"
+       style="fill:#00ff00;fill-opacity:1.0000000;fill-rule:nonzero;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000" />
+    <text
+       xml:space="preserve"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       x="1210.6172"
+       y="920.74164"
+       id="text40713"
+       sodipodi:linespacing="125.00000%"><tspan
+         sodipodi:role="line"
+         id="tspan40715"
+         x="1210.6172"
+         y="920.74164">Simple switch #1</tspan></text>
+    <text
+       sodipodi:linespacing="125.00000%"
+       id="text40717"
+       y="459.12796"
+       x="1210.6172"
+       style="font-size:32.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+       xml:space="preserve"><tspan
+         y="459.12796"
+         x="1210.6172"
+         id="tspan40719"
+         sodipodi:role="line">Simple switch #2</tspan></text>
+    <g
+       id="g49689"
+       transform="translate(321.2698,937.7139)">
+      <rect
+         y="156.89761"
+         x="216.43214"
+         height="271.14737"
+         width="458.32129"
+         id="rect19260"
+         style="fill:#ffffff;fill-opacity:0.0000000;stroke:#ff0000;stroke-width:4.0000000;stroke-linecap:butt;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" />
+      <g
+         transform="translate(22.64328,0.000000)"
+         id="g49670">
+        <g
+           id="g1440"
+           transform="matrix(-0.679077,0.000000,0.000000,0.679077,613.1959,111.1484)">
+          <g
+             id="g731">
+            <path
+               transform="translate(26.10760,-0.791130)"
+               style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+               sodipodi:nodetypes="ccccc"
+               id="path703"
+               d="M 10.284800,152.69000 C 10.284800,152.69000 305.38000,146.36100 306.96200,146.36100 C 308.54400,146.36100 450.15800,253.95600 450.15800,253.95600 L 90.981000,268.98700 C 90.981000,268.98700 10.284800,151.10800 10.284800,152.69000 z " />
+            <g
+               id="g722">
+              <path
+                 transform="translate(26.10760,-0.791130)"
+                 style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+                 sodipodi:nodetypes="ccccc"
+                 id="path702"
+                 d="M 90.189900,340.98100 L 10.284800,194.62000 L 9.4936800,152.68900 L 90.981000,268.19600 C 94.145600,270.56900 94.936700,337.02500 90.189900,340.98100 z " />
+              <g
+                 id="g715">
+                <path
+                   transform="matrix(1.004310,0.000000,0.000000,1.000000,25.72227,-0.791130)"
+                   style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1.0000000"
+                   sodipodi:nodetypes="cccccc"
+                   id="path701"
+                   d="M 93.354500,268.19600 L 449.36700,253.16400 C 449.36700,253.16400 456.48800,273.73500 456.48800,288.76600 C 456.48800,306.17100 452.53200,321.99400 451.74100,322.78500 L 89.398800,340.19000 C 94.145700,328.32200 94.145500,315.66400 93.354500,268.19600 z " />
+                <g
+                   id="g710">
+                  <path
+                     style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                     sodipodi:nodetypes="ccccc"
+                     id="path706"
+                     d="M 449.36700,298.26000 L 463.60800,297.46800 L 463.60800,309.33500 L 449.36700,310.12700 L 449.36700,298.26000 z " />
+                  <g
+                     id="g707">
+                    <path
+                       style="fill:#cccccc;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:2.5000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1.0000000"
+                       sodipodi:nodetypes="ccccc"
+                       id="path704"
+                       d="M 134.49400,281.64600 L 265.03200,276.10800 L 264.24100,310.12700 L 133.70200,317.24600 L 134.49400,281.64600 z " />
+                    <path
+                       style="fill:#b3b3b3;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+                       sodipodi:nodetypes="ccccc"
+                       id="path705"
+                       d="M 443.82900,268.19600 C 444.62000,268.19600 465.98100,267.40500 465.98100,267.40500 L 465.98100,283.22800 L 443.82900,284.01900 L 443.82900,268.19600 z " />
+                  </g>
+                </g>
+              </g>
+            </g>
+          </g>
+          <path
+             style="fill:#000000;fill-opacity:0.25185201;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path567"
+             d="M 228.10400,151.93700 C 228.10400,151.93700 321.70800,150.12000 328.97900,151.02800 C 336.24900,151.93700 403.49900,208.28100 403.49900,208.28100 C 403.49900,208.28100 345.33700,150.11900 228.10400,151.93700 z " />
+          <path
+             style="fill:#ffffff;fill-opacity:0.49999997;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path568"
+             d="M 125.41200,328.24000 C 125.41200,327.33200 120.86800,274.62200 125.41200,274.62200 C 129.95600,274.62200 258.09400,265.53500 258.09400,265.53500 C 258.09400,265.53500 123.59400,279.16600 125.41200,328.24000 z " />
+          <path
+             style="fill:#ffffff;fill-opacity:0.49803898;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+             id="path569"
+             d="M 94.513200,243.72400 C 94.513200,243.72400 111.78000,266.44300 112.68900,271.89600 C 113.59800,277.34900 115.41500,323.69700 115.41500,323.69700 C 115.41500,323.69700 111.78000,275.53100 94.513200,243.72400 z " />
+        </g>
+        <text
+           xml:space="preserve"
+           style="font-size:48.000000px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125.00000%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"
+           x="424.72989"
+           y="395.88855"
+           id="text6614"
+           sodipodi:linespacing="125.00000%"><tspan
+             sodipodi:role="line"
+             id="tspan9784"
+             x="424.72989"
+             y="395.88855">HotelGate server</tspan></text>
+      </g>
+    </g>
+    <path
+       style="fill:#00ff00;fill-opacity:1.0000000;fill-rule:nonzero;stroke:#000000;stroke-width:1.0000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
+       id="path13368"
+       d="M 892.63631,222.36862 C 897.36482,225.52892 898.26927,233.31797 903.03662,236.23185 C 904.05476,236.85415 907.51795,234.58889 906.39531,234.99330 C 892.87653,239.86304 898.33626,238.44341 902.89911,229.80869 C 910.08969,215.51894 917.88704,201.53522 927.26444,188.55918 L 938.09865,183.88215 C 928.42958,196.64713 920.39616,210.48632 913.57804,224.97629 C 899.74818,254.44157 894.84737,243.70052 881.71121,229.55695 L 892.63631,222.36862 z " />
+    <g
+       id="g15506"
+       transform="matrix(0.491574,0.000000,0.000000,0.491574,1017.220,852.3515)">
+      <path
+         style="fill:#000000;fill-opacity:0.25185201;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000"
+         id="path586"
+         d="M 183.54400,186.70900 C 183.54400,186.70900 412.97500,180.38000 417.72200,188.29100 C 422.46800,196.20300 450.94900,246.83500 450.94900,246.83500 C 450.94900,246.83500 420.88600,193.03800 183.54400,186.70900 z " />
+      <g
+         id="g880">
+        <path
+           transform="translate(-3.750000,70.00000)"
+           style="font-size:12.000000px;fill:#4c4b4c;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           id="path1435"
+           d="M 33.750000,181.25000 L 477.50000,182.50000 L 481.25000,268.75000 L 32.500000,270.00000 L 33.750000,181.25000 z " />
+        <path
+           transform="translate(-3.750000,70.00000)"
+           style="font-size:12.000000px;fill:#4c4b4c;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           id="path1436"
+           d="M 32.500000,180.00000 C 33.750000,178.75000 107.50000,111.25000 107.50000,111.25000 L 426.25000,111.25000 L 477.50000,183.75000 L 32.500000,180.00000 z " />
+        <path
+           transform="translate(387.5000,65.00000)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1437"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(353.7500,65.00000)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1438"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(322.5000,65.00000)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1439"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(290.0000,65.00000)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1440"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(258.7500,65.00000)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1441"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(228.7500,65.00000)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1442"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(198.7500,65.00000)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1443"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(168.7500,65.00000)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1444"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(138.7500,65.00000)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1445"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(107.5000,65.00000)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1446"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(78.75000,65.00000)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1447"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(48.75000,65.00000)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1448"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(17.50000,65.00000)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1449"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(-11.25000,65.00000)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1450"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(388.7500,103.7500)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1451"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(355.0000,103.7500)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1452"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(323.7500,103.7500)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1453"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(291.2500,103.7500)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1454"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(260.0000,103.7500)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1455"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(230.0000,103.7500)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1456"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(200.0000,103.7500)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1457"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(170.0000,103.7500)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1458"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(140.0000,103.7500)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1459"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(108.7500,103.7500)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1460"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(80.00000,103.7500)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1461"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(50.00000,103.7500)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1462"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(18.75000,103.7500)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1463"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+        <path
+           transform="translate(-10.00000,103.7500)"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           sodipodi:nodetypes="ccccc"
+           id="path1464"
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z " />
+      </g>
+    </g>
+    <g
+       transform="matrix(0.491574,0.000000,0.000000,0.491574,1017.220,393.8722)"
+       id="g15540">
+      <path
+         d="M 183.54400,186.70900 C 183.54400,186.70900 412.97500,180.38000 417.72200,188.29100 C 422.46800,196.20300 450.94900,246.83500 450.94900,246.83500 C 450.94900,246.83500 420.88600,193.03800 183.54400,186.70900 z "
+         id="path15542"
+         style="fill:#000000;fill-opacity:0.25185201;fill-rule:evenodd;stroke:none;stroke-width:1.0000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000" />
+      <g
+         id="g15544">
+        <path
+           d="M 33.750000,181.25000 L 477.50000,182.50000 L 481.25000,268.75000 L 32.500000,270.00000 L 33.750000,181.25000 z "
+           id="path15546"
+           style="font-size:12.000000px;fill:#4c4b4c;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(-3.750000,70.00000)" />
+        <path
+           d="M 32.500000,180.00000 C 33.750000,178.75000 107.50000,111.25000 107.50000,111.25000 L 426.25000,111.25000 L 477.50000,183.75000 L 32.500000,180.00000 z "
+           id="path15548"
+           style="font-size:12.000000px;fill:#4c4b4c;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(-3.750000,70.00000)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15550"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(387.5000,65.00000)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15552"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(353.7500,65.00000)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15554"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(322.5000,65.00000)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15556"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(290.0000,65.00000)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15558"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(258.7500,65.00000)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15560"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(228.7500,65.00000)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15562"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(198.7500,65.00000)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15564"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(168.7500,65.00000)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15566"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(138.7500,65.00000)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15568"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(107.5000,65.00000)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15570"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(78.75000,65.00000)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15572"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(48.75000,65.00000)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15574"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(17.50000,65.00000)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15576"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(-11.25000,65.00000)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15578"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(388.7500,103.7500)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15580"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(355.0000,103.7500)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15582"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(323.7500,103.7500)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15584"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(291.2500,103.7500)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15586"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(260.0000,103.7500)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15588"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(230.0000,103.7500)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15590"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(200.0000,103.7500)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15592"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(170.0000,103.7500)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15594"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(140.0000,103.7500)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15596"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(108.7500,103.7500)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15598"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(80.00000,103.7500)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15600"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(50.00000,103.7500)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15602"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(18.75000,103.7500)" />
+        <path
+           d="M 51.250000,201.25000 L 51.250000,218.75000 L 70.000000,218.75000 L 70.000000,201.25000 L 51.250000,201.25000 z "
+           id="path15604"
+           sodipodi:nodetypes="ccccc"
+           style="font-size:12.000000px;fill-rule:evenodd;stroke:#000000;stroke-width:3.7500000;stroke-linejoin:bevel"
+           transform="translate(-10.00000,103.7500)" />
+      </g>
+    </g>
+  </g>
+</svg>
diff --git a/product/hotelgate/screenshot/Admin-Ticket.png b/product/hotelgate/screenshot/Admin-Ticket.png
new file mode 100644 (file)
index 0000000..4438979
Binary files /dev/null and b/product/hotelgate/screenshot/Admin-Ticket.png differ
diff --git a/product/hotelgate/screenshot/Configure.png b/product/hotelgate/screenshot/Configure.png
new file mode 100644 (file)
index 0000000..0e0d743
Binary files /dev/null and b/product/hotelgate/screenshot/Configure.png differ
diff --git a/product/hotelgate/screenshot/Login.png b/product/hotelgate/screenshot/Login.png
new file mode 100644 (file)
index 0000000..3d3b6e3
Binary files /dev/null and b/product/hotelgate/screenshot/Login.png differ
diff --git a/product/hotelgate/screenshot/Makefile.am b/product/hotelgate/screenshot/Makefile.am
new file mode 100644 (file)
index 0000000..aa3954a
--- /dev/null
@@ -0,0 +1,29 @@
+# $Id$
+# automake source for the Makefile of product/hotelgate/screenshot/ subdir
+# Copyright (C) 2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
+# 
+# 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; exactly version 2 of June 1991 is required
+# 
+# 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+
+include $(top_srcdir)/Makefile-head.am
+
+EXTRA_DIST+= \
+               Admin-Ticket.png \
+               Configure.png \
+               Login.png \
+               Port.png \
+               Staff-Port.png \
+               TicketNewPrint.png \
+               bootstrap.png
+
diff --git a/product/hotelgate/screenshot/Port.png b/product/hotelgate/screenshot/Port.png
new file mode 100644 (file)
index 0000000..183534e
Binary files /dev/null and b/product/hotelgate/screenshot/Port.png differ
diff --git a/product/hotelgate/screenshot/Staff-Port.png b/product/hotelgate/screenshot/Staff-Port.png
new file mode 100644 (file)
index 0000000..d82edcf
Binary files /dev/null and b/product/hotelgate/screenshot/Staff-Port.png differ
diff --git a/product/hotelgate/screenshot/TicketNewPrint.png b/product/hotelgate/screenshot/TicketNewPrint.png
new file mode 100644 (file)
index 0000000..7b35773
Binary files /dev/null and b/product/hotelgate/screenshot/TicketNewPrint.png differ
diff --git a/product/hotelgate/screenshot/bootstrap.png b/product/hotelgate/screenshot/bootstrap.png
new file mode 100644 (file)
index 0000000..716b040
Binary files /dev/null and b/product/hotelgate/screenshot/bootstrap.png differ