[gnome-control-center] mouse: New testing area according to mockup



commit 1cf9c9b078b1068276d4ec548b84b42ac3c6295c
Author: Ondrej Holy <oholy redhat com>
Date:   Thu Aug 23 15:10:19 2012 +0200

    mouse: New testing area according to mockup
    
    https://bugzilla.gnome.org/show_bug.cgi?id=579135

 panels/mouse/Makefile.am            |   12 +-
 panels/mouse/double-click-maybe.png |  Bin 4643 -> 0 bytes
 panels/mouse/double-click-off.png   |  Bin 4751 -> 0 bytes
 panels/mouse/double-click-on.png    |  Bin 6360 -> 0 bytes
 panels/mouse/gnome-mouse-test.c     |  197 +++-
 panels/mouse/gnome-mouse-test.ui    |   78 +-
 panels/mouse/scroll-test.svg        | 1960 +++++++++++++++++++++++++++++++++++
 7 files changed, 2182 insertions(+), 65 deletions(-)
---
diff --git a/panels/mouse/Makefile.am b/panels/mouse/Makefile.am
index a4ff38e..8fbd730 100644
--- a/panels/mouse/Makefile.am
+++ b/panels/mouse/Makefile.am
@@ -7,7 +7,6 @@ INCLUDES = 						\
 	-DGNOMELOCALEDIR="\"$(datadir)/locale\""	\
 	-DGNOMECC_DATA_DIR="\"$(pkgdatadir)\""		\
 	-DGNOMECC_UI_DIR="\"$(uidir)\""			\
-	-DPIXMAP_DIR=\""$(datadir)/gnome-control-center/pixmaps"\"	\
 	$(NULL)
 
 
@@ -40,16 +39,11 @@ test_gnome_mouse_test_LDADD = $(PANEL_LIBS) $(MOUSE_PANEL_LIBS)
 
 @INTLTOOL_DESKTOP_RULE@
 
-pixmapdir  = $(pkgdatadir)/pixmaps
-pixmap_DATA = \
-	double-click-on.png		\
-	double-click-off.png		\
-	double-click-maybe.png
-
 uidir   = $(pkgdatadir)/ui
 ui_DATA =				\
 	gnome-mouse-properties.ui	\
-	gnome-mouse-test.ui
+	gnome-mouse-test.ui		\
+	scroll-test.svg
 
 desktopdir = $(datadir)/applications
 Desktop_in_files = gnome-mouse-panel.desktop.in
@@ -62,6 +56,6 @@ update-from-gsd:
 	git commit -m "mouse: Update from gnome-settings-daemon" $(INPUTFILES)
 
 CLEANFILES = $(Desktop_in_files) $(desktop_DATA)
-EXTRA_DIST = $(ui_DATA) $(pixmap_DATA)
+EXTRA_DIST = $(ui_DATA)
 
 -include $(top_srcdir)/git.mk
diff --git a/panels/mouse/gnome-mouse-test.c b/panels/mouse/gnome-mouse-test.c
index 2e0379f..72f0e24 100644
--- a/panels/mouse/gnome-mouse-test.c
+++ b/panels/mouse/gnome-mouse-test.c
@@ -36,6 +36,16 @@
 
 #define WID(x) (GtkWidget*) gtk_builder_get_object (dialog, x)
 
+/* Click test button sizes. */
+#define SHADOW_SIZE (10.0 / 180 * size)
+#define SHADOW_SHIFT_Y (-1.0 / 180 * size)
+#define SHADOW_OPACITY (0.15 / 180 * size)
+#define OUTER_CIRCLE_SIZE (22.0 / 180 * size)
+#define ANNULUS_SIZE (6.0 / 180 * size)
+#define INNER_CIRCLE_SIZE (52.0 / 180 * size)
+
+static void setup_information_label (GtkWidget *widget);
+
 enum
 {
 	DOUBLE_CLICK_TEST_OFF,
@@ -47,14 +57,19 @@ enum
  * convenience
  */
 static gint double_click_state = DOUBLE_CLICK_TEST_OFF;
+static gint button_state = 0;
+
 static GSettings *mouse_settings = NULL;
 
+static gint information_label_timeout_id = 0;
+static gint button_drawing_area_timeout_id = 0;
+
 /* Double Click handling */
 
 struct test_data_t
 {
 	gint *timeout_id;
-	GtkWidget *image;
+	GtkWidget *widget;
 };
 
 /* Timeout for the double click test */
@@ -64,52 +79,103 @@ test_maybe_timeout (struct test_data_t *data)
 {
 	double_click_state = DOUBLE_CLICK_TEST_OFF;
 
-	gtk_image_set_from_icon_name (GTK_IMAGE (data->image), "face-plain", GTK_ICON_SIZE_DIALOG);
+	gtk_widget_queue_draw (data->widget);
+
+	*data->timeout_id = 0;
+
+	return FALSE;
+}
+
+/* Timeout for the information label */
+
+static gboolean
+information_label_timeout (struct test_data_t *data)
+{
+	setup_information_label (data->widget);
 
 	*data->timeout_id = 0;
 
 	return FALSE;
 }
 
+/* Set information label according global state variables. */
+
+static void
+setup_information_label (GtkWidget *widget)
+{
+	static struct test_data_t data;
+	gchar *message = NULL;
+	gchar *label_text = NULL;
+	gboolean double_click;
+
+	if (information_label_timeout_id != 0)
+		g_source_remove (information_label_timeout_id);
+
+	if (double_click_state == DOUBLE_CLICK_TEST_OFF) {
+		gtk_label_set_label (GTK_LABEL (widget), _("Try clicking, double clicking, scrolling"));
+		return;
+	}
+
+	double_click = (double_click_state == DOUBLE_CLICK_TEST_ON);
+	switch (button_state) {
+	case 1:
+		message = (double_click) ? _("Double click, primary button") : _("Single click, primary button");
+		break;
+	case 2:
+		message = (double_click) ? _("Double click, middle button") : _("Single click, middle button");
+		break;
+	case 3:
+		message = (double_click) ? _("Double click, secondary button") : _("Single click, secondary button");
+		break;
+	}
+
+	label_text = g_strconcat ("<b>", message, "</b>", NULL);
+	gtk_label_set_markup (GTK_LABEL (widget), label_text);
+	g_free (label_text);
+
+	data.widget = widget;
+	data.timeout_id = &information_label_timeout_id;
+	information_label_timeout_id = g_timeout_add (2500,
+						      (GSourceFunc) information_label_timeout,
+						      &data);
+}
+
 /* Callback issued when the user clicks the double click testing area. */
 
 static gboolean
-event_box_button_press_event (GtkWidget   *widget,
-			      GdkEventButton *event,
-			      GtkBuilder   *dialog)
+button_drawing_area_button_press_event (GtkWidget      *widget,
+					GdkEventButton *event,
+					GtkBuilder     *dialog)
 {
 	gint                       double_click_time;
 	static struct test_data_t  data;
-	static gint                test_on_timeout_id     = 0;
-	static gint                test_maybe_timeout_id  = 0;
 	static guint32             double_click_timestamp = 0;
-	GtkWidget                 *image;
 
-	if (event->type != GDK_BUTTON_PRESS)
+	if (event->type != GDK_BUTTON_PRESS || event->button > 3)
 		return FALSE;
 
-	image = g_object_get_data (G_OBJECT (widget), "image");
-
 	double_click_time = g_settings_get_int (mouse_settings, "double-click");
 
-	if (test_maybe_timeout_id != 0)
-		g_source_remove  (test_maybe_timeout_id);
-	if (test_on_timeout_id != 0)
-		g_source_remove (test_on_timeout_id);
+	if (button_drawing_area_timeout_id != 0)
+		g_source_remove  (button_drawing_area_timeout_id);
+
+	/* Ignore fake double click using different buttons. */
+	if (double_click_state != DOUBLE_CLICK_TEST_OFF && button_state != event->button)
+		double_click_state = DOUBLE_CLICK_TEST_OFF;
 
 	switch (double_click_state) {
 	case DOUBLE_CLICK_TEST_OFF:
 		double_click_state = DOUBLE_CLICK_TEST_MAYBE;
-		data.image = image;
-		data.timeout_id = &test_maybe_timeout_id;
-		test_maybe_timeout_id = g_timeout_add (double_click_time, (GSourceFunc) test_maybe_timeout, &data);
+		data.widget = widget;
+		data.timeout_id = &button_drawing_area_timeout_id;
+		button_drawing_area_timeout_id = g_timeout_add (double_click_time, (GSourceFunc) test_maybe_timeout, &data);
 		break;
 	case DOUBLE_CLICK_TEST_MAYBE:
 		if (event->time - double_click_timestamp < double_click_time) {
 			double_click_state = DOUBLE_CLICK_TEST_ON;
-			data.image = image;
-			data.timeout_id = &test_on_timeout_id;
-			test_on_timeout_id = g_timeout_add (2500, (GSourceFunc) test_maybe_timeout, &data);
+			data.widget = widget;
+			data.timeout_id = &button_drawing_area_timeout_id;
+			button_drawing_area_timeout_id = g_timeout_add (2500, (GSourceFunc) test_maybe_timeout, &data);
 		}
 		break;
 	case DOUBLE_CLICK_TEST_ON:
@@ -119,35 +185,90 @@ event_box_button_press_event (GtkWidget   *widget,
 
 	double_click_timestamp = event->time;
 
+	gtk_widget_queue_draw (widget);
+
+	button_state = event->button;
+	setup_information_label (WID ("information_label"));
+
+	return TRUE;
+}
+
+static gboolean
+button_drawing_area_draw_event (GtkWidget  *widget,
+				cairo_t    *cr,
+				GtkBuilder *dialog)
+{
+	gdouble center_x, center_y, size;
+	GdkRGBA inner_color, outer_color;
+	cairo_pattern_t *pattern;
+
+	size = MIN (gtk_widget_get_allocated_width (widget), gtk_widget_get_allocated_height (widget));
+	center_x = gtk_widget_get_allocated_width (widget) / 2.0;
+	center_y = gtk_widget_get_allocated_height (widget) / 2.0;
+
 	switch (double_click_state) {
 	case DOUBLE_CLICK_TEST_ON:
-		gtk_image_set_from_icon_name (GTK_IMAGE (image), "face-laugh", GTK_ICON_SIZE_INVALID);
+		gdk_rgba_parse (&outer_color, "#729fcf");
+		gdk_rgba_parse (&inner_color, "#729fcf");
 		break;
 	case DOUBLE_CLICK_TEST_MAYBE:
-		gtk_image_set_from_icon_name (GTK_IMAGE (image), "face-smile", GTK_ICON_SIZE_INVALID);
+		gdk_rgba_parse (&outer_color, "#729fcf");
+		gdk_rgba_parse (&inner_color, "#ffffff");
 		break;
 	case DOUBLE_CLICK_TEST_OFF:
-		gtk_image_set_from_icon_name (GTK_IMAGE (image), "face-plain", GTK_ICON_SIZE_INVALID);
+		gdk_rgba_parse (&outer_color, "#ffffff");
+		gdk_rgba_parse (&inner_color, "#ffffff");
 		break;
 	}
 
-	return TRUE;
+	/* Draw shadow. */
+	cairo_rectangle (cr, center_x - size / 2,  center_y - size / 2, size, size);
+	pattern = cairo_pattern_create_radial (center_x, center_y, 0, center_x, center_y, size);
+	cairo_pattern_add_color_stop_rgba (pattern, 0.5 - SHADOW_SIZE / size, 0, 0, 0, SHADOW_OPACITY);
+	cairo_pattern_add_color_stop_rgba (pattern, 0.5, 0, 0, 0, 0);
+	cairo_set_source (cr, pattern);
+	cairo_fill (cr);
+
+	/* Draw outer circle. */
+	cairo_set_line_width (cr, OUTER_CIRCLE_SIZE);
+	cairo_arc (cr, center_x, center_y + SHADOW_SHIFT_Y,
+		   INNER_CIRCLE_SIZE + ANNULUS_SIZE + OUTER_CIRCLE_SIZE / 2,
+		   0, 2 * G_PI);
+	gdk_cairo_set_source_rgba (cr, &outer_color);
+	cairo_stroke (cr);
+
+	/* Draw inner circle. */
+	cairo_set_line_width (cr, 0);
+	cairo_arc (cr, center_x, center_y + SHADOW_SHIFT_Y,
+		   INNER_CIRCLE_SIZE,
+		   0, 2 * G_PI);
+	gdk_cairo_set_source_rgba (cr, &inner_color);
+	cairo_fill (cr);
+
+	return FALSE;
 }
 
 /* Set up the property editors in the dialog. */
 static void
 setup_dialog (GtkBuilder *dialog)
 {
-	GtkImage *image;
-
-	image = GTK_IMAGE (WID ("double_click_image"));
-
-	gtk_image_set_from_icon_name (image, "face-plain", GTK_ICON_SIZE_INVALID);
-	gtk_image_set_pixel_size (image, 256);
-
-	g_object_set_data (G_OBJECT (WID ("double_click_eventbox")), "image", GTK_WIDGET (image));
-	g_signal_connect (WID ("double_click_eventbox"), "button_press_event",
-			  G_CALLBACK (event_box_button_press_event), dialog);
+	GtkAdjustment *adjustment;
+	GdkRGBA color;
+
+	g_signal_connect (WID ("button_drawing_area"), "button_press_event",
+			  G_CALLBACK (button_drawing_area_button_press_event),
+			  dialog);
+	g_signal_connect (WID ("button_drawing_area"), "draw",
+			  G_CALLBACK (button_drawing_area_draw_event),
+			  dialog);
+
+	adjustment = GTK_ADJUSTMENT (WID ("scrolled_window_adjustment"));
+	gtk_adjustment_set_value (adjustment,
+				  gtk_adjustment_get_upper (adjustment));
+
+	gdk_rgba_parse (&color, "#565854");
+	gtk_widget_override_background_color (WID ("viewport"), GTK_STATE_FLAG_NORMAL, &color);
+	gtk_widget_override_background_color (WID ("button_drawing_area"), GTK_STATE_FLAG_NORMAL, &color);
 }
 
 GtkWidget *
@@ -167,5 +288,11 @@ gnome_mouse_test_dispose (GtkWidget *widget)
 		g_object_unref (mouse_settings);
 		mouse_settings = NULL;
 	}
+
+	if (information_label_timeout_id != 0)
+		g_source_remove (information_label_timeout_id);
+
+	if (button_drawing_area_timeout_id != 0)
+		g_source_remove  (button_drawing_area_timeout_id);
 }
 
diff --git a/panels/mouse/gnome-mouse-test.ui b/panels/mouse/gnome-mouse-test.ui
index 7af670d..e83f691 100644
--- a/panels/mouse/gnome-mouse-test.ui
+++ b/panels/mouse/gnome-mouse-test.ui
@@ -1,25 +1,30 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <interface>
   <!-- interface-requires gtk+ 3.0 -->
+  <object class="GtkAdjustment" id="scrolled_window_adjustment">
+    <property name="upper">100</property>
+    <property name="value">100</property>
+    <property name="step_increment">1</property>
+    <property name="page_increment">10</property>
+  </object>
   <object class="GtkWindow" id="mouse_test_window">
     <property name="can_focus">False</property>
     <child>
       <object class="GtkGrid" id="test_widget">
+        <property name="height_request">400</property>
         <property name="visible">True</property>
         <property name="can_focus">False</property>
         <property name="hexpand">True</property>
         <property name="vexpand">True</property>
-        <property name="border_width">15</property>
-        <property name="column_spacing">10</property>
         <child>
-          <object class="GtkLabel" id="label33">
+          <object class="GtkLabel" id="information_label">
             <property name="visible">True</property>
             <property name="can_focus">False</property>
             <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
-            <property name="halign">center</property>
+            <property name="margin_top">5</property>
             <property name="hexpand">True</property>
-            <property name="xalign">0</property>
-            <property name="label" translatable="yes">To test your settings, try to double-click on the face.</property>
+            <property name="ypad">5</property>
+            <property name="label" translatable="yes">Try clicking, double clicking, scrolling</property>
             <property name="wrap">True</property>
           </object>
           <packing>
@@ -30,21 +35,58 @@
           </packing>
         </child>
         <child>
-          <object class="GtkEventBox" id="double_click_eventbox">
+          <object class="GtkScrolledWindow" id="scrolledwindow">
             <property name="visible">True</property>
-            <property name="can_focus">False</property>
-            <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
-            <property name="halign">center</property>
-            <property name="valign">center</property>
+            <property name="can_focus">True</property>
             <property name="hexpand">True</property>
             <property name="vexpand">True</property>
-            <property name="visible_window">False</property>
+            <property name="vadjustment">scrolled_window_adjustment</property>
+            <property name="hscrollbar_policy">never</property>
+            <property name="vscrollbar_policy">always</property>
+            <property name="shadow_type">in</property>
             <child>
-              <object class="GtkImage" id="double_click_image">
+              <object class="GtkViewport" id="viewport">
                 <property name="visible">True</property>
                 <property name="can_focus">False</property>
-                <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
-                <property name="stock">gtk-missing-image</property>
+                <child>
+                  <object class="GtkGrid" id="grid1">
+                    <property name="visible">True</property>
+                    <property name="can_focus">False</property>
+                    <child>
+                      <object class="GtkImage" id="image">
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="margin_left">35</property>
+                        <property name="margin_right">35</property>
+                        <property name="pixbuf">scroll-test.svg</property>
+                      </object>
+                      <packing>
+                        <property name="left_attach">0</property>
+                        <property name="top_attach">0</property>
+                        <property name="width">1</property>
+                        <property name="height">1</property>
+                      </packing>
+                    </child>
+                    <child>
+                      <object class="GtkDrawingArea" id="button_drawing_area">
+                        <property name="width_request">180</property>
+                        <property name="height_request">180</property>
+                        <property name="visible">True</property>
+                        <property name="can_focus">False</property>
+                        <property name="events">GDK_BUTTON_PRESS_MASK | GDK_STRUCTURE_MASK</property>
+                        <property name="margin_top">20</property>
+                        <property name="margin_bottom">20</property>
+                        <property name="hexpand">True</property>
+                      </object>
+                      <packing>
+                        <property name="left_attach">0</property>
+                        <property name="top_attach">1</property>
+                        <property name="width">1</property>
+                        <property name="height">1</property>
+                      </packing>
+                    </child>
+                  </object>
+                </child>
               </object>
             </child>
           </object>
@@ -58,10 +100,4 @@
       </object>
     </child>
   </object>
-  <object class="GtkAdjustment" id="scrolled_window_adjustment">
-    <property name="upper">100</property>
-    <property name="value">100</property>
-    <property name="step_increment">1</property>
-    <property name="page_increment">10</property>
-  </object>
 </interface>
diff --git a/panels/mouse/scroll-test.svg b/panels/mouse/scroll-test.svg
new file mode 100644
index 0000000..73e933a
--- /dev/null
+++ b/panels/mouse/scroll-test.svg
@@ -0,0 +1,1960 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/";
+   xmlns:cc="http://creativecommons.org/ns#";
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#";
+   xmlns:svg="http://www.w3.org/2000/svg";
+   xmlns="http://www.w3.org/2000/svg";
+   xmlns:xlink="http://www.w3.org/1999/xlink";
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd";
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape";
+   width="640"
+   height="2000"
+   id="svg25153"
+   version="1.1"
+   inkscape:version="0.48.2 r9819"
+   sodipodi:docname="scroll-test2.svg">
+  <defs
+     id="defs25155">
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28749"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect28747"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28725"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28712"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect28708"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28704"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect28700"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect28696"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect28690"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28686"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect28600"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28430"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28426"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28422"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28418"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28414"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28410"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28406"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28402"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28398"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28394"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28390"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28386"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28382"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28378"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28374"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28370"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28366"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28362"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28358"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28354"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28326"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect28324"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28322"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect28320"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28318"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect28306"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28304"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect28302"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28300"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect28298"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28286"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect28284"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28282"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect28280"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28278"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect28266"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28264"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect28262"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28260"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect28258"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28239"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect27876"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect27872"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect27868"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect27864"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect27860"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect27856"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect27852"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect27848"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect25895"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect25355"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5375-6"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5346-3"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5346-9-1"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5371-5"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5437-9"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5441-8"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5455-7"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5455-3-4"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5532-1"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5556-5"
+       effect="spiro" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3116"
+       id="linearGradient3124"
+       gradientUnits="userSpaceOnUse"
+       x1="-228.81355"
+       y1="93.220337"
+       x2="-228.81355"
+       y2="299.06125"
+       gradientTransform="matrix(0.73022822,0,0,0.78261209,129.3881,-47.29312)" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3116">
+      <stop
+         style="stop-color:#eeeeec;stop-opacity:1;"
+         offset="0"
+         id="stop3118" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1"
+         offset="1"
+         id="stop3120" />
+    </linearGradient>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       id="perspective2859" />
+    <inkscape:perspective
+       id="perspective2878"
+       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+       inkscape:vp_z="744.09448 : 526.18109 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 526.18109 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath7751">
+      <rect
+         style="fill:#ffffff;fill-opacity:1;stroke:none"
+         id="rect7753"
+         width="1027"
+         height="1251.4175"
+         x="82"
+         y="58.944653" />
+    </clipPath>
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5371-2"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5455-3"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5455-9"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5346-9"
+       effect="spiro" />
+    <linearGradient
+       id="linearGradient6621">
+      <stop
+         id="stop6622"
+         offset="0.0000000"
+         style="stop-color:#f5a108;stop-opacity:0.0000000;" />
+      <stop
+         id="stop6623"
+         offset="1.0000000"
+         style="stop-color:#fefdc3;stop-opacity:0.74251497;" />
+    </linearGradient>
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 526.18109 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="744.09448 : 526.18109 : 1"
+       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+       id="perspective10-7" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient9903">
+      <stop
+         style="stop-color:#f57900;stop-opacity:1"
+         offset="0"
+         id="stop9905" />
+      <stop
+         style="stop-color:#204a87;stop-opacity:1"
+         offset="1"
+         id="stop9907" />
+    </linearGradient>
+    <inkscape:path-effect
+       effect=""
+       id="path-effect10445" />
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 526.18109 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="744.09448 : 526.18109 : 1"
+       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+       id="perspective10" />
+    <inkscape:perspective
+       id="perspective9536"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective9550"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective9566"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective9588"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective9648"
+       inkscape:persp3d-origin="213.545 : 172.78666 : 1"
+       inkscape:vp_z="427.09 : 259.17999 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 259.17999 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9903"
+       id="radialGradient9909"
+       cx="-32.233803"
+       cy="286.41132"
+       fx="-32.233803"
+       fy="286.41132"
+       r="103.50868"
+       gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)"
+       gradientUnits="userSpaceOnUse" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9903"
+       id="radialGradient9418"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)"
+       cx="-32.233803"
+       cy="286.41132"
+       fx="-32.233803"
+       fy="286.41132"
+       r="103.50868" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9903"
+       id="radialGradient9420"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)"
+       cx="-32.233803"
+       cy="286.41132"
+       fx="-32.233803"
+       fy="286.41132"
+       r="103.50868" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9903"
+       id="radialGradient9422"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)"
+       cx="-32.233803"
+       cy="286.41132"
+       fx="-32.233803"
+       fy="286.41132"
+       r="103.50868" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9903"
+       id="radialGradient9424"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)"
+       cx="-32.233803"
+       cy="286.41132"
+       fx="-32.233803"
+       fy="286.41132"
+       r="103.50868" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9903"
+       id="radialGradient9426"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)"
+       cx="-32.233803"
+       cy="286.41132"
+       fx="-32.233803"
+       fy="286.41132"
+       r="103.50868" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9903"
+       id="radialGradient9428"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)"
+       cx="-32.233803"
+       cy="286.41132"
+       fx="-32.233803"
+       fy="286.41132"
+       r="103.50868" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9903"
+       id="radialGradient9430"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)"
+       cx="-32.233803"
+       cy="286.41132"
+       fx="-32.233803"
+       fy="286.41132"
+       r="103.50868" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9903"
+       id="radialGradient9432"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)"
+       cx="-32.233803"
+       cy="286.41132"
+       fx="-32.233803"
+       fy="286.41132"
+       r="103.50868" />
+    <inkscape:perspective
+       id="perspective10609"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective10715"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective10761"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective10799"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective10837"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective10881"
+       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+       inkscape:vp_z="1 : 0.5 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 0.5 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <inkscape:perspective
+       id="perspective10184"
+       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
+       inkscape:vp_z="744.09448 : 526.18109 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_x="0 : 526.18109 : 1"
+       sodipodi:type="inkscape:persp3d" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9903"
+       id="radialGradient9394"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)"
+       cx="-32.233803"
+       cy="286.41132"
+       fx="-32.233803"
+       fy="286.41132"
+       r="103.50868" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9903"
+       id="radialGradient9396"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)"
+       cx="-32.233803"
+       cy="286.41132"
+       fx="-32.233803"
+       fy="286.41132"
+       r="103.50868" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9903"
+       id="radialGradient9398"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)"
+       cx="-32.233803"
+       cy="286.41132"
+       fx="-32.233803"
+       fy="286.41132"
+       r="103.50868" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient9903"
+       id="radialGradient9400"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)"
+       cx="-32.233803"
+       cy="286.41132"
+       fx="-32.233803"
+       fy="286.41132"
+       r="103.50868" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect3843-9"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect3802-2"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect3000"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect3798"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect3802"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect3827"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect3839"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect3843"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5338"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5342"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5346"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5371"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5375"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5437"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5441"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5447"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5451"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5455"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5501"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5532"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5556"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect5650"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect8142"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect8146"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect8150"
+       effect="spiro" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect8154"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect5346-2"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect5346-9-5"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect5441-0"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect5455-2"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect5455-3-3"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect5532-9"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect8142-8"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect8146-0"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect8154-3"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect27868-0"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect27864-2"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect27860-1"
+       is_visible="true" />
+    <inkscape:path-effect
+       is_visible="true"
+       id="path-effect27856-8"
+       effect="spiro" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28430-7"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28426-5"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28422-6"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28418-0"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28414-1"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28410-2"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28406-1"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28402-0"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28398-4"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28394-0"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28390-1"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28386-3"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28382-2"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28378-0"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28374-7"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28370-5"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28366-2"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28362-3"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28358-5"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect28354-6"
+       is_visible="true" />
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect27852-8"
+       is_visible="true" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#515151"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="1"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1"
+     inkscape:cx="230.35999"
+     inkscape:cy="368.30151"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     borderlayer="true"
+     inkscape:showpageshadow="false"
+     inkscape:window-width="2560"
+     inkscape:window-height="1381"
+     inkscape:window-x="1600"
+     inkscape:window-y="27"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata25158">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,947.63782)">
+    <path
+       style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
+       d="m 484.25772,-744.8835 -0.68845,0.17 c 4.43674,17.14881 12.67543,33.30876 23.95098,46.96995 6.50678,7.88346 13.97743,14.9169 20.026,23.06819 6.04574,8.14748 10.71171,17.80096 10.50281,27.87735 -0.11599,5.59497 -1.75003,11.11273 -4.35036,16.0871 -2.60085,4.97526 -6.15117,9.42509 -10.17176,13.36784 -8.04194,7.88627 -17.8579,13.73187 -27.26798,20.04692 -9.41129,6.31588 -18.70343,13.37144 -24.89862,22.94352 -3.09823,4.78702 -5.36198,10.16528 -6.21974,15.81966 -0.85797,5.65607 -0.26483,11.59337 2.07874,16.83022 3.10676,6.94224 9.05593,12.23923 15.60704,16.00304 6.54776,3.7619 13.74662,6.15241 20.79938,8.69847 7.0522,2.54587 14.09554,5.31832 20.13349,9.6736 6.03329,4.35192 11.04646,10.50518 12.61561,17.72647 1.26152,5.80555 0.219,11.98004 -2.16864,17.45549 -2.38893,5.47836 -6.0596,10.32648 -10.13544,14.74374 -8.1527,8.8355 -18.13109,16.29739 -24.38009,26.72698 -5.90635,9.85768 -7.25529,21.7371 -4.92239,32.9895 l -0.009,0.0737 -0.002,-0.0109 c -2.2957,-11.07299 -0.27353,-2
 2.98966 5.53863,-32.69017 6.15444,-10.27172 16.07646,-17.70881 24.28907,-26.60929 4.10682,-4.4508 7.84571,-9.3564 10.27989,-14.93854 2.43545,-5.58508 3.50302,-11.90305 2.20237,-17.88872 -1.61774,-7.44488 -6.7555,-13.71974 -12.89447,-18.14789 -6.13429,-4.42478 -13.24304,-7.21531 -20.30756,-9.76562 -7.06398,-2.55012 -14.2238,-4.93616 -20.68959,-8.65097 -6.46245,-3.71287 -12.28947,-8.92849 -15.31334,-15.68547 -2.28031,-5.0955 -2.86713,-10.88798 -2.02738,-16.42368 0.84003,-5.53737 3.07142,-10.82765 6.12374,-15.54372 6.1059,-9.43413 15.31228,-16.4389 24.69978,-22.73882 9.38871,-6.30072 19.24253,-12.16682 27.36491,-20.13195 4.06158,-3.98295 7.664,-8.49332 10.30731,-13.54983 2.6438,-5.05744 4.29807,-10.68021 4.41671,-16.40262 0.2136,-10.30354 -4.53699,-20.09127 -10.63825,-28.31356 -6.09844,-8.21853 -13.57388,-15.26126 -20.04279,-23.09886 -11.20894,-13.58048 -19.3981,-29.63363 -23.80863,-46.6811 z"
