[gnome-control-center] mouse: Add penta-click test in addition to double-click



commit eee381abddf230a2518ff49e745eab4903ed0d45
Author: Florian MÃllner <fmuellner gnome org>
Date:   Wed Aug 22 19:28:41 2012 +0200

    mouse: Add penta-click test in addition to double-click
    
    Clicking anything five times should obviously bring up an image (by
    Jakub Steiner) of a five-legged goat :-)
    
    https://bugzilla.gnome.org/show_bug.cgi?id=682492

 panels/mouse/Makefile.am           |    1 +
 panels/mouse/double-click-gegl.png |  Bin 0 -> 9568 bytes
 panels/mouse/gnome-mouse-test.c    |   93 ++-
 panels/mouse/scroll-test-gegl.svg  | 1781 ++++++++++++++++++++++++++++++++++++
 4 files changed, 1861 insertions(+), 14 deletions(-)
---
diff --git a/panels/mouse/Makefile.am b/panels/mouse/Makefile.am
index 8fbd730..cb35a01 100644
--- a/panels/mouse/Makefile.am
+++ b/panels/mouse/Makefile.am
@@ -43,6 +43,7 @@ uidir   = $(pkgdatadir)/ui
 ui_DATA =				\
 	gnome-mouse-properties.ui	\
 	gnome-mouse-test.ui		\
+	scroll-test-gegl.svg		\
 	scroll-test.svg
 
 desktopdir = $(datadir)/applications
diff --git a/panels/mouse/double-click-gegl.png b/panels/mouse/double-click-gegl.png
new file mode 100644
index 0000000..a275279
Binary files /dev/null and b/panels/mouse/double-click-gegl.png differ
diff --git a/panels/mouse/gnome-mouse-test.c b/panels/mouse/gnome-mouse-test.c
index 13dbd31..2919e68 100644
--- a/panels/mouse/gnome-mouse-test.c
+++ b/panels/mouse/gnome-mouse-test.c
@@ -45,12 +45,16 @@
 #define INNER_CIRCLE_SIZE (52.0 / 180 * size)
 
 static void setup_information_label (GtkWidget *widget);
+static void setup_scroll_image      (GtkWidget *widget);
 
 enum
 {
 	DOUBLE_CLICK_TEST_OFF,
 	DOUBLE_CLICK_TEST_MAYBE,
-	DOUBLE_CLICK_TEST_ON
+	DOUBLE_CLICK_TEST_ON,
+	DOUBLE_CLICK_TEST_STILL_ON,
+	DOUBLE_CLICK_TEST_ALMOST_THERE,
+	DOUBLE_CLICK_TEST_GEGL
 };
 
 /* State in testing the double-click speed. Global for a great deal of
@@ -63,6 +67,7 @@ static GSettings *mouse_settings = NULL;
 
 static gint information_label_timeout_id = 0;
 static gint button_drawing_area_timeout_id = 0;
+static gint scroll_image_timeout_id = 0;
 
 /* Double Click handling */
 
@@ -98,6 +103,18 @@ information_label_timeout (struct test_data_t *data)
 	return FALSE;
 }
 
+/* Timeout for the scroll image */
+
+static gboolean
+scroll_image_timeout (struct test_data_t *data)
+{
+	setup_scroll_image (data->widget);
+
+	*data->timeout_id = 0;
+
+	return FALSE;
+}
+
 /* Set information label according global state variables. */
 
 static void
@@ -118,17 +135,21 @@ setup_information_label (GtkWidget *widget)
 		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;
+	if (double_click_state == DOUBLE_CLICK_TEST_GEGL) {
+		message = _("Five clicks, GEGL time!"), "</b>";
+	} else {
+		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);
@@ -142,6 +163,36 @@ setup_information_label (GtkWidget *widget)
 						      &data);
 }
 
