diff options
Diffstat (limited to 'panels/mouse')
-rw-r--r-- | panels/mouse/cc-mouse-caps-helper.c | 148 | ||||
-rw-r--r-- | panels/mouse/cc-mouse-caps-helper.h | 33 | ||||
-rw-r--r-- | panels/mouse/cc-mouse-panel.c | 452 | ||||
-rw-r--r-- | panels/mouse/cc-mouse-panel.h | 30 | ||||
-rw-r--r-- | panels/mouse/cc-mouse-panel.ui | 752 | ||||
-rw-r--r-- | panels/mouse/cc-mouse-test.c | 383 | ||||
-rw-r--r-- | panels/mouse/cc-mouse-test.h | 32 | ||||
-rw-r--r-- | panels/mouse/cc-mouse-test.ui | 104 | ||||
-rw-r--r-- | panels/mouse/gnome-mouse-panel.desktop.in.in | 18 | ||||
-rw-r--r-- | panels/mouse/meson.build | 69 | ||||
-rw-r--r-- | panels/mouse/mouse.gresource.xml | 9 | ||||
-rw-r--r-- | panels/mouse/scroll-test-gegl.svg | 1781 | ||||
-rw-r--r-- | panels/mouse/scroll-test.svg | 1960 | ||||
-rw-r--r-- | panels/mouse/test-gnome-mouse-test.c | 33 |
14 files changed, 5804 insertions, 0 deletions
diff --git a/panels/mouse/cc-mouse-caps-helper.c b/panels/mouse/cc-mouse-caps-helper.c new file mode 100644 index 0000000..69546b2 --- /dev/null +++ b/panels/mouse/cc-mouse-caps-helper.c @@ -0,0 +1,148 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- + * + * Copyright 2015 Red Hat, Inc, + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, see <http://www.gnu.org/licenses/>. + * + * Author: Felipe Borges <feborges@redhat.com> + */ + +#include <gdk/gdkx.h> +#include <X11/Xatom.h> +#include <X11/extensions/XInput2.h> + +#include "cc-mouse-caps-helper.h" + +static gboolean +touchpad_check_capabilities_x11 (gboolean *have_two_finger_scrolling, + gboolean *have_edge_scrolling, + gboolean *have_tap_to_click) +{ + GdkDisplay *gdisplay; + Display *display; + g_autoptr(GList) devicelist = NULL; + GList *l; + Atom realtype, prop_scroll_methods, prop_tapping_enabled; + int realformat; + unsigned long nitems, bytes_after; + unsigned char *data; + + gdisplay = gdk_display_get_default (); + display = GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()); + prop_scroll_methods = XInternAtom (display, "libinput Scroll Methods Available", False); + prop_tapping_enabled = XInternAtom (display, "libinput Tapping Enabled", False); + if (!prop_scroll_methods || !prop_tapping_enabled) + return FALSE; + + *have_two_finger_scrolling = FALSE; + *have_edge_scrolling = FALSE; + *have_tap_to_click = FALSE; + + gdk_x11_display_error_trap_push (gdisplay); + + devicelist = gdk_seat_get_slaves (gdk_display_get_default_seat (gdk_display_get_default ()), + GDK_SEAT_CAPABILITY_ALL_POINTING); + for (l = devicelist; l != NULL; l = l->next) { + GdkDevice *device = l->data; + if (gdk_device_get_source (device) != GDK_SOURCE_TOUCHPAD) + continue; + + /* xorg-x11-drv-libinput */ + if ((XIGetProperty (display, gdk_x11_device_get_id (device), prop_scroll_methods, + 0, 2, False, XA_INTEGER, &realtype, &realformat, &nitems, + &bytes_after, &data) == Success) && (realtype != None)) { + /* Property data is booleans for two-finger, edge, on-button scroll available. */ + + if (data[0]) + *have_two_finger_scrolling = TRUE; + + if (data[1]) + *have_edge_scrolling = TRUE; + + XFree (data); + } + + if ((XIGetProperty (display, gdk_x11_device_get_id (device), prop_tapping_enabled, + 0, 1, False, XA_INTEGER, &realtype, &realformat, &nitems, + &bytes_after, &data) == Success) && (realtype != None)) { + /* Property data is boolean for tapping enabled. */ + *have_tap_to_click = TRUE; + + XFree (data); + } + } + + gdk_x11_display_error_trap_pop_ignored (gdisplay); + + return TRUE; +} + +gboolean +cc_touchpad_check_capabilities (gboolean *have_two_finger_scrolling, + gboolean *have_edge_scrolling, + gboolean *have_tap_to_click) +{ + if (GDK_IS_X11_DISPLAY (gdk_display_get_default ())) + return touchpad_check_capabilities_x11 (have_two_finger_scrolling, + have_edge_scrolling, + have_tap_to_click); + /* else we unconditionally show all touchpad knobs */ + *have_two_finger_scrolling = TRUE; + *have_edge_scrolling = TRUE; + *have_tap_to_click = TRUE; + return FALSE; +} + +gboolean +cc_synaptics_check (void) +{ + GdkDisplay *gdisplay; + Display *display; + g_autoptr(GList) devicelist = NULL; + GList *l; + Atom prop, realtype; + int realformat; + unsigned long nitems, bytes_after; + unsigned char *data; + gboolean have_synaptics = FALSE; + + if (!GDK_IS_X11_DISPLAY (gdk_display_get_default ())) + return FALSE; + + gdisplay = gdk_display_get_default (); + display = GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()); + prop = XInternAtom (display, "Synaptics Capabilities", False); + + gdk_x11_display_error_trap_push (gdisplay); + + devicelist = gdk_seat_get_slaves (gdk_display_get_default_seat (gdk_display_get_default ()), + GDK_SEAT_CAPABILITY_ALL_POINTING); + for (l = devicelist; l != NULL; l = l->next) { + GdkDevice *device = l->data; + + if ((XIGetProperty (display, gdk_x11_device_get_id (device), prop, + 0, 2, False, XA_INTEGER, &realtype, &realformat, &nitems, + &bytes_after, &data) == Success) && (realtype != None)) { + have_synaptics = TRUE; + XFree (data); + } + + if (have_synaptics) + break; + } + + gdk_x11_display_error_trap_pop_ignored (gdisplay); + + return have_synaptics; +} diff --git a/panels/mouse/cc-mouse-caps-helper.h b/panels/mouse/cc-mouse-caps-helper.h new file mode 100644 index 0000000..93d9082 --- /dev/null +++ b/panels/mouse/cc-mouse-caps-helper.h @@ -0,0 +1,33 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- + * + * Copyright 2015 Red Hat, Inc, + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, see <http://www.gnu.org/licenses/>. + * + * Author: Felipe Borges <feborges@redhat.com> + */ + +#pragma once + +#include <glib.h> + +G_BEGIN_DECLS + +gboolean cc_touchpad_check_capabilities (gboolean *have_two_finger_scrolling, + gboolean *have_edge_scrolling, + gboolean *have_tap_to_click); + +gboolean cc_synaptics_check (void); + +G_END_DECLS diff --git a/panels/mouse/cc-mouse-panel.c b/panels/mouse/cc-mouse-panel.c new file mode 100644 index 0000000..a7f018b --- /dev/null +++ b/panels/mouse/cc-mouse-panel.c @@ -0,0 +1,452 @@ +/* + * Copyright (C) 2010 Intel, Inc + * Copyright (C) 2012 Red Hat, Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, see <http://www.gnu.org/licenses/>. + * + * Authors: Thomas Wood <thomas.wood@intel.com> + * Rodrigo Moya <rodrigo@gnome.org> + * Ondrej Holy <oholy@redhat.com> + * + */ + +#include <gdesktop-enums.h> +#include <gtk/gtk.h> + +#include "cc-mouse-caps-helper.h" +#include "cc-mouse-panel.h" +#include "cc-mouse-resources.h" +#include "cc-mouse-test.h" +#include "gsd-device-manager.h" +#include "gsd-input-helper.h" +#include "list-box-helper.h" + +struct _CcMousePanel +{ + CcPanel parent_instance; + + GtkListBoxRow *edge_scrolling_row; + GtkSwitch *edge_scrolling_switch; + GtkListBox *general_listbox; + GtkFrame *mouse_frame; + GtkListBox *mouse_listbox; + GtkSwitch *mouse_natural_scrolling_switch; + GtkScale *mouse_speed_scale; + CcMouseTest *mouse_test; + GtkRadioButton *primary_button_left; + GtkRadioButton *primary_button_right; + GtkScrolledWindow *scrolled_window; + GtkStack *stack; + GtkListBoxRow *tap_to_click_row; + GtkSwitch *tap_to_click_switch; + GtkButton *test_button; + GtkFrame *touchpad_frame; + GtkListBox *touchpad_listbox; + GtkListBoxRow *touchpad_natural_scrolling_row; + GtkSwitch *touchpad_natural_scrolling_switch; + GtkListBoxRow *touchpad_speed_row; + GtkScale *touchpad_speed_scale; + GtkSwitch *touchpad_toggle_switch; + GtkListBoxRow *two_finger_scrolling_row; + GtkSwitch *two_finger_scrolling_switch; + + GSettings *mouse_settings; + GSettings *gsd_mouse_settings; + GSettings *touchpad_settings; + + gboolean have_mouse; + gboolean have_touchpad; + gboolean have_touchscreen; + gboolean have_synaptics; + + gboolean left_handed; + GtkGesture *left_gesture; + GtkGesture *right_gesture; +}; + +CC_PANEL_REGISTER (CcMousePanel, cc_mouse_panel) + +static void +setup_touchpad_options (CcMousePanel *self) +{ + gboolean edge_scroll_enabled; + gboolean two_finger_scroll_enabled; + gboolean have_two_finger_scrolling; + gboolean have_edge_scrolling; + gboolean have_tap_to_click; + + if (self->have_synaptics || !self->have_touchpad) { + gtk_widget_hide (GTK_WIDGET (self->touchpad_frame)); + return; + } + + cc_touchpad_check_capabilities (&have_two_finger_scrolling, &have_edge_scrolling, &have_tap_to_click); + + gtk_widget_show (GTK_WIDGET (self->touchpad_frame)); + + gtk_widget_set_visible (GTK_WIDGET (self->two_finger_scrolling_row), have_two_finger_scrolling); + gtk_widget_set_visible (GTK_WIDGET (self->edge_scrolling_row), have_edge_scrolling); + gtk_widget_set_visible (GTK_WIDGET (self->tap_to_click_row), have_tap_to_click); + + edge_scroll_enabled = g_settings_get_boolean (self->touchpad_settings, "edge-scrolling-enabled"); + two_finger_scroll_enabled = g_settings_get_boolean (self->touchpad_settings, "two-finger-scrolling-enabled"); + if (edge_scroll_enabled && two_finger_scroll_enabled) + { + /* You cunning user set both, but you can only have one set in that UI */ + gtk_switch_set_active (self->edge_scrolling_switch, FALSE); + } +} + +static void +two_finger_scrolling_changed_event (CcMousePanel *self, + gboolean state) +{ + /* Updating the setting will cause the "state" of the switch to be updated. */ + g_settings_set_boolean (self->touchpad_settings, "two-finger-scrolling-enabled", state); + + /* Disable edge scrolling if two-finger scrolling is enabled */ + if (state && gtk_widget_get_visible (GTK_WIDGET (self->edge_scrolling_row))) + gtk_switch_set_active (self->edge_scrolling_switch, FALSE); +} + +static void +edge_scrolling_changed_event (CcMousePanel *self, + gboolean state) +{ + /* Updating the setting will cause the "state" of the switch to be updated. */ + g_settings_set_boolean (self->touchpad_settings, "edge-scrolling-enabled", state); + + /* Disable two-finger scrolling if edge scrolling is enabled */ + if (state && gtk_widget_get_visible (GTK_WIDGET (self->two_finger_scrolling_row))) + gtk_switch_set_active (self->two_finger_scrolling_switch, FALSE); +} + +static gboolean +get_touchpad_enabled (GSettings *settings) +{ + GDesktopDeviceSendEvents send_events; + + send_events = g_settings_get_enum (settings, "send-events"); + + return send_events == G_DESKTOP_DEVICE_SEND_EVENTS_ENABLED; +} + +static gboolean +show_touchpad_enabling_switch (CcMousePanel *self) +{ + if (!self->have_touchpad) + return FALSE; + + g_debug ("Should we show the touchpad disable switch: have_mouse: %s have_touchscreen: %s\n", + self->have_mouse ? "true" : "false", + self->have_touchscreen ? "true" : "false"); + + /* Let's show the button when a mouse or touchscreen is present */ + if (self->have_mouse || self->have_touchscreen) + return TRUE; + + /* Let's also show when the touchpad is disabled. */ + if (!get_touchpad_enabled (self->touchpad_settings)) + return TRUE; + + return FALSE; +} + +static gboolean +touchpad_enabled_get_mapping (GValue *value, + GVariant *variant, + gpointer user_data) +{ + gboolean enabled; + + enabled = g_strcmp0 (g_variant_get_string (variant, NULL), "enabled") == 0; + g_value_set_boolean (value, enabled); + + return TRUE; +} + +static GVariant * +touchpad_enabled_set_mapping (const GValue *value, + const GVariantType *type, + gpointer user_data) +{ + gboolean enabled; + + enabled = g_value_get_boolean (value); + + return g_variant_new_string (enabled ? "enabled" : "disabled"); +} + +static void +handle_secondary_button (CcMousePanel *self, + GtkRadioButton *button, + GtkGesture *gesture) +{ + gtk_gesture_single_set_touch_only (GTK_GESTURE_SINGLE (gesture), FALSE); + gtk_gesture_single_set_exclusive (GTK_GESTURE_SINGLE (gesture), TRUE); + gtk_gesture_single_set_button (GTK_GESTURE_SINGLE (gesture), GDK_BUTTON_SECONDARY); + g_signal_connect_swapped (gesture, "pressed", G_CALLBACK (gtk_button_clicked), button); + gtk_event_controller_set_propagation_phase (GTK_EVENT_CONTROLLER (gesture), GTK_PHASE_BUBBLE); +} + +/* Set up the property editors in the dialog. */ +static void +setup_dialog (CcMousePanel *self) +{ + GtkRadioButton *button; + + self->left_handed = g_settings_get_boolean (self->mouse_settings, "left-handed"); + button = self->left_handed ? self->primary_button_right : self->primary_button_left; + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), TRUE); + + g_settings_bind (self->mouse_settings, "left-handed", + self->primary_button_left, "active", + G_SETTINGS_BIND_DEFAULT | G_SETTINGS_BIND_INVERT_BOOLEAN); + g_settings_bind (self->mouse_settings, "left-handed", + self->primary_button_right, "active", + G_SETTINGS_BIND_DEFAULT); + + /* Allow changing orientation with either button */ + button = self->primary_button_right; + self->right_gesture = gtk_gesture_multi_press_new (GTK_WIDGET (button)); + handle_secondary_button (self, button, self->right_gesture); + button = self->primary_button_left; + self->left_gesture = gtk_gesture_multi_press_new (GTK_WIDGET (button)); + handle_secondary_button (self, button, self->left_gesture); + + g_settings_bind (self->mouse_settings, "natural-scroll", + self->mouse_natural_scrolling_switch, "active", + G_SETTINGS_BIND_DEFAULT); + + gtk_list_box_set_header_func (self->general_listbox, cc_list_box_update_header_func, NULL, NULL); + gtk_list_box_set_header_func (self->touchpad_listbox, cc_list_box_update_header_func, NULL, NULL); + + /* Mouse section */ + gtk_widget_set_visible (GTK_WIDGET (self->mouse_frame), self->have_mouse); + + g_settings_bind (self->mouse_settings, "speed", + gtk_range_get_adjustment (GTK_RANGE (self->mouse_speed_scale)), "value", + G_SETTINGS_BIND_DEFAULT); + + gtk_list_box_set_header_func (self->mouse_listbox, cc_list_box_update_header_func, NULL, NULL); + + /* Touchpad section */ + gtk_widget_set_visible (GTK_WIDGET (self->touchpad_toggle_switch), show_touchpad_enabling_switch (self)); + + g_settings_bind_with_mapping (self->touchpad_settings, "send-events", + self->touchpad_toggle_switch, "active", + G_SETTINGS_BIND_DEFAULT, + touchpad_enabled_get_mapping, + touchpad_enabled_set_mapping, + NULL, NULL); + g_settings_bind_with_mapping (self->touchpad_settings, "send-events", + self->touchpad_natural_scrolling_row, "sensitive", + G_SETTINGS_BIND_GET, + touchpad_enabled_get_mapping, + touchpad_enabled_set_mapping, + NULL, NULL); + g_settings_bind_with_mapping (self->touchpad_settings, "send-events", + self->touchpad_speed_row, "sensitive", + G_SETTINGS_BIND_GET, + touchpad_enabled_get_mapping, + touchpad_enabled_set_mapping, + NULL, NULL); + g_settings_bind_with_mapping (self->touchpad_settings, "send-events", + self->tap_to_click_row, "sensitive", + G_SETTINGS_BIND_GET, + touchpad_enabled_get_mapping, + touchpad_enabled_set_mapping, + NULL, NULL); + g_settings_bind_with_mapping (self->touchpad_settings, "send-events", + self->two_finger_scrolling_row, "sensitive", + G_SETTINGS_BIND_GET, + touchpad_enabled_get_mapping, + touchpad_enabled_set_mapping, + NULL, NULL); + g_settings_bind_with_mapping (self->touchpad_settings, "send-events", + self->edge_scrolling_row, "sensitive", + G_SETTINGS_BIND_GET, + touchpad_enabled_get_mapping, + touchpad_enabled_set_mapping, + NULL, NULL); + + g_settings_bind (self->touchpad_settings, "natural-scroll", + self->touchpad_natural_scrolling_switch, "active", + G_SETTINGS_BIND_DEFAULT); + + g_settings_bind (self->touchpad_settings, "speed", + gtk_range_get_adjustment (GTK_RANGE (self->touchpad_speed_scale)), "value", + G_SETTINGS_BIND_DEFAULT); + + g_settings_bind (self->touchpad_settings, "tap-to-click", + self->tap_to_click_switch, "active", + G_SETTINGS_BIND_DEFAULT); + + g_settings_bind (self->touchpad_settings, "two-finger-scrolling-enabled", + self->two_finger_scrolling_switch, "state", + G_SETTINGS_BIND_GET); + + g_settings_bind (self->touchpad_settings, "edge-scrolling-enabled", + self->edge_scrolling_switch, "state", + G_SETTINGS_BIND_GET); + + setup_touchpad_options (self); +} + +/* Callback issued when a button is clicked on the dialog */ +static void +device_changed (CcMousePanel *self) +{ + self->have_touchpad = touchpad_is_present (); + + setup_touchpad_options (self); + + self->have_mouse = mouse_is_present (); + gtk_widget_set_visible (GTK_WIDGET (self->mouse_frame), self->have_mouse); + gtk_widget_set_visible (GTK_WIDGET (self->touchpad_toggle_switch), show_touchpad_enabling_switch (self)); +} + +static void +on_content_size_changed (CcMousePanel *self, + GtkAllocation *allocation) +{ + if (allocation->height < 490) + { + gtk_scrolled_window_set_policy (self->scrolled_window, + GTK_POLICY_NEVER, GTK_POLICY_NEVER); + } + else + { + gtk_scrolled_window_set_policy (self->scrolled_window, + GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); + gtk_scrolled_window_set_min_content_height (self->scrolled_window, 490); + } +} + +static void +cc_mouse_panel_dispose (GObject *object) +{ + CcMousePanel *self = CC_MOUSE_PANEL (object); + + g_clear_object (&self->mouse_settings); + g_clear_object (&self->gsd_mouse_settings); + g_clear_object (&self->touchpad_settings); + g_clear_object (&self->right_gesture); + g_clear_object (&self->left_gesture); + + G_OBJECT_CLASS (cc_mouse_panel_parent_class)->dispose (object); +} + +static const char * +cc_mouse_panel_get_help_uri (CcPanel *panel) +{ + return "help:gnome-help/mouse"; +} + +static void +test_button_toggled_cb (CcMousePanel *self) +{ + if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (self->test_button))) + gtk_stack_set_visible_child (self->stack, GTK_WIDGET (self->mouse_test)); + else + gtk_stack_set_visible_child (self->stack, GTK_WIDGET (self->scrolled_window)); +} + +static void +cc_mouse_panel_constructed (GObject *object) +{ + CcMousePanel *self = CC_MOUSE_PANEL (object); + CcShell *shell; + + G_OBJECT_CLASS (cc_mouse_panel_parent_class)->constructed (object); + + /* Add test area button to shell header. */ + shell = cc_panel_get_shell (CC_PANEL (self)); + cc_shell_embed_widget_in_header (shell, GTK_WIDGET (self->test_button), GTK_POS_RIGHT); +} + +static void +cc_mouse_panel_init (CcMousePanel *self) +{ + GsdDeviceManager *device_manager; + + g_resources_register (cc_mouse_get_resource ()); + + cc_mouse_test_get_type (); + gtk_widget_init_template (GTK_WIDGET (self)); + + self->mouse_settings = g_settings_new ("org.gnome.desktop.peripherals.mouse"); + self->gsd_mouse_settings = g_settings_new ("org.gnome.settings-daemon.peripherals.mouse"); + self->touchpad_settings = g_settings_new ("org.gnome.desktop.peripherals.touchpad"); + + device_manager = gsd_device_manager_get (); + g_signal_connect_object (device_manager, "device-added", + G_CALLBACK (device_changed), self, G_CONNECT_SWAPPED); + g_signal_connect_object (device_manager, "device-removed", + G_CALLBACK (device_changed), self, G_CONNECT_SWAPPED); + + self->have_mouse = mouse_is_present (); + self->have_touchpad = touchpad_is_present (); + self->have_touchscreen = touchscreen_is_present (); + self->have_synaptics = cc_synaptics_check (); + if (self->have_synaptics) + g_warning ("Detected synaptics X driver, please migrate to libinput"); + + setup_dialog (self); +} + +static void +cc_mouse_panel_class_init (CcMousePanelClass *klass) +{ + GObjectClass *object_class = G_OBJECT_CLASS (klass); + GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass); + CcPanelClass *panel_class = CC_PANEL_CLASS (klass); + + panel_class->get_help_uri = cc_mouse_panel_get_help_uri; + + object_class->dispose = cc_mouse_panel_dispose; + object_class->constructed = cc_mouse_panel_constructed; + + gtk_widget_class_set_template_from_resource (widget_class, "/org/gnome/control-center/mouse/cc-mouse-panel.ui"); + + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, edge_scrolling_row); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, edge_scrolling_switch); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, general_listbox); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, mouse_frame); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, mouse_listbox); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, mouse_natural_scrolling_switch); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, mouse_speed_scale); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, mouse_test); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, primary_button_left); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, primary_button_right); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, scrolled_window); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, stack); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, tap_to_click_row); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, tap_to_click_switch); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, test_button); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, touchpad_frame); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, touchpad_listbox); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, touchpad_natural_scrolling_row); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, touchpad_natural_scrolling_switch); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, touchpad_speed_row); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, touchpad_speed_scale); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, touchpad_toggle_switch); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, two_finger_scrolling_row); + gtk_widget_class_bind_template_child (widget_class, CcMousePanel, two_finger_scrolling_switch); + + gtk_widget_class_bind_template_callback (widget_class, edge_scrolling_changed_event); + gtk_widget_class_bind_template_callback (widget_class, on_content_size_changed); + gtk_widget_class_bind_template_callback (widget_class, test_button_toggled_cb); + gtk_widget_class_bind_template_callback (widget_class, two_finger_scrolling_changed_event); +} diff --git a/panels/mouse/cc-mouse-panel.h b/panels/mouse/cc-mouse-panel.h new file mode 100644 index 0000000..ae83e8e --- /dev/null +++ b/panels/mouse/cc-mouse-panel.h @@ -0,0 +1,30 @@ +/* + * Copyright (C) 2010 Intel, Inc + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, see <http://www.gnu.org/licenses/>. + * + * Author: Thomas Wood <thomas.wood@intel.com> + * + */ + +#pragma once + +#include <shell/cc-panel.h> + +G_BEGIN_DECLS + +#define CC_TYPE_MOUSE_PANEL (cc_mouse_panel_get_type ()) +G_DECLARE_FINAL_TYPE (CcMousePanel, cc_mouse_panel, CC, MOUSE_PANEL, CcPanel) + +G_END_DECLS diff --git a/panels/mouse/cc-mouse-panel.ui b/panels/mouse/cc-mouse-panel.ui new file mode 100644 index 0000000..bcfde6d --- /dev/null +++ b/panels/mouse/cc-mouse-panel.ui @@ -0,0 +1,752 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <!-- interface-requires gtk+ 3.0 --> + <template class="CcMousePanel" parent="CcPanel"> + <property name="visible">True</property> + <child> + <object class="GtkStack" id="stack"> + <property name="visible">True</property> + <child> + <object class="GtkScrolledWindow" id="scrolled_window"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="shadow_type">none</property> + <property name="hscrollbar_policy">never</property> + <signal name="size-allocate" handler="on_content_size_changed" object="CcMousePanel" swapped="yes"/> + <child> + <object class="GtkBox"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="halign">center</property> + <property name="margin_top">32</property> + <property name="margin_bottom">32</property> + <property name="orientation">vertical</property> + <child> + <object class="GtkFrame"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="shadow_type">in</property> + <property name="margin_bottom">32</property> + <property name="label_yalign">0.45</property> + <property name="shadow_type">none</property> + <child type="label"> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="xalign">0</property> + <property name="label" translatable="yes">General</property> + <property name="margin_bottom">12</property> + <attributes> + <attribute name="weight" value="bold"/> + </attributes> + </object> + </child> + <child> + <object class="GtkFrame"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="shadow_type">in</property> + <child> + <object class="GtkListBox" id="general_listbox"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="selection_mode">none</property> + <child> + <object class="GtkListBoxRow" id="primary_button_row"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="activatable">false</property> + <child> + <object class="GtkGrid"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="row_spacing">2</property> + <property name="column_spacing">16</property> + <property name="margin_start">20</property> + <property name="margin_end">20</property> + <property name="margin_top">12</property> + <property name="margin_bottom">12</property> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="hexpand">True</property> + <property name="xalign">0</property> + <property name="label" translatable="yes">Primary Button</property> + <property name="use_underline">True</property> + <property name="mnemonic_widget">primary_button_row</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="xalign">0</property> + <property name="max-width-chars">20</property> + <property name="wrap">True</property> + <property name="wrap-mode">word</property> + <property name="label" translatable="yes">Sets the order of physical buttons on mice and touchpads.</property> + <style> + <class name="dim-label"/> + </style> + <attributes> + <attribute name="scale" value="0.9"/> + </attributes> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">1</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkGrid"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="valign">center</property> + <property name="column_homogeneous">True</property> + <style> + <class name="linked"/> + </style> + <child> + <object class="GtkRadioButton" id="primary_button_left"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="hexpand">True</property> + <property name="label" translatable="yes">Left</property> + <property name="draw-indicator">False</property> + <property name="height_request">35</property> + </object> + </child> + <child> + <object class="GtkRadioButton" id="primary_button_right"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="hexpand">True</property> + <property name="label" translatable="yes">Right</property> + <property name="draw-indicator">False</property> + <property name="group">primary_button_left</property> + <property name="height_request">35</property> + </object> + </child> + </object> + <packing> + <property name="left_attach">1</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">2</property> + </packing> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + <child> + <object class="GtkFrame" id="mouse_frame"> + <property name="visible">False</property> + <property name="can_focus">False</property> + <property name="shadow_type">none</property> + <property name="label_yalign">0.45</property> + <property name="margin_bottom">32</property> + <child type="label"> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="xalign">0</property> + <property name="label" translatable="yes">Mouse</property> + <property name="margin_bottom">12</property> + <attributes> + <attribute name="weight" value="bold"/> + </attributes> + </object> + </child> + <child> + <object class="GtkFrame"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="shadow_type">in</property> + <child> + <object class="GtkListBox" id="mouse_listbox"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="selection_mode">none</property> + <child> + <object class="GtkListBoxRow" id="mouse_row"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="activatable">false</property> + <child> + <object class="GtkGrid"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="row_spacing">0</property> + <property name="column_spacing">32</property> + <property name="margin_start">20</property> + <property name="margin_end">20</property> + <property name="margin_top">8</property> + <property name="margin_bottom">8</property> + <property name="valign">center</property> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="xalign">0</property> + <property name="valign">end</property> + <property name="label" translatable="yes">Mouse Speed</property> + <property name="use_underline">True</property> + <property name="mnemonic_widget">mouse_speed_scale</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkScale" id="mouse_speed_scale"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="adjustment">mouse_speed_adjustment</property> + <property name="draw_value">False</property> + <property name="width-request">300</property> + <property name="halign">end</property> + <property name="expand">True</property> + <child internal-child="accessible"> + <object class="AtkObject"> + <property name="AtkObject::accessible-description" translatable="yes">Double-click timeout</property> + </object> + </child> + </object> + <packing> + <property name="left_attach">1</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">2</property> + </packing> + </child> + </object> + </child> + </object> + </child> + <child> + <object class="GtkListBoxRow" id="mouse_natural_scrolling_row"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="activatable">false</property> + <child> + <object class="GtkGrid"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="row_spacing">2</property> + <property name="column_spacing">16</property> + <property name="margin_start">20</property> + <property name="margin_end">20</property> + <property name="margin_top">6</property> + <property name="margin_bottom">6</property> + <property name="valign">center</property> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="hexpand">True</property> + <property name="xalign">0</property> + <property name="label" translatable="yes" comments="Translators: This switch reverses the scrolling direction for mices. The term used comes from OS X so use the same translation if possible.">Natural Scrolling</property> + <property name="use_underline">True</property> + <property name="mnemonic_widget">mouse_natural_scrolling_switch</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="xalign">0</property> + <property name="label" translatable="yes">Scrolling moves the content, not the view.</property> + <style> + <class name="dim-label"/> + </style> + <attributes> + <attribute name="scale" value="0.9"/> + </attributes> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">1</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkSwitch" id="mouse_natural_scrolling_switch"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="halign">end</property> + <property name="valign">center</property> + </object> + <packing> + <property name="left_attach">1</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">2</property> + </packing> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + <child> + <object class="GtkFrame" id="touchpad_frame"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="shadow_type">none</property> + <property name="label_yalign">0.45</property> + <child type="label"> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="xalign">0</property> + <property name="label" translatable="yes">Touchpad</property> + <property name="margin_bottom">12</property> + <attributes> + <attribute name="weight" value="bold"/> + </attributes> + </object> + </child> + <child> + <object class="GtkFrame" id="touchpad_frame_listbox"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="shadow_type">in</property> + <child> + <object class="GtkBox" id="touchpad_box"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="orientation">vertical</property> + <child> + <object class="GtkListBox" id="touchpad_listbox"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="selection_mode">none</property> + <child> + <object class="GtkListBoxRow" id="touchpad_toggle_row"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="activatable">false</property> + <child> + <object class="GtkGrid"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="row_spacing">0</property> + <property name="column_spacing">32</property> + <property name="margin_start">20</property> + <property name="margin_end">20</property> + <property name="margin_top">12</property> + <property name="margin_bottom">12</property> + <property name="valign">center</property> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="hexpand">True</property> + <property name="xalign">0</property> + <property name="valign">end</property> + <property name="label" translatable="yes">Touchpad</property> + <property name="use_underline">True</property> + <property name="mnemonic_widget">touchpad_toggle_switch</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkSwitch" id="touchpad_toggle_switch"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="halign">end</property> + <property name="valign">center</property> + <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> + </object> + <packing> + <property name="left_attach">1</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">2</property> + </packing> + </child> + </object> + </child> + </object> + </child> + <child> + <object class="GtkListBoxRow" id="touchpad_natural_scrolling_row"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="activatable">false</property> + <child> + <object class="GtkGrid"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="row_spacing">2</property> + <property name="column_spacing">16</property> + <property name="margin_start">20</property> + <property name="margin_end">20</property> + <property name="margin_top">6</property> + <property name="margin_bottom">6</property> + <property name="valign">center</property> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="hexpand">True</property> + <property name="xalign">0</property> + <property name="label" translatable="yes" comments="Translators: This switch reverses the scrolling direction for touchpads. The term used comes from OS X so use the same translation if possible. ">Natural Scrolling</property> + <property name="use_underline">True</property> + <property name="mnemonic_widget">touchpad_natural_scrolling_switch</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="xalign">0</property> + <property name="label" translatable="yes">Scrolling moves the content, not the view.</property> + <style> + <class name="dim-label"/> + </style> + <attributes> + <attribute name="scale" value="0.9"/> + </attributes> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">1</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkSwitch" id="touchpad_natural_scrolling_switch"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="halign">end</property> + <property name="valign">center</property> + </object> + <packing> + <property name="left_attach">1</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">2</property> + </packing> + </child> + </object> + </child> + </object> + </child> + <child> + <object class="GtkListBoxRow" id="touchpad_speed_row"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="activatable">false</property> + <child> + <object class="GtkGrid"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="row_spacing">0</property> + <property name="column_spacing">16</property> + <property name="margin_start">20</property> + <property name="margin_end">20</property> + <property name="margin_top">8</property> + <property name="margin_bottom">8</property> + <property name="valign">center</property> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="xalign">0</property> + <property name="valign">end</property> + <property name="label" translatable="yes">Touchpad Speed</property> + <property name="use_underline">True</property> + <property name="mnemonic_widget">touchpad_speed_scale</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkScale" id="touchpad_speed_scale"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="adjustment">touchpad_speed_adjustment</property> + <property name="draw_value">False</property> + <property name="expand">True</property> + <property name="halign">end</property> + <child internal-child="accessible"> + <object class="AtkObject"> + <property name="AtkObject::accessible-description" translatable="yes">Double-click timeout</property> + </object> + </child> + </object> + <packing> + <property name="left_attach">1</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">2</property> + </packing> + </child> + </object> + </child> + </object> + </child> + <child> + <object class="GtkListBoxRow" id="tap_to_click_row"> + <property name="visible">False</property> + <property name="can_focus">True</property> + <property name="activatable">false</property> + <child> + <object class="GtkGrid"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="row_spacing">0</property> + <property name="column_spacing">32</property> + <property name="margin_start">20</property> + <property name="margin_end">20</property> + <property name="margin_top">12</property> + <property name="margin_bottom">12</property> + <property name="valign">center</property> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="hexpand">True</property> + <property name="xalign">0</property> + <property name="valign">end</property> + <property name="label" translatable="yes">Tap to Click</property> + <property name="use_underline">True</property> + <property name="mnemonic_widget">tap_to_click_switch</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkSwitch" id="tap_to_click_switch"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="halign">end</property> + <property name="valign">center</property> + </object> + <packing> + <property name="left_attach">1</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">2</property> + </packing> + </child> + </object> + </child> + </object> + </child> + <child> + <object class="GtkListBoxRow" id="two_finger_scrolling_row"> + <property name="visible">False</property> + <property name="can_focus">True</property> + <property name="activatable">false</property> + <child> + <object class="GtkGrid"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="row_spacing">0</property> + <property name="column_spacing">32</property> + <property name="margin_start">20</property> + <property name="margin_end">20</property> + <property name="margin_top">12</property> + <property name="margin_bottom">12</property> + <property name="valign">center</property> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="hexpand">True</property> + <property name="xalign">0</property> + <property name="valign">end</property> + <property name="label" translatable="yes">Two-finger Scrolling</property> + <property name="use_underline">True</property> + <property name="mnemonic_widget">two_finger_scrolling_switch</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkSwitch" id="two_finger_scrolling_switch"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="halign">end</property> + <property name="valign">center</property> + <signal name="state-set" handler="two_finger_scrolling_changed_event" object="CcMousePanel" swapped="yes"/> + </object> + <packing> + <property name="left_attach">1</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">2</property> + </packing> + </child> + </object> + </child> + </object> + </child> + <child> + <object class="GtkListBoxRow" id="edge_scrolling_row"> + <property name="visible">False</property> + <property name="can_focus">True</property> + <property name="activatable">false</property> + <child> + <object class="GtkGrid"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="row_spacing">0</property> + <property name="column_spacing">32</property> + <property name="margin_start">20</property> + <property name="margin_end">20</property> + <property name="margin_top">12</property> + <property name="margin_bottom">12</property> + <property name="valign">center</property> + <child> + <object class="GtkLabel"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="hexpand">True</property> + <property name="xalign">0</property> + <property name="valign">end</property> + <property name="label" translatable="yes">Edge Scrolling</property> + <property name="use_underline">True</property> + <property name="mnemonic_widget">edge_scrolling_switch</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkSwitch" id="edge_scrolling_switch"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="halign">end</property> + <property name="valign">center</property> + <signal name="state-set" handler="edge_scrolling_changed_event" object="CcMousePanel" swapped="yes"/> + </object> + <packing> + <property name="left_attach">1</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">2</property> + </packing> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + </object> + </child> + <child> + <object class="CcMouseTest" id="mouse_test"> + <property name="visible">True</property> + </object> + </child> + </object> + </child> + </template> + <object class="GtkToggleButton" id="test_button"> + <property name="visible">True</property> + <property name="use_underline">True</property> + <property name="valign">center</property> + <property name="label" translatable="yes">Test Your _Settings</property> + <signal name="toggled" handler="test_button_toggled_cb" object="CcMousePanel" swapped="yes"/> + <style> + <class name="text-button"/> + </style> + </object> + <object class="GtkAdjustment" id="mouse_speed_adjustment"> + <property name="lower">-1</property> + <property name="upper">1</property> + </object> + <object class="GtkAdjustment" id="touchpad_speed_adjustment"> + <property name="lower">-1</property> + <property name="upper">1</property> + </object> + <object class="GtkSizeGroup"> + <property name="mode">vertical</property> + <widgets> + <widget name="mouse_row"/> + <widget name="mouse_natural_scrolling_row"/> + <widget name="touchpad_toggle_row"/> + <widget name="touchpad_natural_scrolling_row"/> + <widget name="touchpad_speed_row"/> + <widget name="tap_to_click_row"/> + <widget name="edge_scrolling_row"/> + </widgets> + </object> + <object class="GtkSizeGroup"> + <property name="mode">horizontal</property> + <widgets> + <widget name="mouse_speed_scale"/> + <widget name="touchpad_speed_scale"/> + </widgets> + </object> +</interface> diff --git a/panels/mouse/cc-mouse-test.c b/panels/mouse/cc-mouse-test.c new file mode 100644 index 0000000..35f337d --- /dev/null +++ b/panels/mouse/cc-mouse-test.c @@ -0,0 +1,383 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- + * + * Copyright (C) 2012 Red Hat, Inc. + * + * Written by: Ondrej Holy <oholy@redhat.com>, + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, or (at your option) + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, see <http://www.gnu.org/licenses/>. + */ + +#include <config.h> + +#include <glib/gi18n.h> +#include <string.h> +#include <gdk/gdk.h> +#include <gdk/gdkx.h> +#include <gnome-settings-daemon/gsd-enums.h> +#include <math.h> + +#include "cc-mouse-test.h" + +#include <sys/types.h> +#include <sys/stat.h> + +/* Click test button sizes. */ +#define SHADOW_SIZE (10.0 / 180 * size) +#define SHADOW_SHIFT_Y (-1.0 / 180 * size) +#define SHADOW_OPACITY (0.15 / 180 * size) +#define OUTER_CIRCLE_SIZE (22.0 / 180 * size) +#define ANNULUS_SIZE (6.0 / 180 * size) +#define INNER_CIRCLE_SIZE (52.0 / 180 * size) + +static void setup_information_label (CcMouseTest *self); +static void setup_scroll_image (CcMouseTest *self); + +enum +{ + DOUBLE_CLICK_TEST_OFF, + DOUBLE_CLICK_TEST_MAYBE, + DOUBLE_CLICK_TEST_ON, + DOUBLE_CLICK_TEST_STILL_ON, + DOUBLE_CLICK_TEST_ALMOST_THERE, + DOUBLE_CLICK_TEST_GEGL +}; + +struct _CcMouseTest +{ + GtkBin parent_instance; + + GtkWidget *button_drawing_area; + GtkWidget *information_label; + GtkWidget *image; + GtkWidget *scrolled_window_adjustment; + GtkWidget *viewport; + + guint32 double_click_timestamp; + gint double_click_state; + gint button_state; + + GSettings *mouse_settings; + + gint information_label_timeout_id; + gint button_drawing_area_timeout_id; + gint scroll_image_timeout_id; +}; + +G_DEFINE_TYPE (CcMouseTest, cc_mouse_test, GTK_TYPE_BIN); + +/* Timeout for the double click test */ + +static gboolean +test_maybe_timeout (CcMouseTest *self) +{ + self->double_click_state = DOUBLE_CLICK_TEST_OFF; + + gtk_widget_queue_draw (self->button_drawing_area); + + self->button_drawing_area_timeout_id = 0; + + return FALSE; +} + +/* Timeout for the information label */ + +static gboolean +information_label_timeout (CcMouseTest *self) +{ + setup_information_label (self); + + self->information_label_timeout_id = 0; + + return FALSE; +} + +/* Timeout for the scroll image */ + +static gboolean +scroll_image_timeout (CcMouseTest *self) +{ + setup_scroll_image (self); + + self->scroll_image_timeout_id = 0; + + return FALSE; +} + +/* Set information label */ + +static void +setup_information_label (CcMouseTest *self) +{ + const gchar *message = NULL; + g_autofree gchar *label_text = NULL; + gboolean double_click; + + if (self->information_label_timeout_id != 0) { + g_source_remove (self->information_label_timeout_id); + self->information_label_timeout_id = 0; + } + + if (self->double_click_state == DOUBLE_CLICK_TEST_OFF) { + gtk_label_set_label (GTK_LABEL (self->information_label), _("Try clicking, double clicking, scrolling")); + return; + } + + if (self->double_click_state == DOUBLE_CLICK_TEST_GEGL) { + message = _("Five clicks, GEGL time!"), "</b>"; + } else { + double_click = (self->double_click_state >= DOUBLE_CLICK_TEST_ON); + switch (self->button_state) { + case 1: + message = (double_click) ? _("Double click, primary button") : _("Single click, primary button"); + break; + case 2: + message = (double_click) ? _("Double click, middle button") : _("Single click, middle button"); + break; + case 3: + message = (double_click) ? _("Double click, secondary button") : _("Single click, secondary button"); + break; + } + } + + label_text = g_strconcat ("<b>", message, "</b>", NULL); + gtk_label_set_markup (GTK_LABEL (self->information_label), label_text); + + self->information_label_timeout_id = g_timeout_add (2500, (GSourceFunc) information_label_timeout, self); +} + +/* Update scroll image */ + +static void +setup_scroll_image (CcMouseTest *self) +{ + const char *resource; + + if (self->scroll_image_timeout_id != 0) { + g_source_remove (self->scroll_image_timeout_id); + self->scroll_image_timeout_id = 0; + } + + if (self->double_click_state == DOUBLE_CLICK_TEST_GEGL) + resource = "/org/gnome/control-center/mouse/scroll-test-gegl.svg"; + else + resource = "/org/gnome/control-center/mouse/scroll-test.svg"; + gtk_image_set_from_resource (GTK_IMAGE (self->image), resource); + + if (self->double_click_state != DOUBLE_CLICK_TEST_GEGL) + return; + + self->scroll_image_timeout_id = g_timeout_add (5000, (GSourceFunc) scroll_image_timeout, self); +} + +/* Callback issued when the user clicks the double click testing area. */ + +static gboolean +button_drawing_area_button_press_event (CcMouseTest *self, GdkEventButton *event) +{ + gint double_click_time; + + if (event->type != GDK_BUTTON_PRESS || event->button > 3) + return FALSE; + + double_click_time = g_settings_get_int (self->mouse_settings, "double-click"); + + if (self->button_drawing_area_timeout_id != 0) { + g_source_remove (self->button_drawing_area_timeout_id); + self->button_drawing_area_timeout_id = 0; + } + + /* Ignore fake double click using different buttons. */ + if (self->double_click_state != DOUBLE_CLICK_TEST_OFF && self->button_state != event->button) + self->double_click_state = DOUBLE_CLICK_TEST_OFF; + + switch (self->double_click_state) { + case DOUBLE_CLICK_TEST_OFF: + self->double_click_state = DOUBLE_CLICK_TEST_MAYBE; + self->button_drawing_area_timeout_id = g_timeout_add (double_click_time, (GSourceFunc) test_maybe_timeout, self); + 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 - self->double_click_timestamp < double_click_time) { + self->double_click_state++; + self->button_drawing_area_timeout_id = g_timeout_add (2500, (GSourceFunc) test_maybe_timeout, self); + } else { + test_maybe_timeout (self); + } + break; + case DOUBLE_CLICK_TEST_GEGL: + self->double_click_state = DOUBLE_CLICK_TEST_OFF; + break; + } + + self->double_click_timestamp = event->time; + + gtk_widget_queue_draw (self->button_drawing_area); + + self->button_state = event->button; + setup_information_label (self); + setup_scroll_image (self); + + return TRUE; +} + +static gboolean +button_drawing_area_draw_event (CcMouseTest *self, + cairo_t *cr) +{ + gdouble center_x, center_y, size; + GdkRGBA inner_color, outer_color; + cairo_pattern_t *pattern; + + size = MAX (MIN (gtk_widget_get_allocated_width (self->button_drawing_area), gtk_widget_get_allocated_height (self->button_drawing_area)), 1); + center_x = gtk_widget_get_allocated_width (self->button_drawing_area) / 2.0; + center_y = gtk_widget_get_allocated_height (self->button_drawing_area) / 2.0; + + switch (self->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; + case DOUBLE_CLICK_TEST_MAYBE: + gdk_rgba_parse (&outer_color, "#729fcf"); + gdk_rgba_parse (&inner_color, "#ffffff"); + break; + case DOUBLE_CLICK_TEST_OFF: + gdk_rgba_parse (&outer_color, "#ffffff"); + gdk_rgba_parse (&inner_color, "#ffffff"); + break; + } + + /* Draw shadow. */ + cairo_rectangle (cr, center_x - size / 2, center_y - size / 2, size, size); + pattern = cairo_pattern_create_radial (center_x, center_y, 0, center_x, center_y, size); + cairo_pattern_add_color_stop_rgba (pattern, 0.5 - SHADOW_SIZE / size, 0, 0, 0, SHADOW_OPACITY); + cairo_pattern_add_color_stop_rgba (pattern, 0.5, 0, 0, 0, 0); + cairo_set_source (cr, pattern); + cairo_fill (cr); + + /* Draw outer circle. */ + cairo_set_line_width (cr, OUTER_CIRCLE_SIZE); + cairo_arc (cr, center_x, center_y + SHADOW_SHIFT_Y, + INNER_CIRCLE_SIZE + ANNULUS_SIZE + OUTER_CIRCLE_SIZE / 2, + 0, 2 * G_PI); + gdk_cairo_set_source_rgba (cr, &outer_color); + cairo_stroke (cr); + + /* Draw inner circle. */ + cairo_set_line_width (cr, 0); + cairo_arc (cr, center_x, center_y + SHADOW_SHIFT_Y, + INNER_CIRCLE_SIZE, + 0, 2 * G_PI); + gdk_cairo_set_source_rgba (cr, &inner_color); + cairo_fill (cr); + + return FALSE; +} + +static void +setup_dialog (CcMouseTest *self) +{ + GtkAdjustment *adjustment; + GtkStyleProvider *provider; + + adjustment = GTK_ADJUSTMENT (self->scrolled_window_adjustment); + gtk_adjustment_set_value (adjustment, + gtk_adjustment_get_upper (adjustment)); + + provider = GTK_STYLE_PROVIDER (gtk_css_provider_new ()); + gtk_css_provider_load_from_data (GTK_CSS_PROVIDER (provider), "* {background: #565854}", -1, NULL); + gtk_style_context_add_provider (gtk_widget_get_style_context (self->viewport), + provider, + GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); + gtk_style_context_add_provider (gtk_widget_get_style_context (self->button_drawing_area), + provider, + GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); + g_object_unref (provider); +} + +static void +cc_mouse_test_finalize (GObject *object) +{ + CcMouseTest *self = CC_MOUSE_TEST (object); + + g_clear_object (&self->mouse_settings); + + if (self->information_label_timeout_id != 0) { + g_source_remove (self->information_label_timeout_id); + self->information_label_timeout_id = 0; + } + + if (self->scroll_image_timeout_id != 0) { + g_source_remove (self->scroll_image_timeout_id); + self->scroll_image_timeout_id = 0; + } + + if (self->button_drawing_area_timeout_id != 0) { + g_source_remove (self->button_drawing_area_timeout_id); + self->button_drawing_area_timeout_id = 0; + } + + G_OBJECT_CLASS (cc_mouse_test_parent_class)->finalize (object); +} + +static void +cc_mouse_test_class_init (CcMouseTestClass *klass) +{ + GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass); + GObjectClass *object_class = G_OBJECT_CLASS (klass); + + object_class->finalize = cc_mouse_test_finalize; + + gtk_widget_class_set_template_from_resource (widget_class, "/org/gnome/control-center/mouse/cc-mouse-test.ui"); + + gtk_widget_class_bind_template_child (widget_class, CcMouseTest, button_drawing_area); + gtk_widget_class_bind_template_child (widget_class, CcMouseTest, information_label); + gtk_widget_class_bind_template_child (widget_class, CcMouseTest, image); + gtk_widget_class_bind_template_child (widget_class, CcMouseTest, scrolled_window_adjustment); + gtk_widget_class_bind_template_child (widget_class, CcMouseTest, viewport); + + gtk_widget_class_bind_template_callback (widget_class, button_drawing_area_button_press_event); + gtk_widget_class_bind_template_callback (widget_class, button_drawing_area_draw_event); +} + +static void +cc_mouse_test_init (CcMouseTest *self) +{ + g_autoptr(GError) error = NULL; + + gtk_widget_init_template (GTK_WIDGET (self)); + + self->double_click_timestamp = 0; + self->double_click_state = DOUBLE_CLICK_TEST_OFF; + self->button_state = 0; + + self->mouse_settings = g_settings_new ("org.gnome.settings-daemon.peripherals.mouse"); + + self->information_label_timeout_id = 0; + self->button_drawing_area_timeout_id = 0; + self->scroll_image_timeout_id = 0; + + setup_dialog (self); +} + +GtkWidget * +cc_mouse_test_new (void) +{ + return (GtkWidget *) g_object_new (CC_TYPE_MOUSE_TEST, NULL); +} diff --git a/panels/mouse/cc-mouse-test.h b/panels/mouse/cc-mouse-test.h new file mode 100644 index 0000000..eb2af1b --- /dev/null +++ b/panels/mouse/cc-mouse-test.h @@ -0,0 +1,32 @@ +/* -*- mode: c; style: linux -*- + * + * Copyright (C) 2012 Red Hat, Inc. + * + * Written by: Ondrej Holy <oholy@redhat.com> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, or (at your option) + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, see <http://www.gnu.org/licenses/>. + */ + +#pragma once + +#include <gtk/gtk.h> + +G_BEGIN_DECLS + +#define CC_TYPE_MOUSE_TEST (cc_mouse_test_get_type ()) +G_DECLARE_FINAL_TYPE (CcMouseTest, cc_mouse_test, CC, MOUSE_TEST, GtkBin) + +GtkWidget *cc_mouse_test_new (void); + +G_END_DECLS diff --git a/panels/mouse/cc-mouse-test.ui b/panels/mouse/cc-mouse-test.ui new file mode 100644 index 0000000..d547331 --- /dev/null +++ b/panels/mouse/cc-mouse-test.ui @@ -0,0 +1,104 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <!-- interface-requires gtk+ 3.0 --> + <object class="GtkAdjustment" id="scrolled_window_adjustment"> + <property name="upper">100</property> + <property name="value">100</property> + <property name="step_increment">1</property> + <property name="page_increment">10</property> + </object> + <template class="CcMouseTest" parent="GtkBin"> + <child> + <object class="GtkGrid" id="test_widget"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="hexpand">True</property> + <property name="vexpand">True</property> + <child> + <object class="GtkLabel" id="information_label"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property> + <property name="margin_top">10</property> + <property name="margin_bottom">5</property> + <property name="hexpand">True</property> + <property name="label" translatable="yes">Try clicking, double clicking, scrolling</property> + <property name="wrap">True</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">1</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkScrolledWindow" id="scrolledwindow"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="hexpand">True</property> + <property name="vexpand">True</property> + <property name="vadjustment">scrolled_window_adjustment</property> + <property name="hscrollbar_policy">never</property> + <property name="vscrollbar_policy">always</property> + <property name="shadow_type">in</property> + <property name="max_content_height">440</property> + <child> + <object class="GtkViewport" id="viewport"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <child> + <object class="GtkGrid" id="grid1"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <child> + <object class="GtkImage" id="image"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="margin_start">25</property> + <property name="margin_end">25</property> + <property name="resource">/org/gnome/control-center/mouse/scroll-test.svg</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + <child> + <object class="GtkDrawingArea" id="button_drawing_area"> + <property name="width_request">180</property> + <property name="height_request">180</property> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="events">GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_STRUCTURE_MASK</property> + <property name="margin_top">20</property> + <property name="margin_bottom">20</property> + <property name="hexpand">True</property> + <signal name="button_press_event" handler="button_drawing_area_button_press_event" object="CcMouseTest" swapped="yes"/> + <signal name="draw" handler="button_drawing_area_draw_event" object="CcMouseTest" swapped="yes"/> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">1</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + </object> + </child> + </object> + </child> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">0</property> + <property name="width">1</property> + <property name="height">1</property> + </packing> + </child> + </object> + </child> + </template> +</interface> diff --git a/panels/mouse/gnome-mouse-panel.desktop.in.in b/panels/mouse/gnome-mouse-panel.desktop.in.in new file mode 100644 index 0000000..53d23ec --- /dev/null +++ b/panels/mouse/gnome-mouse-panel.desktop.in.in @@ -0,0 +1,18 @@ +[Desktop Entry] +Name=Mouse & Touchpad +Comment=Change your mouse or touchpad sensitivity and select right or left-handed +Exec=gnome-control-center mouse +# Translators: Do NOT translate or transliterate this text (this is an icon file name)! +Icon=input-mouse +Terminal=false +Type=Application +NoDisplay=true +StartupNotify=true +Categories=GNOME;GTK;Settings;HardwareSettings;X-GNOME-Settings-Panel;X-GNOME-DevicesSettings; +OnlyShowIn=GNOME;Unity; +X-GNOME-Bugzilla-Bugzilla=GNOME +X-GNOME-Bugzilla-Product=gnome-control-center +X-GNOME-Bugzilla-Component=mouse +X-GNOME-Bugzilla-Version=@VERSION@ +# Translators: Search terms to find the Mouse and Touchpad panel. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon! +Keywords=Trackpad;Pointer;Click;Tap;Double;Button;Trackball;Scroll; diff --git a/panels/mouse/meson.build b/panels/mouse/meson.build new file mode 100644 index 0000000..357aaae --- /dev/null +++ b/panels/mouse/meson.build @@ -0,0 +1,69 @@ +panels_list += cappletname +desktop = 'gnome-@0@-panel.desktop'.format(cappletname) + +desktop_in = configure_file( + input: desktop + '.in.in', + output: desktop + '.in', + configuration: desktop_conf +) + +i18n.merge_file( + desktop, + type: 'desktop', + input: desktop_in, + output: desktop, + po_dir: po_dir, + install: true, + install_dir: control_center_desktopdir +) + +resource_data = files( + 'cc-mouse-panel.ui', + 'cc-mouse-test.ui', + 'scroll-test-gegl.svg', + 'scroll-test.svg' +) + +common_sources = gnome.compile_resources( + 'cc-' + cappletname + '-resources', + cappletname + '.gresource.xml', + c_name: 'cc_' + cappletname, + dependencies: resource_data, + export: true +) + +sources = common_sources + files( + 'cc-mouse-panel.c', + 'cc-mouse-caps-helper.c', + 'cc-mouse-test.c', +) + +deps = common_deps + [ + gnome_settings_dep, + libdevice_dep, + x11_dep, + xi_dep +] + +panels_libs += static_library( + cappletname + '-properties', + sources: sources, + include_directories: top_inc, + dependencies: deps, + c_args: cflags +) + +test_name = 'test-gnome-mouse-test' + +sources = common_sources + files( + 'cc-mouse-test.c', + test_name + '.c' +) + +executable( + test_name, + sources, + include_directories: top_inc, + dependencies: deps, + c_args: cflags +) diff --git a/panels/mouse/mouse.gresource.xml b/panels/mouse/mouse.gresource.xml new file mode 100644 index 0000000..0568705 --- /dev/null +++ b/panels/mouse/mouse.gresource.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<gresources> + <gresource prefix="/org/gnome/control-center/mouse"> + <file preprocess="xml-stripblanks">cc-mouse-panel.ui</file> + <file preprocess="xml-stripblanks">cc-mouse-test.ui</file> + <file>scroll-test.svg</file> + <file>scroll-test-gegl.svg</file> + </gresource> +</gresources> 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.655 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.58292,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.50127 -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.83474,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.14718,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.30888 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,12.28779 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccscccsccsscsccsscsssccsscssccsccccccscsccsscccsccscccscscscccsccscccsccscc" /> + </g> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="Layer" /> +</svg> diff --git a/panels/mouse/scroll-test.svg b/panels/mouse/scroll-test.svg new file mode 100644 index 0000000..73e933a --- /dev/null +++ b/panels/mouse/scroll-test.svg @@ -0,0 +1,1960 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="640" + height="2000" + id="svg25153" + version="1.1" + inkscape:version="0.48.2 r9819" + sodipodi:docname="scroll-test2.svg"> + <defs + id="defs25155"> + <inkscape:path-effect + effect="spiro" + id="path-effect28749" + is_visible="true" /> + <inkscape:path-effect + is_visible="true" + id="path-effect28747" + effect="spiro" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28725" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28712" + is_visible="true" /> + <inkscape:path-effect + is_visible="true" + id="path-effect28708" + effect="spiro" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28704" + is_visible="true" /> + <inkscape:path-effect + is_visible="true" + id="path-effect28700" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect28696" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect28690" + effect="spiro" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28686" + is_visible="true" /> + <inkscape:path-effect + is_visible="true" + id="path-effect28600" + effect="spiro" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28430" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28426" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28422" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28418" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28414" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28410" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28406" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28402" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28398" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28394" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28390" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28386" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28382" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28378" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28374" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28370" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28366" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28362" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28358" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28354" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28326" + is_visible="true" /> + <inkscape:path-effect + is_visible="true" + id="path-effect28324" + effect="spiro" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28322" + is_visible="true" /> + <inkscape:path-effect + is_visible="true" + id="path-effect28320" + effect="spiro" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28318" + is_visible="true" /> + <inkscape:path-effect + is_visible="true" + id="path-effect28306" + effect="spiro" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28304" + is_visible="true" /> + <inkscape:path-effect + is_visible="true" + id="path-effect28302" + effect="spiro" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28300" + is_visible="true" /> + <inkscape:path-effect + is_visible="true" + id="path-effect28298" + effect="spiro" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28286" + is_visible="true" /> + <inkscape:path-effect + is_visible="true" + id="path-effect28284" + effect="spiro" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28282" + is_visible="true" /> + <inkscape:path-effect + is_visible="true" + id="path-effect28280" + effect="spiro" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28278" + is_visible="true" /> + <inkscape:path-effect + is_visible="true" + id="path-effect28266" + effect="spiro" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28264" + is_visible="true" /> + <inkscape:path-effect + is_visible="true" + id="path-effect28262" + effect="spiro" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28260" + is_visible="true" /> + <inkscape:path-effect + is_visible="true" + id="path-effect28258" + effect="spiro" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28239" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect27876" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect27872" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect27868" + is_visible="true" /> + <inkscape:path-effect + is_visible="true" + id="path-effect27864" + effect="spiro" /> + <inkscape:path-effect + effect="spiro" + id="path-effect27860" + is_visible="true" /> + <inkscape:path-effect + is_visible="true" + id="path-effect27856" + effect="spiro" /> + <inkscape:path-effect + effect="spiro" + id="path-effect27852" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect27848" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect25895" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect25355" + is_visible="true" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5375-6" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5346-3" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5346-9-1" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5371-5" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5437-9" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5441-8" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5455-7" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5455-3-4" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5532-1" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5556-5" + effect="spiro" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3116" + id="linearGradient3124" + gradientUnits="userSpaceOnUse" + x1="-228.81355" + y1="93.220337" + x2="-228.81355" + y2="299.06125" + gradientTransform="matrix(0.73022822,0,0,0.78261209,129.3881,-47.29312)" /> + <linearGradient + inkscape:collect="always" + id="linearGradient3116"> + <stop + style="stop-color:#eeeeec;stop-opacity:1;" + offset="0" + id="stop3118" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="1" + id="stop3120" /> + </linearGradient> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + id="perspective2859" /> + <inkscape:perspective + id="perspective2878" + inkscape:persp3d-origin="372.04724 : 350.78739 : 1" + inkscape:vp_z="744.09448 : 526.18109 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 526.18109 : 1" + sodipodi:type="inkscape:persp3d" /> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath7751"> + <rect + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="rect7753" + width="1027" + height="1251.4175" + x="82" + y="58.944653" /> + </clipPath> + <inkscape:path-effect + is_visible="true" + id="path-effect5371-2" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5455-3" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5455-9" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5346-9" + effect="spiro" /> + <linearGradient + id="linearGradient6621"> + <stop + id="stop6622" + offset="0.0000000" + style="stop-color:#f5a108;stop-opacity:0.0000000;" /> + <stop + id="stop6623" + offset="1.0000000" + style="stop-color:#fefdc3;stop-opacity:0.74251497;" /> + </linearGradient> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 526.18109 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="744.09448 : 526.18109 : 1" + inkscape:persp3d-origin="372.04724 : 350.78739 : 1" + id="perspective10-7" /> + <linearGradient + inkscape:collect="always" + id="linearGradient9903"> + <stop + style="stop-color:#f57900;stop-opacity:1" + offset="0" + id="stop9905" /> + <stop + style="stop-color:#204a87;stop-opacity:1" + offset="1" + id="stop9907" /> + </linearGradient> + <inkscape:path-effect + effect="" + id="path-effect10445" /> + <inkscape:perspective + sodipodi:type="inkscape:persp3d" + inkscape:vp_x="0 : 526.18109 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_z="744.09448 : 526.18109 : 1" + inkscape:persp3d-origin="372.04724 : 350.78739 : 1" + id="perspective10" /> + <inkscape:perspective + id="perspective9536" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective9550" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective9566" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective9588" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective9648" + inkscape:persp3d-origin="213.545 : 172.78666 : 1" + inkscape:vp_z="427.09 : 259.17999 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 259.17999 : 1" + sodipodi:type="inkscape:persp3d" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9903" + id="radialGradient9909" + cx="-32.233803" + cy="286.41132" + fx="-32.233803" + fy="286.41132" + r="103.50868" + gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)" + gradientUnits="userSpaceOnUse" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9903" + id="radialGradient9418" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)" + cx="-32.233803" + cy="286.41132" + fx="-32.233803" + fy="286.41132" + r="103.50868" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9903" + id="radialGradient9420" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)" + cx="-32.233803" + cy="286.41132" + fx="-32.233803" + fy="286.41132" + r="103.50868" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9903" + id="radialGradient9422" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)" + cx="-32.233803" + cy="286.41132" + fx="-32.233803" + fy="286.41132" + r="103.50868" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9903" + id="radialGradient9424" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)" + cx="-32.233803" + cy="286.41132" + fx="-32.233803" + fy="286.41132" + r="103.50868" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9903" + id="radialGradient9426" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)" + cx="-32.233803" + cy="286.41132" + fx="-32.233803" + fy="286.41132" + r="103.50868" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9903" + id="radialGradient9428" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)" + cx="-32.233803" + cy="286.41132" + fx="-32.233803" + fy="286.41132" + r="103.50868" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9903" + id="radialGradient9430" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)" + cx="-32.233803" + cy="286.41132" + fx="-32.233803" + fy="286.41132" + r="103.50868" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9903" + id="radialGradient9432" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)" + cx="-32.233803" + cy="286.41132" + fx="-32.233803" + fy="286.41132" + r="103.50868" /> + <inkscape:perspective + id="perspective10609" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective10715" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective10761" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective10799" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective10837" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective10881" + inkscape:persp3d-origin="0.5 : 0.33333333 : 1" + inkscape:vp_z="1 : 0.5 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 0.5 : 1" + sodipodi:type="inkscape:persp3d" /> + <inkscape:perspective + id="perspective10184" + inkscape:persp3d-origin="372.04724 : 350.78739 : 1" + inkscape:vp_z="744.09448 : 526.18109 : 1" + inkscape:vp_y="0 : 1000 : 0" + inkscape:vp_x="0 : 526.18109 : 1" + sodipodi:type="inkscape:persp3d" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9903" + id="radialGradient9394" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)" + cx="-32.233803" + cy="286.41132" + fx="-32.233803" + fy="286.41132" + r="103.50868" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9903" + id="radialGradient9396" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)" + cx="-32.233803" + cy="286.41132" + fx="-32.233803" + fy="286.41132" + r="103.50868" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9903" + id="radialGradient9398" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)" + cx="-32.233803" + cy="286.41132" + fx="-32.233803" + fy="286.41132" + r="103.50868" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9903" + id="radialGradient9400" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9591297,-0.02665241,0.0355031,1.0123418,-31.205183,-8.9855775)" + cx="-32.233803" + cy="286.41132" + fx="-32.233803" + fy="286.41132" + r="103.50868" /> + <inkscape:path-effect + is_visible="true" + id="path-effect3843-9" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect3802-2" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect3000" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect3798" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect3802" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect3827" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect3839" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect3843" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5338" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5342" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5346" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5371" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5375" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5437" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5441" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5447" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5451" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5455" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5501" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5532" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5556" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect5650" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect8142" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect8146" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect8150" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect8154" + effect="spiro" /> + <inkscape:path-effect + effect="spiro" + id="path-effect5346-2" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect5346-9-5" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect5441-0" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect5455-2" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect5455-3-3" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect5532-9" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect8142-8" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect8146-0" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect8154-3" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect27868-0" + is_visible="true" /> + <inkscape:path-effect + is_visible="true" + id="path-effect27864-2" + effect="spiro" /> + <inkscape:path-effect + effect="spiro" + id="path-effect27860-1" + is_visible="true" /> + <inkscape:path-effect + is_visible="true" + id="path-effect27856-8" + effect="spiro" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28430-7" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28426-5" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28422-6" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28418-0" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28414-1" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28410-2" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28406-1" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28402-0" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28398-4" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28394-0" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28390-1" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28386-3" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28382-2" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28378-0" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28374-7" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28370-5" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28366-2" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28362-3" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28358-5" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect28354-6" + is_visible="true" /> + <inkscape:path-effect + effect="spiro" + id="path-effect27852-8" + is_visible="true" /> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#515151" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="1" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="230.35999" + inkscape:cy="368.30151" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + borderlayer="true" + inkscape:showpageshadow="false" + inkscape:window-width="2560" + inkscape:window-height="1381" + inkscape:window-x="1600" + inkscape:window-y="27" + inkscape:window-maximized="1" /> + <metadata + id="metadata25158"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1" + transform="translate(0,947.63782)"> + <path + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans" + d="m 484.25772,-744.8835 -0.68845,0.17 c 4.43674,17.14881 12.67543,33.30876 23.95098,46.96995 6.50678,7.88346 13.97743,14.9169 20.026,23.06819 6.04574,8.14748 10.71171,17.80096 10.50281,27.87735 -0.11599,5.59497 -1.75003,11.11273 -4.35036,16.0871 -2.60085,4.97526 -6.15117,9.42509 -10.17176,13.36784 -8.04194,7.88627 -17.8579,13.73187 -27.26798,20.04692 -9.41129,6.31588 -18.70343,13.37144 -24.89862,22.94352 -3.09823,4.78702 -5.36198,10.16528 -6.21974,15.81966 -0.85797,5.65607 -0.26483,11.59337 2.07874,16.83022 3.10676,6.94224 9.05593,12.23923 15.60704,16.00304 6.54776,3.7619 13.74662,6.15241 20.79938,8.69847 7.0522,2.54587 14.09554,5.31832 20.13349,9.6736 6.03329,4.35192 11.04646,10.50518 12.61561,17.72647 1.26152,5.80555 0.219,11.98004 -2.16864,17.45549 -2.38893,5.47836 -6.0596,10.32648 -10.13544,14.74374 -8.1527,8.8355 -18.13109,16.29739 -24.38009,26.72698 -5.90635,9.85768 -7.25529,21.7371 -4.92239,32.9895 l -0.009,0.0737 -0.002,-0.0109 c -2.2957,-11.07299 -0.27353,-22.98966 5.53863,-32.69017 6.15444,-10.27172 16.07646,-17.70881 24.28907,-26.60929 4.10682,-4.4508 7.84571,-9.3564 10.27989,-14.93854 2.43545,-5.58508 3.50302,-11.90305 2.20237,-17.88872 -1.61774,-7.44488 -6.7555,-13.71974 -12.89447,-18.14789 -6.13429,-4.42478 -13.24304,-7.21531 -20.30756,-9.76562 -7.06398,-2.55012 -14.2238,-4.93616 -20.68959,-8.65097 -6.46245,-3.71287 -12.28947,-8.92849 -15.31334,-15.68547 -2.28031,-5.0955 -2.86713,-10.88798 -2.02738,-16.42368 0.84003,-5.53737 3.07142,-10.82765 6.12374,-15.54372 6.1059,-9.43413 15.31228,-16.4389 24.69978,-22.73882 9.38871,-6.30072 19.24253,-12.16682 27.36491,-20.13195 4.06158,-3.98295 7.664,-8.49332 10.30731,-13.54983 2.6438,-5.05744 4.29807,-10.68021 4.41671,-16.40262 0.2136,-10.30354 -4.53699,-20.09127 -10.63825,-28.31356 -6.09844,-8.21853 -13.57388,-15.26126 -20.04279,-23.09886 -11.20894,-13.58048 -19.3981,-29.63363 -23.80863,-46.6811 z" + id="path27870" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccsssssssssssssssscccsssssssssssssssscc" /> + <g + id="g13168" + style="fill:#d3d7cf;fill-opacity:1" + transform="matrix(0.40582056,0.04380991,-0.04380991,0.40582056,652.40899,628.54073)" + inkscape:export-filename="/tmp/foundation_back_balloons.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <path + sodipodi:type="arc" + style="fill:#d3d7cf;fill-opacity:1;stroke:none" + id="path13111" + sodipodi:cx="623" + sodipodi:cy="374.36218" + sodipodi:rx="85" + sodipodi:ry="85" + d="m 708,374.36218 a 85,85 0 1 1 -170,0 85,85 0 1 1 170,0 z" + transform="translate(817,157)" /> + <path + style="fill:#d3d7cf;fill-opacity:1;stroke:none" + d="m 1469.2163,621.36218 -0.8981,23.22056 c 0.67,5.05064 0.44,10.10128 -0.586,15.15193 -8.6333,2.87482 -17.0892,3.97558 -25.4403,4.02805 -3.4549,-5.03993 -4.0627,-10.36456 -4.7685,-15.67939 l -7.7396,-25.44913 3.0447,1.03687 6.9961,24.0623 c 9.2676,-1.73376 16.4423,-2.50129 26.2742,-3.38852 l 0.742,-22.04828 z" + id="path13125" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccc" /> + <path + style="fill:#d3d7cf;fill-opacity:1;stroke:none" + d="m 1469.2456,622.20123 c -12.8741,3.17589 -25.7482,3.92213 -38.6223,2.43153 -6.0239,-6.83956 -13.4936,-10.71504 -22.4983,-14.52058 l 37.875,-11.25 42.5,2.375 c -11.9755,9.12898 -17.1552,13.07606 -19.2544,20.96405 z" + id="path13127" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + <g + transform="matrix(0.59696887,-0.11691806,0.11691806,0.59696887,1024.0769,76.160916)" + style="fill:#d3d7cf;fill-opacity:1" + id="g13139"> + <path + transform="matrix(0.897217,0,0,0.897217,145.65406,672.99)" + d="m 413.48068,406.59692 a 7.4246211,7.4246211 0 1 1 -14.84924,0 7.4246211,7.4246211 0 1 1 14.84924,0 z" + sodipodi:ry="7.4246211" + sodipodi:rx="7.4246211" + sodipodi:cy="406.59692" + sodipodi:cx="406.05606" + id="path13141" + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible" + sodipodi:type="arc" /> + <rect + ry="6.3639612" + rx="6.3639612" + y="1045.3806" + x="499.61917" + height="20.578096" + width="20.578096" + id="rect13143" + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline;overflow:visible" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" + id="path13145" + d="m 502.77237,1038.0766 -6.17092,1.513 3.42469,0.5941 -2.27841,1.8587 3.02098,-0.5038 -1.75979,3.1418 4.51103,-3.9774 -0.54974,-1.1424 -0.19784,-1.484 z" + style="fill:#d3d7cf;fill-opacity:1;stroke:none" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccc" + id="path13147" + d="m 517.2506,1038.0766 6.17091,1.513 -3.42468,0.5941 2.2784,1.8587 -3.02098,-0.5038 1.75979,3.1418 -4.51102,-3.9774 0.54973,-1.1424 0.19785,-1.484 z" + style="fill:#d3d7cf;fill-opacity:1;stroke:none" /> + </g> + </g> + <g + id="g13205" + transform="matrix(1.2271648,-0.13485706,0.13485706,1.2271648,-613.91377,410.13783)" + style="fill:#d3d7cf;fill-opacity:1"> + <g + inkscape:export-ydpi="90" + inkscape:export-xdpi="90" + inkscape:export-filename="/tmp/foundation_back_balloons.png" + id="g13183" + style="fill:#d3d7cf;fill-opacity:1" + transform="matrix(0.22234969,0.03876506,-0.03876506,0.22234969,1196.4853,427.96283)"> + <path + sodipodi:type="arc" + style="fill:#d3d7cf;fill-opacity:1;stroke:none" + id="path13185" + sodipodi:cx="623" + sodipodi:cy="374.36218" + sodipodi:rx="85" + sodipodi:ry="85" + d="m 708,374.36218 a 85,85 0 1 1 -170,0 85,85 0 1 1 170,0 z" + transform="translate(817,157)" /> + <path + style="fill:#d3d7cf;fill-opacity:1;stroke:none" + d="m 1469.2163,621.36218 -0.8981,23.22056 c 0.67,5.05064 0.44,10.10128 -0.586,15.15193 -8.6333,2.87482 -17.0892,3.97558 -25.4403,4.02805 -3.4549,-5.03993 -4.0627,-10.36456 -4.7685,-15.67939 l -7.7396,-25.44913 5.8597,0.5461 6.9961,24.0623 c 9.2676,-1.73376 11.2945,-1.60383 21.1264,-2.49106 l 0.742,-22.04828 z" + id="path13187" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccc" /> + <path + style="fill:#d3d7cf;fill-opacity:1;stroke:none" + d="m 1469.2456,622.20123 c -12.8741,3.17589 -25.7482,3.92213 -38.6223,2.43153 -6.0239,-6.83956 -13.4936,-10.71504 -22.4983,-14.52058 l 37.875,-11.25 42.5,2.375 c -11.9755,9.12898 -17.1552,13.07606 -19.2544,20.96405 z" + id="path13189" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" /> + </g> + <path + inkscape:export-ydpi="90" + inkscape:export-xdpi="90" + inkscape:export-filename="/tmp/foundation_back_balloons.png" + d="m 1495.2215,627.94342 a 0.75130099,1.7456698 0 1 1 -1.5026,0 0.75130099,1.7456698 0 1 1 1.5026,0 z" + sodipodi:ry="1.7456698" + sodipodi:rx="0.75130099" + sodipodi:cy="627.94342" + sodipodi:cx="1494.4702" + id="path13203" + style="fill:#d3d7cf;fill-opacity:1;stroke:none" + sodipodi:type="arc" /> + </g> + <g + transform="matrix(1.8888451,-0.09128494,0.09128494,1.8888451,-2778.5243,-1161.3855)" + id="g13248" + style="fill:#d3d7cf;fill-opacity:1"> + <g + transform="matrix(0.22234969,0.03876506,-0.03876506,0.22234969,1196.4853,427.96283)" + style="fill:#d3d7cf;fill-opacity:1" + id="g13250" + inkscape:export-filename="/tmp/foundation_back_balloons.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <path + transform="translate(817,157)" + d="m 708,374.36218 a 85,85 0 1 1 -170,0 85,85 0 1 1 170,0 z" + sodipodi:ry="85" + sodipodi:rx="85" + sodipodi:cy="374.36218" + sodipodi:cx="623" + id="path13252" + style="fill:#d3d7cf;fill-opacity:1;stroke:none" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="ccccccccccc" + inkscape:connector-curvature="0" + id="path13254" + d="m 1469.2163,621.36218 -0.8981,23.22056 c 0.67,5.05064 0.44,10.10128 -0.586,15.15193 -8.6333,2.87482 -17.0892,3.97558 -25.4403,4.02805 -3.4549,-5.03993 -4.0627,-10.36456 -4.7685,-15.67939 l -7.7396,-25.44913 5.8597,0.5461 6.9961,24.0623 c 9.2676,-1.73376 11.2945,-1.60383 21.1264,-2.49106 l 0.742,-22.04828 z" + style="fill:#d3d7cf;fill-opacity:1;stroke:none" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path13256" + d="m 1469.2456,622.20123 c -12.8741,3.17589 -25.7482,3.92213 -38.6223,2.43153 -6.0239,-6.83956 -13.4936,-10.71504 -22.4983,-14.52058 l 37.875,-11.25 42.5,2.375 c -11.9755,9.12898 -17.1552,13.07606 -19.2544,20.96405 z" + style="fill:#d3d7cf;fill-opacity:1;stroke:none" /> + </g> + <path + sodipodi:type="arc" + style="fill:#d3d7cf;fill-opacity:1;stroke:none" + id="path13258" + sodipodi:cx="1494.4702" + sodipodi:cy="627.94342" + sodipodi:rx="0.75130099" + sodipodi:ry="1.7456698" + d="m 1495.2215,627.94342 a 0.75130099,1.7456698 0 1 1 -1.5026,0 0.75130099,1.7456698 0 1 1 1.5026,0 z" + inkscape:export-filename="/tmp/foundation_back_balloons.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" + transform="translate(1.1554165,0.05583948)" /> + <path + transform="translate(-0.56169401,0.66772326)" + inkscape:export-ydpi="90" + inkscape:export-xdpi="90" + inkscape:export-filename="/tmp/foundation_back_balloons.png" + d="m 1495.2215,627.94342 a 0.75130099,1.7456698 0 1 1 -1.5026,0 0.75130099,1.7456698 0 1 1 1.5026,0 z" + sodipodi:ry="1.7456698" + sodipodi:rx="0.75130099" + sodipodi:cy="627.94342" + sodipodi:cx="1494.4702" + id="path28640" + style="fill:#d3d7cf;fill-opacity:1;stroke:none" + sodipodi:type="arc" /> + </g> + <g + transform="matrix(3.3197111,-0.22032999,0.22032999,3.3197111,-4902.6591,-2041.5866)" + id="g13260" + style="fill:#d3d7cf;fill-opacity:1"> + <g + transform="matrix(0.22234969,0.03876506,-0.03876506,0.22234969,1196.4853,427.96283)" + style="fill:#d3d7cf;fill-opacity:1" + id="g13262" + inkscape:export-filename="/tmp/foundation_back_balloons.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + <path + transform="translate(817,157)" + d="m 708,374.36218 a 85,85 0 1 1 -170,0 85,85 0 1 1 170,0 z" + sodipodi:ry="85" + sodipodi:rx="85" + sodipodi:cy="374.36218" + sodipodi:cx="623" + id="path13264" + style="fill:#d3d7cf;fill-opacity:1;stroke:none" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="ccccccccccc" + inkscape:connector-curvature="0" + id="path13266" + d="m 1469.2163,621.36218 -0.8981,23.22056 c 0.67,5.05064 0.44,10.10128 -0.586,15.15193 -8.6333,2.87482 -17.0892,3.97558 -25.4403,4.02805 -3.4549,-5.03993 -4.0627,-10.36456 -4.7685,-15.67939 l -7.7396,-25.44913 5.1759,0.58934 6.9961,24.0623 c 9.2676,-1.73376 12.6621,-1.69031 22.494,-2.57754 l 0.742,-22.04828 z" + style="fill:#d3d7cf;fill-opacity:1;stroke:none" /> + <path + sodipodi:nodetypes="cccccc" + inkscape:connector-curvature="0" + id="path13268" + d="m 1469.2456,622.20123 c -12.8741,3.17589 -25.7482,3.92213 -38.6223,2.43153 -6.0239,-6.83956 -13.4936,-10.71504 -22.4983,-14.52058 l 37.875,-11.25 42.5,2.375 c -11.9755,9.12898 -17.1552,13.07606 -19.2544,20.96405 z" + style="fill:#d3d7cf;fill-opacity:1;stroke:none" /> + </g> + <path + sodipodi:type="arc" + style="fill:#d3d7cf;fill-opacity:1;stroke:none" + id="path13270" + sodipodi:cx="1494.4702" + sodipodi:cy="627.94342" + sodipodi:rx="0.75130099" + sodipodi:ry="1.7456698" + d="m 1495.2215,627.94342 a 0.75130099,1.7456698 0 1 1 -1.5026,0 0.75130099,1.7456698 0 1 1 1.5026,0 z" + inkscape:export-filename="/tmp/foundation_back_balloons.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90" /> + </g> + <g + id="g25865" + transform="matrix(0.53981537,0,0,0.53981537,-221.45137,628.23822)"> + <path + style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.2721293;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" + d="m 1058.544,142.76916 0.3774,6.03738" + id="path4970" + inkscape:connector-curvature="0" /> + <path + id="path4972" + d="m 1042.0648,143.61235 -0.1959,6.03738" + style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.2721293;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" + inkscape:connector-curvature="0" /> + <path + style="fill:#d3d7cf;stroke-width:1px" + d="m 1026.5473,98.427497 c 14.647,-4.82062 29.6443,-2.09612 36.2243,-1.13201 0,0 10.78,29.258953 2.547,39.620313 -6.8403,8.60872 -20.2842,11.31588 -29.1492,4.81103 -11.9068,-8.73682 -8.6009,-27.35977 -9.6221,-43.299333 z" + id="path4930" + sodipodi:nodetypes="ccssc" + inkscape:connector-curvature="0" /> + <path + style="fill:#d3d7cf;stroke-width:1px" + d="m 1062.7937,97.324217 -2.4759,-8.14767 c -3.1113,3.81529 -3.7398,4.8355 -3.5112,8.65079 l 5.9871,-0.50312 z" + id="path4932" + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccc" + id="path4934" + d="m 1026.5614,98.572687 -0.4462,-8.14767 c 4.4795,3.81529 5.474,4.8355 6.6137,8.65079 l -6.1675,-0.50312 z" + style="fill:#d3d7cf;stroke-width:1px" + inkscape:connector-curvature="0" /> + <path + style="fill:#d3d7cf;stroke-width:1px" + d="m 1065.0247,114.49622 c 13.427,5.40854 23.9434,13.15237 21.0133,18.25514 -10.1535,-4.13645 -17.9241,-8.31972 -24.7732,-12.52117 l 3.7599,-5.73397 z" + id="path4936" + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccc" + id="path4938" + d="m 1029.8395,117.17689 c -12.9486,6.47052 -22.8084,15.03486 -19.4774,19.88549 9.788,-4.93936 17.1972,-9.73392 23.6862,-14.47238 l -4.2084,-5.41336 z" + style="fill:#d3d7cf;stroke-width:1px" + inkscape:connector-curvature="0" /> + <path + sodipodi:type="arc" + style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path4940" + sodipodi:cx="358" + sodipodi:cy="459.36218" + sodipodi:rx="7" + sodipodi:ry="7" + d="m 365,459.36218 c 0,3.866 -3.13401,7 -7,7 -3.86599,0 -7,-3.134 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z" + transform="matrix(0.50498666,0,0,0.73857575,872.50231,-229.23358)" /> + <path + transform="matrix(0.50498666,0,0,0.73857575,857.1573,-228.60468)" + d="m 365,459.36218 c 0,3.866 -3.13401,7 -7,7 -3.86599,0 -7,-3.134 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z" + sodipodi:ry="7" + sodipodi:rx="7" + sodipodi:cy="459.36218" + sodipodi:cx="358" + id="path4942" + style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none" + sodipodi:type="arc" /> + <path + style="fill:#d3d7cf;stroke-width:1px" + d="m 1052.5742,117.7326 c -3.6547,-0.85721 -7.5369,-1.33633 -12.8973,0.64056 l 6.4565,7.03803 6.4408,-7.67859 z" + id="path4879-7" + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" /> + <path + transform="matrix(0.12290156,0,0,0.17975151,1007.8633,29.816997)" + d="m 365,459.36218 c 0,3.866 -3.13401,7 -7,7 -3.86599,0 -7,-3.134 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z" + sodipodi:ry="7" + sodipodi:rx="7" + sodipodi:cy="459.36218" + sodipodi:cx="358" + id="path4966" + style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path4968" + sodipodi:cx="358" + sodipodi:cy="459.36218" + sodipodi:rx="7" + sodipodi:ry="7" + d="m 365,459.36218 c 0,3.866 -3.13401,7 -7,7 -3.86599,0 -7,-3.134 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z" + transform="matrix(0.12290156,0,0,0.17975151,992.68598,31.074787)" /> + <path + style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.2721293;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" + d="m 1059.124,150.08762 0.6813,1.58777" + id="path4976" + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cc" + id="path4978" + d="m 1059.4192,149.71182 c 0.8428,-0.0649 1.9441,0.0408 3.5715,0.494" + style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.2721293;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" + inkscape:connector-curvature="0" /> + <path + style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.2721293;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" + d="m 1058.3509,149.76773 c -0.8429,-0.0649 -1.9441,0.0408 -3.5716,0.494" + id="path4980" + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cc" + id="path4982" + d="m 1041.8127,150.08762 -0.6228,1.41219" + style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.2721293;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" + inkscape:connector-curvature="0" /> + <path + style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.2721293;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" + d="m 1041.5175,149.71182 c -0.8428,-0.0649 -1.9441,0.0408 -3.5715,0.494" + id="path4984" + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cc" + id="path4986" + d="m 1042.5858,149.76773 c 0.8428,-0.0649 1.9441,0.0408 3.5715,0.494" + style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.2721293;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" + inkscape:connector-curvature="0" /> + </g> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccccccccccccccccszsc" + id="path3625" + d="m 1415.2551,82.389437 c -1.7732,-6.5057 -1.9791,-11.64964 -2.5995,-17.15366 -1.1768,2.13757 -2.3272,4.28609 -2.1018,7.00597 -2.145,-2.57027 -3.3038,-5.7001 -4.2775,-8.93496 -0.7319,2.33639 -1.4216,4.69311 -1.5185,7.33551 -2.5383,-1.87014 -4.8749,-4.06146 -7.057,-6.499 0.034,2.28267 -0.034,4.56763 0.6423,6.83604 -2.6766,-1.18196 -5.3174,-2.46461 -7.6972,-4.48418 l 0.5183,3.00886 c -1.0206,-0.38857 -1.5292,-0.20529 -3.1815,-1.29943 -0.1835,0.17863 -0.355,0.55565 -0.3801,0.87952 -0.9201,-0.33937 -2.344,-0.60878 -3.8846,-2.22498 0.051,0.43557 0.091,0.86806 0.3024,1.34776 -2.2388,-0.45667 -4.4226,-2.00087 -6.625,-3.17683 2.2681,2.61651 4.5749,5.42959 6.649,7.06073 -0.5477,-0.1084 -0.8556,0.13908 -1.1911,0.34561 2.9202,0.72131 4.7576,1.67366 6.5197,2.64205 -0.9959,0.55171 -1.9518,1.13528 -2.5714,1.98767 2.4928,0.55146 4.2105,1.70214 5.9633,2.82566 -1.1918,0.61604 -2.1759,1.59805 -3.1008,2.68443 3.5788,-0.26127 7.3175,-0.16131 11.2654,0.41151 -2.549,1.43745 -4.582,3.64064 -6.4746,6.05217 2.4997,-0.55058 4.9744,-1.27407 7.6274,-0.76099 -0.5004,0.55068 -0.6276,1.26403 -0.7186,1.9932 3.9929,-2.44333 8.1198,-4.71713 12.846,-6.23251 0.8512,-0.53561 6.9835,2.84453 10.5418,4.8046 1.6103,0.88696 2.1178,1.8013 2.4382,1.30595 0.3285,-0.50789 -0.9826,-0.90121 -2.4384,-1.72 -3.3346,-1.87542 -8.9212,-4.62123 -9.4962,-6.04073 z" + style="fill:#d3d7cf;stroke-width:1px" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 520.20683,1363.3277 c 0.83827,0.9206 1.91702,-9.2632 0.84483,-12.3103 1.57335,3.012 3.01724,9.8965 3.37931,14.7241 -0.32899,-4.9708 0.51224,-8.4973 1.32759,-11.4655 0.38441,4.5164 0.24623,9.3804 3.74138,11.8276 l 0.84483,-7.2414 c -0.0283,3.6892 2.03029,5.2915 3.86207,7.1207 0.92194,-1.8841 0.0111,-4.5013 -0.60345,-7 1.45035,1.9638 3.04252,3.3617 4.10345,6.8793 0.16373,-4.2767 -0.62349,-8.0576 -1.56896,-11.5862 2.57431,3.4851 4.46539,7.0956 4.7069,9.6552 l 1.68965,-8.569 c 0.49771,4.6452 1.55458,7.9857 3.01725,10.3793 3.32486,-3.5047 2.4162,-8.4207 3.13793,-12.7931 0.61989,-0.4133 4.15143,13.3243 2.17242,14.2414 -0.4515,0.2092 5.91379,-16.6552 5.91379,-16.6552 -0.56114,0.3741 -4.32145,16.3178 -1.81034,15.6897 0.8446,-0.2113 2.05515,-2.2363 1.31013,-5.4525 1.96836,12.0156 3.32286,4.8433 2.55194,-3.8406 -0.0747,-0.8416 1.56897,7.8448 1.56897,7.8448 l 2.2931,-10.8621 1.81035,9.7759 0.96552,-6.5173 1.81034,10.3794 3.25863,-15.8104 -1.32759,17.0173 6.15518,-15.8104 c 0,0 0.48275,13.8793 0.60344,12.7931 0.12069,-1.0862 2.77587,-7.3621 2.77587,-7.3621 0,0 0.12069,8.4483 0.60345,7.3621 0.48276,-1.0862 2.05172,-6.2759 2.05172,-6.2759 0,0 2.77587,-5.3103 2.89656,-5.9138 0.12069,-0.6034 3.86207,11.3449 3.86207,11.3449 l 2.17242,-16.5345 0.12069,13.3965 4.22414,-7 0.96551,5.1897 3.01725,-9.1724 -2.4138,13.0345 6.75863,-6.7587 -0.24138,12.3104 -85.44835,-0.1207 -1.93103,-13.6379 z" + id="path25893" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccscscsccccccccscscscccccccccccc" /> + <path + sodipodi:nodetypes="ccccccccccccccscscsccccccccscscscccccccccccc" + inkscape:connector-curvature="0" + id="path26182" + d="m 570.20683,1363.3277 c 0.83827,0.9206 1.91702,-9.2632 0.84483,-12.3103 1.57335,3.012 3.01724,9.8965 3.37931,14.7241 -0.32899,-4.9708 0.51224,-8.4973 1.32759,-11.4655 0.38441,4.5164 0.24623,9.3804 3.74138,11.8276 l 0.84483,-7.2414 c -0.0283,3.6892 2.03029,5.2915 3.86207,7.1207 0.92194,-1.8841 0.0111,-4.5013 -0.60345,-7 1.45035,1.9638 3.04252,3.3617 4.10345,6.8793 0.16373,-4.2767 -0.62349,-8.0576 -1.56896,-11.5862 2.57431,3.4851 4.46539,7.0956 4.7069,9.6552 l 1.68965,-8.569 c 0.49771,4.6452 1.55458,7.9857 3.01725,10.3793 3.32486,-3.5047 2.4162,-8.4207 3.13793,-12.7931 0.61989,-0.4133 4.15143,13.3243 2.17242,14.2414 -0.4515,0.2092 5.91379,-16.6552 5.91379,-16.6552 -0.56114,0.3741 -4.32145,16.3178 -1.81034,15.6897 0.8446,-0.2113 2.05515,-2.2363 1.31013,-5.4525 1.96836,12.0156 3.32286,4.8433 2.55194,-3.8406 -0.0747,-0.8416 1.56897,7.8448 1.56897,7.8448 l 2.2931,-10.8621 1.81035,9.7759 0.96552,-6.5173 1.81034,10.3794 3.25863,-15.8104 -1.32759,17.0173 6.15518,-15.8104 c 0,0 0.48275,13.8793 0.60344,12.7931 0.12069,-1.0862 2.77587,-7.3621 2.77587,-7.3621 0,0 0.12069,8.4483 0.60345,7.3621 0.48276,-1.0862 2.05172,-6.2759 2.05172,-6.2759 0,0 2.77587,-5.3103 2.89656,-5.9138 0.12069,-0.6034 3.86207,11.3449 3.86207,11.3449 l 2.17242,-16.5345 0.12069,13.3965 4.22414,-7 0.96551,5.1897 3.01725,-9.1724 -2.4138,13.0345 6.75863,-6.7587 -0.24138,12.3104 -85.44835,-0.1207 -1.93103,-13.6379 z" + style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 630.20683,1363.3277 c 0.83827,0.9206 1.91702,-9.2632 0.84483,-12.3103 1.57335,3.012 3.01724,9.8965 3.37931,14.7241 -0.32899,-4.9708 0.51224,-8.4973 1.32759,-11.4655 0.38441,4.5164 0.24623,9.3804 3.74138,11.8276 l 0.84483,-7.2414 c -0.0283,3.6892 2.03029,5.2915 3.86207,7.1207 0.92194,-1.8841 0.0111,-4.5013 -0.60345,-7 1.45035,1.9638 3.04252,3.3617 4.10345,6.8793 0.16373,-4.2767 -0.62349,-8.0576 -1.56896,-11.5862 2.57431,3.4851 4.46539,7.0956 4.7069,9.6552 l 1.68965,-8.569 c 0.49771,4.6452 1.55458,7.9857 3.01725,10.3793 3.32486,-3.5047 2.4162,-8.4207 3.13793,-12.7931 0.61989,-0.4133 4.15143,13.3243 2.17242,14.2414 -0.4515,0.2092 5.91379,-16.6552 5.91379,-16.6552 -0.56114,0.3741 -4.32145,16.3178 -1.81034,15.6897 0.8446,-0.2113 2.05515,-2.2363 1.31013,-5.4525 1.96836,12.0156 3.32286,4.8433 2.55194,-3.8406 -0.0747,-0.8416 1.56897,7.8448 1.56897,7.8448 l 2.2931,-10.8621 1.81035,9.7759 0.96552,-6.5173 1.81034,10.3794 3.25863,-15.8104 -1.32759,17.0173 6.15518,-15.8104 c 0,0 0.48275,13.8793 0.60344,12.7931 0.12069,-1.0862 2.77587,-7.3621 2.77587,-7.3621 0,0 0.12069,8.4483 0.60345,7.3621 0.48276,-1.0862 2.05172,-6.2759 2.05172,-6.2759 0,0 2.77587,-5.3103 2.89656,-5.9138 0.12069,-0.6034 3.86207,11.3449 3.86207,11.3449 l 2.17242,-16.5345 0.12069,13.3965 4.22414,-7 0.96551,5.1897 3.01725,-9.1724 -2.4138,13.0345 6.75863,-6.7587 -0.24138,12.3104 -85.44835,-0.1207 -1.93103,-13.6379 z" + id="path26184" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccscscsccccccccscscscccccccccccc" /> + <path + sodipodi:nodetypes="ccccccccccccccscscsccccccccscscscccccccccccc" + inkscape:connector-curvature="0" + id="path26186" + d="m 11.20683,1046.3277 c 0.83827,0.9206 1.91702,-9.2632 0.84483,-12.3103 1.57335,3.012 3.01724,9.8965 3.37931,14.7241 -0.32899,-4.9708 0.51224,-8.4973 1.32759,-11.4655 0.38441,4.5164 0.24623,9.3804 3.74138,11.8276 l 0.84483,-7.2414 c -0.0283,3.6892 2.03029,5.2915 3.86207,7.1207 0.92194,-1.8841 0.0111,-4.5013 -0.60345,-7 1.45035,1.9638 3.04252,3.3617 4.10345,6.8793 0.16373,-4.2767 -0.62349,-8.0576 -1.56896,-11.5862 2.57431,3.4851 4.46539,7.0956 4.7069,9.6552 l 1.68965,-8.569 c 0.49771,4.6452 1.55458,7.9857 3.01725,10.3793 3.32486,-3.5047 2.4162,-8.4207 3.13793,-12.7931 0.61989,-0.4133 4.15143,13.3243 2.17242,14.2414 -0.4515,0.2092 5.91379,-16.6552 5.91379,-16.6552 -0.56114,0.3741 -4.32145,16.3178 -1.81034,15.6897 0.8446,-0.2113 2.05515,-2.2363 1.31013,-5.4525 1.96836,12.0156 3.32286,4.8433 2.55194,-3.8406 -0.0747,-0.8416 1.56897,7.8448 1.56897,7.8448 l 2.2931,-10.8621 1.81035,9.7759 0.96552,-6.5173 1.81034,10.3794 3.25863,-15.8104 -1.32759,17.0173 6.15518,-15.8104 c 0,0 0.48275,13.8793 0.60344,12.7931 0.12069,-1.0862 2.77587,-7.3621 2.77587,-7.3621 0,0 0.12069,8.4483 0.60345,7.3621 0.48276,-1.0862 2.05172,-6.2759 2.05172,-6.2759 0,0 2.77587,-5.3103 2.89656,-5.9138 0.12069,-0.6034 3.86207,11.3449 3.86207,11.3449 l 2.17242,-16.5345 0.12069,13.3965 4.22414,-7 0.96551,5.1897 3.01725,-9.1724 -2.4138,13.0345 6.75863,-6.7587 -0.24138,12.3104 -85.44835,-0.1207 -1.93103,-13.6379 z" + style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 760.20683,1363.3277 c 0.83827,0.9206 1.91702,-9.2632 0.84483,-12.3103 1.57335,3.012 3.01724,9.8965 3.37931,14.7241 -0.32899,-4.9708 0.51224,-8.4973 1.32759,-11.4655 0.38441,4.5164 0.24623,9.3804 3.74138,11.8276 l 0.84483,-7.2414 c -0.0283,3.6892 2.03029,5.2915 3.86207,7.1207 0.92194,-1.8841 0.0111,-4.5013 -0.60345,-7 1.45035,1.9638 3.04252,3.3617 4.10345,6.8793 0.16373,-4.2767 -0.62349,-8.0576 -1.56896,-11.5862 2.57431,3.4851 4.46539,7.0956 4.7069,9.6552 l 1.68965,-8.569 c 0.49771,4.6452 1.55458,7.9857 3.01725,10.3793 3.32486,-3.5047 2.4162,-8.4207 3.13793,-12.7931 0.61989,-0.4133 4.15143,13.3243 2.17242,14.2414 -0.4515,0.2092 5.91379,-16.6552 5.91379,-16.6552 -0.56114,0.3741 -4.32145,16.3178 -1.81034,15.6897 0.8446,-0.2113 2.05515,-2.2363 1.31013,-5.4525 1.96836,12.0156 3.32286,4.8433 2.55194,-3.8406 -0.0747,-0.8416 1.56897,7.8448 1.56897,7.8448 l 2.2931,-10.8621 1.81035,9.7759 0.96552,-6.5173 1.81034,10.3794 3.25863,-15.8104 -1.32759,17.0173 6.15518,-15.8104 c 0,0 0.48275,13.8793 0.60344,12.7931 0.12069,-1.0862 2.77587,-7.3621 2.77587,-7.3621 0,0 0.12069,8.4483 0.60345,7.3621 0.48276,-1.0862 2.05172,-6.2759 2.05172,-6.2759 0,0 2.77587,-5.3103 2.89656,-5.9138 0.12069,-0.6034 3.86207,11.3449 3.86207,11.3449 l 2.17242,-16.5345 0.12069,13.3965 4.22414,-7 0.96551,5.1897 3.01725,-9.1724 -2.4138,13.0345 6.75863,-6.7587 -0.24138,12.3104 -85.44835,-0.1207 -1.93103,-13.6379 z" + id="path26188" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccscscsccccccccscscscccccccccccc" /> + <path + sodipodi:nodetypes="ccccccccccccccscscsccccccccscscscccccccccccc" + inkscape:connector-curvature="0" + id="path26190" + d="m 840.20683,1363.3277 c 0.83827,0.9206 1.91702,-9.2632 0.84483,-12.3103 1.57335,3.012 3.01724,9.8965 3.37931,14.7241 -0.32899,-4.9708 0.51224,-8.4973 1.32759,-11.4655 0.38441,4.5164 0.24623,9.3804 3.74138,11.8276 l 0.84483,-7.2414 c -0.0283,3.6892 2.03029,5.2915 3.86207,7.1207 0.92194,-1.8841 0.0111,-4.5013 -0.60345,-7 1.45035,1.9638 3.04252,3.3617 4.10345,6.8793 0.16373,-4.2767 -0.62349,-8.0576 -1.56896,-11.5862 2.57431,3.4851 4.46539,7.0956 4.7069,9.6552 l 1.68965,-8.569 c 0.49771,4.6452 1.55458,7.9857 3.01725,10.3793 3.32486,-3.5047 2.4162,-8.4207 3.13793,-12.7931 0.61989,-0.4133 4.15143,13.3243 2.17242,14.2414 -0.4515,0.2092 5.91379,-16.6552 5.91379,-16.6552 -0.56114,0.3741 -4.32145,16.3178 -1.81034,15.6897 0.8446,-0.2113 2.05515,-2.2363 1.31013,-5.4525 1.96836,12.0156 3.32286,4.8433 2.55194,-3.8406 -0.0747,-0.8416 1.56897,7.8448 1.56897,7.8448 l 2.2931,-10.8621 1.81035,9.7759 0.96552,-6.5173 1.81034,10.3794 3.25863,-15.8104 -1.32759,17.0173 6.15518,-15.8104 c 0,0 0.48275,13.8793 0.60344,12.7931 0.12069,-1.0862 2.77587,-7.3621 2.77587,-7.3621 0,0 0.12069,8.4483 0.60345,7.3621 0.48276,-1.0862 2.05172,-6.2759 2.05172,-6.2759 0,0 2.77587,-5.3103 2.89656,-5.9138 0.12069,-0.6034 3.86207,11.3449 3.86207,11.3449 l 2.17242,-16.5345 0.12069,13.3965 4.22414,-7 0.96551,5.1897 3.01725,-9.1724 -2.4138,13.0345 6.75863,-6.7587 -0.24138,12.3104 -85.44835,-0.1207 -1.93103,-13.6379 z" + style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 890.20683,1363.3277 c 0.83827,0.9206 1.91702,-9.2632 0.84483,-12.3103 1.57335,3.012 3.01724,9.8965 3.37931,14.7241 -0.32899,-4.9708 0.51224,-8.4973 1.32759,-11.4655 0.38441,4.5164 0.24623,9.3804 3.74138,11.8276 l 0.84483,-7.2414 c -0.0283,3.6892 2.03029,5.2915 3.86207,7.1207 0.92194,-1.8841 0.0111,-4.5013 -0.60345,-7 1.45035,1.9638 3.04252,3.3617 4.10345,6.8793 0.16373,-4.2767 -0.62349,-8.0576 -1.56896,-11.5862 2.57431,3.4851 4.46539,7.0956 4.7069,9.6552 l 1.68965,-8.569 c 0.49771,4.6452 1.55458,7.9857 3.01725,10.3793 3.32486,-3.5047 2.4162,-8.4207 3.13793,-12.7931 0.61989,-0.4133 4.15143,13.3243 2.17242,14.2414 -0.4515,0.2092 5.91379,-16.6552 5.91379,-16.6552 -0.56114,0.3741 -4.32145,16.3178 -1.81034,15.6897 0.8446,-0.2113 2.05515,-2.2363 1.31013,-5.4525 1.96836,12.0156 3.32286,4.8433 2.55194,-3.8406 -0.0747,-0.8416 1.56897,7.8448 1.56897,7.8448 l 2.2931,-10.8621 1.81035,9.7759 0.96552,-6.5173 1.81034,10.3794 3.25863,-15.8104 -1.32759,17.0173 6.15518,-15.8104 c 0,0 0.48275,13.8793 0.60344,12.7931 0.12069,-1.0862 2.77587,-7.3621 2.77587,-7.3621 0,0 0.12069,8.4483 0.60345,7.3621 0.48276,-1.0862 2.05172,-6.2759 2.05172,-6.2759 0,0 2.77587,-5.3103 2.89656,-5.9138 0.12069,-0.6034 3.86207,11.3449 3.86207,11.3449 l 2.17242,-16.5345 0.12069,13.3965 4.22414,-7 0.96551,5.1897 3.01725,-9.1724 -2.4138,13.0345 6.75863,-6.7587 -0.24138,12.3104 -85.44835,-0.1207 -1.93103,-13.6379 z" + id="path26192" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccscscsccccccccscscscccccccccccc" /> + <path + sodipodi:nodetypes="ccccccccccccccscscsccccccccscscscccccccccccc" + inkscape:connector-curvature="0" + id="path26194" + d="m 940.20683,1363.3277 c 0.83827,0.9206 1.91702,-9.2632 0.84483,-12.3103 1.57335,3.012 3.01724,9.8965 3.37931,14.7241 -0.32899,-4.9708 0.51224,-8.4973 1.32759,-11.4655 0.38441,4.5164 0.24623,9.3804 3.74138,11.8276 l 0.84483,-7.2414 c -0.0283,3.6892 2.03029,5.2915 3.86207,7.1207 0.92194,-1.8841 0.0111,-4.5013 -0.60345,-7 1.45035,1.9638 3.04252,3.3617 4.10345,6.8793 0.16373,-4.2767 -0.62349,-8.0576 -1.56896,-11.5862 2.57431,3.4851 4.46539,7.0956 4.7069,9.6552 l 1.68965,-8.569 c 0.49771,4.6452 1.55458,7.9857 3.01725,10.3793 3.32486,-3.5047 2.4162,-8.4207 3.13793,-12.7931 0.61989,-0.4133 4.15143,13.3243 2.17242,14.2414 -0.4515,0.2092 5.91379,-16.6552 5.91379,-16.6552 -0.56114,0.3741 -4.32145,16.3178 -1.81034,15.6897 0.8446,-0.2113 2.05515,-2.2363 1.31013,-5.4525 1.96836,12.0156 3.32286,4.8433 2.55194,-3.8406 -0.0747,-0.8416 1.56897,7.8448 1.56897,7.8448 l 2.2931,-10.8621 1.81035,9.7759 0.96552,-6.5173 1.81034,10.3794 3.25863,-15.8104 -1.32759,17.0173 6.15518,-15.8104 c 0,0 0.48275,13.8793 0.60344,12.7931 0.12069,-1.0862 2.77587,-7.3621 2.77587,-7.3621 0,0 0.12069,8.4483 0.60345,7.3621 0.48276,-1.0862 2.05169,-6.2759 2.05169,-6.2759 0,0 2.7759,-5.3103 2.8966,-5.9138 0.1207,-0.6034 3.8621,11.3449 3.8621,11.3449 l 2.1724,-16.5345 0.1207,13.3965 4.2241,-7 0.9655,5.1897 3.0173,-9.1724 -2.4138,13.0345 6.7586,-6.7587 -0.2414,12.3104 -85.44833,-0.1207 -1.93103,-13.6379 z" + style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 980.20683,1363.3277 c 0.83827,0.9206 1.91702,-9.2632 0.84483,-12.3103 1.57335,3.012 3.01724,9.8965 3.37931,14.7241 -0.32899,-4.9708 0.51224,-8.4973 1.32759,-11.4655 0.38441,4.5164 0.24623,9.3804 3.74138,11.8276 l 0.84483,-7.2414 c -0.0283,3.6892 2.03029,5.2915 3.86207,7.1207 0.92194,-1.8841 0.0111,-4.5013 -0.60345,-7 1.45035,1.9638 3.04252,3.3617 4.10345,6.8793 0.16373,-4.2767 -0.62349,-8.0576 -1.56896,-11.5862 2.57431,3.4851 4.46542,7.0956 4.70692,9.6552 l 1.6896,-8.569 c 0.4977,4.6452 1.5546,7.9857 3.0173,10.3793 3.3248,-3.5047 2.4162,-8.4207 3.1379,-12.7931 0.6199,-0.4133 4.1514,13.3243 2.1724,14.2414 -0.4515,0.2092 5.9138,-16.6552 5.9138,-16.6552 -0.5611,0.3741 -4.3214,16.3178 -1.8103,15.6897 0.8446,-0.2113 2.0551,-2.2363 1.3101,-5.4525 1.9684,12.0156 3.3229,4.8433 2.5519,-3.8406 -0.075,-0.8416 1.569,7.8448 1.569,7.8448 l 2.2931,-10.8621 1.8104,9.7759 0.9655,-6.5173 1.8103,10.3794 3.2587,-15.8104 -1.3276,17.0173 6.1552,-15.8104 c 0,0 0.4827,13.8793 0.6034,12.7931 0.1207,-1.0862 2.7759,-7.3621 2.7759,-7.3621 0,0 0.1207,8.4483 0.6034,7.3621 0.4828,-1.0862 2.0517,-6.2759 2.0517,-6.2759 0,0 2.7759,-5.3103 2.8966,-5.9138 0.1207,-0.6034 3.8621,11.3449 3.8621,11.3449 l 2.1724,-16.5345 0.1207,13.3965 4.2241,-7 0.9655,5.1897 3.0173,-9.1724 -2.4138,13.0345 6.7586,-6.7587 -0.2414,12.3104 -85.44833,-0.1207 -1.93103,-13.6379 z" + id="path26196" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccscscsccccccccscscscccccccccccc" /> + <path + sodipodi:nodetypes="ccccccccccccccscscsccccccccscsccscccccccccccc" + inkscape:connector-curvature="0" + id="path26198" + d="m 1040.2068,1363.3277 c 0.8383,0.9206 1.9171,-9.2632 0.8449,-12.3103 1.5733,3.012 3.0172,9.8965 3.3793,14.7241 -0.329,-4.9708 0.5122,-8.4973 1.3276,-11.4655 0.3844,4.5164 0.2462,9.3804 3.7413,11.8276 l 0.8449,-7.2414 c -0.028,3.6892 2.0303,5.2915 3.862,7.1207 0.922,-1.8841 0.011,-4.5013 -0.6034,-7 1.4503,1.9638 3.0425,3.3617 4.1034,6.8793 0.1638,-4.2767 -0.6234,-8.0576 -1.5689,-11.5862 2.5743,3.4851 4.4654,7.0956 4.7069,9.6552 l 1.6896,-8.569 c 0.4977,4.6452 1.5546,7.9857 3.0173,10.3793 3.3248,-3.5047 2.4162,-8.4207 3.1379,-12.7931 0.6199,-0.4133 4.1514,13.3243 2.1724,14.2414 -0.4515,0.2092 5.9138,-16.6552 5.9138,-16.6552 -0.5611,0.3741 -4.3214,16.3178 -1.8103,15.6897 0.8446,-0.2113 2.0551,-2.2363 1.3101,-5.4525 1.9684,12.0156 3.3229,4.8433 2.552,-3.8406 -0.075,-0.8416 1.5689,7.8448 1.5689,7.8448 l 2.2931,-10.8621 1.8104,9.7759 0.9655,-6.5173 1.8103,10.3794 3.2587,-15.8104 -1.3276,17.0173 6.1552,-15.8104 c 0,0 1.8085,13.1722 1.9292,12.086 0.1207,-1.0862 1.4501,-6.655 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.58292,5.9713 -3.64721,12.2107 1.56946,17.5552 2.51761,-1.9084 4.79913,-4.7353 6.27783,-10.6858 -0.0728,4.674 -1.06973,10.692 -0.16815,14.1023 l 0,2.6897 -75.69823,0 0,-2.6897 0,0 z" + id="path12576-5-9" + sodipodi:nodetypes="cccccccccccsscccccccccccccccccccccc" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccccccccccccccccccc" + id="path12580-7-0" + d="m 132.81566,1049.8953 c 1.87231,-5.4248 5.07012,-15.0547 4.68792,-27.7557 1.00957,8.9002 0.94114,22.5174 -0.35464,26.3578 l 3.16283,-6.9903 c -1.54128,6.9061 -1.33123,8.5126 -0.26088,7.5159 3.07773,-3.7157 3.08023,-9.8804 2.18079,-13.9933 l 1.8017,12.9756 c 1.50141,-1.9912 1.8017,-10.5368 3.30311,-19.5906 l 1.50143,19.3362 2.40226,-13.23 c 0.45035,4.0707 -0.56408,8.1415 3.6034,12.2123 2.24985,-1.5439 3.15443,-4.9875 3.00283,-9.9225 l 1.50141,9.4136 2.70256,-18.8273 c -0.0526,8.5783 0.4542,21.674 -0.30029,19.5906 l 1.20114,2.0354 -0.42188,3.9113 -29.71369,-0.01 0,-3.0322 z" + style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none" + inkscape:connector-curvature="0" /> + <path + style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 407.45451,1049.2785 c -0.60185,-1.6384 2.28453,5.7741 1.84436,-11.4894 0.19328,10.8048 3.26737,5.7403 1.7751,10.9603 l 5.24185,-10.4154 c -1.775,9.3869 -1.76159,11.1136 -0.52893,9.7588 1.71654,-5.5074 3.09034,-3.8332 2.96845,-9.652 l 1.61794,9.1827 c 1.72909,-2.7065 1.84642,4.1855 3.57551,-8.1206 l 1.95758,8.4602 2.76654,-8.843 c 0.51865,5.533 -1.79204,2.8406 3.00738,8.3737 -0.15557,-4.8451 2.02862,-1.9808 1.85402,-8.6887 l 1.04363,8.6825 3.79782,-7.7685 1.49443,7.6882 c 2.90601,-4.5644 2.56366,-3.2149 3.00121,-8.6022 l 0.80279,8.5775 1.98845,-11.097 c -1.03304,8.7252 0.7159,0.6453 2.27252,11.097 3.37445,-4.024 4.35675,-3.2856 4.96496,-8.2317 l 0.33964,8.2256 2.57511,-11.0662 c -1.05464,11.9883 0.99217,-0.9284 1.57471,11.06 1.38327,-2.0849 2.08108,-3.5034 3.46435,-8.2194 l 0.4508,7.4104 2.43925,-9.3371 c -0.51378,8.1163 0.76437,3.495 2.52571,9.4668 2.21894,-2.594 4.00133,-1.1812 5.3046,-9.2692 -0.0642,6.353 -0.94283,7.2212 -0.1482,11.8567 l 0,3.6557 -63.97158,0 0,-3.6557 0,0 z" + id="path12584-7-3" + sodipodi:nodetypes="cccccccccccccccccccccccccccccccc" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccccccccccccccccccccccccccccccc" + id="path12588-5-7" + d="m 532.66534,1049.2785 c -0.60185,-1.6384 2.28453,5.7741 1.84437,-11.4894 0.19328,10.8048 3.26736,5.7403 1.77509,10.9603 l 5.24185,-10.4154 c -1.775,9.3869 -1.76159,11.1136 -0.52893,9.7588 1.71654,-5.5074 3.09034,-3.8332 2.96846,-9.652 l 1.61793,9.1827 c 1.72909,-2.7065 1.84642,4.1855 3.57551,-8.1206 l 1.95759,8.4602 2.76653,-8.843 c 0.51865,5.533 -1.79204,2.8406 3.00739,8.3737 -0.15558,-4.8451 2.02861,-1.9808 1.85401,-8.6887 l 1.04364,8.6825 3.79782,-7.7685 1.49443,7.6882 c 2.90601,-4.5644 2.56365,-3.2149 3.0012,-8.6022 l 0.8028,8.5775 1.98844,-11.097 c -1.03303,8.7252 0.7159,0.6453 2.27253,11.097 3.37445,-4.024 4.35675,-3.2856 4.96495,-8.2317 l 0.33964,8.2256 2.57512,-11.0662 c -1.05464,11.9883 0.99217,-0.9284 1.5747,11.06 1.38327,-2.0849 2.08109,-3.5034 3.46436,-8.2194 l 0.45079,7.4104 2.43926,-9.3371 c -0.51378,8.1163 0.76437,3.495 2.52571,9.4668 2.21893,-2.594 4.00132,-1.1812 5.3046,-9.2692 -0.0642,6.353 -0.94283,7.2212 -0.1482,11.8567 l 0,3.6557 -63.97159,0 0,-3.6557 0,0 z" + style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none" + inkscape:connector-curvature="0" /> + <path + style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 526.16374,1042.1626 c 1.77499,6.7152 1.5331,8.2773 0.30044,7.3081 -3.54444,-3.613 -3.54731,-9.6073 -2.51148,-13.6066 l -2.07491,12.6171 c -1.72909,-1.9362 -2.07491,-10.2457 -3.804,-19.0493 l -1.72909,18.8019 -2.76654,-12.8645 c -0.51865,3.9583 0.6496,7.9166 -4.14982,11.8749 -2.59102,-1.5012 -3.63278,-4.8496 -3.45818,-9.6483 l -1.72909,9.1535 -3.11236,-18.307 c 0.0607,8.3412 -0.52308,21.075 0.34582,19.0492 l -1.38328,1.9791 c -2.90601,-3.2653 -3.02062,-8.0209 -3.45818,-11.8748 l -0.34582,9.8957 -5.18726,-19.544 c 1.03303,6.2419 2.93989,12.067 1.38327,19.544 -3.37445,-2.8787 -5.2707,-6.1099 -5.87891,-9.6483 l 0.34582,9.1535 -6.91636,-26.2236 c 1.05464,8.5763 3.34908,17.1525 2.76655,25.7288 -1.38327,-1.4915 -2.76655,-5.285 -4.14982,-8.6587 l 0.69164,7.9166 -4.49564,-15.8332 c 0.51378,5.8063 3.21455,11.8733 -1.38327,17.0701 -2.21894,-1.8557 -4.22982,-4.6045 -5.53309,-10.3905 0.0642,4.5448 0.94283,10.3965 0.1482,13.7126 l 0,2.6153 66.71818,0 -8.63282,-10.7716 0,0 z" + id="path12600-8-4" + sodipodi:nodetypes="cccccccccccccccccccccccccccccc" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccccccccccccccccccc" + id="path12602-7-6" + d="m 594.2443,1049.8953 c 1.87231,-5.4248 5.07012,-15.0547 4.68792,-27.7557 1.00957,8.9002 0.94114,22.5174 -0.35464,26.3578 l 3.16283,-6.9903 c -1.54128,6.9061 -1.33123,8.5126 -0.26088,7.5159 3.07773,-3.7157 3.08023,-9.8804 2.18079,-13.9933 l 1.8017,12.9756 c 1.50141,-1.9912 1.8017,-10.5368 3.30311,-19.5906 l 1.50143,19.3362 2.40226,-13.2301 c 0.45035,4.0708 -0.56408,8.1416 3.6034,12.2124 2.24985,-1.5439 3.15443,-4.9875 3.00283,-9.9225 l 1.50141,9.4136 2.70256,-18.8273 c -0.0526,8.5783 0.4542,21.674 -0.30029,19.5906 l 1.20114,2.0354 -0.42188,3.9112 -29.71369,0.01 0,-3.049 z" + style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 429.33175,-837.98321 -9.64025,62.35683 66.97422,36.23883 5.41947,-68.21115 -62.75344,-30.38451" + id="path27846" + inkscape:path-effect="#path-effect27848" + inkscape:original-d="m 429.33175,-837.98321 -9.64025,62.35683 66.97422,36.23883 5.41947,-68.21115 z" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;fill:none;stroke:#d3d7cf;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 446,178 c -9.13256,306.38426 -45.31968,611.95717 -108.00251,911.9998 -60.54182,289.7943 -145.79424,574.422 -254.52874,849.7815" + id="path27874" + inkscape:path-effect="#path-effect27876" + inkscape:original-d="M 446,178 C 470.02123,469.61571 367.17561,795.30772 337.99749,1089.9998 308.81936,1384.6919 160.7775,1656.1653 83.46875,1939.7813" + inkscape:connector-curvature="0" + transform="translate(0,-947.63782)" + sodipodi:nodetypes="csc" /> + <g + transform="matrix(-0.4144134,0,0,0.4144134,721.72027,583.93245)" + id="g28642"> + <path + inkscape:connector-curvature="0" + id="path28644" + d="m 1058.544,139.65426 0.3774,6.03738" + style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.95967817;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" /> + <path + inkscape:connector-curvature="0" + style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.95967817;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" + d="m 1042.0648,140.49745 -0.1959,6.03738" + id="path28646" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccssc" + id="path28648" + d="m 1026.5473,98.427497 c 14.647,-4.82062 29.6443,-2.09612 36.2243,-1.13201 0,0 10.78,29.258953 2.547,39.620313 -6.8403,8.60872 -20.2842,11.31588 -29.1492,4.81103 -11.9068,-8.73682 -8.6009,-27.35977 -9.6221,-43.299333 z" + style="fill:#d3d7cf;stroke-width:1px" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" + id="path28650" + d="m 1062.7937,97.324217 -2.4759,-8.14767 c -3.1113,3.81529 -3.7398,4.8355 -3.5112,8.65079 l 5.9871,-0.50312 z" + style="fill:#d3d7cf;stroke-width:1px" /> + <path + inkscape:connector-curvature="0" + style="fill:#d3d7cf;stroke-width:1px" + d="m 1026.5614,98.572687 -0.4462,-8.14767 c 4.4795,3.81529 5.474,4.8355 6.6137,8.65079 l -6.1675,-0.50312 z" + id="path28652" + sodipodi:nodetypes="cccc" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" + id="path28654" + d="m 1055.5897,113.86586 c 11.1488,-9.23252 22.9656,-14.793646 26.0579,-9.7875 -8.4717,6.95949 -15.8501,11.80119 -22.8057,15.82389 l -3.2522,-6.03639 z" + style="fill:#d3d7cf;stroke-width:1px" /> + <path + inkscape:connector-curvature="0" + style="fill:#d3d7cf;stroke-width:1px" + d="m 1034.0643,112.65769 c -13.2123,-5.91359 -26.0861,-8.11097 -27.7264,-2.45998 10.0246,4.43959 18.4293,7.13109 26.2074,9.14643 l 1.5194,-6.6863 z" + id="path28656" + sodipodi:nodetypes="cccc" /> + <path + transform="matrix(0.50498666,0,0,0.73857575,872.50231,-229.23358)" + d="m 365,459.36218 c 0,3.866 -3.13401,7 -7,7 -3.86599,0 -7,-3.134 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z" + sodipodi:ry="7" + sodipodi:rx="7" + sodipodi:cy="459.36218" + sodipodi:cx="358" + id="path28658" + style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path28660" + sodipodi:cx="358" + sodipodi:cy="459.36218" + sodipodi:rx="7" + sodipodi:ry="7" + d="m 365,459.36218 c 0,3.866 -3.13401,7 -7,7 -3.86599,0 -7,-3.134 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z" + transform="matrix(0.50498666,0,0,0.73857575,857.1573,-228.60468)" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" + id="path28662" + d="m 1052.5742,117.7326 c -3.6547,-0.85721 -7.5369,-1.33633 -12.8973,0.64056 l 6.4565,7.03803 6.4408,-7.67859 z" + style="fill:#d3d7cf;stroke-width:1px" /> + <path + sodipodi:type="arc" + style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path28664" + sodipodi:cx="358" + sodipodi:cy="459.36218" + sodipodi:rx="7" + sodipodi:ry="7" + d="m 365,459.36218 c 0,3.866 -3.13401,7 -7,7 -3.86599,0 -7,-3.134 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z" + transform="matrix(0.12290156,0,0,0.17975151,1007.8633,29.816997)" /> + <path + transform="matrix(0.12290156,0,0,0.17975151,992.68598,31.074787)" + d="m 365,459.36218 c 0,3.866 -3.13401,7 -7,7 -3.86599,0 -7,-3.134 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z" + sodipodi:ry="7" + sodipodi:rx="7" + sodipodi:cy="459.36218" + sodipodi:cx="358" + id="path28666" + style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none" + sodipodi:type="arc" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" + id="path28668" + d="m 1059.124,146.97272 0.6813,1.58777" + style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.95967817;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" /> + <path + inkscape:connector-curvature="0" + style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.95967817;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" + d="m 1059.4192,146.59692 c 0.8428,-0.0649 1.9441,0.0408 3.5715,0.494" + id="path28670" + sodipodi:nodetypes="cc" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" + id="path28672" + d="m 1058.3509,146.65283 c -0.8429,-0.0649 -1.9441,0.0408 -3.5716,0.494" + style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.95967817;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" /> + <path + inkscape:connector-curvature="0" + style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.95967817;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" + d="m 1041.8127,146.97272 -0.6228,1.41219" + id="path28674" + sodipodi:nodetypes="cc" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" + id="path28676" + d="m 1041.5175,146.59692 c -0.8428,-0.0649 -1.9441,0.0408 -3.5715,0.494" + style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.95967817;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" /> + <path + inkscape:connector-curvature="0" + style="fill:#d3d7cf;stroke:#d3d7cf;stroke-width:2.95967817;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" + d="m 1042.5858,146.65283 c 0.8428,-0.0649 1.9441,0.0408 3.5715,0.494" + id="path28678" + sodipodi:nodetypes="cc" /> + </g> + <path + style="color:#000000;fill:none;stroke:#d3d7cf;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 310.03122,274.55531 c 1.25264,-4.94354 4.09371,-9.4715 8,-12.75 1.4472,-1.21462 3.09751,-2.28633 4.96112,-2.59724 0.9318,-0.15545 1.90435,-0.11199 2.79886,0.19177 0.89452,0.30377 1.70665,0.87576 2.24002,1.65547 0.46215,0.67559 0.70529,1.49057 0.73861,2.30843 0.0333,0.81786 -0.13823,1.63787 -0.45037,2.39455 -0.62427,1.51338 -1.78355,2.74547 -3.03824,3.79702 -4.20079,3.52068 -9.78015,5.34997 -15.25,5" + id="path28684" + inkscape:path-effect="#path-effect28686" + inkscape:original-d="m 310.03122,274.55531 c 0,0 3.70344,-10.15902 8,-12.75 2.8625,-1.72619 7.93374,-3.37758 10,-0.75 1.84078,2.34085 2.5,3.5 -2.75,8.5 -5.25,5 -15.25,5 -15.25,5 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csssc" /> + <path + sodipodi:nodetypes="csssc" + inkscape:connector-curvature="0" + inkscape:original-d="m 309.53123,275.14698 c 0,0 2.355,6.38485 5.08717,8.01325 1.82026,1.0849 5.04504,2.12278 6.35897,0.47137 1.17055,-1.4712 1.58974,-2.19972 -1.74872,-5.34217 -3.33846,-3.14245 -9.69742,-3.14245 -9.69742,-3.14245 z" + inkscape:path-effect="#path-effect28690" + id="path28688" + d="m 309.53123,275.14698 c 0.82576,3.10583 2.62785,5.94447 5.08717,8.01325 0.92064,0.77444 1.97026,1.45935 3.1569,1.65738 0.59333,0.099 1.2128,0.0706 1.78178,-0.12454 0.56899,-0.19517 1.08462,-0.56231 1.42029,-1.06147 0.28713,-0.42698 0.43663,-0.94007 0.4549,-1.4543 0.0183,-0.51422 -0.0916,-1.02914 -0.2893,-1.50419 -0.39538,-0.95011 -1.12501,-1.72336 -1.91432,-2.38368 -2.67114,-2.23461 -6.22333,-3.3857 -9.69742,-3.14245" + style="color:#000000;fill:none;stroke:#d3d7cf;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:none;stroke:#d3d7cf;stroke-width:2.71428561;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="path28692" + sodipodi:cx="353.875" + sodipodi:cy="1001.875" + sodipodi:rx="2.375" + sodipodi:ry="2.375" + d="m 356.25,1001.875 a 2.375,2.375 0 1 1 -4.75,0 2.375,2.375 0 1 1 4.75,0 z" + transform="matrix(0.7368421,0,0,0.7368421,47.781223,-463.66837)" /> + <path + inkscape:connector-curvature="0" + style="fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 214.95123,1049.8953 c -1.87231,-5.4248 -5.07012,-15.0547 -4.68792,-27.7557 -1.00957,8.9002 -0.94114,22.5174 0.35464,26.3578 l -3.16283,-6.9903 c 1.54128,6.9061 1.33123,8.5126 0.26088,7.5159 -3.07773,-3.7157 -3.08023,-9.8804 -2.18079,-13.9933 l -1.8017,12.9756 c -1.50141,-1.9912 -1.8017,-10.5368 -3.30311,-19.5906 l -1.50143,19.3362 -2.40226,-13.23 c -0.45035,4.0707 0.56408,8.1415 -3.6034,12.2123 -2.24985,-1.5439 -3.15443,-4.9875 -3.00283,-9.9225 l -1.50141,9.4136 -2.70256,-18.8273 c 0.0526,8.5783 -0.4542,21.674 0.30029,19.5906 l -1.20114,2.0354 0.42188,3.9113 29.71369,-0.01 0,-3.0322 z" + id="path28721" + sodipodi:nodetypes="cccccccccccccccccccc" /> + <g + id="g6110" + transform="matrix(0.69694484,0,0,0.69694484,16.36315,319.94188)"> + <g + id="g28130" + transform="matrix(-1,0,0,1,762.70024,-5.0462202)"> + <rect + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect5433" + width="16.176094" + height="12.905448" + x="694.82861" + y="949.72052" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 727.66131,928.16587 c 0,14.09086 -15.03072,29.06625 -25.73408,29.06625 -10.70332,0 -25.73404,-14.97539 -25.73404,-29.06625 0,-14.09082 11.52151,-25.51367 25.73404,-25.51367 14.21254,0 25.73408,11.42285 25.73408,25.51367 z" + id="path2996" + inkscape:connector-curvature="0" + sodipodi:nodetypes="szsss" /> + <path + style="fill:#d3d7cf;fill-opacity:1;stroke:none" + d="m 726.84256,917.94175 c 2.39506,-3.59219 5.7116,-6.56446 9.54376,-8.55309 4.39853,-2.28254 9.46709,-3.25415 14.3979,-2.75999 -2.14436,0.50571 -4.13116,1.66049 -5.63196,3.27344 -1.13082,1.21532 -1.98652,2.68518 -2.48502,4.26862 1.50687,-0.25301 3.08785,-0.046 4.47874,0.58659 1.1811,0.53713 2.22288,1.37727 2.99804,2.41776 0.77515,1.0405 1.28204,2.27913 1.45872,3.56454 -2.29971,-1.55491 -5.06284,-2.41484 -7.83877,-2.43955 -2.21416,-0.0197 -4.43126,0.48692 -6.4171,1.46638 1.58671,0.71676 3.04723,1.71185 4.2949,2.92622 1.69704,1.65175 2.99512,3.7106 3.75387,5.95393 -2.91261,-2.31439 -6.34119,-3.97571 -9.96256,-4.82738 -2.27324,-0.53462 -4.62064,-0.75293 -6.95348,-0.64668 l -1.63704,-5.23079" + id="path5344" + inkscape:path-effect="#path-effect5346-2" + inkscape:original-d="m 726.84256,917.94175 c 0,0 5.52089,-6.44051 9.54376,-8.55309 4.02285,-2.11263 14.3979,-2.75999 14.3979,-2.75999 0,0 -4.29263,1.83892 -5.63196,3.27344 -1.33932,1.43451 -2.48502,4.26862 -2.48502,4.26862 0,0 2.90773,-0.46564 4.47874,0.58659 1.57102,1.0522 4.45676,5.9823 4.45676,5.9823 0,0 -5.43494,-2.34235 -7.83877,-2.43955 -2.40385,-0.097 -6.4171,1.46638 -6.4171,1.46638 0,0 2.92442,1.44143 4.2949,2.92622 1.37048,1.48479 3.75387,5.95393 3.75387,5.95393 0,0 -7.11763,-4.01537 -9.96256,-4.82738 -2.84491,-0.812 -6.95348,-0.64668 -6.95348,-0.64668 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="czczczczczczcc" /> + <path + style="fill:#d3d7cf;fill-opacity:1;stroke:none" + d="m 677.15452,911.0864 c -1.25411,-1.18872 -2.64658,-2.23137 -4.14027,-3.10013 -4.30649,-2.50475 -9.46586,-3.51085 -14.39792,-2.80765 2.14908,0.52637 4.13504,1.70059 5.63196,3.32996 1.1377,1.23837 1.99366,2.73408 2.48501,4.34234 -1.50787,-0.24971 -3.08884,-0.0391 -4.47873,0.59673 -1.19427,0.54631 -2.24507,1.40278 -3.02102,2.46233 -0.77596,1.05955 -1.27535,2.31983 -1.43575,3.62329 2.28896,-1.5806 5.05723,-2.45701 7.83878,-2.48169 2.21672,-0.0197 4.43634,0.49631 6.41709,1.49172 -1.58896,0.73469 -3.04921,1.74678 -4.2949,2.97675 -1.70609,1.68457 -3.00437,3.77931 -3.75386,6.05676 2.9083,-2.33909 6.33604,-4.0287 9.96254,-4.91076 0.82552,-0.20079 1.66107,-0.36032 2.50249,-0.47779 0.0703,-1.24283 0.27544,-2.478 0.6108,-3.67679 0.33979,-1.21463 0.81321,-2.39183 1.40897,-3.50352 l -2.02009,-0.69813 c -0.017,-0.63474 0.0524,-1.27174 0.20559,-1.88795 0.11431,-0.45976 0.27517,-0.90794 0.47931,-1.33547" + id="path5344-2" + inkscape:path-effect="#path-effect5346-9-5" + inkscape:original-d="m 677.15452,911.0864 c -1.37831,-1.24703 -2.83781,-2.40434 -4.14027,-3.10013 -1.30246,-0.69579 -14.39792,-2.80765 -14.39792,-2.80765 0,0 4.29265,1.87068 5.63196,3.32996 1.33932,1.4593 2.48501,4.34234 2.48501,4.34234 0,0 -2.90772,-0.47366 -4.47873,0.59673 -1.571,1.07037 -4.45677,6.08562 -4.45677,6.08562 0,0 5.43493,-2.38283 7.83878,-2.48169 2.40385,-0.0987 6.41709,1.49172 6.41709,1.49172 0,0 -2.92441,1.46631 -4.2949,2.97675 -1.37047,1.51042 -3.75386,6.05676 -3.75386,6.05676 0,0 9.1861,-4.68532 9.96254,-4.91076 0.77644,-0.22544 1.64701,-0.37683 2.50249,-0.47779 0,0 0.26965,-2.50199 0.6108,-3.67679 0.34116,-1.1748 1.40897,-3.50352 1.40897,-3.50352 l -2.02009,-0.69813 c 0,0 0.0814,-1.34908 0.20559,-1.88795 0.1242,-0.53887 0.47931,-1.33547 0.47931,-1.33547 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="czczczczczczczcczc" /> + <path + sodipodi:nodetypes="cccccccccccssssssscsssssss" + inkscape:connector-curvature="0" + id="rect5392" + transform="matrix(-1,0,0,1,762.70024,-942.5916)" + d="M 46.96875,1902.25 34.125,1951.9062 c 1.604317,-0.9648 4.293697,-2.6598 6.03125,-4.25 2.56469,-2.3469 7.8125,-9.1247 7.8125,-9.125 0,0 -4.21558,7.1338 -6.71875,10.0626 -2.50317,2.9284 -8.09375,7.4687 -8.09375,7.4687 l -0.03125,-0.3125 -2.71875,10.4688 55.3125,0 L 72.3125,1902.25 z m 14.9375,10.2812 c 1.139011,0 2.0625,0.9265 2.0625,2.0626 0,1.1357 -0.923489,2.0624 -2.0625,2.0624 -1.139011,0 -2.0625,-0.9267 -2.0625,-2.0624 0,-1.1361 0.923489,-2.0626 2.0625,-2.0626 z M 65.75,1926.875 c 1.432393,0 2.59375,1.1652 2.59375,2.5938 0,1.4283 -1.161357,2.5936 -2.59375,2.5936 -1.432393,2e-4 -2.59375,-1.1653 -2.59375,-2.5936 0,-1.4286 1.161357,-2.5938 2.59375,-2.5938 z m 3.1875,18.25 c 1.691259,0 3.0625,1.3759 3.0625,3.0625 0,1.6866 -1.371241,3.0625 -3.0625,3.0625 -1.691259,0 -3.0625,-1.3759 -3.0625,-3.0625 0,-1.6866 1.371241,-3.0625 3.0625,-3.0625 z" + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + style="fill:#d3d7cf;fill-opacity:1;stroke:none" + d="m 714.91398,959.39957 c 5.89574,5.83122 10.3729,13.08672 12.94086,20.97142 3.06107,9.39877 3.38095,19.67261 0.9105,29.24361 l -11.617,-11.85338 -2.23436,-38.36165" + id="path5439" + inkscape:path-effect="#path-effect5441-0" + inkscape:original-d="m 714.91398,959.39957 c 0,0 10.49548,13.13381 12.94086,20.97142 3.10142,9.93972 0.9105,29.24361 0.9105,29.24361 l -11.617,-11.85338 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csccc" /> + <path + style="fill:#d3d7cf;fill-opacity:1;stroke:none" + d="m 688.11771,1009.4428 c -1.1257,6.8029 -1.75004,13.6888 -1.86626,20.5832 -0.13901,8.246 0.4494,16.5042 1.75615,24.6472 l 9.8629,-1.4938 c -1.59151,-8.4784 -2.04663,-17.1694 -1.34939,-25.7676 0.52372,-6.4584 1.6959,-12.864 3.4932,-19.0893 l -11.8966,1.1203" + id="path5453" + inkscape:path-effect="#path-effect5455-2" + inkscape:original-d="m 688.11771,1009.4428 c 0,0 -1.78078,11.8442 -1.86626,20.5832 -0.0854,8.7389 1.75615,24.6472 1.75615,24.6472 l 9.8629,-1.4938 c 0,0 -1.83373,-16.9598 -1.34939,-25.7676 0.48432,-8.8075 3.4932,-19.0893 3.4932,-19.0893 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="czcczcc" /> + <path + style="fill:#d3d7cf;fill-opacity:1;stroke:none" + d="m 704.82305,1005.0053 c -1.48262,8.2551 -2.27503,16.634 -2.36626,25.0207 -0.0897,8.2453 0.49832,16.4979 1.75616,24.6472 l 9.8629,-1.4938 c -1.43169,-8.5001 -1.88543,-17.1645 -1.3494,-25.7676 0.49558,-7.9539 1.8366,-15.8548 3.9932,-23.5268 l -11.8966,1.1203" + id="path5453-0" + inkscape:path-effect="#path-effect5455-3-3" + inkscape:original-d="m 704.82305,1005.0053 c 0,0 -2.28076,16.2817 -2.36626,25.0207 -0.0854,8.7389 1.75616,24.6472 1.75616,24.6472 l 9.8629,-1.4938 c 0,0 -1.83374,-16.9598 -1.3494,-25.7676 0.48433,-8.8075 3.9932,-23.5268 3.9932,-23.5268 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="czcczcc" /> + <path + style="fill:#d3d7cf;fill-opacity:1;stroke:none" + d="m 727.25,925.23717 c -0.0587,-3.58271 -0.85744,-7.15167 -2.3315,-10.41762 -2.00987,-4.45312 -5.28485,-8.32684 -9.3416,-11.04945 l 2.82843,3.9948 c -2.50214,-1.60831 -5.15408,-2.98346 -7.91028,-4.10182 -7.49422,-3.04087 -15.76451,-4.14601 -23.79422,-3.17959 l 4.14124,4.09835 c -2.40338,0.14833 -4.77096,0.84961 -6.86741,2.03414 -2.86308,1.61768 -5.20398,4.14357 -6.59966,7.12119 2.70996,0.57573 5.41831,1.15907 8.125,1.75 13.96273,3.04837 27.88134,6.29882 41.75,9.75" + id="path8152" + inkscape:path-effect="#path-effect8154-3" + inkscape:original-d="m 727.25,925.23717 c 0,0 -0.8442,-6.43043 -2.3315,-10.41762 -1.4873,-3.98719 -9.3416,-11.04945 -9.3416,-11.04945 l 2.82843,3.9948 c 0,0 -2.41265,-1.61112 -7.91028,-4.10182 -5.49764,-2.49069 -23.79422,-3.17959 -23.79422,-3.17959 l 4.14124,4.09835 c 0,0 -3.37883,0.79515 -6.86741,2.03414 -3.48858,1.239 -6.59966,7.12119 -6.59966,7.12119 l 8.125,1.75 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="czcczcczccc" /> + </g> + <path + sodipodi:nodetypes="ccccsccsccc" + inkscape:connector-curvature="0" + id="path28237" + d="m 71.875,954.86218 11.771446,19.4253 10.103554,-8.4253 5.5,-6 c 0,0 5.52929,4.3689 4.75,8.5 -0.64971,3.4442 -5,2.75 -5,2.75 l -1.460938,2.1016 c 0,0 0.547928,1.7204 -0.41406,3.7109 -1.934659,4.003 -7.959782,11.6486 -14.890927,16.7537 l -7.79502,-18.435 z" + style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + inkscape:original-d="m 92.84651,968.01914 c 0.125,-0.51005 2.21875,-6.80069 2.21875,-6.80069 l 2.4375,1.27513 -1.125,5.56813 z" + inkscape:path-effect="#path-effect28725" + id="path28723" + d="m 92.84651,968.01914 2.21875,-6.80069 2.4375,1.27513 -1.125,5.56813 -3.53125,-0.0426" + style="color:#000000;fill:#d3d7cf;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + </g> + <g + id="g6124" + transform="matrix(0.69694484,0,0,0.69694484,172.36315,319.94188)"> + <path + sodipodi:nodetypes="ccscscssscccccccsccc" + id="path2818" + d="m 547.73949,955.82629 c -3.77984,2.5267 -7.46694,5.26689 -10.88114,8.52508 -1.80852,-0.40937 -3.76705,-0.62002 -5.76604,-0.62002 -3.21728,0 -6.21681,0.99316 -8.71102,2.63503 -0.0102,-0.005 -0.0258,0.005 -0.0307,0 -2.91472,-2.77682 -6.56213,-4.66831 -10.23009,-6.54106 1.18386,5.16664 1.92402,10.93964 4.06099,14.75604 0,0 0,0.0226 0,0.0313 -0.35366,1.26869 -0.52407,2.61678 -0.46495,3.96802 0.20802,4.75785 3.60702,8.89587 7.78051,11.29162 l 2.00842,-7.11719 -1.32592,7.60558 c -3.58243,18.48081 -4.33121,36.61961 0.86801,54.00251 -4.58228,1.8641 -4.39738,4.4447 -2.63497,7.2851 l 39.77325,0.31 c 12.21957,-37.6458 -13.41015,-40.2903 -18.56918,-65.68948 2.57853,-3.1766 4.1328,-7.20604 3.96803,-10.97408 -0.13541,-3.09909 -1.40945,-5.54062 -3.41003,-7.37812 1.61568,-3.60228 2.44401,-7.99318 3.56506,-12.0901 l -1.9e-4,0 z" + style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none" + inkscape:connector-curvature="0" /> + <g + id="g27777" + style="fill:#d3d7cf" + transform="matrix(1.376527,0,0,1.376527,-65.04686,370.49324)"> + <path + style="fill:#d3d7cf;fill-opacity:1" + d="m 312.64148,411.07632 0.25,2.4375 c 0.4261,3.7924 2.1311,6.7068 4.8125,8.3125 1.2232,0.7325 2.97675,1.50955 3.90625,1.71875 0.9295,0.2091 2.26765,0.38185 2.96875,0.40625 l 1.28125,0.0625 -0.34375,-2.5 c -0.1865,-1.3632 -0.59045,-3.08815 -0.90625,-3.84375 -1.4521,-3.4756 -5.1469,-5.9064 -9.6875,-6.375 l -2.28125,-0.21875 z" + id="path27773" + inkscape:connector-curvature="0" /> + <path + style="fill:#d3d7cf;fill-opacity:1" + d="m 328.89148,422.35757 0,38 0,37.4375 2.875,0 0,-37.4375 0,-38 -1.4375,0 -1.4375,0 z" + id="path27771" + inkscape:connector-curvature="0" /> + <path + style="fill:#d3d7cf;fill-opacity:1" + d="m 347.17273,423.63882 c -0.51748,-0.0199 -1.37111,0.19779 -2.8125,0.5 -5.1249,1.0745 -8.50745,4.3766 -9.09375,8.9375 -0.1316,1.0239 -0.30725,2.2669 -0.40625,2.75 -0.167,0.8193 -0.0448,0.8841 1.78125,0.6875 6.6042,-0.7112 10.3963,-4.27775 11.0625,-10.34375 0.20213,-1.84094 0.33121,-2.49801 -0.53125,-2.53125 z" + id="path27769" + inkscape:connector-curvature="0" /> + <path + style="fill:#d3d7cf;fill-opacity:1" + d="m 312.64148,435.04507 0.28125,2.4375 c 0.4394,3.8263 2.11375,6.7151 4.78125,8.3125 1.2232,0.7325 2.97675,1.50955 3.90625,1.71875 0,0.9527 2.2182,0.38185 2.875,0.40625 l 1.1875,0.0625 -0.21875,-2.28125 c -0.644,-6.2397 -4.01236,-9.46985 -10.84375,-10.40625 l -1.96875,-0.25 z" + id="path27767" + inkscape:connector-curvature="0" /> + <path + style="fill:#d3d7cf;fill-opacity:1" + d="m 348.01648,447.51382 -1.8125,0.28125 c -3.1611,0.4567 -4.68825,0.94645 -6.59375,2.15625 -2.153,1.367 -3.96255,4.3282 -4.34375,7.125 -0.1377,1.0098 -0.3284,2.2794 -0.4375,2.8125 -0.1898,0.9276 -0.13559,0.9468 1.5625,0.6875 7.30451,-1.1151 10.68265,-4.26925 11.34375,-10.59375 l 0.28125,-2.46875 z" + id="path27765" + inkscape:connector-curvature="0" /> + <path + style="fill:#d3d7cf;fill-opacity:1" + d="m 312.64148,475.10757 0.25,2.4375 c 0.4261,3.79244 2.1311,6.73805 4.8125,8.34375 1.2232,0.7326 2.97675,1.4784 3.90625,1.6875 0.9295,0.2091 2.26765,0.4135 2.96875,0.4375 l 1.28125,0.0312 -0.34375,-2.46875 c -0.1865,-1.3633 -0.6443,-3.17845 -1,-4.03125 -1.3976,-3.35094 -5.07015,-5.7206 -9.59375,-6.1875 l -2.28125,-0.25 z" + id="path27753" + inkscape:connector-curvature="0" /> + </g> + <g + transform="matrix(1.0655729,0,0,1.0655729,92.17028,525.28464)" + style="fill:#d3d7cf" + id="g28727"> + <path + inkscape:connector-curvature="0" + id="path28729" + d="m 312.64148,411.07632 0.25,2.4375 c 0.4261,3.7924 2.1311,6.7068 4.8125,8.3125 1.2232,0.7325 2.97675,1.50955 3.90625,1.71875 0.9295,0.2091 2.26765,0.38185 2.96875,0.40625 l 1.28125,0.0625 -0.34375,-2.5 c -0.1865,-1.3632 -0.59045,-3.08815 -0.90625,-3.84375 -1.4521,-3.4756 -5.1469,-5.9064 -9.6875,-6.375 l -2.28125,-0.21875 z" + style="fill:#d3d7cf;fill-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path28731" + d="m 328.89148,422.35757 0,38 0,37.4375 2.875,0 0,-37.4375 0,-38 -1.4375,0 -1.4375,0 z" + style="fill:#d3d7cf;fill-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path28733" + d="m 347.17273,423.63882 c -0.51748,-0.0199 -1.37111,0.19779 -2.8125,0.5 -5.1249,1.0745 -8.50745,4.3766 -9.09375,8.9375 -0.1316,1.0239 -0.30725,2.2669 -0.40625,2.75 -0.167,0.8193 -0.0448,0.8841 1.78125,0.6875 6.6042,-0.7112 10.3963,-4.27775 11.0625,-10.34375 0.20213,-1.84094 0.33121,-2.49801 -0.53125,-2.53125 z" + style="fill:#d3d7cf;fill-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path28735" + d="m 312.64148,435.04507 0.28125,2.4375 c 0.4394,3.8263 2.11375,6.7151 4.78125,8.3125 1.2232,0.7325 2.97675,1.50955 3.90625,1.71875 0,0.9527 2.2182,0.38185 2.875,0.40625 l 1.1875,0.0625 -0.21875,-2.28125 c -0.644,-6.2397 -4.01236,-9.46985 -10.84375,-10.40625 l -1.96875,-0.25 z" + style="fill:#d3d7cf;fill-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path28737" + d="m 348.01648,447.51382 -1.8125,0.28125 c -3.1611,0.4567 -4.68825,0.94645 -6.59375,2.15625 -2.153,1.367 -3.96255,4.3282 -4.34375,7.125 -0.1377,1.0098 -0.3284,2.2794 -0.4375,2.8125 -0.1898,0.9276 -0.13559,0.9468 1.5625,0.6875 7.30451,-1.1151 10.68265,-4.26925 11.34375,-10.59375 l 0.28125,-2.46875 z" + style="fill:#d3d7cf;fill-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path28739" + d="m 312.64148,475.10757 0.25,2.4375 c 0.4261,3.79244 2.1311,6.73805 4.8125,8.34375 1.2232,0.7326 2.97675,1.4784 3.90625,1.6875 0.9295,0.2091 2.26765,0.4135 2.96875,0.4375 l 1.28125,0.0312 -0.34375,-2.46875 c -0.1865,-1.3633 -0.6443,-3.17845 -1,-4.03125 -1.3976,-3.35094 -5.07015,-5.7206 -9.59375,-6.1875 l -2.28125,-0.25 z" + style="fill:#d3d7cf;fill-opacity:1" /> + </g> + </g> + <path + sodipodi:nodetypes="csssc" + inkscape:connector-curvature="0" + inkscape:original-d="m 438.87961,-649.9958 c 0,0 -2.21253,4.6395 -4.41977,5.02558 -1.47053,0.25723 -4.02073,-0.0515 -4.93072,-1.97068 -0.81069,-1.70976 -1.08846,-2.4964 1.68032,-3.96477 2.76876,-1.46834 7.67017,0.90987 7.67017,0.90987 z" + inkscape:path-effect="#path-effect28747" + id="path28741" + d="m 438.87961,-649.9958 c -0.18992,1.1603 -0.71209,2.2643 -1.48854,3.14718 -0.77646,0.88288 -1.8047,1.54181 -2.93123,1.8784 -0.94115,0.28121 -1.97073,0.33525 -2.89913,0.0144 -0.46419,-0.1604 -0.89817,-0.41351 -1.25375,-0.7523 -0.35558,-0.33878 -0.63125,-0.76407 -0.77784,-1.23281 -0.22903,-0.73236 -0.13195,-1.54618 0.19239,-2.2416 0.32433,-0.69542 0.86359,-1.27707 1.48793,-1.72317 1.14905,-0.82101 2.60874,-1.19554 4.01114,-1.02918 1.40239,0.16635 2.73395,0.87199 3.65903,1.93905" + style="color:#000000;fill:none;stroke:#d3d7cf;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + style="color:#000000;fill:none;stroke:#d3d7cf;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 439.28534,-650.27779 c -0.47405,-2.51329 -1.36262,-4.9479 -2.61895,-7.17567 -0.4441,-0.7875 -0.95855,-1.57467 -1.72257,-2.05804 -0.38202,-0.24168 -0.82258,-0.39974 -1.27435,-0.41523 -0.45178,-0.0155 -0.91393,0.11802 -1.26419,0.40379 -0.31677,0.25845 -0.53113,0.63168 -0.6265,1.02923 -0.0954,0.39755 -0.0758,0.81794 0.0242,1.21436 0.1999,0.79284 0.70441,1.47146 1.23496,2.09361 1.72974,2.02837 3.86724,3.70757 6.24745,4.90795" + id="path28743" + inkscape:path-effect="#path-effect28749" + inkscape:original-d="m 439.28534,-650.27779 c 0,0 -0.93565,-5.25575 -2.61895,-7.17567 -1.12148,-1.27912 -3.19976,-2.90606 -4.26111,-2.06948 -0.94555,0.7453 -1.305,1.15797 0.63261,4.3372 1.93759,3.17922 6.24745,4.90795 6.24745,4.90795 z" + inkscape:connector-curvature="0" + sodipodi:nodetypes="csssc" /> + <path + transform="matrix(-0.66967047,-0.17943766,0.17943766,-0.66967047,497.73376,84.87058)" + d="m 356.25,1001.875 a 2.375,2.375 0 1 1 -4.75,0 2.375,2.375 0 1 1 4.75,0 z" + sodipodi:ry="2.375" + sodipodi:rx="2.375" + sodipodi:cy="1001.875" + sodipodi:cx="353.875" + id="path28745" + style="color:#000000;fill:none;stroke:#d3d7cf;stroke-width:2.88477945;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + sodipodi:type="arc" /> + </g> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="Layer"> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 490.88822,218.79963 9.00371,-7.42716 0.89663,7.71091 -9.88936,3.52613 -9.44379,6.4291 0.13366,-7.80758 9.29915,-2.4314" + id="path27850" + inkscape:path-effect="#path-effect27852-8" + inkscape:original-d="m 490.88822,218.79963 9.00371,-7.42716 0.89663,7.71091 -9.88936,3.52613 -9.44379,6.4291 0.13366,-7.80758 z" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 500.37035,239.68712 3.77845,-9.14811 3.74483,5.41402 -5.99636,6.58132 -4.50569,8.57651 -3.01222,-5.89705 5.99099,-5.52669" + id="path28352" + inkscape:path-effect="#path-effect28354-6" + inkscape:original-d="m 500.37035,239.68712 3.77845,-9.14811 3.74483,5.41402 -5.99636,6.58132 -4.50569,8.57651 -3.01222,-5.89705 z" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 537.27424,311.47956 9.89693,-0.1243 -3.50471,5.57248 -8.40939,-2.92443 -9.65744,-0.76915 4.23695,-5.08891 7.43766,3.33431" + id="path28356" + inkscape:path-effect="#path-effect28358-5" + inkscape:original-d="m 537.27424,311.47956 9.89693,-0.1243 -3.50471,5.57248 -8.40939,-2.92443 -9.65744,-0.76915 4.23695,-5.08891 z" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 523.69622,329.37983 -5.1634,-8.44417 6.58088,0.16565 1.78262,8.7231 4.27301,8.69477 -6.53931,-1.04217 -0.9338,-8.09718" + id="path28360" + inkscape:path-effect="#path-effect28362-3" + inkscape:original-d="m 523.69622,329.37983 -5.1634,-8.44417 6.58088,0.16565 1.78262,8.7231 4.27301,8.69477 -6.53931,-1.04217 z" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 513.30676,339.00727 -7.22879,-6.76086 6.38661,-1.59582 4.04491,7.93152 6.43752,7.2399 -6.58037,0.73995 -3.05988,-7.55469" + id="path28364" + inkscape:path-effect="#path-effect28366-2" + inkscape:original-d="m 513.30676,339.00727 -7.22879,-6.76086 6.38661,-1.59582 4.04491,7.93152 6.43752,7.2399 -6.58037,0.73995 z" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 498.3091,351.02549 4.11144,9.00337 3.54373,-5.54773 -6.23372,-6.35696 -4.81722,-8.40548 -2.7939,6.00356 6.18967,5.30324" + id="path28368" + inkscape:path-effect="#path-effect28370-5" + inkscape:original-d="m 498.3091,351.02549 4.11144,9.00337 3.54373,-5.54773 -6.23372,-6.35696 -4.81722,-8.40548 -2.7939,6.00356 z" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + inkscape:original-d="m 489.50295,355.499 9.22016,3.59908 -5.33985,3.84985 -6.69718,-5.86669 -8.66288,-4.33733 5.8371,-3.12681 z" + inkscape:path-effect="#path-effect28600" + id="path28598" + d="m 489.50295,355.499 9.22016,3.59908 -5.33985,3.84985 -6.69718,-5.86669 -8.66288,-4.33733 5.8371,-3.12681 5.64265,5.8819" + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 476.8419,365.9092 9.22016,3.59907 -5.33985,3.84986 -6.69718,-5.86669 -8.66288,-4.33733 5.8371,-3.12681 5.64265,5.8819" + id="path28372" + inkscape:path-effect="#path-effect28374-7" + inkscape:original-d="m 476.8419,365.9092 9.22016,3.59907 -5.33985,3.84986 -6.69718,-5.86669 -8.66288,-4.33733 5.8371,-3.12681 z" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 467.51679,382.03889 9.80881,-1.32357 -2.80306,5.95636 -8.70197,-1.88306 -9.67945,0.40768 3.58856,-5.56516 7.78711,2.40775" + id="path28376" + inkscape:path-effect="#path-effect28378-0" + inkscape:original-d="m 467.51679,382.03889 9.80881,-1.32357 -2.80306,5.95636 -8.70197,-1.88306 -9.67945,0.40768 3.58856,-5.56516 z" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 465.4455,398.75632 3.33346,-5.87469 3.3038,3.47675 -5.29016,4.22636 -3.97505,5.50763 -2.65747,-3.78695 5.28542,-3.5491" + id="path28380" + inkscape:path-effect="#path-effect28382-2" + inkscape:original-d="m 465.4455,398.75632 3.33346,-5.87469 3.3038,3.47675 -5.29016,4.22636 -3.97505,5.50763 -2.65747,-3.78695 z" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 470.21218,410.85821 0.33884,-5.42062 4.27571,-0.20468 -2.6971,5.77015 -1.03864,5.6316 -3.85884,-0.38572 2.98003,-5.39073" + id="path28384" + inkscape:path-effect="#path-effect28386-3" + inkscape:original-d="m 470.21218,410.85821 0.33884,-5.42062 4.27571,-0.20468 -2.6971,5.77015 -1.03864,5.6316 -3.85884,-0.38572 z" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 480.56278,419.24698 5.91254,-4.36802 1.41824,4.94116 -6.94874,1.85112 -6.33514,3.7156 -0.66774,-4.96179 6.62084,-1.17807" + id="path28388" + inkscape:path-effect="#path-effect28390-1" + inkscape:original-d="m 480.56278,419.24698 5.91254,-4.36802 1.41824,4.94116 -6.94874,1.85112 -6.33514,3.7156 -0.66774,-4.96179 z" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 495.77989,427.73245 -0.49005,-9.88557 5.69822,3.29632 -2.61159,8.51174 -0.41164,9.67929 -5.24204,-4.04596 3.0571,-7.55582" + id="path28392" + inkscape:path-effect="#path-effect28394-0" + inkscape:original-d="m 495.77989,427.73245 -0.49005,-9.88557 5.69822,3.29632 -2.61159,8.51174 -0.41164,9.67929 -5.24204,-4.04596 z" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 509.72707,432.016 2.2766,-5.51194 2.25634,3.26207 -3.61294,3.96539 -2.71478,5.16754 -1.81492,-3.55311 3.6097,-3.32995" + id="path28396" + inkscape:path-effect="#path-effect28398-4" + inkscape:original-d="m 509.72707,432.016 2.2766,-5.51194 2.25634,3.26207 -3.61294,3.96539 -2.71478,5.16754 -1.81492,-3.55311 z" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 533.35489,450.99108 2.99971,-4.98998 2.97302,2.95316 -4.76051,3.58989 -3.57707,4.67819 -2.3914,-3.21665 4.75625,-3.01461" + id="path28400" + inkscape:path-effect="#path-effect28402-0" + inkscape:original-d="m 533.35489,450.99108 2.99971,-4.98998 2.97302,2.95316 -4.76051,3.58989 -3.57707,4.67819 -2.3914,-3.21665 z" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 537.40442,459.83519 5.04064,-2.9013 0.26088,3.23969 -5.40432,1.25271 -5.24819,2.47478 0.29442,-3.25718 5.05657,-0.8087" + id="path28404" + inkscape:path-effect="#path-effect28406-1" + inkscape:original-d="m 537.40442,459.83519 5.04064,-2.9013 0.26088,3.23969 -5.40432,1.25271 -5.24819,2.47478 0.29442,-3.25718 z" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 536.82541,471.52951 6.86072,0.70638 -2.86479,3.64971 -5.59097,-2.73764 -6.62459,-1.3174 3.3336,-3.24986 4.88603,2.94881" + id="path28408" + inkscape:path-effect="#path-effect28410-2" + inkscape:original-d="m 536.82541,471.52951 6.86072,0.70638 -2.86479,3.64971 -5.59097,-2.73764 -6.62459,-1.3174 3.3336,-3.24986 z" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 512.02901,254.0403 5.51579,-8.8239 3.59948,5.90191 -7.73011,5.9755 -6.27666,8.16308 -2.69645,-6.30722 7.58795,-4.90937" + id="path27858" + inkscape:path-effect="#path-effect27860-1" + inkscape:original-d="m 512.02901,254.0403 5.51579,-8.8239 3.59948,5.90191 -7.73011,5.9755 -6.27666,8.16308 -2.69645,-6.30722 z" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + inkscape:original-d="m 526.43804,269.52709 7.68163,-7.01981 1.88342,6.65142 -9.05023,3.68163 -8.23724,6.17901 -0.90475,-6.7995 z" + inkscape:path-effect="#path-effect27864-2" + id="path27862" + d="m 526.43804,269.52709 7.68163,-7.01981 1.88342,6.65142 -9.05023,3.68163 -8.23724,6.17901 -0.90475,-6.7995 8.62717,-2.69275" + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 537.18722,292.05739 7.67539,-6.70007 1.77864,8.45262 -8.9863,2.36066 -8.21391,5.55868 -0.80997,-8.40641 8.55615,-1.26548" + id="path27866" + inkscape:path-effect="#path-effect27868-0" + inkscape:original-d="m 537.18722,292.05739 7.67539,-6.70007 1.77864,8.45262 -8.9863,2.36066 -8.21391,5.55868 -0.80997,-8.40641 z" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + inkscape:original-d="m 520.94425,438.11427 0.33884,-5.42063 4.27571,-0.20468 -2.6971,5.77015 -1.03864,5.6316 -3.85884,-0.38572 z" + inkscape:path-effect="#path-effect28696" + id="path28694" + d="m 520.94425,438.11427 0.33884,-5.42063 4.27571,-0.20468 -2.6971,5.77015 -1.03864,5.6316 -3.85884,-0.38572 2.98003,-5.39072" + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + inkscape:original-d="m 532.03687,481.11134 3.96437,0.40817 -1.65537,2.10892 -3.23067,-1.5819 -3.82794,-0.76125 1.92628,-1.87787 z" + inkscape:path-effect="#path-effect28700" + id="path28698" + d="m 532.03687,481.11134 3.96437,0.40817 -1.65537,2.10892 -3.23067,-1.5819 -3.82794,-0.76125 1.92628,-1.87787 2.82333,1.70393" + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 529.08556,486.12237 3.32496,2.19716 -2.44363,1.10292 -2.13123,-2.89784 -3.04057,-2.44696 2.57679,-0.77269 1.71368,2.81741" + id="path28702" + inkscape:path-effect="#path-effect28704" + inkscape:original-d="m 529.08556,486.12237 3.32496,2.19716 -2.44363,1.10292 -2.13123,-2.89784 -3.04057,-2.44696 2.57679,-0.77269 z" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + inkscape:original-d="m 523.17707,491.46815 3.32496,2.19716 -2.44363,1.10291 -2.13123,-2.89784 -3.04057,-2.44695 2.57679,-0.7727 z" + inkscape:path-effect="#path-effect28708" + id="path28706" + d="m 523.17707,491.46815 3.32496,2.19716 -2.44363,1.10291 -2.13123,-2.89784 -3.04057,-2.44695 2.57679,-0.7727 1.71368,2.81742" + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 516.70586,499.34614 3.32496,2.19715 -2.44363,1.10292 -2.13123,-2.89784 -3.04057,-2.44696 2.5768,-0.77269 1.71367,2.81742" + id="path28710" + inkscape:path-effect="#path-effect28712" + inkscape:original-d="m 516.70586,499.34614 3.32496,2.19715 -2.44363,1.10292 -2.13123,-2.89784 -3.04057,-2.44696 2.5768,-0.77269 z" + inkscape:connector-curvature="0" + inkscape:transform-center-x="-3.8077111" + inkscape:transform-center-y="-6.1898493" /> + </g> +</svg> diff --git a/panels/mouse/test-gnome-mouse-test.c b/panels/mouse/test-gnome-mouse-test.c new file mode 100644 index 0000000..5b006f6 --- /dev/null +++ b/panels/mouse/test-gnome-mouse-test.c @@ -0,0 +1,33 @@ +#include <config.h> +#include <gtk/gtk.h> + +#include "cc-mouse-resources.h" +#include "cc-mouse-test.h" + +static gboolean +delete_event_cb (GtkWidget *widget, GdkEvent *event, gpointer user_data) +{ + gtk_main_quit (); + + return FALSE; +} + +int main (int argc, char **argv) +{ + GtkWidget *widget; + GtkWidget *window; + + gtk_init (&argc, &argv); + + window = gtk_window_new (GTK_WINDOW_TOPLEVEL); + gtk_widget_show (window); + widget = cc_mouse_test_new (); + gtk_widget_show (widget); + gtk_container_add (GTK_CONTAINER (window), widget); + + g_signal_connect (G_OBJECT (window), "delete-event", G_CALLBACK (delete_event_cb), NULL); + + gtk_main (); + + return 0; +} |