+       id="path27870"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccsssssssssssssssscccsssssssssssssssscc" />
+    <g
+       id="g13168"
+       style="fill:#d3d7cf;fill-opacity:1"
+       transform="matrix(0.40582056,0.04380991,-0.04380991,0.40582056,652.40899,628.54073)"
+       inkscape:export-filename="/tmp/foundation_back_balloons.png"
+       inkscape:export-xdpi="90"
+       inkscape:export-ydpi="90">
+      <path
+         sodipodi:type="arc"
+         style="fill:#d3d7cf;fill-opacity:1;stroke:none"
+         id="path13111"
+         sodipodi:cx="623"
+         sodipodi:cy="374.36218"
+         sodipodi:rx="85"
+         sodipodi:ry="85"
+         d="m 708,374.36218 a 85,85 0 1 1 -170,0 85,85 0 1 1 170,0 z"
+         transform="translate(817,157)" />
+      <path
+         style="fill:#d3d7cf;fill-opacity:1;stroke:none"
+         d="m 1469.2163,621.36218 -0.8981,23.22056 c 0.67,5.05064 0.44,10.10128 -0.586,15.15193 -8.6333,2.87482 -17.0892,3.97558 -25.4403,4.02805 -3.4549,-5.03993 -4.0627,-10.36456 -4.7685,-15.67939 l -7.7396,-25.44913 3.0447,1.03687 6.9961,24.0623 c 9.2676,-1.73376 16.4423,-2.50129 26.2742,-3.38852 l 0.742,-22.04828 z"
+         id="path13125"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccccccccc" />
+      <path
+         style="fill:#d3d7cf;fill-opacity:1;stroke:none"
+         d="m 1469.2456,622.20123 c -12.8741,3.17589 -25.7482,3.92213 -38.6223,2.43153 -6.0239,-6.83956 -13.4936,-10.71504 -22.4983,-14.52058 l 37.875,-11.25 42.5,2.375 c -11.9755,9.12898 -17.1552,13.07606 -19.2544,20.96405 z"
+         id="path13127"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccc" />
+      <g
+         transform="matrix(0.59696887,-0.11691806,0.11691806,0.59696887,1024.0769,76.160916)"
+         style="fill:#d3d7cf;fill-opacity:1"
+         id="g13139">
+        <path
+           transform="matrix(0.897217,0,0,0.897217,145.65406,672.99)"
+           d="m 413.48068,406.59692 a 7.4246211,7.4246211 0 1 1 -14.84924,0 7.4246211,7.4246211 0 1 1 14.84924,0 z"
+           sodipodi:ry="7.4246211"
+           sodipodi:rx="7.4246211"
+           sodipodi:cy="406.59692"
+           sodipodi:cx="406.05606"
+           id="path13141"
+           style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible"
+           sodipodi:type="arc" />
+        <rect
+           ry="6.3639612"
+           rx="6.3639612"
+           y="1045.3806"
+           x="499.61917"
+           height="20.578096"
+           width="20.578096"
+           id="rect13143"
+           style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible" />
+        <path
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="ccccccccc"
+           id="path13145"
+           d="m 502.77237,1038.0766 -6.17092,1.513 3.42469,0.5941 -2.27841,1.8587 3.02098,-0.5038 -1.75979,3.1418 4.51103,-3.9774 -0.54974,-1.1424 -0.19784,-1.484 z"
+           style="fill:#d3d7cf;fill-opacity:1;stroke:none" />
+        <path
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="ccccccccc"
+           id="path13147"
+           d="m 517.2506,1038.0766 6.17091,1.513 -3.42468,0.5941 2.2784,1.8587 -3.02098,-0.5038 1.75979,3.1418 -4.51102,-3.9774 0.54973,-1.1424 0.19785,-1.484 z"
+           style="fill:#d3d7cf;fill-opacity:1;stroke:none" />
+      </g>
+    </g>
+    <g
+       id="g13205"
+       transform="matrix(1.2271648,-0.13485706,0.13485706,1.2271648,-613.91377,410.13783)"
+       style="fill:#d3d7cf;fill-opacity:1">
+      <g
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         inkscape:export-filename="/tmp/foundation_back_balloons.png"
+         id="g13183"
+         style="fill:#d3d7cf;fill-opacity:1"
+         transform="matrix(0.22234969,0.03876506,-0.03876506,0.22234969,1196.4853,427.96283)">
+        <path
+           sodipodi:type="arc"
+           style="fill:#d3d7cf;fill-opacity:1;stroke:none"
+           id="path13185"
+           sodipodi:cx="623"
+           sodipodi:cy="374.36218"
+           sodipodi:rx="85"
+           sodipodi:ry="85"
+           d="m 708,374.36218 a 85,85 0 1 1 -170,0 85,85 0 1 1 170,0 z"
+           transform="translate(817,157)" />
+        <path
+           style="fill:#d3d7cf;fill-opacity:1;stroke:none"
+           d="m 1469.2163,621.36218 -0.8981,23.22056 c 0.67,5.05064 0.44,10.10128 -0.586,15.15193 -8.6333,2.87482 -17.0892,3.97558 -25.4403,4.02805 -3.4549,-5.03993 -4.0627,-10.36456 -4.7685,-15.67939 l -7.7396,-25.44913 5.8597,0.5461 6.9961,24.0623 c 9.2676,-1.73376 11.2945,-1.60383 21.1264,-2.49106 l 0.742,-22.04828 z"
+           id="path13187"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="ccccccccccc" />
+        <path
+           style="fill:#d3d7cf;fill-opacity:1;stroke:none"
+           d="m 1469.2456,622.20123 c -12.8741,3.17589 -25.7482,3.92213 -38.6223,2.43153 -6.0239,-6.83956 -13.4936,-10.71504 -22.4983,-14.52058 l 37.875,-11.25 42.5,2.375 c -11.9755,9.12898 -17.1552,13.07606 -19.2544,20.96405 z"
+           id="path13189"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="cccccc" />
+      </g>
+      <path
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         inkscape:export-filename="/tmp/foundation_back_balloons.png"
+         d="m 1495.2215,627.94342 a 0.75130099,1.7456698 0 1 1 -1.5026,0 0.75130099,1.7456698 0 1 1 1.5026,0 z"
+         sodipodi:ry="1.7456698"
+         sodipodi:rx="0.75130099"
+         sodipodi:cy="627.94342"
+         sodipodi:cx="1494.4702"
+         id="path13203"
+         style="fill:#d3d7cf;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       transform="matrix(1.8888451,-0.09128494,0.09128494,1.8888451,-2778.5243,-1161.3855)"
+       id="g13248"
+       style="fill:#d3d7cf;fill-opacity:1">
+      <g
+         transform="matrix(0.22234969,0.03876506,-0.03876506,0.22234969,1196.4853,427.96283)"
+         style="fill:#d3d7cf;fill-opacity:1"
+         id="g13250"
+         inkscape:export-filename="/tmp/foundation_back_balloons.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           transform="translate(817,157)"
+           d="m 708,374.36218 a 85,85 0 1 1 -170,0 85,85 0 1 1 170,0 z"
+           sodipodi:ry="85"
+           sodipodi:rx="85"
+           sodipodi:cy="374.36218"
+           sodipodi:cx="623"
+           id="path13252"
+           style="fill:#d3d7cf;fill-opacity:1;stroke:none"
+           sodipodi:type="arc" />
+        <path
+           sodipodi:nodetypes="ccccccccccc"
+           inkscape:connector-curvature="0"
+           id="path13254"
+           d="m 1469.2163,621.36218 -0.8981,23.22056 c 0.67,5.05064 0.44,10.10128 -0.586,15.15193 -8.6333,2.87482 -17.0892,3.97558 -25.4403,4.02805 -3.4549,-5.03993 -4.0627,-10.36456 -4.7685,-15.67939 l -7.7396,-25.44913 5.8597,0.5461 6.9961,24.0623 c 9.2676,-1.73376 11.2945,-1.60383 21.1264,-2.49106 l 0.742,-22.04828 z"
+           style="fill:#d3d7cf;fill-opacity:1;stroke:none" />
+        <path
+           sodipodi:nodetypes="cccccc"
+           inkscape:connector-curvature="0"
+           id="path13256"
+           d="m 1469.2456,622.20123 c -12.8741,3.17589 -25.7482,3.92213 -38.6223,2.43153 -6.0239,-6.83956 -13.4936,-10.71504 -22.4983,-14.52058 l 37.875,-11.25 42.5,2.375 c -11.9755,9.12898 -17.1552,13.07606 -19.2544,20.96405 z"
+           style="fill:#d3d7cf;fill-opacity:1;stroke:none" />
+      </g>
+      <path
+         sodipodi:type="arc"
+         style="fill:#d3d7cf;fill-opacity:1;stroke:none"
+         id="path13258"
+         sodipodi:cx="1494.4702"
+         sodipodi:cy="627.94342"
+         sodipodi:rx="0.75130099"
+         sodipodi:ry="1.7456698"
+         d="m 1495.2215,627.94342 a 0.75130099,1.7456698 0 1 1 -1.5026,0 0.75130099,1.7456698 0 1 1 1.5026,0 z"
+         inkscape:export-filename="/tmp/foundation_back_balloons.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90"
+         transform="translate(1.1554165,0.05583948)" />
+      <path
+         transform="translate(-0.56169401,0.66772326)"
+         inkscape:export-ydpi="90"
+         inkscape:export-xdpi="90"
+         inkscape:export-filename="/tmp/foundation_back_balloons.png"
+         d="m 1495.2215,627.94342 a 0.75130099,1.7456698 0 1 1 -1.5026,0 0.75130099,1.7456698 0 1 1 1.5026,0 z"
+         sodipodi:ry="1.7456698"
+         sodipodi:rx="0.75130099"
+         sodipodi:cy="627.94342"
+         sodipodi:cx="1494.4702"
+         id="path28640"
+         style="fill:#d3d7cf;fill-opacity:1;stroke:none"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       transform="matrix(3.3197111,-0.22032999,0.22032999,3.3197111,-4902.6591,-2041.5866)"
+       id="g13260"
+       style="fill:#d3d7cf;fill-opacity:1">
+      <g
+         transform="matrix(0.22234969,0.03876506,-0.03876506,0.22234969,1196.4853,427.96283)"
+         style="fill:#d3d7cf;fill-opacity:1"
+         id="g13262"
+         inkscape:export-filename="/tmp/foundation_back_balloons.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90">
+        <path
+           transform="translate(817,157)"
+           d="m 708,374.36218 a 85,85 0 1 1 -170,0 85,85 0 1 1 170,0 z"
+           sodipodi:ry="85"
+           sodipodi:rx="85"
+           sodipodi:cy="374.36218"
+           sodipodi:cx="623"
+           id="path13264"
+           style="fill:#d3d7cf;fill-opacity:1;stroke:none"
+           sodipodi:type="arc" />
+        <path
+           sodipodi:nodetypes="ccccccccccc"
+           inkscape:connector-curvature="0"
+           id="path13266"
+           d="m 1469.2163,621.36218 -0.8981,23.22056 c 0.67,5.05064 0.44,10.10128 -0.586,15.15193 -8.6333,2.87482 -17.0892,3.97558 -25.4403,4.02805 -3.4549,-5.03993 -4.0627,-10.36456 -4.7685,-15.67939 l -7.7396,-25.44913 5.1759,0.58934 6.9961,24.0623 c 9.2676,-1.73376 12.6621,-1.69031 22.494,-2.57754 l 0.742,-22.04828 z"
+           style="fill:#d3d7cf;fill-opacity:1;stroke:none" />
+        <path
+           sodipodi:nodetypes="cccccc"
+           inkscape:connector-curvature="0"
+           id="path13268"
+           d="m 1469.2456,622.20123 c -12.8741,3.17589 -25.7482,3.92213 -38.6223,2.43153 -6.0239,-6.83956 -13.4936,-10.71504 -22.4983,-14.52058 l 37.875,-11.25 42.5,2.375 c -11.9755,9.12898 -17.1552,13.07606 -19.2544,20.96405 z"
+           style="fill:#d3d7cf;fill-opacity:1;stroke:none" />
+      </g>
+      <path
+         sodipodi:type="arc"
+         style="fill:#d3d7cf;fill-opacity:1;stroke:none"
+         id="path13270"
+         sodipodi:cx="1494.4702"
+         sodipodi:cy="627.94342"
+         sodipodi:rx="0.75130099"
+         sodipodi:ry="1.7456698"
+         d="m 1495.2215,627.94342 a 0.75130099,1.7456698 0 1 1 -1.5026,0 0.75130099,1.7456698 0 1 1 1.5026,0 z"
+         inkscape:export-filename="/tmp/foundation_back_balloons.png"
+         inkscape:export-xdpi="90"
+         inkscape:export-ydpi="90" />
+    </g>
+    <g
+       id="g25865"
+       transform="matrix(0.53981537,0,0,0.53981537,-221.45137,628.23822)">
+      <path
+         style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.2721293;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"
+         d="m 1058.544,142.76916 0.3774,6.03738"
+         id="path4970"
+         inkscape:connector-curvature="0" />
+      <path
+         id="path4972"
+         d="m 1042.0648,143.61235 -0.1959,6.03738"
+         style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.2721293;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:#d3d7cf;stroke-width:1px"
+         d="m 1026.5473,98.427497 c 14.647,-4.82062 29.6443,-2.09612 36.2243,-1.13201 0,0 10.78,29.258953 2.547,39.620313 -6.8403,8.60872 -20.2842,11.31588 -29.1492,4.81103 -11.9068,-8.73682 -8.6009,-27.35977 -9.6221,-43.299333 z"
+         id="path4930"
+         sodipodi:nodetypes="ccssc"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:#d3d7cf;stroke-width:1px"
+         d="m 1062.7937,97.324217 -2.4759,-8.14767 c -3.1113,3.81529 -3.7398,4.8355 -3.5112,8.65079 l 5.9871,-0.50312 z"
+         id="path4932"
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:nodetypes="cccc"
+         id="path4934"
+         d="m 1026.5614,98.572687 -0.4462,-8.14767 c 4.4795,3.81529 5.474,4.8355 6.6137,8.65079 l -6.1675,-0.50312 z"
+         style="fill:#d3d7cf;stroke-width:1px"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:#d3d7cf;stroke-width:1px"
+         d="m 1065.0247,114.49622 c 13.427,5.40854 23.9434,13.15237 21.0133,18.25514 -10.1535,-4.13645 -17.9241,-8.31972 -24.7732,-12.52117 l 3.7599,-5.73397 z"
+         id="path4936"
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:nodetypes="cccc"
+         id="path4938"
+         d="m 1029.8395,117.17689 c -12.9486,6.47052 -22.8084,15.03486 -19.4774,19.88549 9.788,-4.93936 17.1972,-9.73392 23.6862,-14.47238 l -4.2084,-5.41336 z"
+         style="fill:#d3d7cf;stroke-width:1px"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="path4940"
+         sodipodi:cx="358"
+         sodipodi:cy="459.36218"
+         sodipodi:rx="7"
+         sodipodi:ry="7"
+         d="m 365,459.36218 c 0,3.866 -3.13401,7 -7,7 -3.86599,0 -7,-3.134 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z"
+         transform="matrix(0.50498666,0,0,0.73857575,872.50231,-229.23358)" />
+      <path
+         transform="matrix(0.50498666,0,0,0.73857575,857.1573,-228.60468)"
+         d="m 365,459.36218 c 0,3.866 -3.13401,7 -7,7 -3.86599,0 -7,-3.134 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z"
+         sodipodi:ry="7"
+         sodipodi:rx="7"
+         sodipodi:cy="459.36218"
+         sodipodi:cx="358"
+         id="path4942"
+         style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         style="fill:#d3d7cf;stroke-width:1px"
+         d="m 1052.5742,117.7326 c -3.6547,-0.85721 -7.5369,-1.33633 -12.8973,0.64056 l 6.4565,7.03803 6.4408,-7.67859 z"
+         id="path4879-7"
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0" />
+      <path
+         transform="matrix(0.12290156,0,0,0.17975151,1007.8633,29.816997)"
+         d="m 365,459.36218 c 0,3.866 -3.13401,7 -7,7 -3.86599,0 -7,-3.134 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z"
+         sodipodi:ry="7"
+         sodipodi:rx="7"
+         sodipodi:cy="459.36218"
+         sodipodi:cx="358"
+         id="path4966"
+         style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="path4968"
+         sodipodi:cx="358"
+         sodipodi:cy="459.36218"
+         sodipodi:rx="7"
+         sodipodi:ry="7"
+         d="m 365,459.36218 c 0,3.866 -3.13401,7 -7,7 -3.86599,0 -7,-3.134 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z"
+         transform="matrix(0.12290156,0,0,0.17975151,992.68598,31.074787)" />
+      <path
+         style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.2721293;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"
+         d="m 1059.124,150.08762 0.6813,1.58777"
+         id="path4976"
+         sodipodi:nodetypes="cc"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:nodetypes="cc"
+         id="path4978"
+         d="m 1059.4192,149.71182 c 0.8428,-0.0649 1.9441,0.0408 3.5715,0.494"
+         style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.2721293;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.2721293;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"
+         d="m 1058.3509,149.76773 c -0.8429,-0.0649 -1.9441,0.0408 -3.5716,0.494"
+         id="path4980"
+         sodipodi:nodetypes="cc"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:nodetypes="cc"
+         id="path4982"
+         d="m 1041.8127,150.08762 -0.6228,1.41219"
+         style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.2721293;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.2721293;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"
+         d="m 1041.5175,149.71182 c -0.8428,-0.0649 -1.9441,0.0408 -3.5715,0.494"
+         id="path4984"
+         sodipodi:nodetypes="cc"
+         inkscape:connector-curvature="0" />
+      <path
+         sodipodi:nodetypes="cc"
+         id="path4986"
+         d="m 1042.5858,149.76773 c 0.8428,-0.0649 1.9441,0.0408 3.5715,0.494"
+         style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.2721293;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"
+         inkscape:connector-curvature="0" />
+    </g>
+    <path
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cccccccccccccccccccccccccszsc"
+       id="path3625"
+       d="m 1415.2551,82.389437 c -1.7732,-6.5057 -1.9791,-11.64964 -2.5995,-17.15366 -1.1768,2.13757 -2.3272,4.28609 -2.1018,7.00597 -2.145,-2.57027 -3.3038,-5.7001 -4.2775,-8.93496 -0.7319,2.33639 -1.4216,4.69311 -1.5185,7.33551 -2.5383,-1.87014 -4.8749,-4.06146 -7.057,-6.499 0.034,2.28267 -0.034,4.56763 0.6423,6.83604 -2.6766,-1.18196 -5.3174,-2.46461 -7.6972,-4.48418 l 0.5183,3.00886 c -1.0206,-0.38857 -1.5292,-0.20529 -3.1815,-1.29943 -0.1835,0.17863 -0.355,0.55565 -0.3801,0.87952 -0.9201,-0.33937 -2.344,-0.60878 -3.8846,-2.22498 0.051,0.43557 0.091,0.86806 0.3024,1.34776 -2.2388,-0.45667 -4.4226,-2.00087 -6.625,-3.17683 2.2681,2.61651 4.5749,5.42959 6.649,7.06073 -0.5477,-0.1084 -0.8556,0.13908 -1.1911,0.34561 2.9202,0.72131 4.7576,1.67366 6.5197,2.64205 -0.9959,0.55171 -1.9518,1.13528 -2.5714,1.98767 2.4928,0.55146 4.2105,1.70214 5.9633,2.82566 -1.1918,0.61604 -2.1759,1.59805 -3.1008,2.68443 3.5788,-0.26127 7.3175,-0.16131 11.2654,0.41151 -2.549,1.43745 -4.582,3.64064
  -6.4746,6.05217 2.4997,-0.55058 4.9744,-1.27407 7.6274,-0.76099 -0.5004,0.55068 -0.6276,1.26403 -0.7186,1.9932 3.9929,-2.44333 8.1198,-4.71713 12.846,-6.23251 0.8512,-0.53561 6.9835,2.84453 10.5418,4.8046 1.6103,0.88696 2.1178,1.8013 2.4382,1.30595 0.3285,-0.50789 -0.9826,-0.90121 -2.4384,-1.72 -3.3346,-1.87542 -8.9212,-4.62123 -9.4962,-6.04073 z"