+/* Update scroll image according to the global state variables */
+
+static void
+setup_scroll_image (GtkWidget *widget)
+{
+	static struct test_data_t data;
+	char *filename;
+
+	if (scroll_image_timeout_id != 0) {
+		g_source_remove (scroll_image_timeout_id);
+		scroll_image_timeout_id = 0;
+	}
+
+	if (double_click_state == DOUBLE_CLICK_TEST_GEGL)
+		filename = GNOMECC_UI_DIR "/scroll-test-gegl.svg";
+	else
+		filename = GNOMECC_UI_DIR "/scroll-test.svg";
+	gtk_image_set_from_file (GTK_IMAGE (widget), filename);
+
+	if (double_click_state != DOUBLE_CLICK_TEST_GEGL)
+		return;
+
+	data.widget = widget;
+	data.timeout_id = &scroll_image_timeout_id;
+	scroll_image_timeout_id = g_timeout_add (5000,
+						 (GSourceFunc) scroll_image_timeout,
+						 &data);
+}
+
+
 /* Callback issued when the user clicks the double click testing area. */
 
 static gboolean
@@ -175,14 +226,19 @@ button_drawing_area_button_press_event (GtkWidget      *widget,
 		button_drawing_area_timeout_id = g_timeout_add (double_click_time, (GSourceFunc) test_maybe_timeout, &data);
 		break;
 	case DOUBLE_CLICK_TEST_MAYBE:
+	case DOUBLE_CLICK_TEST_ON:
+	case DOUBLE_CLICK_TEST_STILL_ON:
+	case DOUBLE_CLICK_TEST_ALMOST_THERE:
 		if (event->time - double_click_timestamp < double_click_time) {
-			double_click_state = DOUBLE_CLICK_TEST_ON;
+			double_click_state++;
 			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);
+		} else {
+			test_maybe_timeout (&data);
 		}
 		break;
-	case DOUBLE_CLICK_TEST_ON:
+	case DOUBLE_CLICK_TEST_GEGL:
 		double_click_state = DOUBLE_CLICK_TEST_OFF;
 		break;
 	}
@@ -193,6 +249,7 @@ button_drawing_area_button_press_event (GtkWidget      *widget,
 
 	button_state = event->button;
 	setup_information_label (WID ("information_label"));
+	setup_scroll_image (WID ("image"));
 
 	return TRUE;
 }