+       style="fill:#d3d7cf;stroke-width:1px" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 520.20683,1363.3277 c 0.83827,0.9206 1.91702,-9.2632 0.84483,-12.3103 1.57335,3.012 3.01724,9.8965 3.37931,14.7241 -0.32899,-4.9708 0.51224,-8.4973 1.32759,-11.4655 0.38441,4.5164 0.24623,9.3804 3.74138,11.8276 l 0.84483,-7.2414 c -0.0283,3.6892 2.03029,5.2915 3.86207,7.1207 0.92194,-1.8841 0.0111,-4.5013 -0.60345,-7 1.45035,1.9638 3.04252,3.3617 4.10345,6.8793 0.16373,-4.2767 -0.62349,-8.0576 -1.56896,-11.5862 2.57431,3.4851 4.46539,7.0956 4.7069,9.6552 l 1.68965,-8.569 c 0.49771,4.6452 1.55458,7.9857 3.01725,10.3793 3.32486,-3.5047 2.4162,-8.4207 3.13793,-12.7931 0.61989,-0.4133 4.15143,13.3243 2.17242,14.2414 -0.4515,0.2092 5.91379,-16.6552 5.91379,-16.6552 -0.56114,0.3741 -4.32145,16.3178 -1.81034,15.6897 0.8446,-0.2113 2.05515,-2.2363 1.31013,-5.4525 1.96836,12.0156 3.32286,4.8433 2.55194,-3.8406 -0.0747,-0.8416 1.56897,7.8448 1.56897,7.8448 l 2.2931,-10.8621 1.81035,9.7759 0.96552,-6.5173 1.81034,10.3794 3.25863,-15.8104 -1.32759,17.0173 6.15518,-15.8104 c 
 0,0 0.48275,13.8793 0.60344,12.7931 0.12069,-1.0862 2.77587,-7.3621 2.77587,-7.3621 0,0 0.12069,8.4483 0.60345,7.3621 0.48276,-1.0862 2.05172,-6.2759 2.05172,-6.2759 0,0 2.77587,-5.3103 2.89656,-5.9138 0.12069,-0.6034 3.86207,11.3449 3.86207,11.3449 l 2.17242,-16.5345 0.12069,13.3965 4.22414,-7 0.96551,5.1897 3.01725,-9.1724 -2.4138,13.0345 6.75863,-6.7587 -0.24138,12.3104 -85.44835,-0.1207 -1.93103,-13.6379 z"
+       id="path25893"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccccccccscscsccccccccscscscccccccccccc" />
+    <path
+       sodipodi:nodetypes="ccccccccccccccscscsccccccccscscscccccccccccc"
+       inkscape:connector-curvature="0"
+       id="path26182"
+       d="m 570.20683,1363.3277 c 0.83827,0.9206 1.91702,-9.2632 0.84483,-12.3103 1.57335,3.012 3.01724,9.8965 3.37931,14.7241 -0.32899,-4.9708 0.51224,-8.4973 1.32759,-11.4655 0.38441,4.5164 0.24623,9.3804 3.74138,11.8276 l 0.84483,-7.2414 c -0.0283,3.6892 2.03029,5.2915 3.86207,7.1207 0.92194,-1.8841 0.0111,-4.5013 -0.60345,-7 1.45035,1.9638 3.04252,3.3617 4.10345,6.8793 0.16373,-4.2767 -0.62349,-8.0576 -1.56896,-11.5862 2.57431,3.4851 4.46539,7.0956 4.7069,9.6552 l 1.68965,-8.569 c 0.49771,4.6452 1.55458,7.9857 3.01725,10.3793 3.32486,-3.5047 2.4162,-8.4207 3.13793,-12.7931 0.61989,-0.4133 4.15143,13.3243 2.17242,14.2414 -0.4515,0.2092 5.91379,-16.6552 5.91379,-16.6552 -0.56114,0.3741 -4.32145,16.3178 -1.81034,15.6897 0.8446,-0.2113 2.05515,-2.2363 1.31013,-5.4525 1.96836,12.0156 3.32286,4.8433 2.55194,-3.8406 -0.0747,-0.8416 1.56897,7.8448 1.56897,7.8448 l 2.2931,-10.8621 1.81035,9.7759 0.96552,-6.5173 1.81034,10.3794 3.25863,-15.8104 -1.32759,17.0173 6.15518,-15.8104 c 
 0,0 0.48275,13.8793 0.60344,12.7931 0.12069,-1.0862 2.77587,-7.3621 2.77587,-7.3621 0,0 0.12069,8.4483 0.60345,7.3621 0.48276,-1.0862 2.05172,-6.2759 2.05172,-6.2759 0,0 2.77587,-5.3103 2.89656,-5.9138 0.12069,-0.6034 3.86207,11.3449 3.86207,11.3449 l 2.17242,-16.5345 0.12069,13.3965 4.22414,-7 0.96551,5.1897 3.01725,-9.1724 -2.4138,13.0345 6.75863,-6.7587 -0.24138,12.3104 -85.44835,-0.1207 -1.93103,-13.6379 z"
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 630.20683,1363.3277 c 0.83827,0.9206 1.91702,-9.2632 0.84483,-12.3103 1.57335,3.012 3.01724,9.8965 3.37931,14.7241 -0.32899,-4.9708 0.51224,-8.4973 1.32759,-11.4655 0.38441,4.5164 0.24623,9.3804 3.74138,11.8276 l 0.84483,-7.2414 c -0.0283,3.6892 2.03029,5.2915 3.86207,7.1207 0.92194,-1.8841 0.0111,-4.5013 -0.60345,-7 1.45035,1.9638 3.04252,3.3617 4.10345,6.8793 0.16373,-4.2767 -0.62349,-8.0576 -1.56896,-11.5862 2.57431,3.4851 4.46539,7.0956 4.7069,9.6552 l 1.68965,-8.569 c 0.49771,4.6452 1.55458,7.9857 3.01725,10.3793 3.32486,-3.5047 2.4162,-8.4207 3.13793,-12.7931 0.61989,-0.4133 4.15143,13.3243 2.17242,14.2414 -0.4515,0.2092 5.91379,-16.6552 5.91379,-16.6552 -0.56114,0.3741 -4.32145,16.3178 -1.81034,15.6897 0.8446,-0.2113 2.05515,-2.2363 1.31013,-5.4525 1.96836,12.0156 3.32286,4.8433 2.55194,-3.8406 -0.0747,-0.8416 1.56897,7.8448 1.56897,7.8448 l 2.2931,-10.8621 1.81035,9.7759 0.96552,-6.5173 1.81034,10.3794 3.25863,-15.8104 -1.32759,17.0173 6.15518,-15.8104 c 
 0,0 0.48275,13.8793 0.60344,12.7931 0.12069,-1.0862 2.77587,-7.3621 2.77587,-7.3621 0,0 0.12069,8.4483 0.60345,7.3621 0.48276,-1.0862 2.05172,-6.2759 2.05172,-6.2759 0,0 2.77587,-5.3103 2.89656,-5.9138 0.12069,-0.6034 3.86207,11.3449 3.86207,11.3449 l 2.17242,-16.5345 0.12069,13.3965 4.22414,-7 0.96551,5.1897 3.01725,-9.1724 -2.4138,13.0345 6.75863,-6.7587 -0.24138,12.3104 -85.44835,-0.1207 -1.93103,-13.6379 z"
+       id="path26184"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccccccccscscsccccccccscscscccccccccccc" />
+    <path
+       sodipodi:nodetypes="ccccccccccccccscscsccccccccscscscccccccccccc"
+       inkscape:connector-curvature="0"
+       id="path26186"
+       d="m 11.20683,1046.3277 c 0.83827,0.9206 1.91702,-9.2632 0.84483,-12.3103 1.57335,3.012 3.01724,9.8965 3.37931,14.7241 -0.32899,-4.9708 0.51224,-8.4973 1.32759,-11.4655 0.38441,4.5164 0.24623,9.3804 3.74138,11.8276 l 0.84483,-7.2414 c -0.0283,3.6892 2.03029,5.2915 3.86207,7.1207 0.92194,-1.8841 0.0111,-4.5013 -0.60345,-7 1.45035,1.9638 3.04252,3.3617 4.10345,6.8793 0.16373,-4.2767 -0.62349,-8.0576 -1.56896,-11.5862 2.57431,3.4851 4.46539,7.0956 4.7069,9.6552 l 1.68965,-8.569 c 0.49771,4.6452 1.55458,7.9857 3.01725,10.3793 3.32486,-3.5047 2.4162,-8.4207 3.13793,-12.7931 0.61989,-0.4133 4.15143,13.3243 2.17242,14.2414 -0.4515,0.2092 5.91379,-16.6552 5.91379,-16.6552 -0.56114,0.3741 -4.32145,16.3178 -1.81034,15.6897 0.8446,-0.2113 2.05515,-2.2363 1.31013,-5.4525 1.96836,12.0156 3.32286,4.8433 2.55194,-3.8406 -0.0747,-0.8416 1.56897,7.8448 1.56897,7.8448 l 2.2931,-10.8621 1.81035,9.7759 0.96552,-6.5173 1.81034,10.3794 3.25863,-15.8104 -1.32759,17.0173 6.15518,-15.8104 c 0
 ,0 0.48275,13.8793 0.60344,12.7931 0.12069,-1.0862 2.77587,-7.3621 2.77587,-7.3621 0,0 0.12069,8.4483 0.60345,7.3621 0.48276,-1.0862 2.05172,-6.2759 2.05172,-6.2759 0,0 2.77587,-5.3103 2.89656,-5.9138 0.12069,-0.6034 3.86207,11.3449 3.86207,11.3449 l 2.17242,-16.5345 0.12069,13.3965 4.22414,-7 0.96551,5.1897 3.01725,-9.1724 -2.4138,13.0345 6.75863,-6.7587 -0.24138,12.3104 -85.44835,-0.1207 -1.93103,-13.6379 z"
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 760.20683,1363.3277 c 0.83827,0.9206 1.91702,-9.2632 0.84483,-12.3103 1.57335,3.012 3.01724,9.8965 3.37931,14.7241 -0.32899,-4.9708 0.51224,-8.4973 1.32759,-11.4655 0.38441,4.5164 0.24623,9.3804 3.74138,11.8276 l 0.84483,-7.2414 c -0.0283,3.6892 2.03029,5.2915 3.86207,7.1207 0.92194,-1.8841 0.0111,-4.5013 -0.60345,-7 1.45035,1.9638 3.04252,3.3617 4.10345,6.8793 0.16373,-4.2767 -0.62349,-8.0576 -1.56896,-11.5862 2.57431,3.4851 4.46539,7.0956 4.7069,9.6552 l 1.68965,-8.569 c 0.49771,4.6452 1.55458,7.9857 3.01725,10.3793 3.32486,-3.5047 2.4162,-8.4207 3.13793,-12.7931 0.61989,-0.4133 4.15143,13.3243 2.17242,14.2414 -0.4515,0.2092 5.91379,-16.6552 5.91379,-16.6552 -0.56114,0.3741 -4.32145,16.3178 -1.81034,15.6897 0.8446,-0.2113 2.05515,-2.2363 1.31013,-5.4525 1.96836,12.0156 3.32286,4.8433 2.55194,-3.8406 -0.0747,-0.8416 1.56897,7.8448 1.56897,7.8448 l 2.2931,-10.8621 1.81035,9.7759 0.96552,-6.5173 1.81034,10.3794 3.25863,-15.8104 -1.32759,17.0173 6.15518,-15.8104 c 
 0,0 0.48275,13.8793 0.60344,12.7931 0.12069,-1.0862 2.77587,-7.3621 2.77587,-7.3621 0,0 0.12069,8.4483 0.60345,7.3621 0.48276,-1.0862 2.05172,-6.2759 2.05172,-6.2759 0,0 2.77587,-5.3103 2.89656,-5.9138 0.12069,-0.6034 3.86207,11.3449 3.86207,11.3449 l 2.17242,-16.5345 0.12069,13.3965 4.22414,-7 0.96551,5.1897 3.01725,-9.1724 -2.4138,13.0345 6.75863,-6.7587 -0.24138,12.3104 -85.44835,-0.1207 -1.93103,-13.6379 z"
+       id="path26188"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccccccccscscsccccccccscscscccccccccccc" />
+    <path
+       sodipodi:nodetypes="ccccccccccccccscscsccccccccscscscccccccccccc"
+       inkscape:connector-curvature="0"
+       id="path26190"
+       d="m 840.20683,1363.3277 c 0.83827,0.9206 1.91702,-9.2632 0.84483,-12.3103 1.57335,3.012 3.01724,9.8965 3.37931,14.7241 -0.32899,-4.9708 0.51224,-8.4973 1.32759,-11.4655 0.38441,4.5164 0.24623,9.3804 3.74138,11.8276 l 0.84483,-7.2414 c -0.0283,3.6892 2.03029,5.2915 3.86207,7.1207 0.92194,-1.8841 0.0111,-4.5013 -0.60345,-7 1.45035,1.9638 3.04252,3.3617 4.10345,6.8793 0.16373,-4.2767 -0.62349,-8.0576 -1.56896,-11.5862 2.57431,3.4851 4.46539,7.0956 4.7069,9.6552 l 1.68965,-8.569 c 0.49771,4.6452 1.55458,7.9857 3.01725,10.3793 3.32486,-3.5047 2.4162,-8.4207 3.13793,-12.7931 0.61989,-0.4133 4.15143,13.3243 2.17242,14.2414 -0.4515,0.2092 5.91379,-16.6552 5.91379,-16.6552 -0.56114,0.3741 -4.32145,16.3178 -1.81034,15.6897 0.8446,-0.2113 2.05515,-2.2363 1.31013,-5.4525 1.96836,12.0156 3.32286,4.8433 2.55194,-3.8406 -0.0747,-0.8416 1.56897,7.8448 1.56897,7.8448 l 2.2931,-10.8621 1.81035,9.7759 0.96552,-6.5173 1.81034,10.3794 3.25863,-15.8104 -1.32759,17.0173 6.15518,-15.8104 c 
 0,0 0.48275,13.8793 0.60344,12.7931 0.12069,-1.0862 2.77587,-7.3621 2.77587,-7.3621 0,0 0.12069,8.4483 0.60345,7.3621 0.48276,-1.0862 2.05172,-6.2759 2.05172,-6.2759 0,0 2.77587,-5.3103 2.89656,-5.9138 0.12069,-0.6034 3.86207,11.3449 3.86207,11.3449 l 2.17242,-16.5345 0.12069,13.3965 4.22414,-7 0.96551,5.1897 3.01725,-9.1724 -2.4138,13.0345 6.75863,-6.7587 -0.24138,12.3104 -85.44835,-0.1207 -1.93103,-13.6379 z"
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 890.20683,1363.3277 c 0.83827,0.9206 1.91702,-9.2632 0.84483,-12.3103 1.57335,3.012 3.01724,9.8965 3.37931,14.7241 -0.32899,-4.9708 0.51224,-8.4973 1.32759,-11.4655 0.38441,4.5164 0.24623,9.3804 3.74138,11.8276 l 0.84483,-7.2414 c -0.0283,3.6892 2.03029,5.2915 3.86207,7.1207 0.92194,-1.8841 0.0111,-4.5013 -0.60345,-7 1.45035,1.9638 3.04252,3.3617 4.10345,6.8793 0.16373,-4.2767 -0.62349,-8.0576 -1.56896,-11.5862 2.57431,3.4851 4.46539,7.0956 4.7069,9.6552 l 1.68965,-8.569 c 0.49771,4.6452 1.55458,7.9857 3.01725,10.3793 3.32486,-3.5047 2.4162,-8.4207 3.13793,-12.7931 0.61989,-0.4133 4.15143,13.3243 2.17242,14.2414 -0.4515,0.2092 5.91379,-16.6552 5.91379,-16.6552 -0.56114,0.3741 -4.32145,16.3178 -1.81034,15.6897 0.8446,-0.2113 2.05515,-2.2363 1.31013,-5.4525 1.96836,12.0156 3.32286,4.8433 2.55194,-3.8406 -0.0747,-0.8416 1.56897,7.8448 1.56897,7.8448 l 2.2931,-10.8621 1.81035,9.7759 0.96552,-6.5173 1.81034,10.3794 3.25863,-15.8104 -1.32759,17.0173 6.15518,-15.8104 c 
 0,0 0.48275,13.8793 0.60344,12.7931 0.12069,-1.0862 2.77587,-7.3621 2.77587,-7.3621 0,0 0.12069,8.4483 0.60345,7.3621 0.48276,-1.0862 2.05172,-6.2759 2.05172,-6.2759 0,0 2.77587,-5.3103 2.89656,-5.9138 0.12069,-0.6034 3.86207,11.3449 3.86207,11.3449 l 2.17242,-16.5345 0.12069,13.3965 4.22414,-7 0.96551,5.1897 3.01725,-9.1724 -2.4138,13.0345 6.75863,-6.7587 -0.24138,12.3104 -85.44835,-0.1207 -1.93103,-13.6379 z"
+       id="path26192"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccccccccscscsccccccccscscscccccccccccc" />
+    <path
+       sodipodi:nodetypes="ccccccccccccccscscsccccccccscscscccccccccccc"
+       inkscape:connector-curvature="0"
+       id="path26194"
+       d="m 940.20683,1363.3277 c 0.83827,0.9206 1.91702,-9.2632 0.84483,-12.3103 1.57335,3.012 3.01724,9.8965 3.37931,14.7241 -0.32899,-4.9708 0.51224,-8.4973 1.32759,-11.4655 0.38441,4.5164 0.24623,9.3804 3.74138,11.8276 l 0.84483,-7.2414 c -0.0283,3.6892 2.03029,5.2915 3.86207,7.1207 0.92194,-1.8841 0.0111,-4.5013 -0.60345,-7 1.45035,1.9638 3.04252,3.3617 4.10345,6.8793 0.16373,-4.2767 -0.62349,-8.0576 -1.56896,-11.5862 2.57431,3.4851 4.46539,7.0956 4.7069,9.6552 l 1.68965,-8.569 c 0.49771,4.6452 1.55458,7.9857 3.01725,10.3793 3.32486,-3.5047 2.4162,-8.4207 3.13793,-12.7931 0.61989,-0.4133 4.15143,13.3243 2.17242,14.2414 -0.4515,0.2092 5.91379,-16.6552 5.91379,-16.6552 -0.56114,0.3741 -4.32145,16.3178 -1.81034,15.6897 0.8446,-0.2113 2.05515,-2.2363 1.31013,-5.4525 1.96836,12.0156 3.32286,4.8433 2.55194,-3.8406 -0.0747,-0.8416 1.56897,7.8448 1.56897,7.8448 l 2.2931,-10.8621 1.81035,9.7759 0.96552,-6.5173 1.81034,10.3794 3.25863,-15.8104 -1.32759,17.0173 6.15518,-15.8104 c 
 0,0 0.48275,13.8793 0.60344,12.7931 0.12069,-1.0862 2.77587,-7.3621 2.77587,-7.3621 0,0 0.12069,8.4483 0.60345,7.3621 0.48276,-1.0862 2.05169,-6.2759 2.05169,-6.2759 0,0 2.7759,-5.3103 2.8966,-5.9138 0.1207,-0.6034 3.8621,11.3449 3.8621,11.3449 l 2.1724,-16.5345 0.1207,13.3965 4.2241,-7 0.9655,5.1897 3.0173,-9.1724 -2.4138,13.0345 6.7586,-6.7587 -0.2414,12.3104 -85.44833,-0.1207 -1.93103,-13.6379 z"
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 980.20683,1363.3277 c 0.83827,0.9206 1.91702,-9.2632 0.84483,-12.3103 1.57335,3.012 3.01724,9.8965 3.37931,14.7241 -0.32899,-4.9708 0.51224,-8.4973 1.32759,-11.4655 0.38441,4.5164 0.24623,9.3804 3.74138,11.8276 l 0.84483,-7.2414 c -0.0283,3.6892 2.03029,5.2915 3.86207,7.1207 0.92194,-1.8841 0.0111,-4.5013 -0.60345,-7 1.45035,1.9638 3.04252,3.3617 4.10345,6.8793 0.16373,-4.2767 -0.62349,-8.0576 -1.56896,-11.5862 2.57431,3.4851 4.46542,7.0956 4.70692,9.6552 l 1.6896,-8.569 c 0.4977,4.6452 1.5546,7.9857 3.0173,10.3793 3.3248,-3.5047 2.4162,-8.4207 3.1379,-12.7931 0.6199,-0.4133 4.1514,13.3243 2.1724,14.2414 -0.4515,0.2092 5.9138,-16.6552 5.9138,-16.6552 -0.5611,0.3741 -4.3214,16.3178 -1.8103,15.6897 0.8446,-0.2113 2.0551,-2.2363 1.3101,-5.4525 1.9684,12.0156 3.3229,4.8433 2.5519,-3.8406 -0.075,-0.8416 1.569,7.8448 1.569,7.8448 l 2.2931,-10.8621 1.8104,9.7759 0.9655,-6.5173 1.8103,10.3794 3.2587,-15.8104 -1.3276,17.0173 6.1552,-15.8104 c 0,0 0.4827,13.8793 0.6034,12.
 7931 0.1207,-1.0862 2.7759,-7.3621 2.7759,-7.3621 0,0 0.1207,8.4483 0.6034,7.3621 0.4828,-1.0862 2.0517,-6.2759 2.0517,-6.2759 0,0 2.7759,-5.3103 2.8966,-5.9138 0.1207,-0.6034 3.8621,11.3449 3.8621,11.3449 l 2.1724,-16.5345 0.1207,13.3965 4.2241,-7 0.9655,5.1897 3.0173,-9.1724 -2.4138,13.0345 6.7586,-6.7587 -0.2414,12.3104 -85.44833,-0.1207 -1.93103,-13.6379 z"