@@ -212,6 +269,9 @@ button_drawing_area_draw_event (GtkWidget  *widget,
 
 	switch (double_click_state) {
 	case DOUBLE_CLICK_TEST_ON:
+	case DOUBLE_CLICK_TEST_STILL_ON:
+	case DOUBLE_CLICK_TEST_ALMOST_THERE:
+	case DOUBLE_CLICK_TEST_GEGL:
 		gdk_rgba_parse (&outer_color, "#729fcf");
 		gdk_rgba_parse (&inner_color, "#729fcf");
 		break;
@@ -298,6 +358,11 @@ gnome_mouse_test_dispose (GtkWidget *widget)
 		information_label_timeout_id = 0;
 	}
 
+	if (scroll_image_timeout_id != 0) {
+		g_source_remove (scroll_image_timeout_id);
+		scroll_image_timeout_id = 0;
+	}
+
 	if (button_drawing_area_timeout_id != 0) {
 		g_source_remove  (button_drawing_area_timeout_id);
 		button_drawing_area_timeout_id = 0;
diff --git a/panels/mouse/scroll-test-gegl.svg b/panels/mouse/scroll-test-gegl.svg
new file mode 100644
index 0000000..eb3761d
--- /dev/null
+++ b/panels/mouse/scroll-test-gegl.svg
@@ -0,0 +1,1781 @@
+<?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-test-gegl.svg">
+  <defs
+     id="defs25155">
+    <inkscape:path-effect
+       effect="spiro"
+       id="path-effect45040"
+       is_visible="true" />
+    <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="463.84857"
+     inkscape:cy="1849.1414"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     borderlayer="true"
+     inkscape:showpageshadow="false"
+     inkscape:window-width="1600"
+     inkscape:window-height="1168"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     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></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,947.63782)">
+    <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 c 0,46.94421 -38.0558,85 -85,85 -46.9442,0 -85,-38.05579 -85,-85 0,-46.9442 38.0558,-85 85,-85 46.9442,0 85,38.0558 85,85 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 c 0,4.10051 -3.32411,7.42462 -7.42462,7.42462 -4.1005,0 -7.42462,-3.32411 -7.42462,-7.42462 0,-4.1005 3.32412,-7.42462 7.42462,-7.42462 4.10051,0 7.42462,3.32412 7.42462,7.42462 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 c 0,46.94421 -38.0558,85 -85,85 -46.9442,0 -85,-38.05579 -85,-85 0,-46.9442 38.0558,-85 85,-85 46.9442,0 85,38.0558 85,85 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 c 0,0.96411 -0.3364,1.74567 -0.7513,1.74567 -0.4149,0 -0.7513,-0.78156 -0.7513,-1.74567 0,-0.96411 0.3364,-1.74567 0.7513,-1.74567 0.4149,0 0.7513,0.78156 0.7513,1.74567 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 c 0,46.94421 -38.0558,85 -85,85 -46.9442,0 -85,-38.05579 -85,-85 0,-46.9442 38.0558,-85 85,-85 46.9442,0 85,38.0558 85,85 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 c 0,0.96411 -0.3364,1.74567 -0.7513,1.74567 -0.4149,0 -0.7513,-0.78156 -0.7513,-1.74567 0,-0.96411 0.3364,-1.74567 0.7513,-1.74567 0.4149,0 0.7513,0.78156 0.7513,1.74567 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 c 0,0.96411 -0.3364,1.74567 -0.7513,1.74567 -0.4149,0 -0.7513,-0.78156 -0.7513,-1.74567 0,-0.96411 0.3364,-1.74567 0.7513,-1.74567 0.4149,0 0.7513,0.78156 0.7513,1.74567 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 c 0,46.94421 -38.0558,85 -85,85 -46.9442,0 -85,-38.05579 -85,-85 0,-46.9442 38.0558,-85 85,-85 46.9442,0 85,38.0558 85,85 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 c 0,0.96411 -0.3364,1.74567 -0.7513,1.74567 -0.4149,0 -0.7513,-0.78156 -0.7513,-1.74567 0,-0.96411 0.3364,-1.74567 0.7513,-1.74567 0.4149,0 0.7513,0.78156 0.7513,1.74567 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: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 c 0,1.3117 -1.06332,2.375 -2.375,2.375 -1.31168,0 -2.375,-1.0633 -2.375,-2.375 0,-1.3117 1.06332,-2.375 2.375,-2.375 1.31168,0 2.375,1.0633 2.375,2.375 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 c 0,1.3117 -1.06332,2.375 -2.375,2.375 -1.31168,0 -2.375,-1.0633 -2.375,-2.375 0,-1.3117 1.06332,-2.375 2.375,-2.375 1.31168,0 2.375,1.0633 2.375,2.375 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" />
+    <path
+       style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+       d="m 522.49932,-737.79163 c -1.76447,0.22179 -3.57016,0.11105 -5.2943,-0.32468 l -0.58977,-1.30838 -22.72395,-10.3349 c 3.86047,-1.36174 7.52219,-3.28548 10.83389,-5.69177 5.25256,-3.81652 9.61081,-8.85577 12.63017,-14.60369 l -5.507,2.63859 0.85827,-6.53317 c -4.1432,4.76894 -9.02713,8.89309 -14.42267,12.17897 -5.23175,3.18614 -10.94284,5.58361 -16.88117,7.08658 l -22.72396,-10.3349 c 1.77515,-6.34938 4.95041,-12.30327 9.23414,-17.3148 2.44062,-2.85528 5.22427,-5.39663 7.77268,-8.15614 3.32278,-3.59802 6.243,-7.56752 8.68875,-11.81074 3.40628,0.6788 6.99597,0.41211 10.26454,-0.7626 3.79355,-1.36338 7.13524,-3.95358 9.40155,-7.2873 l -15.57922,-5.79965 c -0.10555,-2.3097 0.43063,-4.64543 1.53293,-6.67786 1.1023,-2.03244 2.76758,-3.75579 4.76106,-4.92707 2.49306,-1.46482 5.45736,-2.04712 8.34235,-1.85251 2.88499,0.1946 5.69144,1.14176 8.22084,2.54289 5.66548,3.13832 9.96956,8.64452 11.64711,14.90012 0.38376,-5.41674 -1.13499,-10.94958 -4.23035,-15.41131 -4.51031,-6.501
 27 -12.37889,-10.51235 -20.29079,-10.4062 -3.61551,0.0485 -7.24481,0.92105 -10.37999,2.72241 -3.13518,1.80135 -5.75425,4.55362 -7.19625,7.86947 -1.1058,2.54277 -1.50689,5.38776 -1.14718,8.13714 l -6.5416,-2.5795 c -0.10656,-3.37058 0.86691,-6.76706 2.74271,-9.56947 2.78483,-4.16048 7.3831,-6.83916 12.1865,-8.25061 3.16985,-0.93144 6.48407,-1.36978 9.78708,-1.29444 -3.33236,-2.50203 -7.62294,-3.69284 -11.76814,-3.26613 -5.46408,0.56247 -10.44673,3.88589 -13.61037,8.37632 -2.68724,3.81424 -4.15841,8.47183 -4.14971,13.13762 l -3.33365,-2.0017 c -4.88287,4.5402 -10.64124,8.13537 -16.86429,10.52902 -8.00043,3.0773 -16.76336,4.1494 -25.2697,3.09162 l -0.16322,3.02788 6.36152,2.1649 -6.53317,-0.85828 -1.63306,5.88408 5.40662,1.1012 c -0.99762,3.53852 -2.7777,6.85416 -5.17588,9.64076 -3.98393,4.62919 -9.69526,7.73576 -15.74619,8.56485 7.59383,0.98652 15.54985,-1.19738 21.57585,-5.92251 3.28684,-2.57729 6.00498,-5.87588 7.90641,-9.59479 l 22.30092,8.79376 c -7.86173,6.57695 -14.7481,
 14.31781 -20.36492,22.89186 -6.40127,9.77151 -11.15644,20.65149 -13.6723,32.05891 -1.95958,8.88515 -2.55743,18.06929 -1.76628,27.1335 l 2.54197,-2.08989 2.2071,2.24463 c -0.25469,-4.89766 0.18214,-9.83077 1.29352,-14.60746 1.43312,-6.15953 3.99201,-12.05529 7.51245,-17.30888 l 1.26066,2.90217 c -1.3735,4.96776 -2.65511,9.96093 -3.84393,14.97609 -1.22017,5.14739 -2.3426,10.31794 -3.36649,15.50794 l 2.41629,-3.51375 0.25982,4.569 c 2.02371,-5.65345 4.73413,-11.06073 8.05273,-16.06511 2.0888,-3.14988 4.41775,-6.14046 6.95997,-8.93724 1.88241,4.81777 5.10373,9.10441 9.20767,12.25275 4.70187,3.60704 10.55103,5.69453 16.47422,5.87946 -0.7729,1.84526 -1.66049,3.64247 -2.65593,5.37783 -2.50858,4.37321 -5.70635,8.35015 -9.43909,11.73904 l 5.63267,-1.2147 -1.17248,2.97346 c 3.9953,-2.62875 7.59391,-5.85925 10.6369,-9.54882 2.05581,-2.49264 3.85879,-5.19368 5.37233,-8.04829 l 5.86772,0.45519 c -1.39881,3.79161 -3.60129,7.28455 -6.41969,10.18104 -3.27159,3.36223 -7.37213,5.91186 -11.834
 74,7.35858 l 4.92918,0.56936 -1.88443,3.03633 c 7.92559,-2.95867 15.34444,-7.26952 21.83945,-12.69018 10.57876,-8.82891 18.65025,-20.6295 23.04324,-33.68942 2.59589,0.44585 5.31704,0.136 7.74624,-0.88205 2.94908,-1.23592 5.41076,-3.47539 7.23577,-6.10101 1.90083,-2.7347 3.15569,-5.91532 3.63413,-9.21121 -0.41951,3.10119 -1.88928,6.05078 -4.11252,8.25318 -2.22324,2.2024 -5.18654,3.64432 -8.29154,4.03461"
+       id="path45038"
+       inkscape:path-effect="#path-effect45040"
+       inkscape:original-d="m 522.49932,-737.79163 c -2.86106,1.3514 -5.2943,-0.32468 -5.2943,-0.32468 l -0.58977,-1.30838 -22.72395,-10.3349 c 0,0 7.40834,-2.23236 10.83389,-5.69177 3.42558,-3.45934 12.63017,-14.60369 12.63017,-14.60369 l -5.507,2.63859 0.85827,-6.53317 c 0,0 -8.03209,8.17091 -14.42267,12.17897 -6.3906,4.00807 -16.88117,7.08658 -16.88117,7.08658 -4.66004,-7.65497 -13.98894,-8.56602 -22.72396,-10.3349 0,0 4.1042,-10.40458 9.23414,-17.3148 0.86062,-1.15928 6.64577,-6.74155 7.77268,-8.15614 5.59036,-7.01747 8.68875,-11.81074 8.68875,-11.81074 0,0 4.87478,1.57865 10.26454,-0.7626 5.38973,-2.34123 9.40155,-7.2873 9.40155,-7.2873 l -15.57922,-5.79965 c 0,0 -1.40324,-7.76853 6.29399,-11.60493 7.69722,-3.83641 11.20253,-3.14135 16.56319,0.69038 5.36066,3.83173 11.64711,14.90012 11.64711,14.90012 0,0 0.72414,-9.67827 -4.23035,-15.41131 -4.95452,-5.73306 -9.20553,-13.25019 -20.29079,-10.4062 -11.08528,2.84401 -16.41218,5.8972 -17.57624,10.59188 -1.16405,4.69469 -1.14
 718,8.13714 -1.14718,8.13714 l -6.5416,-2.5795 c 0,0 -0.38551,-5.99287 2.74271,-9.56947 3.12824,-3.57659 9.33873,-7.99925 12.1865,-8.25061 2.84776,-0.25139 9.78708,-1.29444 9.78708,-1.29444 0,0 -6.96464,-4.12064 -11.76814,-3.26613 -4.80348,0.85452 -10.90519,3.25858 -13.61037,8.37632 -2.70518,5.11773 -4.14971,13.13762 -4.14971,13.13762 l -3.33365,-2.0017 c 0,0 -8.86129,8.53109 -16.86429,10.52902 -8.00301,1.99794 -25.2697,3.09162 -25.2697,3.09162 l -0.16322,3.02788 6.36152,2.1649 -6.53317,-0.85828 -1.63306,5.88408 5.40662,1.1012 c 0,0 0.14258,4.86634 -5.17588,9.64076 -5.31845,4.7744 -15.74619,8.56485 -15.74619,8.56485 0,0 17.68127,-1.27379 21.57585,-5.92251 3.89458,-4.64872 7.90641,-9.59479 7.90641,-9.59479 l 22.30092,8.79376 c 0,0 -15.40665,17.28825 -20.36492,22.89186 -4.95827,5.60359 -13.16578,26.41778 -13.6723,32.05891 -0.50653,5.64112 -1.76628,27.1335 -1.76628,27.1335 l 2.54197,-2.08989 2.2071,2.24463 c 0,0 0.36396,-10.50745 1.29352,-14.60746 0.92955,-4.09999 7.51245,-17.3
 0888 7.51245,-17.30888 l 1.26066,2.90217 c 0,0 -2.62547,9.27211 -3.84393,14.97609 -1.21846,5.70397 -3.36649,15.50794 -3.36649,15.50794 l 2.41629,-3.51375 0.25982,4.569 c 0,0 4.51835,-10.58721 8.05273,-16.06511 3.5344,-5.4779 6.95997,-8.93724 6.95997,-8.93724 0,0 2.36873,9.55595 9.20767,12.25275 6.83895,2.69674 16.47422,5.87946 16.47422,5.87946 0,0 1.11295,-0.69478 -2.65593,5.37783 -3.7689,6.07259 -9.43909,11.73904 -9.43909,11.73904 l 5.63267,-1.2147 -1.17248,2.97346 c 0,0 8.33787,-6.33243 10.6369,-9.54882 2.29905,-3.2164 5.37233,-8.04829 5.37233,-8.04829 l 5.86772,0.45519 c 0,0 -2.93125,7.43365 -6.41969,10.18104 -3.4884,2.74741 -11.83474,7.35858 -11.83474,7.35858 l 4.92918,0.56936 -1.88443,3.03633 c 0,0 15.70023,-5.83434 21.83945,-12.69018 6.1392,-6.85582 23.04324,-33.68942 23.04324,-33.68942 0,0 3.19413,2.82021 7.74624,-0.88205 4.55229,-3.70206 6.65795,-2.89307 7.23577,-6.10101 0.57782,-3.20795 3.63413,-9.21121 3.63413,-9.21121 -4.33256,8.16929 -7.44496,10.06008 -12.40406,1
 2.28779 z"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccscccsccsscsccsscsssccsscssccsccccccscsccsscccsccscccscscscccsccscccsccscc" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="Layer" />
+</svg>



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