+       id="path26196"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccccccccscscsccccccccscscscccccccccccc" />
+    <path
+       sodipodi:nodetypes="ccccccccccccccscscsccccccccscsccscccccccccccc"
+       inkscape:connector-curvature="0"
+       id="path26198"
+       d="m 1040.2068,1363.3277 c 0.8383,0.9206 1.9171,-9.2632 0.8449,-12.3103 1.5733,3.012 3.0172,9.8965 3.3793,14.7241 -0.329,-4.9708 0.5122,-8.4973 1.3276,-11.4655 0.3844,4.5164 0.2462,9.3804 3.7413,11.8276 l 0.8449,-7.2414 c -0.028,3.6892 2.0303,5.2915 3.862,7.1207 0.922,-1.8841 0.011,-4.5013 -0.6034,-7 1.4503,1.9638 3.0425,3.3617 4.1034,6.8793 0.1638,-4.2767 -0.6234,-8.0576 -1.5689,-11.5862 2.5743,3.4851 4.4654,7.0956 4.7069,9.6552 l 1.6896,-8.569 c 0.4977,4.6452 1.5546,7.9857 3.0173,10.3793 3.3248,-3.5047 2.4162,-8.4207 3.1379,-12.7931 0.6199,-0.4133 4.1514,13.3243 2.1724,14.2414 -0.4515,0.2092 5.9138,-16.6552 5.9138,-16.6552 -0.5611,0.3741 -4.3214,16.3178 -1.8103,15.6897 0.8446,-0.2113 2.0551,-2.2363 1.3101,-5.4525 1.9684,12.0156 3.3229,4.8433 2.552,-3.8406 -0.075,-0.8416 1.5689,7.8448 1.5689,7.8448 l 2.2931,-10.8621 1.8104,9.7759 0.9655,-6.5173 1.8103,10.3794 3.2587,-15.8104 -1.3276,17.0173 6.1552,-15.8104 c 0,0 1.8085,13.1722 1.9292,12.086 0.1207,-1.0862 1.4501,-6.6
 55 1.4501,-6.655 0,0 0.4067,6.0221 2.106,7.804 0.572,0.5998 0.042,-5.7519 1.731,-5.9696 0.54,3.0526 2.884,6.3229 2.884,6.3229 0,0 -1.29,-12.3814 -1.1693,-12.9849 0.1207,-0.6034 3.8621,11.3449 3.8621,11.3449 -0.5686,-6.6426 0.9285,-11.4778 2.1724,-16.5345 -0.3063,4.6195 -1.5218,9.6431 0.1207,13.3965 l 3.0751,-9.0329 c -0.6191,2.7686 -0.9196,6.1333 1.0539,8.1949 0.6054,-4.5123 2.6309,-6.8947 4.0779,-10.1447 -1.2193,4.2988 -3.1708,8.5162 -2.4138,13.0345 l 6.7586,-6.7587 c -2.0864,3.206 -4.1401,6.0338 -6.4914,12.3104 l -79.1983,-0.1207 -1.9311,-13.6379 z"
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       sodipodi:nodetypes="ccccccccccccccscscsccccccccscscscccccccccccc"
+       inkscape:connector-curvature="0"
+       id="path26207"
+       d="m 774.32529,1360.8484 c 0.68519,1.2988 1.56696,-13.0691 0.69056,-17.3682 1.28605,4.2495 2.46628,13.9626 2.76223,20.7737 -0.26892,-7.0131 0.4187,-11.9885 1.08516,-16.1762 0.31422,6.372 0.20127,13.2344 3.05819,16.6871 l 0.69056,-10.2166 c -0.0231,5.2049 1.65955,7.4655 3.15684,10.0463 0.75358,-2.6582 0.009,-6.3507 -0.49326,-9.8761 1.18551,2.7707 2.48694,4.7429 3.35413,9.7058 0.13384,-6.0338 -0.50963,-11.3682 -1.28245,-16.3465 2.10422,4.917 3.64998,10.0109 3.84739,13.6221 l 1.38111,-12.0897 c 0.40683,6.5538 1.27071,11.2668 2.46629,14.6438 2.71772,-4.9447 1.97499,-11.8804 2.56493,-18.0493 0.50669,-0.5831 3.39335,18.7987 1.77572,20.0926 -0.36905,0.2952 4.8339,-23.4981 4.8339,-23.4981 -0.45867,0.5278 -3.53233,23.0221 -1.47976,22.136 0.69037,-0.2982 1.67987,-3.1552 1.0709,-7.6928 1.60892,16.9524 2.71608,6.8333 2.08594,-5.4185 -0.0611,-1.1874 1.28246,11.0679 1.28246,11.0679 l 1.87437,-15.3249 1.47977,13.7924 0.78921,-9.195 1.47977,14.6439 2.66358,-22.3063 -1.08516,24.0091 5
 .03121,-22.3063 c 0,0 0.3946,19.5818 0.49325,18.0493 0.0987,-1.5325 2.26898,-10.3869 2.26898,-10.3869 0,0 0.0987,11.9194 0.49326,10.3869 0.3946,-1.5325 1.67707,-8.8544 1.67707,-8.8544 0,0 2.26897,-7.4921 2.36763,-8.3436 0.0987,-0.8513 3.15684,16.0061 3.15684,16.0061 l 1.77572,-23.3279 0.0986,18.9006 3.45279,-9.876 0.7892,7.3219 2.46629,-12.941 -1.97303,18.3899 5.52447,-9.5356 -0.1973,17.3683 -69.84504,-0.1703 -1.57842,-19.2412 z"
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 1016.2068,1363.3277 c 0.8383,0.9206 1.9171,-9.2632 0.8449,-12.3103 1.5733,3.012 3.0172,9.8965 3.3793,14.7241 -0.329,-4.9708 0.5122,-8.4973 1.3276,-11.4655 0.3844,4.5164 0.2462,9.3804 3.7413,11.8276 l 0.8449,-7.2414 c -0.028,3.6892 2.0303,5.2915 3.862,7.1207 0.922,-1.8841 0.011,-4.5013 -0.6034,-7 1.4503,1.9638 3.0425,3.3617 4.1034,6.8793 0.1638,-4.2767 -0.6234,-8.0576 -1.5689,-11.5862 2.5743,3.4851 4.4654,7.0956 4.7069,9.6552 l 1.6896,-8.569 c 0.4977,4.6452 1.5546,7.9857 3.0173,10.3793 3.3248,-3.5047 2.4162,-8.4207 3.1379,-12.7931 0.6199,-0.4133 4.1514,13.3243 2.1724,14.2414 -0.4515,0.2092 5.9138,-16.6552 5.9138,-16.6552 -0.5611,0.3741 -4.3214,16.3178 -1.8103,15.6897 0.8446,-0.2113 2.0551,-2.2363 1.3101,-5.4525 1.9684,12.0156 3.3229,4.8433 2.552,-3.8406 -0.075,-0.8416 1.5689,7.8448 1.5689,7.8448 l 2.2931,-10.8621 1.8104,9.7759 0.9655,-6.5173 1.8103,10.3794 3.2587,-15.8104 -1.3276,17.0173 6.1552,-15.8104 c 0,0 0.4827,13.8793 0.6034,12.7931 0.1207,-1.0862 2.7759,-7.
 3621 2.7759,-7.3621 0,0 0.1207,8.4483 0.6034,7.3621 0.4828,-1.0862 2.0517,-6.2759 2.0517,-6.2759 0,0 2.7759,-5.3103 2.8966,-5.9138 0.1207,-0.6034 3.8621,11.3449 3.8621,11.3449 l 2.1724,-16.5345 0.1207,13.3965 4.2241,-7 0.9655,5.1897 3.0173,-9.1724 -2.4138,13.0345 6.7586,-6.7587 -0.2414,12.3104 -85.4483,-0.1207 -1.9311,-13.6379 z"
+       id="path26209"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccccccccccccscscsccccccccscscscccccccccccc" />
+    <path
+       sodipodi:nodetypes="cccccccccccccccccccccccccccccccc"
+       id="path12566-6-9"
+       d="m 71.236703,1049.2785 c -0.601853,-1.6384 2.284531,5.7741 1.844365,-11.4894 0.193281,10.8048 3.267363,5.7403 1.775096,10.9603 l 5.241847,-10.4153 c -1.774996,9.3868 -1.761589,11.1135 -0.528929,9.7587 1.71654,-5.5074 3.09034,-3.8332 2.968456,-9.652 l 1.617934,9.1827 c 1.729089,-2.7065 1.846422,4.1856 3.57551,-8.1206 l 1.957585,8.4602 2.766538,-8.843 c 0.518647,5.533 -1.792042,2.8406 3.007381,8.3737 -0.155572,-4.8451 2.028617,-1.9808 1.854016,-8.6887 l 1.043637,8.6825 3.797821,-7.7685 1.49443,7.6882 c 2.90601,-4.5644 2.56365,-3.2149 3.0012,-8.6022 l 0.8028,8.5775 1.98844,-11.097 c -1.03303,8.7252 0.7159,0.6454 2.27253,11.097 3.37445,-4.024 4.35675,-3.2856 4.96495,-8.2317 l 0.33964,8.2256 2.57512,-11.0662 c -1.05464,11.9884 0.99217,-0.9284 1.5747,11.06 1.38327,-2.0849 2.08109,-3.5034 3.46436,-8.2194 l 0.45079,7.4104 2.43926,-9.3371 c -0.51378,8.1163 0.76437,3.495 2.52571,9.4668 2.21893,-2.594 4.00132,-1.1812 5.3046,-9.2692 -0.0642,6.353 -0.94283,7.2212 -0.1482,11.8567
  l 0,3.6558 -63.971587,0 0,-3.6558 0,0 z"
+       style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       inkscape:connector-curvature="0" />
+    <path
+       sodipodi:nodetypes="cccccccccccccccccccccccccccccccc"
+       id="path12568-2-2"
+       d="m 122.97568,1049.2785 c -0.60185,-1.6384 2.28453,5.7741 1.84437,-11.4894 0.19328,10.8048 3.26736,5.7403 1.77509,10.9603 l 5.24185,-10.4153 c -1.775,9.3868 -1.76159,11.1135 -0.52893,9.7587 1.71654,-5.5074 3.09034,-3.8332 2.96846,-9.652 l 1.61793,9.1827 c 1.72909,-2.7065 1.84642,4.1856 3.57551,-8.1206 l 1.95759,8.4602 2.76653,-8.843 c 0.51865,5.533 -1.79204,2.8406 3.00739,8.3737 -0.15558,-4.8451 2.02861,-1.9808 1.85401,-8.6887 l 1.04364,8.6825 3.79782,-7.7685 1.49443,7.6882 c 2.90601,-4.5644 2.56365,-3.2149 3.0012,-8.6022 l 0.8028,8.5775 1.98844,-11.097 c -1.03303,8.7252 0.7159,0.6454 2.27253,11.097 3.37445,-4.024 4.35675,-3.2856 4.96495,-8.2317 l 0.33964,8.2256 2.57512,-11.0662 c -1.05465,11.9884 0.99217,-0.9284 1.5747,11.06 1.38327,-2.0849 2.08109,-3.5034 3.46436,-8.2194 l 0.45079,7.4104 2.43925,-9.3371 c -0.51377,8.1163 0.76438,3.495 2.52572,9.4668 2.21893,-2.594 4.00132,-1.1812 5.3046,-9.2692 -0.0642,6.353 -0.94283,7.2212 -0.1482,11.8567 l 0,3.6558 -63.97159,0 0,
 -3.6558 0,0 z"
+       style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 212.35862,1049.2785 c -0.60185,-1.6384 2.28453,5.7741 1.84437,-11.4894 0.19328,10.8048 3.26736,5.7403 1.77509,10.9603 l 5.24185,-10.4153 c -1.775,9.3868 -1.76159,11.1135 -0.52893,9.7587 1.71654,-5.5074 3.09034,-3.8332 2.96846,-9.652 l 1.61793,9.1827 c 1.72909,-2.7065 1.84642,4.1856 3.57551,-8.1206 l 1.95759,8.4602 2.76653,-8.843 c 0.51865,5.533 -1.79204,2.8406 3.00738,8.3737 -0.15557,-4.8451 2.02862,-1.9808 1.85402,-8.6887 l 1.04364,8.6825 3.79782,-7.7685 1.49443,7.6882 c 2.906,-4.5644 2.56365,-3.2149 3.0012,-8.6022 l 0.8028,8.5775 1.98844,-11.097 c -1.03303,8.7252 0.7159,0.6454 2.27253,11.097 3.37445,-4.024 4.35675,-3.2856 4.96495,-8.2317 l 0.33964,8.2256 2.57512,-11.0662 c -1.05465,11.9884 0.99217,-0.9284 1.5747,11.06 1.38327,-2.0849 2.08109,-3.5034 3.46435,-8.2194 l 0.4508,7.4104 2.43925,-9.3371 c -0.51377,8.1163 0.76437,3.495 2.52572,9.4668 2.21893,-2.594 4.00132,-1.1812 5.30459,-9.2692 -0.0642,6.353 -0.94282,7.2212 -0.14819,11.8567 l 0,3.6558 -63.97159,0 0,-
 3.6558 0,0 z"
+       id="path12570-3-0"
+       sodipodi:nodetypes="cccccccccccccccccccccccccccccccc"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 345.42101,1049.2785 c -0.60185,-1.6384 2.28453,5.7741 1.84437,-11.4894 0.19328,10.8048 3.26736,5.7403 1.77509,10.9603 l 5.24185,-10.4153 c -1.775,9.3868 -1.76159,11.1135 -0.52893,9.7587 1.71654,-5.5074 3.09034,-3.8332 2.96846,-9.652 l 1.61793,9.1827 c 1.72909,-2.7065 1.84642,4.1856 3.57551,-8.1206 l 1.95759,8.4602 2.76653,-8.843 c 0.51865,5.533 -1.79204,2.8406 3.00739,8.3737 -0.15558,-4.8451 2.02861,-1.9808 1.85401,-8.6887 l 1.04364,8.6825 3.79782,-7.7685 1.49443,7.6882 c 2.90601,-4.5644 2.56365,-3.2149 3.0012,-8.6022 l 0.8028,8.5775 1.98844,-11.097 c -1.03303,8.7252 0.7159,0.6454 2.27253,11.097 3.37445,-4.024 4.35675,-3.2856 4.96495,-8.2317 l 0.33964,8.2256 2.57512,-11.0662 c -1.05464,11.9884 0.99217,-0.9284 1.5747,11.06 1.38327,-2.0849 2.08109,-3.5034 3.46436,-8.2194 l 0.45079,7.4104 2.43926,-9.3371 c -0.51378,8.1163 0.76437,3.495 2.52571,9.4668 2.21893,-2.594 4.00132,-1.1812 5.3046,-9.2692 -0.0642,6.353 -0.94283,7.2212 -0.1482,11.8567 l 0,3.6558 -63.97159,0 0,
 -3.6558 0,0 z"
+       id="path12574-7-5"
+       sodipodi:nodetypes="cccccccccccccccccccccccccccccccc"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 273.22361,1050.2446 c 2.44645,-5.4247 6.62485,-15.0546 6.12545,-27.7557 1.31916,8.9002 1.22974,22.5175 -0.46338,26.3579 l 4.1327,-6.9903 c -2.01391,6.906 -1.73945,8.5126 -0.34088,7.5158 4.0215,-3.7157 4.02477,-9.8804 2.84952,-13.9932 l 2.35418,12.9755 c 1.96182,-1.9912 2.35418,-10.5368 4.316,-19.5906 l 1.96183,19.3362 3.13891,-13.23 c 0.58846,4.0708 -0.99628,9.9694 1.33823,13.5832 1.48548,-0.7801 1.81058,-10.3169 2.14032,-8.4232 0.98163,5.6375 2.16974,9.9724 2.76347,7.6948 0.2506,-0.9613 1.40972,-7.3247 1.35301,-8.7371 l 2.9988,7.5858 3.53127,-18.8273 c -0.0689,8.5783 0.59349,21.674 -0.39236,19.5905 l 1.56946,2.0354 c 3.29714,-3.3581 3.42719,-8.2488 3.92363,-12.2123 l 0.39237,10.1769 5.88546,-20.0994 c -1.17209,6.4193 -3.3356,12.41 -1.56946,20.0994 3.82864,-2.9605 5.98012,-6.2835 6.67019,-9.9225 l -0.39237,9.4137 7.84729,-26.9689 c -1.19659,8.82 -3.79986,17.64 -3.13892,26.46 1.56946,-1.5338 3.13892,-5.4352 4.70837,-8.9048 l -0.78473,8.1416 5.10073,-16.2831 c -0.5
 8292,5.9713 -3.64721,12.2107 1.56946,17.5552 2.51761,-1.9084 4.79913,-4.7353 6.27783,-10.6858 -0.0728,4.674 -1.06973,10.692 -0.16815,14.1023 l 0,2.6897 -75.69823,0 0,-2.6897 0,0 z"
+       id="path12576-5-9"
+       sodipodi:nodetypes="cccccccccccsscccccccccccccccccccccc"
+       inkscape:connector-curvature="0" />
+    <path
+       sodipodi:nodetypes="cccccccccccccccccccc"
+       id="path12580-7-0"
+       d="m 132.81566,1049.8953 c 1.87231,-5.4248 5.07012,-15.0547 4.68792,-27.7557 1.00957,8.9002 0.94114,22.5174 -0.35464,26.3578 l 3.16283,-6.9903 c -1.54128,6.9061 -1.33123,8.5126 -0.26088,7.5159 3.07773,-3.7157 3.08023,-9.8804 2.18079,-13.9933 l 1.8017,12.9756 c 1.50141,-1.9912 1.8017,-10.5368 3.30311,-19.5906 l 1.50143,19.3362 2.40226,-13.23 c 0.45035,4.0707 -0.56408,8.1415 3.6034,12.2123 2.24985,-1.5439 3.15443,-4.9875 3.00283,-9.9225 l 1.50141,9.4136 2.70256,-18.8273 c -0.0526,8.5783 0.4542,21.674 -0.30029,19.5906 l 1.20114,2.0354 -0.42188,3.9113 -29.71369,-0.01 0,-3.0322 z"
+       style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 407.45451,1049.2785 c -0.60185,-1.6384 2.28453,5.7741 1.84436,-11.4894 0.19328,10.8048 3.26737,5.7403 1.7751,10.9603 l 5.24185,-10.4154 c -1.775,9.3869 -1.76159,11.1136 -0.52893,9.7588 1.71654,-5.5074 3.09034,-3.8332 2.96845,-9.652 l 1.61794,9.1827 c 1.72909,-2.7065 1.84642,4.1855 3.57551,-8.1206 l 1.95758,8.4602 2.76654,-8.843 c 0.51865,5.533 -1.79204,2.8406 3.00738,8.3737 -0.15557,-4.8451 2.02862,-1.9808 1.85402,-8.6887 l 1.04363,8.6825 3.79782,-7.7685 1.49443,7.6882 c 2.90601,-4.5644 2.56366,-3.2149 3.00121,-8.6022 l 0.80279,8.5775 1.98845,-11.097 c -1.03304,8.7252 0.7159,0.6453 2.27252,11.097 3.37445,-4.024 4.35675,-3.2856 4.96496,-8.2317 l 0.33964,8.2256 2.57511,-11.0662 c -1.05464,11.9883 0.99217,-0.9284 1.57471,11.06 1.38327,-2.0849 2.08108,-3.5034 3.46435,-8.2194 l 0.4508,7.4104 2.43925,-9.3371 c -0.51378,8.1163 0.76437,3.495 2.52571,9.4668 2.21894,-2.594 4.00133,-1.1812 5.3046,-9.2692 -0.0642,6.353 -0.94283,7.2212 -0.1482,11.8567 l 0,3.6557 -63.97158,0 0
 ,-3.6557 0,0 z"
+       id="path12584-7-3"
+       sodipodi:nodetypes="cccccccccccccccccccccccccccccccc"
+       inkscape:connector-curvature="0" />
+    <path
+       sodipodi:nodetypes="cccccccccccccccccccccccccccccccc"
+       id="path12588-5-7"
+       d="m 532.66534,1049.2785 c -0.60185,-1.6384 2.28453,5.7741 1.84437,-11.4894 0.19328,10.8048 3.26736,5.7403 1.77509,10.9603 l 5.24185,-10.4154 c -1.775,9.3869 -1.76159,11.1136 -0.52893,9.7588 1.71654,-5.5074 3.09034,-3.8332 2.96846,-9.652 l 1.61793,9.1827 c 1.72909,-2.7065 1.84642,4.1855 3.57551,-8.1206 l 1.95759,8.4602 2.76653,-8.843 c 0.51865,5.533 -1.79204,2.8406 3.00739,8.3737 -0.15558,-4.8451 2.02861,-1.9808 1.85401,-8.6887 l 1.04364,8.6825 3.79782,-7.7685 1.49443,7.6882 c 2.90601,-4.5644 2.56365,-3.2149 3.0012,-8.6022 l 0.8028,8.5775 1.98844,-11.097 c -1.03303,8.7252 0.7159,0.6453 2.27253,11.097 3.37445,-4.024 4.35675,-3.2856 4.96495,-8.2317 l 0.33964,8.2256 2.57512,-11.0662 c -1.05464,11.9883 0.99217,-0.9284 1.5747,11.06 1.38327,-2.0849 2.08109,-3.5034 3.46436,-8.2194 l 0.45079,7.4104 2.43926,-9.3371 c -0.51378,8.1163 0.76437,3.495 2.52571,9.4668 2.21893,-2.594 4.00132,-1.1812 5.3046,-9.2692 -0.0642,6.353 -0.94283,7.2212 -0.1482,11.8567 l 0,3.6557 -63.97159,0 0,
 -3.6557 0,0 z"
+       style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 526.16374,1042.1626 c 1.77499,6.7152 1.5331,8.2773 0.30044,7.3081 -3.54444,-3.613 -3.54731,-9.6073 -2.51148,-13.6066 l -2.07491,12.6171 c -1.72909,-1.9362 -2.07491,-10.2457 -3.804,-19.0493 l -1.72909,18.8019 -2.76654,-12.8645 c -0.51865,3.9583 0.6496,7.9166 -4.14982,11.8749 -2.59102,-1.5012 -3.63278,-4.8496 -3.45818,-9.6483 l -1.72909,9.1535 -3.11236,-18.307 c 0.0607,8.3412 -0.52308,21.075 0.34582,19.0492 l -1.38328,1.9791 c -2.90601,-3.2653 -3.02062,-8.0209 -3.45818,-11.8748 l -0.34582,9.8957 -5.18726,-19.544 c 1.03303,6.2419 2.93989,12.067 1.38327,19.544 -3.37445,-2.8787 -5.2707,-6.1099 -5.87891,-9.6483 l 0.34582,9.1535 -6.91636,-26.2236 c 1.05464,8.5763 3.34908,17.1525 2.76655,25.7288 -1.38327,-1.4915 -2.76655,-5.285 -4.14982,-8.6587 l 0.69164,7.9166 -4.49564,-15.8332 c 0.51378,5.8063 3.21455,11.8733 -1.38327,17.0701 -2.21894,-1.8557 -4.22982,-4.6045 -5.53309,-10.3905 0.0642,4.5448 0.94283,10.3965 0.1482,13.7126 l 0,2.6153 66.71818,0 -8.63282,-10.7716 0,0 z"
+       id="path12600-8-4"
+       sodipodi:nodetypes="cccccccccccccccccccccccccccccc"
+       inkscape:connector-curvature="0" />
+    <path
+       sodipodi:nodetypes="cccccccccccccccccccc"
+       id="path12602-7-6"
+       d="m 594.2443,1049.8953 c 1.87231,-5.4248 5.07012,-15.0547 4.68792,-27.7557 1.00957,8.9002 0.94114,22.5174 -0.35464,26.3578 l 3.16283,-6.9903 c -1.54128,6.9061 -1.33123,8.5126 -0.26088,7.5159 3.07773,-3.7157 3.08023,-9.8804 2.18079,-13.9933 l 1.8017,12.9756 c 1.50141,-1.9912 1.8017,-10.5368 3.30311,-19.5906 l 1.50143,19.3362 2.40226,-13.2301 c 0.45035,4.0708 -0.56408,8.1416 3.6034,12.2124 2.24985,-1.5439 3.15443,-4.9875 3.00283,-9.9225 l 1.50141,9.4136 2.70256,-18.8273 c -0.0526,8.5783 0.4542,21.674 -0.30029,19.5906 l 1.20114,2.0354 -0.42188,3.9112 -29.71369,0.01 0,-3.049 z"
+       style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       inkscape:connector-curvature="0" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 429.33175,-837.98321 -9.64025,62.35683 66.97422,36.23883 5.41947,-68.21115 -62.75344,-30.38451"
+       id="path27846"
+       inkscape:path-effect="#path-effect27848"
+       inkscape:original-d="m 429.33175,-837.98321 -9.64025,62.35683 66.97422,36.23883 5.41947,-68.21115 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="color:#000000;fill:none;stroke:#d3d7cf;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 446,178 c -9.13256,306.38426 -45.31968,611.95717 -108.00251,911.9998 -60.54182,289.7943 -145.79424,574.422 -254.52874,849.7815"
+       id="path27874"
+       inkscape:path-effect="#path-effect27876"
+       inkscape:original-d="M 446,178 C 470.02123,469.61571 367.17561,795.30772 337.99749,1089.9998 308.81936,1384.6919 160.7775,1656.1653 83.46875,1939.7813"
+       inkscape:connector-curvature="0"
+       transform="translate(0,-947.63782)"
+       sodipodi:nodetypes="csc" />
+    <g
+       transform="matrix(-0.4144134,0,0,0.4144134,721.72027,583.93245)"
+       id="g28642">
+      <path
+         inkscape:connector-curvature="0"
+         id="path28644"
+         d="m 1058.544,139.65426 0.3774,6.03738"
+         style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.95967817;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.95967817;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"
+         d="m 1042.0648,140.49745 -0.1959,6.03738"
+         id="path28646" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccssc"
+         id="path28648"
+         d="m 1026.5473,98.427497 c 14.647,-4.82062 29.6443,-2.09612 36.2243,-1.13201 0,0 10.78,29.258953 2.547,39.620313 -6.8403,8.60872 -20.2842,11.31588 -29.1492,4.81103 -11.9068,-8.73682 -8.6009,-27.35977 -9.6221,-43.299333 z"
+         style="fill:#d3d7cf;stroke-width:1px" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccc"
+         id="path28650"
+         d="m 1062.7937,97.324217 -2.4759,-8.14767 c -3.1113,3.81529 -3.7398,4.8355 -3.5112,8.65079 l 5.9871,-0.50312 z"
+         style="fill:#d3d7cf;stroke-width:1px" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#d3d7cf;stroke-width:1px"
+         d="m 1026.5614,98.572687 -0.4462,-8.14767 c 4.4795,3.81529 5.474,4.8355 6.6137,8.65079 l -6.1675,-0.50312 z"
+         id="path28652"
+         sodipodi:nodetypes="cccc" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccc"
+         id="path28654"
+         d="m 1055.5897,113.86586 c 11.1488,-9.23252 22.9656,-14.793646 26.0579,-9.7875 -8.4717,6.95949 -15.8501,11.80119 -22.8057,15.82389 l -3.2522,-6.03639 z"
+         style="fill:#d3d7cf;stroke-width:1px" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#d3d7cf;stroke-width:1px"
+         d="m 1034.0643,112.65769 c -13.2123,-5.91359 -26.0861,-8.11097 -27.7264,-2.45998 10.0246,4.43959 18.4293,7.13109 26.2074,9.14643 l 1.5194,-6.6863 z"
+         id="path28656"
+         sodipodi:nodetypes="cccc" />
+      <path
+         transform="matrix(0.50498666,0,0,0.73857575,872.50231,-229.23358)"
+         d="m 365,459.36218 c 0,3.866 -3.13401,7 -7,7 -3.86599,0 -7,-3.134 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z"
+         sodipodi:ry="7"
+         sodipodi:rx="7"
+         sodipodi:cy="459.36218"
+         sodipodi:cx="358"
+         id="path28658"
+         style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="path28660"
+         sodipodi:cx="358"
+         sodipodi:cy="459.36218"
+         sodipodi:rx="7"
+         sodipodi:ry="7"
+         d="m 365,459.36218 c 0,3.866 -3.13401,7 -7,7 -3.86599,0 -7,-3.134 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z"
+         transform="matrix(0.50498666,0,0,0.73857575,857.1573,-228.60468)" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccc"
+         id="path28662"
+         d="m 1052.5742,117.7326 c -3.6547,-0.85721 -7.5369,-1.33633 -12.8973,0.64056 l 6.4565,7.03803 6.4408,-7.67859 z"
+         style="fill:#d3d7cf;stroke-width:1px" />
+      <path
+         sodipodi:type="arc"
+         style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         id="path28664"
+         sodipodi:cx="358"
+         sodipodi:cy="459.36218"
+         sodipodi:rx="7"
+         sodipodi:ry="7"
+         d="m 365,459.36218 c 0,3.866 -3.13401,7 -7,7 -3.86599,0 -7,-3.134 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z"
+         transform="matrix(0.12290156,0,0,0.17975151,1007.8633,29.816997)" />
+      <path
+         transform="matrix(0.12290156,0,0,0.17975151,992.68598,31.074787)"
+         d="m 365,459.36218 c 0,3.866 -3.13401,7 -7,7 -3.86599,0 -7,-3.134 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z"
+         sodipodi:ry="7"
+         sodipodi:rx="7"
+         sodipodi:cy="459.36218"
+         sodipodi:cx="358"
+         id="path28666"
+         style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         sodipodi:type="arc" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cc"
+         id="path28668"
+         d="m 1059.124,146.97272 0.6813,1.58777"
+         style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.95967817;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.95967817;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"
+         d="m 1059.4192,146.59692 c 0.8428,-0.0649 1.9441,0.0408 3.5715,0.494"
+         id="path28670"
+         sodipodi:nodetypes="cc" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cc"
+         id="path28672"
+         d="m 1058.3509,146.65283 c -0.8429,-0.0649 -1.9441,0.0408 -3.5716,0.494"
+         style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.95967817;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.95967817;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"
+         d="m 1041.8127,146.97272 -0.6228,1.41219"
+         id="path28674"
+         sodipodi:nodetypes="cc" />
+      <path
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cc"
+         id="path28676"
+         d="m 1041.5175,146.59692 c -0.8428,-0.0649 -1.9441,0.0408 -3.5715,0.494"
+         style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.95967817;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" />
+      <path
+         inkscape:connector-curvature="0"
+         style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.95967817;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"
+         d="m 1042.5858,146.65283 c 0.8428,-0.0649 1.9441,0.0408 3.5715,0.494"
+         id="path28678"
+         sodipodi:nodetypes="cc" />
+    </g>
+    <path
+       style="color:#000000;fill:none;stroke:#d3d7cf;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 310.03122,274.55531 c 1.25264,-4.94354 4.09371,-9.4715 8,-12.75 1.4472,-1.21462 3.09751,-2.28633 4.96112,-2.59724 0.9318,-0.15545 1.90435,-0.11199 2.79886,0.19177 0.89452,0.30377 1.70665,0.87576 2.24002,1.65547 0.46215,0.67559 0.70529,1.49057 0.73861,2.30843 0.0333,0.81786 -0.13823,1.63787 -0.45037,2.39455 -0.62427,1.51338 -1.78355,2.74547 -3.03824,3.79702 -4.20079,3.52068 -9.78015,5.34997 -15.25,5"
+       id="path28684"
+       inkscape:path-effect="#path-effect28686"
+       inkscape:original-d="m 310.03122,274.55531 c 0,0 3.70344,-10.15902 8,-12.75 2.8625,-1.72619 7.93374,-3.37758 10,-0.75 1.84078,2.34085 2.5,3.5 -2.75,8.5 -5.25,5 -15.25,5 -15.25,5 z"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="csssc" />
+    <path
+       sodipodi:nodetypes="csssc"
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 309.53123,275.14698 c 0,0 2.355,6.38485 5.08717,8.01325 1.82026,1.0849 5.04504,2.12278 6.35897,0.47137 1.17055,-1.4712 1.58974,-2.19972 -1.74872,-5.34217 -3.33846,-3.14245 -9.69742,-3.14245 -9.69742,-3.14245 z"
+       inkscape:path-effect="#path-effect28690"
+       id="path28688"
+       d="m 309.53123,275.14698 c 0.82576,3.10583 2.62785,5.94447 5.08717,8.01325 0.92064,0.77444 1.97026,1.45935 3.1569,1.65738 0.59333,0.099 1.2128,0.0706 1.78178,-0.12454 0.56899,-0.19517 1.08462,-0.56231 1.42029,-1.06147 0.28713,-0.42698 0.43663,-0.94007 0.4549,-1.4543 0.0183,-0.51422 -0.0916,-1.02914 -0.2893,-1.50419 -0.39538,-0.95011 -1.12501,-1.72336 -1.91432,-2.38368 -2.67114,-2.23461 -6.22333,-3.3857 -9.69742,-3.14245"
+       style="color:#000000;fill:none;stroke:#d3d7cf;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:none;stroke:#d3d7cf;stroke-width:2.71428561;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path28692"
+       sodipodi:cx="353.875"
+       sodipodi:cy="1001.875"
+       sodipodi:rx="2.375"
+       sodipodi:ry="2.375"
+       d="m 356.25,1001.875 a 2.375,2.375 0 1 1 -4.75,0 2.375,2.375 0 1 1 4.75,0 z"
+       transform="matrix(0.7368421,0,0,0.7368421,47.781223,-463.66837)" />
+    <path
+       inkscape:connector-curvature="0"
+       style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none"
+       d="m 214.95123,1049.8953 c -1.87231,-5.4248 -5.07012,-15.0547 -4.68792,-27.7557 -1.00957,8.9002 -0.94114,22.5174 0.35464,26.3578 l -3.16283,-6.9903 c 1.54128,6.9061 1.33123,8.5126 0.26088,7.5159 -3.07773,-3.7157 -3.08023,-9.8804 -2.18079,-13.9933 l -1.8017,12.9756 c -1.50141,-1.9912 -1.8017,-10.5368 -3.30311,-19.5906 l -1.50143,19.3362 -2.40226,-13.23 c -0.45035,4.0707 0.56408,8.1415 -3.6034,12.2123 -2.24985,-1.5439 -3.15443,-4.9875 -3.00283,-9.9225 l -1.50141,9.4136 -2.70256,-18.8273 c 0.0526,8.5783 -0.4542,21.674 0.30029,19.5906 l -1.20114,2.0354 0.42188,3.9113 29.71369,-0.01 0,-3.0322 z"
+       id="path28721"
+       sodipodi:nodetypes="cccccccccccccccccccc" />
+    <g
+       id="g6110"
+       transform="matrix(0.69694484,0,0,0.69694484,16.36315,319.94188)">
+      <g
+         id="g28130"
+         transform="matrix(-1,0,0,1,762.70024,-5.0462202)">
+        <rect
+           style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           id="rect5433"
+           width="16.176094"
+           height="12.905448"
+           x="694.82861"
+           y="949.72052" />
+        <path
+           style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+           d="m 727.66131,928.16587 c 0,14.09086 -15.03072,29.06625 -25.73408,29.06625 -10.70332,0 -25.73404,-14.97539 -25.73404,-29.06625 0,-14.09082 11.52151,-25.51367 25.73404,-25.51367 14.21254,0 25.73408,11.42285 25.73408,25.51367 z"
+           id="path2996"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="szsss" />
+        <path
+           style="fill:#d3d7cf;fill-opacity:1;stroke:none"
+           d="m 726.84256,917.94175 c 2.39506,-3.59219 5.7116,-6.56446 9.54376,-8.55309 4.39853,-2.28254 9.46709,-3.25415 14.3979,-2.75999 -2.14436,0.50571 -4.13116,1.66049 -5.63196,3.27344 -1.13082,1.21532 -1.98652,2.68518 -2.48502,4.26862 1.50687,-0.25301 3.08785,-0.046 4.47874,0.58659 1.1811,0.53713 2.22288,1.37727 2.99804,2.41776 0.77515,1.0405 1.28204,2.27913 1.45872,3.56454 -2.29971,-1.55491 -5.06284,-2.41484 -7.83877,-2.43955 -2.21416,-0.0197 -4.43126,0.48692 -6.4171,1.46638 1.58671,0.71676 3.04723,1.71185 4.2949,2.92622 1.69704,1.65175 2.99512,3.7106 3.75387,5.95393 -2.91261,-2.31439 -6.34119,-3.97571 -9.96256,-4.82738 -2.27324,-0.53462 -4.62064,-0.75293 -6.95348,-0.64668 l -1.63704,-5.23079"
+           id="path5344"
+           inkscape:path-effect="#path-effect5346-2"
+           inkscape:original-d="m 726.84256,917.94175 c 0,0 5.52089,-6.44051 9.54376,-8.55309 4.02285,-2.11263 14.3979,-2.75999 14.3979,-2.75999 0,0 -4.29263,1.83892 -5.63196,3.27344 -1.33932,1.43451 -2.48502,4.26862 -2.48502,4.26862 0,0 2.90773,-0.46564 4.47874,0.58659 1.57102,1.0522 4.45676,5.9823 4.45676,5.9823 0,0 -5.43494,-2.34235 -7.83877,-2.43955 -2.40385,-0.097 -6.4171,1.46638 -6.4171,1.46638 0,0 2.92442,1.44143 4.2949,2.92622 1.37048,1.48479 3.75387,5.95393 3.75387,5.95393 0,0 -7.11763,-4.01537 -9.96256,-4.82738 -2.84491,-0.812 -6.95348,-0.64668 -6.95348,-0.64668 z"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="czczczczczczcc" />
+        <path
+           style="fill:#d3d7cf;fill-opacity:1;stroke:none"
+           d="m 677.15452,911.0864 c -1.25411,-1.18872 -2.64658,-2.23137 -4.14027,-3.10013 -4.30649,-2.50475 -9.46586,-3.51085 -14.39792,-2.80765 2.14908,0.52637 4.13504,1.70059 5.63196,3.32996 1.1377,1.23837 1.99366,2.73408 2.48501,4.34234 -1.50787,-0.24971 -3.08884,-0.0391 -4.47873,0.59673 -1.19427,0.54631 -2.24507,1.40278 -3.02102,2.46233 -0.77596,1.05955 -1.27535,2.31983 -1.43575,3.62329 2.28896,-1.5806 5.05723,-2.45701 7.83878,-2.48169 2.21672,-0.0197 4.43634,0.49631 6.41709,1.49172 -1.58896,0.73469 -3.04921,1.74678 -4.2949,2.97675 -1.70609,1.68457 -3.00437,3.77931 -3.75386,6.05676 2.9083,-2.33909 6.33604,-4.0287 9.96254,-4.91076 0.82552,-0.20079 1.66107,-0.36032 2.50249,-0.47779 0.0703,-1.24283 0.27544,-2.478 0.6108,-3.67679 0.33979,-1.21463 0.81321,-2.39183 1.40897,-3.50352 l -2.02009,-0.69813 c -0.017,-0.63474 0.0524,-1.27174 0.20559,-1.88795 0.11431,-0.45976 0.27517,-0.90794 0.47931,-1.33547"
+           id="path5344-2"
+           inkscape:path-effect="#path-effect5346-9-5"
+           inkscape:original-d="m 677.15452,911.0864 c -1.37831,-1.24703 -2.83781,-2.40434 -4.14027,-3.10013 -1.30246,-0.69579 -14.39792,-2.80765 -14.39792,-2.80765 0,0 4.29265,1.87068 5.63196,3.32996 1.33932,1.4593 2.48501,4.34234 2.48501,4.34234 0,0 -2.90772,-0.47366 -4.47873,0.59673 -1.571,1.07037 -4.45677,6.08562 -4.45677,6.08562 0,0 5.43493,-2.38283 7.83878,-2.48169 2.40385,-0.0987 6.41709,1.49172 6.41709,1.49172 0,0 -2.92441,1.46631 -4.2949,2.97675 -1.37047,1.51042 -3.75386,6.05676 -3.75386,6.05676 0,0 9.1861,-4.68532 9.96254,-4.91076 0.77644,-0.22544 1.64701,-0.37683 2.50249,-0.47779 0,0 0.26965,-2.50199 0.6108,-3.67679 0.34116,-1.1748 1.40897,-3.50352 1.40897,-3.50352 l -2.02009,-0.69813 c 0,0 0.0814,-1.34908 0.20559,-1.88795 0.1242,-0.53887 0.47931,-1.33547 0.47931,-1.33547 z"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="czczczczczczczcczc" />
+        <path
+           sodipodi:nodetypes="cccccccccccssssssscsssssss"
+           inkscape:connector-curvature="0"
+           id="rect5392"
+           transform="matrix(-1,0,0,1,762.70024,-942.5916)"
+           d="M 46.96875,1902.25 34.125,1951.9062 c 1.604317,-0.9648 4.293697,-2.6598 6.03125,-4.25 2.56469,-2.3469 7.8125,-9.1247 7.8125,-9.125 0,0 -4.21558,7.1338 -6.71875,10.0626 -2.50317,2.9284 -8.09375,7.4687 -8.09375,7.4687 l -0.03125,-0.3125 -2.71875,10.4688 55.3125,0 L 72.3125,1902.25 z m 14.9375,10.2812 c 1.139011,0 2.0625,0.9265 2.0625,2.0626 0,1.1357 -0.923489,2.0624 -2.0625,2.0624 -1.139011,0 -2.0625,-0.9267 -2.0625,-2.0624 0,-1.1361 0.923489,-2.0626 2.0625,-2.0626 z M 65.75,1926.875 c 1.432393,0 2.59375,1.1652 2.59375,2.5938 0,1.4283 -1.161357,2.5936 -2.59375,2.5936 -1.432393,2e-4 -2.59375,-1.1653 -2.59375,-2.5936 0,-1.4286 1.161357,-2.5938 2.59375,-2.5938 z m 3.1875,18.25 c 1.691259,0 3.0625,1.3759 3.0625,3.0625 0,1.6866 -1.371241,3.0625 -3.0625,3.0625 -1.691259,0 -3.0625,-1.3759 -3.0625,-3.0625 0,-1.6866 1.371241,-3.0625 3.0625,-3.0625 z"
+           style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+        <path
+           style="fill:#d3d7cf;fill-opacity:1;stroke:none"
+           d="m 714.91398,959.39957 c 5.89574,5.83122 10.3729,13.08672 12.94086,20.97142 3.06107,9.39877 3.38095,19.67261 0.9105,29.24361 l -11.617,-11.85338 -2.23436,-38.36165"
+           id="path5439"
+           inkscape:path-effect="#path-effect5441-0"
+           inkscape:original-d="m 714.91398,959.39957 c 0,0 10.49548,13.13381 12.94086,20.97142 3.10142,9.93972 0.9105,29.24361 0.9105,29.24361 l -11.617,-11.85338 z"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="csccc" />
+        <path
+           style="fill:#d3d7cf;fill-opacity:1;stroke:none"
+           d="m 688.11771,1009.4428 c -1.1257,6.8029 -1.75004,13.6888 -1.86626,20.5832 -0.13901,8.246 0.4494,16.5042 1.75615,24.6472 l 9.8629,-1.4938 c -1.59151,-8.4784 -2.04663,-17.1694 -1.34939,-25.7676 0.52372,-6.4584 1.6959,-12.864 3.4932,-19.0893 l -11.8966,1.1203"
+           id="path5453"
+           inkscape:path-effect="#path-effect5455-2"
+           inkscape:original-d="m 688.11771,1009.4428 c 0,0 -1.78078,11.8442 -1.86626,20.5832 -0.0854,8.7389 1.75615,24.6472 1.75615,24.6472 l 9.8629,-1.4938 c 0,0 -1.83373,-16.9598 -1.34939,-25.7676 0.48432,-8.8075 3.4932,-19.0893 3.4932,-19.0893 z"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="czcczcc" />
+        <path
+           style="fill:#d3d7cf;fill-opacity:1;stroke:none"
+           d="m 704.82305,1005.0053 c -1.48262,8.2551 -2.27503,16.634 -2.36626,25.0207 -0.0897,8.2453 0.49832,16.4979 1.75616,24.6472 l 9.8629,-1.4938 c -1.43169,-8.5001 -1.88543,-17.1645 -1.3494,-25.7676 0.49558,-7.9539 1.8366,-15.8548 3.9932,-23.5268 l -11.8966,1.1203"
+           id="path5453-0"
+           inkscape:path-effect="#path-effect5455-3-3"
+           inkscape:original-d="m 704.82305,1005.0053 c 0,0 -2.28076,16.2817 -2.36626,25.0207 -0.0854,8.7389 1.75616,24.6472 1.75616,24.6472 l 9.8629,-1.4938 c 0,0 -1.83374,-16.9598 -1.3494,-25.7676 0.48433,-8.8075 3.9932,-23.5268 3.9932,-23.5268 z"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="czcczcc" />
+        <path
+           style="fill:#d3d7cf;fill-opacity:1;stroke:none"
+           d="m 727.25,925.23717 c -0.0587,-3.58271 -0.85744,-7.15167 -2.3315,-10.41762 -2.00987,-4.45312 -5.28485,-8.32684 -9.3416,-11.04945 l 2.82843,3.9948 c -2.50214,-1.60831 -5.15408,-2.98346 -7.91028,-4.10182 -7.49422,-3.04087 -15.76451,-4.14601 -23.79422,-3.17959 l 4.14124,4.09835 c -2.40338,0.14833 -4.77096,0.84961 -6.86741,2.03414 -2.86308,1.61768 -5.20398,4.14357 -6.59966,7.12119 2.70996,0.57573 5.41831,1.15907 8.125,1.75 13.96273,3.04837 27.88134,6.29882 41.75,9.75"
+           id="path8152"
+           inkscape:path-effect="#path-effect8154-3"
+           inkscape:original-d="m 727.25,925.23717 c 0,0 -0.8442,-6.43043 -2.3315,-10.41762 -1.4873,-3.98719 -9.3416,-11.04945 -9.3416,-11.04945 l 2.82843,3.9948 c 0,0 -2.41265,-1.61112 -7.91028,-4.10182 -5.49764,-2.49069 -23.79422,-3.17959 -23.79422,-3.17959 l 4.14124,4.09835 c 0,0 -3.37883,0.79515 -6.86741,2.03414 -3.48858,1.239 -6.59966,7.12119 -6.59966,7.12119 l 8.125,1.75 z"
+           inkscape:connector-curvature="0"
+           sodipodi:nodetypes="czcczcczccc" />
+      </g>
+      <path
+         sodipodi:nodetypes="ccccsccsccc"
+         inkscape:connector-curvature="0"
+         id="path28237"
+         d="m 71.875,954.86218 11.771446,19.4253 10.103554,-8.4253 5.5,-6 c 0,0 5.52929,4.3689 4.75,8.5 -0.64971,3.4442 -5,2.75 -5,2.75 l -1.460938,2.1016 c 0,0 0.547928,1.7204 -0.41406,3.7109 -1.934659,4.003 -7.959782,11.6486 -14.890927,16.7537 l -7.79502,-18.435 z"
+         style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         inkscape:connector-curvature="0"
+         inkscape:original-d="m 92.84651,968.01914 c 0.125,-0.51005 2.21875,-6.80069 2.21875,-6.80069 l 2.4375,1.27513 -1.125,5.56813 z"
+         inkscape:path-effect="#path-effect28725"
+         id="path28723"
+         d="m 92.84651,968.01914 2.21875,-6.80069 2.4375,1.27513 -1.125,5.56813 -3.53125,-0.0426"
+         style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    </g>
+    <g
+       id="g6124"
+       transform="matrix(0.69694484,0,0,0.69694484,172.36315,319.94188)">
+      <path
+         sodipodi:nodetypes="ccscscssscccccccsccc"
+         id="path2818"
+         d="m 547.73949,955.82629 c -3.77984,2.5267 -7.46694,5.26689 -10.88114,8.52508 -1.80852,-0.40937 -3.76705,-0.62002 -5.76604,-0.62002 -3.21728,0 -6.21681,0.99316 -8.71102,2.63503 -0.0102,-0.005 -0.0258,0.005 -0.0307,0 -2.91472,-2.77682 -6.56213,-4.66831 -10.23009,-6.54106 1.18386,5.16664 1.92402,10.93964 4.06099,14.75604 0,0 0,0.0226 0,0.0313 -0.35366,1.26869 -0.52407,2.61678 -0.46495,3.96802 0.20802,4.75785 3.60702,8.89587 7.78051,11.29162 l 2.00842,-7.11719 -1.32592,7.60558 c -3.58243,18.48081 -4.33121,36.61961 0.86801,54.00251 -4.58228,1.8641 -4.39738,4.4447 -2.63497,7.2851 l 39.77325,0.31 c 12.21957,-37.6458 -13.41015,-40.2903 -18.56918,-65.68948 2.57853,-3.1766 4.1328,-7.20604 3.96803,-10.97408 -0.13541,-3.09909 -1.40945,-5.54062 -3.41003,-7.37812 1.61568,-3.60228 2.44401,-7.99318 3.56506,-12.0901 l -1.9e-4,0 z"
+         style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none"
+         inkscape:connector-curvature="0" />
+      <g
+         id="g27777"
+         style="fill:#d3d7cf"
+         transform="matrix(1.376527,0,0,1.376527,-65.04686,370.49324)">
+        <path
+           style="fill:#d3d7cf;fill-opacity:1"
+           d="m 312.64148,411.07632 0.25,2.4375 c 0.4261,3.7924 2.1311,6.7068 4.8125,8.3125 1.2232,0.7325 2.97675,1.50955 3.90625,1.71875 0.9295,0.2091 2.26765,0.38185 2.96875,0.40625 l 1.28125,0.0625 -0.34375,-2.5 c -0.1865,-1.3632 -0.59045,-3.08815 -0.90625,-3.84375 -1.4521,-3.4756 -5.1469,-5.9064 -9.6875,-6.375 l -2.28125,-0.21875 z"
+           id="path27773"
+           inkscape:connector-curvature="0" />
+        <path
+           style="fill:#d3d7cf;fill-opacity:1"
+           d="m 328.89148,422.35757 0,38 0,37.4375 2.875,0 0,-37.4375 0,-38 -1.4375,0 -1.4375,0 z"
+           id="path27771"
+           inkscape:connector-curvature="0" />
+        <path
+           style="fill:#d3d7cf;fill-opacity:1"
+           d="m 347.17273,423.63882 c -0.51748,-0.0199 -1.37111,0.19779 -2.8125,0.5 -5.1249,1.0745 -8.50745,4.3766 -9.09375,8.9375 -0.1316,1.0239 -0.30725,2.2669 -0.40625,2.75 -0.167,0.8193 -0.0448,0.8841 1.78125,0.6875 6.6042,-0.7112 10.3963,-4.27775 11.0625,-10.34375 0.20213,-1.84094 0.33121,-2.49801 -0.53125,-2.53125 z"
+           id="path27769"
+           inkscape:connector-curvature="0" />
+        <path
+           style="fill:#d3d7cf;fill-opacity:1"
+           d="m 312.64148,435.04507 0.28125,2.4375 c 0.4394,3.8263 2.11375,6.7151 4.78125,8.3125 1.2232,0.7325 2.97675,1.50955 3.90625,1.71875 0,0.9527 2.2182,0.38185 2.875,0.40625 l 1.1875,0.0625 -0.21875,-2.28125 c -0.644,-6.2397 -4.01236,-9.46985 -10.84375,-10.40625 l -1.96875,-0.25 z"
+           id="path27767"
+           inkscape:connector-curvature="0" />
+        <path
+           style="fill:#d3d7cf;fill-opacity:1"
+           d="m 348.01648,447.51382 -1.8125,0.28125 c -3.1611,0.4567 -4.68825,0.94645 -6.59375,2.15625 -2.153,1.367 -3.96255,4.3282 -4.34375,7.125 -0.1377,1.0098 -0.3284,2.2794 -0.4375,2.8125 -0.1898,0.9276 -0.13559,0.9468 1.5625,0.6875 7.30451,-1.1151 10.68265,-4.26925 11.34375,-10.59375 l 0.28125,-2.46875 z"
+           id="path27765"
+           inkscape:connector-curvature="0" />
+        <path
+           style="fill:#d3d7cf;fill-opacity:1"
+           d="m 312.64148,475.10757 0.25,2.4375 c 0.4261,3.79244 2.1311,6.73805 4.8125,8.34375 1.2232,0.7326 2.97675,1.4784 3.90625,1.6875 0.9295,0.2091 2.26765,0.4135 2.96875,0.4375 l 1.28125,0.0312 -0.34375,-2.46875 c -0.1865,-1.3633 -0.6443,-3.17845 -1,-4.03125 -1.3976,-3.35094 -5.07015,-5.7206 -9.59375,-6.1875 l -2.28125,-0.25 z"
+           id="path27753"
+           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         transform="matrix(1.0655729,0,0,1.0655729,92.17028,525.28464)"
+         style="fill:#d3d7cf"
+         id="g28727">
+        <path
+           inkscape:connector-curvature="0"
+           id="path28729"
+           d="m 312.64148,411.07632 0.25,2.4375 c 0.4261,3.7924 2.1311,6.7068 4.8125,8.3125 1.2232,0.7325 2.97675,1.50955 3.90625,1.71875 0.9295,0.2091 2.26765,0.38185 2.96875,0.40625 l 1.28125,0.0625 -0.34375,-2.5 c -0.1865,-1.3632 -0.59045,-3.08815 -0.90625,-3.84375 -1.4521,-3.4756 -5.1469,-5.9064 -9.6875,-6.375 l -2.28125,-0.21875 z"
+           style="fill:#d3d7cf;fill-opacity:1" />
+        <path
+           inkscape:connector-curvature="0"
+           id="path28731"
+           d="m 328.89148,422.35757 0,38 0,37.4375 2.875,0 0,-37.4375 0,-38 -1.4375,0 -1.4375,0 z"
+           style="fill:#d3d7cf;fill-opacity:1" />
+        <path
+           inkscape:connector-curvature="0"
+           id="path28733"
+           d="m 347.17273,423.63882 c -0.51748,-0.0199 -1.37111,0.19779 -2.8125,0.5 -5.1249,1.0745 -8.50745,4.3766 -9.09375,8.9375 -0.1316,1.0239 -0.30725,2.2669 -0.40625,2.75 -0.167,0.8193 -0.0448,0.8841 1.78125,0.6875 6.6042,-0.7112 10.3963,-4.27775 11.0625,-10.34375 0.20213,-1.84094 0.33121,-2.49801 -0.53125,-2.53125 z"
+           style="fill:#d3d7cf;fill-opacity:1" />
+        <path
+           inkscape:connector-curvature="0"
+           id="path28735"
+           d="m 312.64148,435.04507 0.28125,2.4375 c 0.4394,3.8263 2.11375,6.7151 4.78125,8.3125 1.2232,0.7325 2.97675,1.50955 3.90625,1.71875 0,0.9527 2.2182,0.38185 2.875,0.40625 l 1.1875,0.0625 -0.21875,-2.28125 c -0.644,-6.2397 -4.01236,-9.46985 -10.84375,-10.40625 l -1.96875,-0.25 z"
+           style="fill:#d3d7cf;fill-opacity:1" />
+        <path
+           inkscape:connector-curvature="0"
+           id="path28737"
+           d="m 348.01648,447.51382 -1.8125,0.28125 c -3.1611,0.4567 -4.68825,0.94645 -6.59375,2.15625 -2.153,1.367 -3.96255,4.3282 -4.34375,7.125 -0.1377,1.0098 -0.3284,2.2794 -0.4375,2.8125 -0.1898,0.9276 -0.13559,0.9468 1.5625,0.6875 7.30451,-1.1151 10.68265,-4.26925 11.34375,-10.59375 l 0.28125,-2.46875 z"
+           style="fill:#d3d7cf;fill-opacity:1" />
+        <path
+           inkscape:connector-curvature="0"
+           id="path28739"
+           d="m 312.64148,475.10757 0.25,2.4375 c 0.4261,3.79244 2.1311,6.73805 4.8125,8.34375 1.2232,0.7326 2.97675,1.4784 3.90625,1.6875 0.9295,0.2091 2.26765,0.4135 2.96875,0.4375 l 1.28125,0.0312 -0.34375,-2.46875 c -0.1865,-1.3633 -0.6443,-3.17845 -1,-4.03125 -1.3976,-3.35094 -5.07015,-5.7206 -9.59375,-6.1875 l -2.28125,-0.25 z"
+           style="fill:#d3d7cf;fill-opacity:1" />
+      </g>
+    </g>
+    <path
+       sodipodi:nodetypes="csssc"
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 438.87961,-649.9958 c 0,0 -2.21253,4.6395 -4.41977,5.02558 -1.47053,0.25723 -4.02073,-0.0515 -4.93072,-1.97068 -0.81069,-1.70976 -1.08846,-2.4964 1.68032,-3.96477 2.76876,-1.46834 7.67017,0.90987 7.67017,0.90987 z"
+       inkscape:path-effect="#path-effect28747"
+       id="path28741"
+       d="m 438.87961,-649.9958 c -0.18992,1.1603 -0.71209,2.2643 -1.48854,3.14718 -0.77646,0.88288 -1.8047,1.54181 -2.93123,1.8784 -0.94115,0.28121 -1.97073,0.33525 -2.89913,0.0144 -0.46419,-0.1604 -0.89817,-0.41351 -1.25375,-0.7523 -0.35558,-0.33878 -0.63125,-0.76407 -0.77784,-1.23281 -0.22903,-0.73236 -0.13195,-1.54618 0.19239,-2.2416 0.32433,-0.69542 0.86359,-1.27707 1.48793,-1.72317 1.14905,-0.82101 2.60874,-1.19554 4.01114,-1.02918 1.40239,0.16635 2.73395,0.87199 3.65903,1.93905"
+       style="color:#000000;fill:none;stroke:#d3d7cf;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       style="color:#000000;fill:none;stroke:#d3d7cf;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 439.28534,-650.27779 c -0.47405,-2.51329 -1.36262,-4.9479 -2.61895,-7.17567 -0.4441,-0.7875 -0.95855,-1.57467 -1.72257,-2.05804 -0.38202,-0.24168 -0.82258,-0.39974 -1.27435,-0.41523 -0.45178,-0.0155 -0.91393,0.11802 -1.26419,0.40379 -0.31677,0.25845 -0.53113,0.63168 -0.6265,1.02923 -0.0954,0.39755 -0.0758,0.81794 0.0242,1.21436 0.1999,0.79284 0.70441,1.47146 1.23496,2.09361 1.72974,2.02837 3.86724,3.70757 6.24745,4.90795"
+       id="path28743"
+       inkscape:path-effect="#path-effect28749"
+       inkscape:original-d="m 439.28534,-650.27779 c 0,0 -0.93565,-5.25575 -2.61895,-7.17567 -1.12148,-1.27912 -3.19976,-2.90606 -4.26111,-2.06948 -0.94555,0.7453 -1.305,1.15797 0.63261,4.3372 1.93759,3.17922 6.24745,4.90795 6.24745,4.90795 z"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="csssc" />
+    <path
+       transform="matrix(-0.66967047,-0.17943766,0.17943766,-0.66967047,497.73376,84.87058)"
+       d="m 356.25,1001.875 a 2.375,2.375 0 1 1 -4.75,0 2.375,2.375 0 1 1 4.75,0 z"
+       sodipodi:ry="2.375"
+       sodipodi:rx="2.375"
+       sodipodi:cy="1001.875"
+       sodipodi:cx="353.875"
+       id="path28745"
+       style="color:#000000;fill:none;stroke:#d3d7cf;stroke-width:2.88477945;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       sodipodi:type="arc" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="Layer">
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 490.88822,218.79963 9.00371,-7.42716 0.89663,7.71091 -9.88936,3.52613 -9.44379,6.4291 0.13366,-7.80758 9.29915,-2.4314"
+       id="path27850"
+       inkscape:path-effect="#path-effect27852-8"
+       inkscape:original-d="m 490.88822,218.79963 9.00371,-7.42716 0.89663,7.71091 -9.88936,3.52613 -9.44379,6.4291 0.13366,-7.80758 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 500.37035,239.68712 3.77845,-9.14811 3.74483,5.41402 -5.99636,6.58132 -4.50569,8.57651 -3.01222,-5.89705 5.99099,-5.52669"
+       id="path28352"
+       inkscape:path-effect="#path-effect28354-6"
+       inkscape:original-d="m 500.37035,239.68712 3.77845,-9.14811 3.74483,5.41402 -5.99636,6.58132 -4.50569,8.57651 -3.01222,-5.89705 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 537.27424,311.47956 9.89693,-0.1243 -3.50471,5.57248 -8.40939,-2.92443 -9.65744,-0.76915 4.23695,-5.08891 7.43766,3.33431"
+       id="path28356"
+       inkscape:path-effect="#path-effect28358-5"
+       inkscape:original-d="m 537.27424,311.47956 9.89693,-0.1243 -3.50471,5.57248 -8.40939,-2.92443 -9.65744,-0.76915 4.23695,-5.08891 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 523.69622,329.37983 -5.1634,-8.44417 6.58088,0.16565 1.78262,8.7231 4.27301,8.69477 -6.53931,-1.04217 -0.9338,-8.09718"
+       id="path28360"
+       inkscape:path-effect="#path-effect28362-3"
+       inkscape:original-d="m 523.69622,329.37983 -5.1634,-8.44417 6.58088,0.16565 1.78262,8.7231 4.27301,8.69477 -6.53931,-1.04217 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 513.30676,339.00727 -7.22879,-6.76086 6.38661,-1.59582 4.04491,7.93152 6.43752,7.2399 -6.58037,0.73995 -3.05988,-7.55469"
+       id="path28364"
+       inkscape:path-effect="#path-effect28366-2"
+       inkscape:original-d="m 513.30676,339.00727 -7.22879,-6.76086 6.38661,-1.59582 4.04491,7.93152 6.43752,7.2399 -6.58037,0.73995 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 498.3091,351.02549 4.11144,9.00337 3.54373,-5.54773 -6.23372,-6.35696 -4.81722,-8.40548 -2.7939,6.00356 6.18967,5.30324"
+       id="path28368"
+       inkscape:path-effect="#path-effect28370-5"
+       inkscape:original-d="m 498.3091,351.02549 4.11144,9.00337 3.54373,-5.54773 -6.23372,-6.35696 -4.81722,-8.40548 -2.7939,6.00356 z"
+       inkscape:connector-curvature="0" />
+    <path
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 489.50295,355.499 9.22016,3.59908 -5.33985,3.84985 -6.69718,-5.86669 -8.66288,-4.33733 5.8371,-3.12681 z"
+       inkscape:path-effect="#path-effect28600"
+       id="path28598"
+       d="m 489.50295,355.499 9.22016,3.59908 -5.33985,3.84985 -6.69718,-5.86669 -8.66288,-4.33733 5.8371,-3.12681 5.64265,5.8819"
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 476.8419,365.9092 9.22016,3.59907 -5.33985,3.84986 -6.69718,-5.86669 -8.66288,-4.33733 5.8371,-3.12681 5.64265,5.8819"
+       id="path28372"
+       inkscape:path-effect="#path-effect28374-7"
+       inkscape:original-d="m 476.8419,365.9092 9.22016,3.59907 -5.33985,3.84986 -6.69718,-5.86669 -8.66288,-4.33733 5.8371,-3.12681 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 467.51679,382.03889 9.80881,-1.32357 -2.80306,5.95636 -8.70197,-1.88306 -9.67945,0.40768 3.58856,-5.56516 7.78711,2.40775"
+       id="path28376"
+       inkscape:path-effect="#path-effect28378-0"
+       inkscape:original-d="m 467.51679,382.03889 9.80881,-1.32357 -2.80306,5.95636 -8.70197,-1.88306 -9.67945,0.40768 3.58856,-5.56516 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 465.4455,398.75632 3.33346,-5.87469 3.3038,3.47675 -5.29016,4.22636 -3.97505,5.50763 -2.65747,-3.78695 5.28542,-3.5491"
+       id="path28380"
+       inkscape:path-effect="#path-effect28382-2"
+       inkscape:original-d="m 465.4455,398.75632 3.33346,-5.87469 3.3038,3.47675 -5.29016,4.22636 -3.97505,5.50763 -2.65747,-3.78695 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 470.21218,410.85821 0.33884,-5.42062 4.27571,-0.20468 -2.6971,5.77015 -1.03864,5.6316 -3.85884,-0.38572 2.98003,-5.39073"
+       id="path28384"
+       inkscape:path-effect="#path-effect28386-3"
+       inkscape:original-d="m 470.21218,410.85821 0.33884,-5.42062 4.27571,-0.20468 -2.6971,5.77015 -1.03864,5.6316 -3.85884,-0.38572 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 480.56278,419.24698 5.91254,-4.36802 1.41824,4.94116 -6.94874,1.85112 -6.33514,3.7156 -0.66774,-4.96179 6.62084,-1.17807"
+       id="path28388"
+       inkscape:path-effect="#path-effect28390-1"
+       inkscape:original-d="m 480.56278,419.24698 5.91254,-4.36802 1.41824,4.94116 -6.94874,1.85112 -6.33514,3.7156 -0.66774,-4.96179 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 495.77989,427.73245 -0.49005,-9.88557 5.69822,3.29632 -2.61159,8.51174 -0.41164,9.67929 -5.24204,-4.04596 3.0571,-7.55582"
+       id="path28392"
+       inkscape:path-effect="#path-effect28394-0"
+       inkscape:original-d="m 495.77989,427.73245 -0.49005,-9.88557 5.69822,3.29632 -2.61159,8.51174 -0.41164,9.67929 -5.24204,-4.04596 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 509.72707,432.016 2.2766,-5.51194 2.25634,3.26207 -3.61294,3.96539 -2.71478,5.16754 -1.81492,-3.55311 3.6097,-3.32995"
+       id="path28396"
+       inkscape:path-effect="#path-effect28398-4"
+       inkscape:original-d="m 509.72707,432.016 2.2766,-5.51194 2.25634,3.26207 -3.61294,3.96539 -2.71478,5.16754 -1.81492,-3.55311 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 533.35489,450.99108 2.99971,-4.98998 2.97302,2.95316 -4.76051,3.58989 -3.57707,4.67819 -2.3914,-3.21665 4.75625,-3.01461"
+       id="path28400"
+       inkscape:path-effect="#path-effect28402-0"
+       inkscape:original-d="m 533.35489,450.99108 2.99971,-4.98998 2.97302,2.95316 -4.76051,3.58989 -3.57707,4.67819 -2.3914,-3.21665 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 537.40442,459.83519 5.04064,-2.9013 0.26088,3.23969 -5.40432,1.25271 -5.24819,2.47478 0.29442,-3.25718 5.05657,-0.8087"
+       id="path28404"
+       inkscape:path-effect="#path-effect28406-1"
+       inkscape:original-d="m 537.40442,459.83519 5.04064,-2.9013 0.26088,3.23969 -5.40432,1.25271 -5.24819,2.47478 0.29442,-3.25718 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 536.82541,471.52951 6.86072,0.70638 -2.86479,3.64971 -5.59097,-2.73764 -6.62459,-1.3174 3.3336,-3.24986 4.88603,2.94881"
+       id="path28408"
+       inkscape:path-effect="#path-effect28410-2"
+       inkscape:original-d="m 536.82541,471.52951 6.86072,0.70638 -2.86479,3.64971 -5.59097,-2.73764 -6.62459,-1.3174 3.3336,-3.24986 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 512.02901,254.0403 5.51579,-8.8239 3.59948,5.90191 -7.73011,5.9755 -6.27666,8.16308 -2.69645,-6.30722 7.58795,-4.90937"
+       id="path27858"
+       inkscape:path-effect="#path-effect27860-1"
+       inkscape:original-d="m 512.02901,254.0403 5.51579,-8.8239 3.59948,5.90191 -7.73011,5.9755 -6.27666,8.16308 -2.69645,-6.30722 z"
+       inkscape:connector-curvature="0" />
+    <path
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 526.43804,269.52709 7.68163,-7.01981 1.88342,6.65142 -9.05023,3.68163 -8.23724,6.17901 -0.90475,-6.7995 z"
+       inkscape:path-effect="#path-effect27864-2"
+       id="path27862"
+       d="m 526.43804,269.52709 7.68163,-7.01981 1.88342,6.65142 -9.05023,3.68163 -8.23724,6.17901 -0.90475,-6.7995 8.62717,-2.69275"
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 537.18722,292.05739 7.67539,-6.70007 1.77864,8.45262 -8.9863,2.36066 -8.21391,5.55868 -0.80997,-8.40641 8.55615,-1.26548"
+       id="path27866"
+       inkscape:path-effect="#path-effect27868-0"
+       inkscape:original-d="m 537.18722,292.05739 7.67539,-6.70007 1.77864,8.45262 -8.9863,2.36066 -8.21391,5.55868 -0.80997,-8.40641 z"
+       inkscape:connector-curvature="0" />
+    <path
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 520.94425,438.11427 0.33884,-5.42063 4.27571,-0.20468 -2.6971,5.77015 -1.03864,5.6316 -3.85884,-0.38572 z"
+       inkscape:path-effect="#path-effect28696"
+       id="path28694"
+       d="m 520.94425,438.11427 0.33884,-5.42063 4.27571,-0.20468 -2.6971,5.77015 -1.03864,5.6316 -3.85884,-0.38572 2.98003,-5.39072"
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 532.03687,481.11134 3.96437,0.40817 -1.65537,2.10892 -3.23067,-1.5819 -3.82794,-0.76125 1.92628,-1.87787 z"
+       inkscape:path-effect="#path-effect28700"
+       id="path28698"
+       d="m 532.03687,481.11134 3.96437,0.40817 -1.65537,2.10892 -3.23067,-1.5819 -3.82794,-0.76125 1.92628,-1.87787 2.82333,1.70393"
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 529.08556,486.12237 3.32496,2.19716 -2.44363,1.10292 -2.13123,-2.89784 -3.04057,-2.44696 2.57679,-0.77269 1.71368,2.81741"
+       id="path28702"
+       inkscape:path-effect="#path-effect28704"
+       inkscape:original-d="m 529.08556,486.12237 3.32496,2.19716 -2.44363,1.10292 -2.13123,-2.89784 -3.04057,-2.44696 2.57679,-0.77269 z"
+       inkscape:connector-curvature="0" />
+    <path
+       inkscape:connector-curvature="0"
+       inkscape:original-d="m 523.17707,491.46815 3.32496,2.19716 -2.44363,1.10291 -2.13123,-2.89784 -3.04057,-2.44695 2.57679,-0.7727 z"
+       inkscape:path-effect="#path-effect28708"
+       id="path28706"
+       d="m 523.17707,491.46815 3.32496,2.19716 -2.44363,1.10291 -2.13123,-2.89784 -3.04057,-2.44695 2.57679,-0.7727 1.71368,2.81742"
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 516.70586,499.34614 3.32496,2.19715 -2.44363,1.10292 -2.13123,-2.89784 -3.04057,-2.44696 2.5768,-0.77269 1.71367,2.81742"
+       id="path28710"
+       inkscape:path-effect="#path-effect28712"
+       inkscape:original-d="m 516.70586,499.34614 3.32496,2.19715 -2.44363,1.10292 -2.13123,-2.89784 -3.04057,-2.44696 2.5768,-0.77269 z"
+       inkscape:connector-curvature="0"
+       inkscape:transform-center-x="-3.8077111"
+       inkscape:transform-center-y="-6.1898493" />
+  </g>
+</svg>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]