Merge lp:~dshea/timezonemap/svg-only into lp:timezonemap

Proposed by David Shea
Status: Needs review
Proposed branch: lp:~dshea/timezonemap/svg-only
Merge into: lp:timezonemap
Diff against target: 23224 lines (+16334/-4819)
7 files modified
configure.ac (+2/-1)
debian/control (+2/-0)
src/Makefile.am (+2/-40)
src/cc-timezone-map.c (+184/-78)
src/data/README (+16/-32)
src/data/time_zones_countryInfo-orig.svg (+16107/-4658)
src/test-timezone.c (+21/-10)
To merge this branch: bzr merge lp:~dshea/timezonemap/svg-only
Reviewer Review Type Date Requested Status
Timezone Map Team Pending
Review via email: mp+295631@code.launchpad.net

Description of the change

This gets rid of the pile of PNGs in src/data and renders the CcTimezoneMap widget entirely from the SVG data.

To post a comment you must log in.
lp:~dshea/timezonemap/svg-only updated
61. By David Shea

Optimize the SVG.

Optimize the SVG with svgomg (while retaining all the inkscape
attributes), which greatly reduces the amount of time it takes to render
the image.

Revision history for this message
David Shea (dshea) wrote :

On the advice in https://bugzilla.redhat.com/show_bug.cgi?id=1335158, I ran the SVG file through an optimizer, and that sped things up a lot. I added the optimized SVG as an additional commit.

It's still not a whole lot smaller, though, especially after letting inkscape put the whitespace back. If the size of the file is a concern, it could be gzipped.

Unmerged revisions

61. By David Shea

Optimize the SVG.

Optimize the SVG with svgomg (while retaining all the inkscape
attributes), which greatly reduces the amount of time it takes to render
the image.

60. By David Shea

Render the map directly from the SVG.

As high resolution screens become more common, the low resolution of the
map images is becoming more apparent. But the map is already stored as a
vector image, so just use that, instead. Set ids on the layers in the
SVG file to match the timezone offsets, and render the background and
each highlight image from a layer in the SVG.

Drawing from SVG is slower than PNG, so to speed that do the rendering
of the background from SVG to a cairo pattern only when the size of the
widget changes, and add a hash table to cache rendered highlight layers
for a widget given size.

Thanks to Garrett LeSage for the SVG changes.

59. By David Shea

Allow the image data directory to be overridden.

Look for the environment variable $DATADIR as the directory containing
the CcTimezoneMap image files, if set.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'configure.ac'
2--- configure.ac 2015-05-07 23:16:25 +0000
3+++ configure.ac 2016-05-25 14:18:49 +0000
4@@ -57,7 +57,8 @@
5 PKG_CHECK_MODULES(LIBTIMEZONEMAP, gio-2.0 >= $GIO_REQUIRED_VERSION
6 gtk+-3.0 >= $GTK3_REQUIRED_VERSION
7 libsoup-2.4 >= $SOUP_REQUIRED_VERSION
8- json-glib-1.0)
9+ json-glib-1.0
10+ librsvg-2.0)
11 LIBTIMEZONEMAP_LIBS="$LIBTIMEZONEMAP_LIBS $LIBM"
12
13 GOBJECT_INTROSPECTION_CHECK([0.6.7])
14
15=== modified file 'debian/control'
16--- debian/control 2015-05-07 13:47:16 +0000
17+++ debian/control 2016-05-25 14:18:49 +0000
18@@ -14,6 +14,7 @@
19 libcairo2-dev (>= 1.10),
20 libjson-glib-dev,
21 libsoup2.4-dev (>= 2.42.0),
22+ librsvg2-2,
23 dh-autoreconf
24 Standards-Version: 3.9.5
25 Vcs-Bzr: http://bazaar.launchpad.net/~timezonemap-team/timezonemap/trunk
26@@ -59,6 +60,7 @@
27 libtimezonemap1 (= ${binary:Version}),
28 libglib2.0-dev (>= 2.25.0),
29 libgtk-3-dev (>= 3.1.4),
30+ librsvg2-dev,
31 libjson-glib-dev
32 Replaces: gir1.2-timezonemap-1.0 (<< 0.3)
33 Breaks: gir1.2-timezonemap-1.0 (<< 0.3)
34
35=== modified file 'src/Makefile.am'
36--- src/Makefile.am 2015-12-23 18:50:13 +0000
37+++ src/Makefile.am 2016-05-25 14:18:49 +0000
38@@ -2,46 +2,9 @@
39
40 uidir = $(pkgdatadir)/ui
41 dist_ui_DATA = \
42- data/bg.png \
43 data/olsen_map.png \
44 data/pin.png \
45- data/timezone_0.png \
46- data/timezone_-10.png \
47- data/timezone_10.png \
48- data/timezone_10.5.png \
49- data/timezone_-1.png \
50- data/timezone_1.png \
51- data/timezone_-11.png \
52- data/timezone_11.png \
53- data/timezone_12.png \
54- data/timezone_12.75.png \
55- data/timezone_13.png \
56- data/timezone_-2.png \
57- data/timezone_2.png \
58- data/timezone_-3.png \
59- data/timezone_3.png \
60- data/timezone_-3.5.png \
61- data/timezone_3.5.png \
62- data/timezone_-4.png \
63- data/timezone_4.png \
64- data/timezone_-4.5.png \
65- data/timezone_4.5.png \
66- data/timezone_-5.png \
67- data/timezone_5.png \
68- data/timezone_5.5.png \
69- data/timezone_5.75.png \
70- data/timezone_-6.png \
71- data/timezone_6.png \
72- data/timezone_6.5.png \
73- data/timezone_-7.png \
74- data/timezone_7.png \
75- data/timezone_-8.png \
76- data/timezone_8.png \
77- data/timezone_8.5.png \
78- data/timezone_-9.png \
79- data/timezone_9.png \
80- data/timezone_-9.5.png \
81- data/timezone_9.5.png \
82+ data/time_zones_countryInfo-orig.svg \
83 data/cities15000.txt \
84 data/admin1Codes.txt \
85 data/countryInfo.txt
86@@ -67,10 +30,9 @@
87
88 all-local: check-local
89
90-# FIXME remove "|| :" when we have all the necessary pixmaps
91 check-local: test-timezone
92 TZ_DATA_FILE=$(srcdir)/data/cities15000.txt ADMIN1_FILE=$(srcdir)/data/admin1Codes.txt COUNTRY_FILE=$(srcdir)/data/countryInfo.txt \
93- $(builddir)/test-timezone $(srcdir)/data || :
94+ $(builddir)/test-timezone $(srcdir)/data
95
96 lib_LTLIBRARIES = libtimezonemap.la
97
98
99=== modified file 'src/cc-timezone-map.c'
100--- src/cc-timezone-map.c 2015-05-07 16:43:32 +0000
101+++ src/cc-timezone-map.c 2016-05-25 14:18:49 +0000
102@@ -27,6 +27,7 @@
103 #include "cc-timezone-location.h"
104 #include <math.h>
105 #include "tz.h"
106+#include <librsvg/rsvg.h>
107
108 G_DEFINE_TYPE (CcTimezoneMap, cc_timezone_map, GTK_TYPE_WIDGET)
109
110@@ -45,9 +46,18 @@
111
112 struct _CcTimezoneMapPrivate
113 {
114- GdkPixbuf *orig_background;
115-
116- GdkPixbuf *background;
117+ RsvgHandle *map_svg;
118+
119+ /* Cache the rendered map and highlight images as cairo patterns. The
120+ * patterns only need to be re-rendered when the widget allocation changes
121+ * and not on every draw. */
122+ cairo_pattern_t *background;
123+ cairo_pattern_t *highlight;
124+
125+ /* Cache the highlights so they only need to be rendered once for a
126+ * given size. */
127+ GHashTable *highlight_table;
128+
129 GdkPixbuf *olsen_map;
130
131 gint olsen_map_channels;
132@@ -466,6 +476,18 @@
133 "Pacific/Wallis"
134 };
135
136+/* Allow datadir to be overridden in the environment */
137+static const gchar *
138+get_datadir (void)
139+{
140+ const gchar *datadir = g_getenv("DATADIR");
141+
142+ if (datadir)
143+ return datadir;
144+ else
145+ return DATADIR;
146+}
147+
148 static void
149 cc_timezone_map_get_property (GObject *object,
150 guint property_id,
151@@ -505,10 +527,28 @@
152 {
153 CcTimezoneMapPrivate *priv = CC_TIMEZONE_MAP (object)->priv;
154
155- if (priv->orig_background)
156- {
157- g_object_unref (priv->orig_background);
158- priv->orig_background = NULL;
159+ if (priv->map_svg)
160+ {
161+ g_object_unref (priv->map_svg);
162+ priv->map_svg = NULL;
163+ }
164+
165+ if (priv->background)
166+ {
167+ cairo_pattern_destroy (priv->background);
168+ priv->background = NULL;
169+ }
170+
171+ /* The highlight reference is held by the hash table */
172+ if (priv->highlight)
173+ {
174+ priv->highlight = NULL;
175+ }
176+
177+ if (priv->highlight_table)
178+ {
179+ g_hash_table_destroy (priv->highlight_table);
180+ priv->highlight_table = NULL;
181 }
182
183 if (priv->olsen_map)
184@@ -521,12 +561,6 @@
185 priv->olsen_map_rowstride = 0;
186 }
187
188- if (priv->background)
189- {
190- g_object_unref (priv->background);
191- priv->background = NULL;
192- }
193-
194 if (priv->alias_db)
195 {
196 g_hash_table_destroy (priv->alias_db);
197@@ -584,35 +618,119 @@
198 gint *minimum,
199 gint *natural)
200 {
201- CcTimezoneMapPrivate *priv = CC_TIMEZONE_MAP (widget)->priv;
202- gint size;
203-
204- /* The + 20 here is a slight tweak to make the map fill the
205- * panel better without causing horizontal growing
206- */
207- size = 300 * gdk_pixbuf_get_height (priv->orig_background) / gdk_pixbuf_get_width (priv->orig_background) + 20;
208+ /* Match the 300 width based on a width:height of almost 2:1 */
209 if (minimum != NULL)
210- *minimum = size;
211+ *minimum = 173;
212 if (natural != NULL)
213- *natural = size;
214-}
215-
216-static void
217-cc_timezone_map_size_allocate (GtkWidget *widget,
218+ *natural = 173;
219+}
220+
221+/* Call whenever the allocation or offset changes */
222+static void
223+render_highlight (CcTimezoneMap *cc)
224+{
225+ CcTimezoneMapPrivate *priv = cc->priv;
226+ GtkAllocation alloc;
227+ RsvgDimensionData svg_dimensions;
228+ gdouble scale_x, scale_y;
229+ cairo_surface_t *surface;
230+ cairo_t *cr;
231+ gchar *layer_name;
232+ gdouble *hash_key;
233+
234+ /* The reference to the cairo_pattern_t object is held by highlight_table */
235+
236+ /* If no highlight is displayed, just unset the pointer */
237+ if (!priv->show_offset)
238+ {
239+ if (priv->highlight)
240+ {
241+ priv->highlight = NULL;
242+ }
243+
244+ return;
245+ }
246+
247+ /* Check if the highlight has already been rendered */
248+ priv->highlight = g_hash_table_lookup (priv->highlight_table,
249+ &priv->selected_offset);
250+ if (priv->highlight)
251+ return;
252+
253+ layer_name = g_strdup_printf("#%c%g",
254+ priv->selected_offset > 0 ? 'p' : 'm',
255+ fabs(priv->selected_offset));
256+ gtk_widget_get_allocation (GTK_WIDGET (cc), &alloc);
257+
258+ /* Use the size of the background layer as the scale */
259+ rsvg_handle_get_dimensions_sub (priv->map_svg, &svg_dimensions, "#background");
260+ scale_x = (double)alloc.width / svg_dimensions.width;
261+ scale_y = (double)alloc.height / svg_dimensions.height;
262+
263+ surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32,
264+ alloc.width,
265+ alloc.height);
266+ cr = cairo_create (surface);
267+
268+ cairo_scale (cr, scale_x, scale_y);
269+ rsvg_handle_render_cairo_sub (priv->map_svg, cr, layer_name);
270+ g_free(layer_name);
271+ cairo_surface_flush (surface);
272+
273+ priv->highlight = cairo_pattern_create_for_surface (surface);
274+
275+ cairo_surface_destroy (surface);
276+ cairo_destroy (cr);
277+
278+ /* Save the pattern in the hash table */
279+ hash_key = g_malloc (sizeof (gdouble));
280+ *hash_key = priv->selected_offset;
281+ g_hash_table_insert (priv->highlight_table,
282+ hash_key,
283+ priv->highlight);
284+}
285+
286+/* Update the cached map patterns when the widget allocation changes */
287+static void
288+cc_timezone_map_size_allocate (GtkWidget *widget,
289 GtkAllocation *allocation)
290 {
291 CcTimezoneMapPrivate *priv = CC_TIMEZONE_MAP (widget)->priv;
292+ RsvgDimensionData svg_dimensions;
293+ gdouble scale_x, scale_y;
294+ cairo_surface_t *surface;
295+ cairo_t *cr;
296+
297+ GTK_WIDGET_CLASS(cc_timezone_map_parent_class)->size_allocate (widget, allocation);
298+
299+ /* Figure out the scaling factor between the SVG and the allocation */
300+ rsvg_handle_get_dimensions_sub (priv->map_svg, &svg_dimensions, "#background");
301+ scale_x = (double)allocation->width / svg_dimensions.width;
302+ scale_y = (double)allocation->height / svg_dimensions.height;
303+
304+ /* Create a new cairo context over an image surface the size of the
305+ * allocation */
306+ surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32,
307+ allocation->width,
308+ allocation->height);
309+ cr = cairo_create (surface);
310+
311+ cairo_scale (cr, scale_x, scale_y);
312+ rsvg_handle_render_cairo_sub (priv->map_svg, cr, "#background");
313+
314+ cairo_surface_flush (surface);
315
316 if (priv->background)
317- g_object_unref (priv->background);
318-
319- priv->background = gdk_pixbuf_scale_simple (priv->orig_background,
320- allocation->width,
321- allocation->height,
322- GDK_INTERP_BILINEAR);
323-
324- GTK_WIDGET_CLASS (cc_timezone_map_parent_class)->size_allocate (widget,
325- allocation);
326+ cairo_pattern_destroy (priv->background);
327+
328+ priv->background = cairo_pattern_create_for_surface (surface);
329+
330+ cairo_surface_destroy (surface);
331+ cairo_destroy (cr);
332+
333+ /* Invalidate the highlight cache and render the current one */
334+ g_hash_table_remove_all (priv->highlight_table);
335+ render_highlight (CC_TIMEZONE_MAP(widget));
336 }
337
338 static void
339@@ -690,14 +808,13 @@
340 cairo_t *cr)
341 {
342 CcTimezoneMapPrivate *priv = CC_TIMEZONE_MAP (widget)->priv;
343- GdkPixbuf *hilight, *orig_hilight, *pin;
344+ gchar *file;
345+ GdkPixbuf *pin;
346 GtkAllocation alloc;
347- gchar *file;
348 GError *err = NULL;
349 gdouble pointx, pointy;
350 gdouble alpha = 1.0;
351 GtkStyle *style;
352- char buf[16];
353
354 gtk_widget_get_allocation (widget, &alloc);
355
356@@ -710,7 +827,7 @@
357 /* paint background */
358 gdk_cairo_set_source_color (cr, &style->bg[gtk_widget_get_state (widget)]);
359 cairo_paint (cr);
360- gdk_cairo_set_source_pixbuf (cr, priv->background, 0, 0);
361+ cairo_set_source (cr, priv->background);
362 cairo_paint_with_alpha (cr, alpha);
363
364 /* paint watermark */
365@@ -726,35 +843,10 @@
366 cairo_stroke(cr);
367 }
368
369- if (!priv->show_offset) {
370- return TRUE;
371- }
372-
373- /* paint hilight */
374- file = g_strdup_printf (DATADIR "/timezone_%s.png",
375- g_ascii_formatd (buf, sizeof (buf),
376- "%g", priv->selected_offset));
377- orig_hilight = gdk_pixbuf_new_from_file (file, &err);
378- g_free (file);
379- file = NULL;
380-
381- if (!orig_hilight)
382- {
383- g_warning ("Could not load hilight: %s",
384- (err) ? err->message : "Unknown Error");
385- if (err)
386- g_clear_error (&err);
387- }
388- else
389- {
390-
391- hilight = gdk_pixbuf_scale_simple (orig_hilight, alloc.width,
392- alloc.height, GDK_INTERP_BILINEAR);
393- gdk_cairo_set_source_pixbuf (cr, hilight, 0, 0);
394-
395+ if (priv->highlight)
396+ {
397+ cairo_set_source (cr, priv->highlight);
398 cairo_paint_with_alpha (cr, alpha);
399- g_object_unref (hilight);
400- g_object_unref (orig_hilight);
401 }
402
403 if (!priv->location) {
404@@ -762,7 +854,9 @@
405 }
406
407 /* load pin icon */
408- pin = gdk_pixbuf_new_from_file (DATADIR "/pin.png", &err);
409+ file = g_strdup_printf ("%s/pin.png", get_datadir ());
410+ pin = gdk_pixbuf_new_from_file (file, &err);
411+ g_free (file);
412
413 if (err)
414 {
415@@ -866,6 +960,9 @@
416 priv->selected_offset = 0.0;
417 }
418
419+ render_highlight (map);
420+ gtk_widget_queue_draw (GTK_WIDGET (map));
421+
422 g_signal_emit (map, signals[LOCATION_CHANGED], 0, priv->location);
423
424 }
425@@ -1026,24 +1123,35 @@
426 {
427 CcTimezoneMapPrivate *priv;
428 GError *err = NULL;
429+ gchar *file;
430
431 priv = self->priv = TIMEZONE_MAP_PRIVATE (self);
432
433 priv->previous_x = -1;
434 priv->previous_y = -1;
435
436- priv->orig_background = gdk_pixbuf_new_from_file (DATADIR "/bg.png",
437- &err);
438+ file = g_strdup_printf ("%s/time_zones_countryInfo-orig.svg", get_datadir ());
439+ priv->map_svg = rsvg_handle_new_from_file (file, &err);
440+ g_free (file);
441
442- if (!priv->orig_background)
443+ if (!priv->map_svg)
444 {
445- g_warning ("Could not load background image: %s",
446- (err) ? err->message : "Unknown error");
447+ g_warning("Could not load map data: %s",
448+ (err) ? err->message : "Unknown error");
449 g_clear_error (&err);
450 }
451
452- priv->olsen_map = gdk_pixbuf_new_from_file (DATADIR "/olsen_map.png",
453- &err);
454+ priv->background = NULL;
455+ priv->highlight = NULL;
456+
457+ priv->highlight_table = g_hash_table_new_full (g_double_hash,
458+ g_double_equal,
459+ g_free,
460+ (GDestroyNotify) cairo_pattern_destroy);
461+
462+ file = g_strdup_printf ("%s/olsen_map.png", get_datadir ());
463+ priv->olsen_map = gdk_pixbuf_new_from_file (file, &err);
464+ g_free (file);
465 if (!priv->olsen_map)
466 {
467 g_warning ("Could not load olsen map: %s",
468@@ -1095,8 +1203,6 @@
469 break;
470 }
471 }
472-
473- gtk_widget_queue_draw (GTK_WIDGET (map));
474 }
475
476 void
477@@ -1185,7 +1291,6 @@
478 cc_timezone_map_clear_location (CcTimezoneMap *map)
479 {
480 set_location(map, NULL);
481- gtk_widget_queue_draw (GTK_WIDGET (map));
482 }
483
484 /**
485@@ -1215,5 +1320,6 @@
486 map->priv->selected_offset = offset;
487 map->priv->show_offset = TRUE;
488 g_object_notify(G_OBJECT(map), "selected-offset");
489+ render_highlight (map);
490 gtk_widget_queue_draw (GTK_WIDGET (map));
491 }
492
493=== modified file 'src/data/README'
494--- src/data/README 2015-05-01 15:33:26 +0000
495+++ src/data/README 2016-05-25 14:18:49 +0000
496@@ -21,45 +21,29 @@
497 The master SVG used to generate the map images. It is lovingly hand-updated,
498 mostly by using inkscape to trace over whatever map image is convenient.
499
500-bg.png
501- The background of the map, based on the master SVG with some color changes.
502- It can be generated with the following steps:
503+ Each layer must also have an id corresponding to the layer name.
504+
505+ The background layer is generated from the individual timezone layers. Here
506+ is one way to do it:
507
508 * Open time_zones_countryInfo-orig.svg in inkscape
509+ * Open the layers dialog with Layer -> Layers...
510+ * Click "background"
511+ * Click the eye icon to make the layer visible
512+ * Edit -> Select All
513+ * Edit -> Delete
514 * Right click over an ocean area, choose "Select This"
515 * Edit -> Select Same -> Fill and Stroke
516 * Edit -> Copy
517- * Create a new, blank document with File -> New
518- * In the blank document, Edit -> Paste In Place
519+ * Click "background" in the Layers dialog again
520+ * Edit -> Paste in Place
521 * Open the Fill and Stroke dialog with Object -> Fill and Stroke
522 * Under the Fill tab, change the RGBA value to 95a9c8ff
523- * Go back to the original SVG. Right click a land area, "Select This"
524+ * Layer -> "Show/hide current layer" to hide the background layer
525+ * Right click a land area, "Select This"
526 * Edit -> Select Same -> Fill and Stroke
527 * Edit -> Copy
528- * Switch to the new document, Edit -> Paste In Place
529+ * Click "background" in the Layers dialog again
530+ * Layer -> "Show/hide current layer" to show the background layer
531+ * Edit -> Paste in Place
532 * In Fill and Stroke, under the Fill tab, change RGBA to ffffffff
533- * Edit -> Deselect
534- * File -> Document Properties...
535- * Under the "Custom Size" heading, expand "Resize page to content"
536- * Click "Resize page to drawing or selection"
537- * File -> Export PNG Image...
538- * Choose "Page" as the Export area, and set the image size to 800x410
539- * Set the filename to bg.png under "Export As..."
540- * Click Export
541-
542-timezone_*.png
543- These are the overlay images displayed for a timezone selection. Each one is
544- generated from a layer in time_zones_countryInfo-orig.svg. To generate new
545- images:
546-
547- * Open time_zones_countryInfo-orig.svg in inkscape
548- * Open the layers dialog with Layer -> Layers...
549- * For each layer:
550-
551- - Right click the layer, choose "Show/hide other layers"
552- - File -> Export PNG Image...
553- - Choose "Page" as the export area and 800x410 as the image size
554- - Set the filename in Export As... For example, m3 becomes
555- timezone\_-3.png, and p9-5 becomes timezone_9.5.png. m0 becomes
556- timezone_0.png
557- - Click "Export"
558
559=== removed file 'src/data/bg.png'
560Binary files src/data/bg.png 2015-12-21 19:39:56 +0000 and src/data/bg.png 1970-01-01 00:00:00 +0000 differ
561=== modified file 'src/data/time_zones_countryInfo-orig.svg'
562--- src/data/time_zones_countryInfo-orig.svg 2015-12-21 19:30:56 +0000
563+++ src/data/time_zones_countryInfo-orig.svg 2016-05-25 14:18:49 +0000
564@@ -1,6 +1,4 @@
565 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
566-<!-- Created with Inkscape (http://www.inkscape.org/) -->
567-
568 <svg
569 xmlns:dc="http://purl.org/dc/elements/1.1/"
570 xmlns:cc="http://creativecommons.org/ns#"
571@@ -10,489 +8,671 @@
572 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
573 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
574 id="svg2"
575- sodipodi:version="0.32"
576+ sodipodi:version=".32"
577 inkscape:version="0.91 r13725"
578- width="1671.094"
579- height="856.39252"
580- xml:space="preserve"
581+ width="1671.09"
582+ height="856.39"
583 sodipodi:docname="time_zones_countryInfo-orig.svg"
584 inkscape:output_extension="org.inkscape.output.svg.inkscape"
585- version="1.0"
586- style="display:inline;enable-background:new"
587+ version="1"
588 inkscape:export-filename="/home/dshea/src/timezonemap/src/data/timezone_1.png"
589- inkscape:export-xdpi="43.085548"
590- inkscape:export-ydpi="43.085548"><metadata
591- id="metadata7"><rdf:RDF><cc:Work
592- rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
593- rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /><cc:license
594- rdf:resource="https://www.gnu.org/licenses/gpl-3.0.html" /><dc:creator><cc:Agent><dc:title>canonical Ltd</dc:title></cc:Agent></dc:creator></cc:Work></rdf:RDF></metadata><defs
595- id="defs5"><pattern
596+ inkscape:export-xdpi="43.09"
597+ inkscape:export-ydpi="43.09">
598+ <metadata
599+ id="metadata2971">
600+ <rdf:RDF>
601+ <cc:Work
602+ rdf:about="">
603+ <dc:format>image/svg+xml</dc:format>
604+ <dc:type
605+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
606+ </cc:Work>
607+ </rdf:RDF>
608+ </metadata>
609+ <defs
610+ id="defs5">
611+ <style
612+ id="style5">g { display: none !important; } g:target { display: inline !important; }</style>
613+ <pattern
614 id="pattern116827"
615- height="3.64453"
616- width="1.83008"
617- y="0"
618- x="0"
619+ height="3.64"
620+ width="1.83"
621 patternUnits="userSpaceOnUse"
622- patternTransform="matrix(1.016472,1.016472,-1.016472,1.016472,-574.11072,209.38462)"><g
623- id="g116829"><g
624+ patternTransform="rotate(45 -539.806 -588.32) scale(1.4375)">
625+ <g
626+ id="g116829">
627+ <g
628 id="g116831"
629- clip-path="url(#clipPath116823)"><path
630+ clip-path="url(#clipPath116823)">
631+ <path
632 id="path116833"
633- style="fill:#99b0b2;fill-opacity:1;fill-rule:nonzero;stroke:none"
634- d="m 1.8301,1.8144 -1.8301,0 0,1.8301 1.8301,0 0,-1.8301 z" /><path
635+ d="M1.83 1.8H0v1.84h1.83V1.8z"
636+ fill="#99b0b2" />
637+ <path
638 id="path116835"
639- style="fill:#c9d08a;fill-opacity:1;fill-rule:nonzero;stroke:none"
640- d="M 1.8301,0 0,0 l 0,1.8301 1.8301,0 0,-1.8301 z" /></g></g></pattern><clipPath
641- id="clipPath116823"
642- clipPathUnits="userSpaceOnUse"><path
643+ d="M1.83 0H0v1.83h1.83V0z"
644+ fill="#c9d08a" />
645+ </g>
646+ </g>
647+ </pattern>
648+ <clipPath
649+ id="clipPath116823">
650+ <path
651 inkscape:connector-curvature="0"
652 id="path116825"
653- d="m 0,3.6445 1.8301,0 L 1.8301,0 0,0 0,3.6445 Z" /></clipPath><pattern
654+ d="M0 3.64h1.83V0H0v3.64z" />
655+ </clipPath>
656+ <pattern
657 id="pattern116857"
658- height="3.64453"
659- width="1.83008"
660- y="0"
661- x="0"
662+ height="3.64"
663+ width="1.83"
664 patternUnits="userSpaceOnUse"
665- patternTransform="matrix(1.016472,1.016472,-1.016472,1.016472,-545.23013,214.24052)"><g
666- id="g116859"><g
667+ patternTransform="rotate(45 -531.227 -551.03) scale(1.4375)">
668+ <g
669+ id="g116859">
670+ <g
671 id="g116861"
672- clip-path="url(#clipPath116853)"><path
673+ clip-path="url(#clipPath116853)">
674+ <path
675 id="path116863"
676- style="fill:#e1a780;fill-opacity:1;fill-rule:nonzero;stroke:none"
677- d="m 1.8301,1.8145 -1.8301,0 0,1.8301 1.8301,0 0,-1.8301 z" /><path
678+ d="M1.83 1.8H0v1.84h1.83V1.8z"
679+ fill="#e1a780" />
680+ <path
681 id="path116865"
682- style="fill:#a2b7b9;fill-opacity:1;fill-rule:nonzero;stroke:none"
683- d="M 1.8301,0 0,0 l 0,1.8301 1.8301,0 0,-1.8301 z" /></g></g></pattern><clipPath
684- id="clipPath116853"
685- clipPathUnits="userSpaceOnUse"><path
686+ d="M1.83 0H0v1.83h1.83V0z"
687+ fill="#a2b7b9" />
688+ </g>
689+ </g>
690+ </pattern>
691+ <clipPath
692+ id="clipPath116853">
693+ <path
694 inkscape:connector-curvature="0"
695 id="path116855"
696- d="m 0,3.6445 1.8301,0 L 1.8301,0 0,0 0,3.6445 Z" /></clipPath><pattern
697+ d="M0 3.64h1.83V0H0v3.64z" />
698+ </clipPath>
699+ <pattern
700 id="pattern116905"
701- height="3.64453"
702- width="1.83008"
703- y="0"
704- x="0"
705+ height="3.64"
706+ width="1.83"
707 patternUnits="userSpaceOnUse"
708- patternTransform="matrix(1.016472,1.016472,-1.016472,1.016472,257.28687,-90.348479)"><g
709- id="g116907"><g
710+ patternTransform="rotate(45 237.704 265.398) scale(1.4375)">
711+ <g
712+ id="g116907">
713+ <g
714 id="g116909"
715- clip-path="url(#clipPath116901)"><path
716+ clip-path="url(#clipPath116901)">
717+ <path
718 id="path116911"
719- style="fill:#e1a780;fill-opacity:1;fill-rule:nonzero;stroke:none"
720- d="m 1.8301,1.8145 -1.8301,0 0,1.8301 1.8301,0 0,-1.8301 z" /><path
721+ d="M1.83 1.8H0v1.84h1.83V1.8z"
722+ fill="#e1a780" />
723+ <path
724 id="path116913"
725- style="fill:#a2b7b9;fill-opacity:1;fill-rule:nonzero;stroke:none"
726- d="M 1.8301,0 0,0 l 0,1.8301 1.8301,0 0,-1.8301 z" /></g></g></pattern><clipPath
727- id="clipPath116901"
728- clipPathUnits="userSpaceOnUse"><path
729+ d="M1.83 0H0v1.83h1.83V0z"
730+ fill="#a2b7b9" />
731+ </g>
732+ </g>
733+ </pattern>
734+ <clipPath
735+ id="clipPath116901">
736+ <path
737 inkscape:connector-curvature="0"
738 id="path116903"
739- d="m 0,3.6445 1.8301,0 L 1.8301,0 0,0 0,3.6445 Z" /></clipPath><pattern
740+ d="M0 3.64h1.83V0H0v3.64z" />
741+ </clipPath>
742+ <pattern
743 id="pattern116941"
744- height="3.64453"
745- width="1.83008"
746- y="0"
747- x="0"
748+ height="3.64"
749+ width="1.83"
750 patternUnits="userSpaceOnUse"
751- patternTransform="matrix(1.016472,1.016472,-1.016472,1.016472,-662.9896,-208.08167)"><g
752- id="g116943"><g
753+ patternTransform="rotate(45 -80.32 -904.34) scale(1.4375)">
754+ <g
755+ id="g116943">
756+ <g
757 id="g116945"
758- clip-path="url(#clipPath116937)"><path
759+ clip-path="url(#clipPath116937)">
760+ <path
761 id="path116947"
762- style="fill:#dd9f75;fill-opacity:1;fill-rule:nonzero;stroke:none"
763- d="m 1.8301,1.8144 -1.8301,0 0,1.8301 1.8301,0 0,-1.8301 z" /><path
764+ d="M1.83 1.8H0v1.84h1.83V1.8z"
765+ fill="#dd9f75" />
766+ <path
767 id="path116949"
768- style="fill:#e3c582;fill-opacity:1;fill-rule:nonzero;stroke:none"
769- d="M 1.8301,0 0,0 l 0,1.8301 1.8301,0 0,-1.8301 z" /></g></g></pattern><clipPath
770- id="clipPath116937"
771- clipPathUnits="userSpaceOnUse"><path
772+ d="M1.83 0H0v1.83h1.83V0z"
773+ fill="#e3c582" />
774+ </g>
775+ </g>
776+ </pattern>
777+ <clipPath
778+ id="clipPath116937">
779+ <path
780 inkscape:connector-curvature="0"
781 id="path116939"
782- d="m 0,3.6445 1.8301,0 L 1.8301,0 0,0 0,3.6445 Z" /></clipPath><pattern
783+ d="M0 3.64h1.83V0H0v3.64z" />
784+ </clipPath>
785+ <pattern
786 id="pattern116971"
787- height="3.64453"
788- width="1.83008"
789- y="0"
790- x="0"
791+ height="3.64"
792+ width="1.83"
793 patternUnits="userSpaceOnUse"
794- patternTransform="matrix(1.016472,1.016472,-1.016472,1.016472,555.34082,143.80155)"><g
795- id="g116973"><g
796+ patternTransform="rotate(45 104.088 742.257) scale(1.4375)">
797+ <g
798+ id="g116973">
799+ <g
800 id="g116975"
801- clip-path="url(#clipPath116967)"><path
802+ clip-path="url(#clipPath116967)">
803+ <path
804 id="path116977"
805- style="fill:#e1a780;fill-opacity:1;fill-rule:nonzero;stroke:none"
806- d="m 1.8301,1.8144 -1.8301,0 0,1.8301 1.8301,0 0,-1.8301 z" /><path
807+ d="M1.83 1.8H0v1.84h1.83V1.8z"
808+ fill="#e1a780" />
809+ <path
810 id="path116979"
811- style="fill:#a2b7b9;fill-opacity:1;fill-rule:nonzero;stroke:none"
812- d="M 1.8301,0 0,0 l 0,1.8301 1.8301,0 0,-1.8301 z" /></g></g></pattern><clipPath
813- id="clipPath116967"
814- clipPathUnits="userSpaceOnUse"><path
815+ d="M1.83 0H0v1.83h1.83V0z"
816+ fill="#a2b7b9" />
817+ </g>
818+ </g>
819+ </pattern>
820+ <clipPath
821+ id="clipPath116967">
822+ <path
823 inkscape:connector-curvature="0"
824 id="path116969"
825- d="m 0,3.6445 1.8301,0 L 1.8301,0 0,0 0,3.6445 Z" /></clipPath><pattern
826+ d="M0 3.64h1.83V0H0v3.64z" />
827+ </clipPath>
828+ <pattern
829 id="pattern116987"
830- height="3.64453"
831- width="1.83008"
832- y="0"
833- x="0"
834+ height="3.64"
835+ width="1.83"
836 patternUnits="userSpaceOnUse"
837- patternTransform="matrix(1.016472,1.016472,-1.016472,1.016472,554.6264,142.11633)"><g
838- id="g116989"><g
839+ patternTransform="rotate(45 105.765 740.552) scale(1.4375)">
840+ <g
841+ id="g116989">
842+ <g
843 id="g116991"
844- clip-path="url(#clipPath116983)"><path
845+ clip-path="url(#clipPath116983)">
846+ <path
847 id="path116993"
848- style="fill:#dd9f75;fill-opacity:1;fill-rule:nonzero;stroke:none"
849- d="m 1.8301,1.8144 -1.8301,0 0,1.8301 1.8301,0 0,-1.8301 z" /><path
850+ d="M1.83 1.8H0v1.84h1.83V1.8z"
851+ fill="#dd9f75" />
852+ <path
853 id="path116995"
854- style="fill:#e3c582;fill-opacity:1;fill-rule:nonzero;stroke:none"
855- d="M 1.8301,0 0,0 l 0,1.8301 1.8301,0 0,-1.8301 z" /></g></g></pattern><clipPath
856- id="clipPath116983"
857- clipPathUnits="userSpaceOnUse"><path
858+ d="M1.83 0H0v1.83h1.83V0z"
859+ fill="#e3c582" />
860+ </g>
861+ </g>
862+ </pattern>
863+ <clipPath
864+ id="clipPath116983">
865+ <path
866 inkscape:connector-curvature="0"
867 id="path116985"
868- d="m 0,3.6445 1.8301,0 L 1.8301,0 0,0 0,3.6445 Z" /></clipPath><pattern
869+ d="M0 3.64h1.83V0H0v3.64z" />
870+ </clipPath>
871+ <pattern
872 id="pattern117017"
873- height="3.64453"
874- width="1.83008"
875- y="0"
876- x="0"
877+ height="3.64"
878+ width="1.83"
879 patternUnits="userSpaceOnUse"
880- patternTransform="matrix(1.016472,1.016472,-1.016472,1.016472,-630.33933,271.79343)"><g
881- id="g117019"><g
882+ patternTransform="rotate(45 -643.254 -624.99) scale(1.4375)">
883+ <g
884+ id="g117019">
885+ <g
886 id="g117021"
887- clip-path="url(#clipPath117013)"><path
888+ clip-path="url(#clipPath117013)">
889+ <path
890 id="path117023"
891- style="fill:#c4cd80;fill-opacity:1;fill-rule:nonzero;stroke:none"
892- d="m 1.8301,1.8144 -1.8301,0 0,1.8301 1.8301,0 0,-1.8301 z" /><path
893+ d="M1.83 1.8H0v1.84h1.83V1.8z"
894+ fill="#c4cd80" />
895+ <path
896 id="path117025"
897- style="fill:#e8ce97;fill-opacity:1;fill-rule:nonzero;stroke:none"
898- d="M 1.8301,0 0,0 l 0,1.8301 1.8301,0 0,-1.8301 z" /></g></g></pattern><clipPath
899- id="clipPath117013"
900- clipPathUnits="userSpaceOnUse"><path
901+ d="M1.83 0H0v1.83h1.83V0z"
902+ fill="#e8ce97" />
903+ </g>
904+ </g>
905+ </pattern>
906+ <clipPath
907+ id="clipPath117013">
908+ <path
909 inkscape:connector-curvature="0"
910 id="path117015"
911- d="m 0,3.6445 1.8301,0 L 1.8301,0 0,0 0,3.6445 Z" /></clipPath><pattern
912+ d="M0 3.64h1.83V0H0v3.64z" />
913+ </clipPath>
914+ <pattern
915 id="pattern122043"
916- height="3.64453"
917- width="1.83008"
918- y="0"
919- x="0"
920+ height="3.64"
921+ width="1.83"
922 patternUnits="userSpaceOnUse"
923- patternTransform="matrix(1.016472,1.016472,-1.016472,1.016472,-255.6986,-21.195665)"><g
924- id="g122045"><g
925+ patternTransform="rotate(45 -102.264 -319.253) scale(1.4375)">
926+ <g
927+ id="g122045">
928+ <g
929 id="g122047"
930- clip-path="url(#clipPath122039)"><path
931+ clip-path="url(#clipPath122039)">
932+ <path
933 id="path122049"
934- style="fill:#dd9f75;fill-opacity:1;fill-rule:nonzero;stroke:none"
935- d="m 1.8301,1.8144 -1.8301,0 0,1.8301 1.8301,0 0,-1.8301 z" /><path
936+ d="M1.83 1.8H0v1.84h1.83V1.8z"
937+ fill="#dd9f75" />
938+ <path
939 id="path122051"
940- style="fill:#e3c582;fill-opacity:1;fill-rule:nonzero;stroke:none"
941- d="M 1.8301,0 0,0 l 0,1.8301 1.8301,0 0,-1.8301 z" /></g></g></pattern><clipPath
942- id="clipPath122039"
943- clipPathUnits="userSpaceOnUse"><path
944+ d="M1.83 0H0v1.83h1.83V0z"
945+ fill="#e3c582" />
946+ </g>
947+ </g>
948+ </pattern>
949+ <clipPath
950+ id="clipPath122039">
951+ <path
952 inkscape:connector-curvature="0"
953 id="path122041"
954- d="m 0,3.6445 1.8301,0 L 1.8301,0 0,0 0,3.6445 Z" /></clipPath><pattern
955+ d="M0 3.64h1.83V0H0v3.64z" />
956+ </clipPath>
957+ <pattern
958 id="pattern122561"
959- height="3.64453"
960- width="1.83008"
961- y="0"
962- x="0"
963+ height="3.64"
964+ width="1.83"
965 patternUnits="userSpaceOnUse"
966- patternTransform="matrix(1.016472,1.016472,-1.016472,1.016472,259.64167,-126.24357)"><g
967- id="g122563"><g
968+ patternTransform="rotate(45 282.21 250.293) scale(1.4375)">
969+ <g
970+ id="g122563">
971+ <g
972 id="g122565"
973- clip-path="url(#clipPath122557)"><path
974+ clip-path="url(#clipPath122557)">
975+ <path
976 id="path122567"
977- style="fill:#c4cd80;fill-opacity:1;fill-rule:nonzero;stroke:none"
978- d="m 1.8301,1.8144 -1.8301,0 0,1.8301 1.8301,0 0,-1.8301 z" /><path
979+ d="M1.83 1.8H0v1.84h1.83V1.8z"
980+ fill="#c4cd80" />
981+ <path
982 id="path122569"
983- style="fill:#e8ce97;fill-opacity:1;fill-rule:nonzero;stroke:none"
984- d="M 1.8301,0 0,0 l 0,1.8301 1.8301,0 0,-1.8301 z" /></g></g></pattern><clipPath
985- id="clipPath122557"
986- clipPathUnits="userSpaceOnUse"><path
987+ d="M1.83 0H0v1.83h1.83V0z"
988+ fill="#e8ce97" />
989+ </g>
990+ </g>
991+ </pattern>
992+ <clipPath
993+ id="clipPath122557">
994+ <path
995 inkscape:connector-curvature="0"
996 id="path122559"
997- d="m 0,3.6445 1.8301,0 L 1.8301,0 0,0 0,3.6445 Z" /></clipPath><pattern
998+ d="M0 3.64h1.83V0H0v3.64z" />
999+ </clipPath>
1000+ <pattern
1001 id="pattern123575"
1002- height="3.64453"
1003- width="1.83008"
1004- y="0"
1005- x="0"
1006+ height="3.64"
1007+ width="1.83"
1008 patternUnits="userSpaceOnUse"
1009- patternTransform="matrix(1.016472,1.016472,-1.016472,1.016472,-242.8786,-43.693665)"><g
1010- id="g123577"><g
1011+ patternTransform="rotate(45 -68.697 -315.027) scale(1.4375)">
1012+ <g
1013+ id="g123577">
1014+ <g
1015 id="g123579"
1016- clip-path="url(#clipPath123571)"><path
1017+ clip-path="url(#clipPath123571)">
1018+ <path
1019 id="path123581"
1020- style="fill:#dd9f75;fill-opacity:1;fill-rule:nonzero;stroke:none"
1021- d="m 1.8301,1.8144 -1.8301,0 0,1.8301 1.8301,0 0,-1.8301 z" /><path
1022+ d="M1.83 1.8H0v1.84h1.83V1.8z"
1023+ fill="#dd9f75" />
1024+ <path
1025 id="path123583"
1026- style="fill:#e3c582;fill-opacity:1;fill-rule:nonzero;stroke:none"
1027- d="M 1.8301,0 0,0 l 0,1.8301 1.8301,0 0,-1.8301 z" /></g></g></pattern><clipPath
1028- id="clipPath123571"
1029- clipPathUnits="userSpaceOnUse"><path
1030+ d="M1.83 0H0v1.83h1.83V0z"
1031+ fill="#e3c582" />
1032+ </g>
1033+ </g>
1034+ </pattern>
1035+ <clipPath
1036+ id="clipPath123571">
1037+ <path
1038 inkscape:connector-curvature="0"
1039 id="path123573"
1040- d="m 0,3.6445 1.8301,0 L 1.8301,0 0,0 0,3.6445 Z" /></clipPath><pattern
1041+ d="M0 3.64h1.83V0H0v3.64z" />
1042+ </clipPath>
1043+ <pattern
1044 id="pattern124377"
1045- height="3.64453"
1046- width="1.83008"
1047- y="0"
1048- x="0"
1049+ height="3.64"
1050+ width="1.83"
1051 patternUnits="userSpaceOnUse"
1052- patternTransform="matrix(1.016472,1.016472,-1.016472,1.016472,308.76513,52.020988)"><g
1053- id="g124379"><g
1054+ patternTransform="rotate(45 91.588 398.723) scale(1.4375)">
1055+ <g
1056+ id="g124379">
1057+ <g
1058 id="g124381"
1059- clip-path="url(#clipPath124373)"><path
1060+ clip-path="url(#clipPath124373)">
1061+ <path
1062 id="path124383"
1063- style="fill:#99b0b2;fill-opacity:1;fill-rule:nonzero;stroke:none"
1064- d="m 1.8301,1.8144 -1.8301,0 0,1.8301 1.8301,0 0,-1.8301 z" /><path
1065+ d="M1.83 1.8H0v1.84h1.83V1.8z"
1066+ fill="#99b0b2" />
1067+ <path
1068 id="path124385"
1069- style="fill:#c9d08a;fill-opacity:1;fill-rule:nonzero;stroke:none"
1070- d="M 1.8301,0 0,0 l 0,1.8301 1.8301,0 0,-1.8301 z" /></g></g></pattern><clipPath
1071- id="clipPath124373"
1072- clipPathUnits="userSpaceOnUse"><path
1073+ d="M1.83 0H0v1.83h1.83V0z"
1074+ fill="#c9d08a" />
1075+ </g>
1076+ </g>
1077+ </pattern>
1078+ <clipPath
1079+ id="clipPath124373">
1080+ <path
1081 inkscape:connector-curvature="0"
1082 id="path124375"
1083- d="m 0,3.6445 1.8301,0 L 1.8301,0 0,0 0,3.6445 Z" /></clipPath><pattern
1084+ d="M0 3.64h1.83V0H0v3.64z" />
1085+ </clipPath>
1086+ <pattern
1087 id="pattern125283"
1088- height="3.64453"
1089- width="1.83008"
1090- y="0"
1091- x="0"
1092+ height="3.64"
1093+ width="1.83"
1094 patternUnits="userSpaceOnUse"
1095- patternTransform="matrix(1.016472,1.016472,-1.016472,1.016472,-305.44418,35.107546)"><g
1096- id="g125285"><g
1097+ patternTransform="rotate(45 -195.1 -351.15) scale(1.4375)">
1098+ <g
1099+ id="g125285">
1100+ <g
1101 id="g125287"
1102- clip-path="url(#clipPath125279)"><path
1103+ clip-path="url(#clipPath125279)">
1104+ <path
1105 id="path125289"
1106- style="fill:#e1a780;fill-opacity:1;fill-rule:nonzero;stroke:none"
1107- d="m 1.8301,1.8144 -1.8301,0 0,1.8301 1.8301,0 0,-1.8301 z" /><path
1108+ d="M1.83 1.8H0v1.84h1.83V1.8z"
1109+ fill="#e1a780" />
1110+ <path
1111 id="path125291"
1112- style="fill:#a2b7b9;fill-opacity:1;fill-rule:nonzero;stroke:none"
1113- d="M 1.8301,0 0,0 l 0,1.8301 1.8301,0 0,-1.8301 z" /></g></g></pattern><clipPath
1114- id="clipPath125279"
1115- clipPathUnits="userSpaceOnUse"><path
1116+ d="M1.83 0H0v1.83h1.83V0z"
1117+ fill="#a2b7b9" />
1118+ </g>
1119+ </g>
1120+ </pattern>
1121+ <clipPath
1122+ id="clipPath125279">
1123+ <path
1124 inkscape:connector-curvature="0"
1125 id="path125281"
1126- d="m 0,3.6445 1.8301,0 L 1.8301,0 0,0 0,3.6445 Z" /></clipPath><pattern
1127+ d="M0 3.64h1.83V0H0v3.64z" />
1128+ </clipPath>
1129+ <pattern
1130 id="pattern127077"
1131- height="3.64453"
1132- width="1.83008"
1133- y="0"
1134- x="0"
1135+ height="3.64"
1136+ width="1.83"
1137 patternUnits="userSpaceOnUse"
1138- patternTransform="matrix(1.016472,1.016472,-1.016472,1.016472,254.04767,-98.701573)"><g
1139- id="g127079"><g
1140+ patternTransform="rotate(45 246.168 257.312) scale(1.4375)">
1141+ <g
1142+ id="g127079">
1143+ <g
1144 id="g127081"
1145- clip-path="url(#clipPath127073)"><path
1146+ clip-path="url(#clipPath127073)">
1147+ <path
1148 id="path127083"
1149- style="fill:#c4cd80;fill-opacity:1;fill-rule:nonzero;stroke:none"
1150- d="m 1.8301,1.8144 -1.8301,0 0,1.8301 1.8301,0 0,-1.8301 z" /><path
1151+ d="M1.83 1.8H0v1.84h1.83V1.8z"
1152+ fill="#c4cd80" />
1153+ <path
1154 id="path127085"
1155- style="fill:#e8ce97;fill-opacity:1;fill-rule:nonzero;stroke:none"
1156- d="M 1.8301,0 0,0 l 0,1.8301 1.8301,0 0,-1.8301 z" /></g></g></pattern><clipPath
1157- id="clipPath127073"
1158- clipPathUnits="userSpaceOnUse"><path
1159+ d="M1.83 0H0v1.83h1.83V0z"
1160+ fill="#e8ce97" />
1161+ </g>
1162+ </g>
1163+ </pattern>
1164+ <clipPath
1165+ id="clipPath127073">
1166+ <path
1167 inkscape:connector-curvature="0"
1168 id="path127075"
1169- d="m 0,3.6445 1.8301,0 L 1.8301,0 0,0 0,3.6445 Z" /></clipPath><pattern
1170+ d="M0 3.64h1.83V0H0v3.64z" />
1171+ </clipPath>
1172+ <pattern
1173 id="pattern127707"
1174- height="3.64453"
1175- width="1.83008"
1176- y="0"
1177- x="0"
1178+ height="3.64"
1179+ width="1.83"
1180 patternUnits="userSpaceOnUse"
1181- patternTransform="matrix(1.016472,1.016472,-1.016472,1.016472,-462.24474,153.18201)"><g
1182- id="g127709"><g
1183+ patternTransform="rotate(45 -416.03 -481.387) scale(1.4375)">
1184+ <g
1185+ id="g127709">
1186+ <g
1187 id="g127711"
1188- clip-path="url(#clipPath127703)"><path
1189+ clip-path="url(#clipPath127703)">
1190+ <path
1191 id="path127713"
1192- style="fill:#dd9f75;fill-opacity:1;fill-rule:nonzero;stroke:none"
1193- d="m 1.8301,1.8145 -1.8301,0 0,1.8301 1.8301,0 0,-1.8301 z" /><path
1194+ d="M1.83 1.8H0v1.84h1.83V1.8z"
1195+ fill="#dd9f75" />
1196+ <path
1197 id="path127715"
1198- style="fill:#e3c582;fill-opacity:1;fill-rule:nonzero;stroke:none"
1199- d="M 1.8301,0 0,0 l 0,1.8301 1.8301,0 0,-1.8301 z" /></g></g></pattern><clipPath
1200- id="clipPath127703"
1201- clipPathUnits="userSpaceOnUse"><path
1202+ d="M1.83 0H0v1.83h1.83V0z"
1203+ fill="#e3c582" />
1204+ </g>
1205+ </g>
1206+ </pattern>
1207+ <clipPath
1208+ id="clipPath127703">
1209+ <path
1210 inkscape:connector-curvature="0"
1211 id="path127705"
1212- d="m 0,3.6445 1.8301,0 L 1.8301,0 0,0 0,3.6445 Z" /></clipPath><pattern
1213+ d="M0 3.64h1.83V0H0v3.64z" />
1214+ </clipPath>
1215+ <pattern
1216 id="pattern128965"
1217- height="3.64453"
1218- width="1.83008"
1219- y="0"
1220- x="0"
1221+ height="3.64"
1222+ width="1.83"
1223 patternUnits="userSpaceOnUse"
1224- patternTransform="matrix(1.016472,1.016472,-1.016472,1.016472,-441.11474,136.08201)"><g
1225- id="g128967"><g
1226+ patternTransform="rotate(45 -384.824 -464.43) scale(1.4375)">
1227+ <g
1228+ id="g128967">
1229+ <g
1230 id="g128969"
1231- clip-path="url(#clipPath128961)"><path
1232+ clip-path="url(#clipPath128961)">
1233+ <path
1234 id="path128971"
1235- style="fill:#dd9f75;fill-opacity:1;fill-rule:nonzero;stroke:none"
1236- d="m 1.8301,1.8145 -1.8301,0 0,1.8301 1.8301,0 0,-1.8301 z" /><path
1237+ d="M1.83 1.8H0v1.84h1.83V1.8z"
1238+ fill="#dd9f75" />
1239+ <path
1240 id="path128973"
1241- style="fill:#e3c582;fill-opacity:1;fill-rule:nonzero;stroke:none"
1242- d="M 1.8301,0 0,0 l 0,1.8301 1.8301,0 0,-1.8301 z" /></g></g></pattern><clipPath
1243- id="clipPath128961"
1244- clipPathUnits="userSpaceOnUse"><path
1245+ d="M1.83 0H0v1.83h1.83V0z"
1246+ fill="#e3c582" />
1247+ </g>
1248+ </g>
1249+ </pattern>
1250+ <clipPath
1251+ id="clipPath128961">
1252+ <path
1253 inkscape:connector-curvature="0"
1254 id="path128963"
1255- d="m 0,3.6445 1.8301,0 L 1.8301,0 0,0 0,3.6445 Z" /></clipPath><pattern
1256+ d="M0 3.64h1.83V0H0v3.64z" />
1257+ </clipPath>
1258+ <pattern
1259 id="pattern128983"
1260- height="3.64453"
1261- width="1.83008"
1262- y="0"
1263- x="0"
1264+ height="3.64"
1265+ width="1.83"
1266 patternUnits="userSpaceOnUse"
1267- patternTransform="matrix(1.016472,1.016472,-1.016472,1.016472,-216.86533,-56.629573)"><g
1268- id="g128985"><g
1269+ patternTransform="rotate(45 -40.075 -290.094) scale(1.4375)">
1270+ <g
1271+ id="g128985">
1272+ <g
1273 id="g128987"
1274- clip-path="url(#clipPath128979)"><path
1275+ clip-path="url(#clipPath128979)">
1276+ <path
1277 id="path128989"
1278- style="fill:#c4cd80;fill-opacity:1;fill-rule:nonzero;stroke:none"
1279- d="m 1.8301,1.8144 -1.8301,0 0,1.8301 1.8301,0 0,-1.8301 z" /><path
1280+ d="M1.83 1.8H0v1.84h1.83V1.8z"
1281+ fill="#c4cd80" />
1282+ <path
1283 id="path128991"
1284- style="fill:#e8ce97;fill-opacity:1;fill-rule:nonzero;stroke:none"
1285- d="M 1.8301,0 0,0 l 0,1.8301 1.8301,0 0,-1.8301 z" /></g></g></pattern><clipPath
1286- id="clipPath128979"
1287- clipPathUnits="userSpaceOnUse"><path
1288+ d="M1.83 0H0v1.83h1.83V0z"
1289+ fill="#e8ce97" />
1290+ </g>
1291+ </g>
1292+ </pattern>
1293+ <clipPath
1294+ id="clipPath128979">
1295+ <path
1296 inkscape:connector-curvature="0"
1297 id="path128981"
1298- d="m 0,3.6445 1.8301,0 L 1.8301,0 0,0 0,3.6445 Z" /></clipPath><pattern
1299+ d="M0 3.64h1.83V0H0v3.64z" />
1300+ </clipPath>
1301+ <pattern
1302 id="pattern129001"
1303- height="3.69141"
1304- width="1.83008"
1305- y="0"
1306- x="0"
1307+ height="3.69"
1308+ width="1.83"
1309 patternUnits="userSpaceOnUse"
1310- patternTransform="matrix(0.813175,0.813175,-0.813175,0.813175,-254.75201,62.785865)"><g
1311- id="g129003"><g
1312+ patternTransform="scale(1.15) rotate(45 -176.665 -240.104)">
1313+ <g
1314+ id="g129003">
1315+ <g
1316 id="g129005"
1317- clip-path="url(#clipPath128997)"><path
1318+ clip-path="url(#clipPath128997)">
1319+ <path
1320 id="path129007"
1321- style="fill:#dd9f75;fill-opacity:1;fill-rule:nonzero;stroke:none"
1322- d="m 1.8301,1.8613 -1.8301,0 0,1.8301 1.8301,0 0,-1.8301 z" /><path
1323+ d="M1.83 1.86H0V3.7h1.83V1.85z"
1324+ fill="#dd9f75" />
1325+ <path
1326 id="path129009"
1327- style="fill:#e3c582;fill-opacity:1;fill-rule:nonzero;stroke:none"
1328- d="M 1.8301,0 0,0 l 0,1.8301 1.8301,0 0,-1.8301 z" /></g></g></pattern><clipPath
1329- id="clipPath128997"
1330- clipPathUnits="userSpaceOnUse"><path
1331+ d="M1.83 0H0v1.83h1.83V0z"
1332+ fill="#e3c582" />
1333+ </g>
1334+ </g>
1335+ </pattern>
1336+ <clipPath
1337+ id="clipPath128997">
1338+ <path
1339 inkscape:connector-curvature="0"
1340 id="path128999"
1341- d="m 0,3.6914 1.8301,0 L 1.8301,0 0,0 0,3.6914 Z" /></clipPath><pattern
1342+ d="M0 3.7h1.83V0H0v3.7z" />
1343+ </clipPath>
1344+ <pattern
1345 id="pattern129019"
1346- height="3.64453"
1347- width="1.83008"
1348- y="0"
1349- x="0"
1350+ height="3.64"
1351+ width="1.83"
1352 patternUnits="userSpaceOnUse"
1353- patternTransform="matrix(1.060662,1.060662,-1.060662,1.060662,-135.80033,-23.714275)"><g
1354- id="g129021"><g
1355+ patternTransform="scale(1.5) rotate(45 -26.183 -117.188)">
1356+ <g
1357+ id="g129021">
1358+ <g
1359 id="g129023"
1360- clip-path="url(#clipPath129015)"><path
1361+ clip-path="url(#clipPath129015)">
1362+ <path
1363 id="path129025"
1364- style="fill:#99b0b2;fill-opacity:1;fill-rule:nonzero;stroke:none"
1365- d="m 1.8301,1.8145 -1.8301,0 0,1.8301 1.8301,0 0,-1.8301 z" /><path
1366+ d="M1.83 1.8H0v1.84h1.83V1.8z"
1367+ fill="#99b0b2" />
1368+ <path
1369 id="path129027"
1370- style="fill:#c9d08a;fill-opacity:1;fill-rule:nonzero;stroke:none"
1371- d="M 1.8301,0 0,0 l 0,1.8301 1.8301,0 0,-1.8301 z" /></g></g></pattern><clipPath
1372- id="clipPath129015"
1373- clipPathUnits="userSpaceOnUse"><path
1374+ d="M1.83 0H0v1.83h1.83V0z"
1375+ fill="#c9d08a" />
1376+ </g>
1377+ </g>
1378+ </pattern>
1379+ <clipPath
1380+ id="clipPath129015">
1381+ <path
1382 inkscape:connector-curvature="0"
1383 id="path129017"
1384- d="m 0,3.6445 1.8301,0 L 1.8301,0 0,0 0,3.6445 Z" /></clipPath><clipPath
1385- id="clipPath187247"
1386- clipPathUnits="userSpaceOnUse"><path
1387+ d="M0 3.64h1.83V0H0v3.64z" />
1388+ </clipPath>
1389+ <clipPath
1390+ id="clipPath187247">
1391+ <path
1392 inkscape:connector-curvature="0"
1393 id="path187249"
1394- d="m 0,936.03 1512,0 0,-936 -1512,0 0,936 z" /></clipPath><clipPath
1395- id="clipPath187287"
1396- clipPathUnits="userSpaceOnUse"><path
1397+ d="M0 936.03h1512V.03H0v936z" />
1398+ </clipPath>
1399+ <clipPath
1400+ id="clipPath187287">
1401+ <path
1402 inkscape:connector-curvature="0"
1403 id="path187289"
1404- d="m 0,936.03 1512,0 0,-936 -1512,0 0,936 z" /></clipPath><clipPath
1405- id="clipPath188723"
1406- clipPathUnits="userSpaceOnUse"><path
1407+ d="M0 936.03h1512V.03H0v936z" />
1408+ </clipPath>
1409+ <clipPath
1410+ id="clipPath188723">
1411+ <path
1412 inkscape:connector-curvature="0"
1413 id="path188725"
1414- d="m 181.889,157.159 -27.113,0 0,3.144 c 0,9.866 0,19.733 0,29.6 l 0,3.887 3.096,0 c 7.643,0 15.286,0 22.929,0 l 1.088,0 0,-0.574 c 0,-11.814 0,-23.628 0,-35.441 l 0,-0.616 m -27.473,0 -27.113,0 0,1.014 c 0,11.55 0,23.1 0,34.65 l 0,0.967 1.089,0 c 7.643,0 15.286,0 22.929,0 l 3.095,0 0,-3.887 c 0,-9.867 0,-19.734 0,-29.6 l 0,-3.144 m 27.473,36.991 -1.088,0 c -7.643,0 -15.286,0 -22.929,0 l -3.096,0 0,3.85 c 0,9.1 0,18.201 0,27.302 l 0,0.857 27.113,0 0,-1.166 c 0,-10.185 0,-20.37 0,-30.555 l 0,-0.288 m -27.473,0 -3.095,0 c -7.643,0 -15.286,0 -22.929,0 l -1.089,0 0,1.148 c 0,9.899 0,19.799 0,29.699 l 0,1.162 27.113,0 0,-0.857 c 0,-9.101 0,-18.202 0,-27.302 l 0,-3.85" /></clipPath><clipPath
1415- id="clipPath188735"
1416- clipPathUnits="userSpaceOnUse"><path
1417+ d="M181.9 157.16h-27.12v36.64H181.9v-.58V157.17m-27.48 0H127.3v36.62H154.42v-3.9-32.74m27.47 37H154.76v32h27.12V225v-30.86m-27.48 0H127.3V226.17h27.12v-.86V194.15" />
1418+ </clipPath>
1419+ <clipPath
1420+ id="clipPath188735">
1421+ <path
1422 inkscape:connector-curvature="0"
1423 id="path188737"
1424- d="m 126.203,157.159 -25.363,0 0,36.631 1.347,0 c 7.643,0 15.286,0 22.929,0 l 1.087,0 0,-0.967 c 0,-11.55 0,-23.1 0,-34.65 l 0,-1.014 m 0,36.991 -1.087,0 c -7.643,0 -15.286,0 -22.929,0 l -1.347,0 0,32.009 25.363,0 0,-1.162 c 0,-9.9 0,-19.8 0,-29.699 l 0,-1.148" /></clipPath><clipPath
1425- id="clipPath188747"
1426- clipPathUnits="userSpaceOnUse"><path
1427+ d="M126.2 157.16h-25.36v36.63h25.35v-.98-35.65m0 36.98H100.83v32h25.36V225 194.15" />
1428+ </clipPath>
1429+ <clipPath
1430+ id="clipPath188747">
1431+ <path
1432 inkscape:connector-curvature="0"
1433 id="path188749"
1434- d="m 236.84,157.159 -26.378,0 0,3.144 c 0,9.866 0,19.733 0,29.6 l 0,3.887 3.095,0 c 7.644,0 15.287,0 22.93,0 l 0.353,0 0,-36.631 m -26.738,0 -27.113,0 0,0.616 c 0,11.813 0,23.627 0,35.441 l 0,0.574 1.088,0 c 7.643,0 15.286,0 22.929,0 l 3.096,0 0,-3.887 c 0,-9.867 0,-19.734 0,-29.6 l 0,-3.144 m 26.738,36.991 -0.353,0 c -7.643,0 -15.286,0 -22.93,0 l -3.095,0 0,3.85 c 0,9.1 0,18.201 0,27.302 l 0,0.857 26.378,0 0,-32.009 m -26.738,0 -3.096,0 c -7.643,0 -15.286,0 -22.929,0 l -1.088,0 0,0.288 c 0,10.185 0,20.37 0,30.555 l 0,1.166 27.113,0 0,-0.857 c 0,-9.101 0,-18.202 0,-27.302 l 0,-3.85" /></clipPath><clipPath
1435- id="clipPath188759"
1436- clipPathUnits="userSpaceOnUse"><path
1437+ d="M236.84 157.16h-26.38v36.64h26.37v-36.64m-26.74 0H183v36.63h27.11v-3.9-32.74m26.74 37H210.45v32h26.38v-32m-26.74 0H182.98V226.14h27.12v-.86V194.15" />
1438+ </clipPath>
1439+ <clipPath
1440+ id="clipPath188759">
1441+ <path
1442 inkscape:connector-curvature="0"
1443 id="path188761"
1444- d="m 154.416,193.79 -3.095,0 c -7.643,0 -15.286,0 -22.929,0 l -1.089,0 0,0.36 1.089,0 c 7.643,0 15.286,0 22.929,0 l 3.095,0 0,-0.18 0.18,0 -0.18,0 0,-0.18 m -28.213,0 -1.087,0 c -7.643,0 -15.286,0 -22.929,0 l -1.347,0 0,0.36 1.347,0 c 7.643,0 15.286,0 22.929,0 l 1.087,0 0,-0.36" /></clipPath><clipPath
1445- id="clipPath188771"
1446- clipPathUnits="userSpaceOnUse"><path
1447+ d="M154.42 193.8H127.3v.35H154.42v-.18h.18-.18v-.18m-28.22 0H100.83v.35h25.35v-.36" />
1448+ </clipPath>
1449+ <clipPath
1450+ id="clipPath188771">
1451+ <path
1452 inkscape:connector-curvature="0"
1453 id="path188773"
1454- d="m 210.102,193.79 -3.096,0 c -7.643,0 -15.286,0 -22.929,0 l -1.088,0 0,0.36 1.088,0 c 7.643,0 15.286,0 22.929,0 l 3.096,0 0,-0.18 0.18,0 -0.18,0 0,-0.18 m -28.213,0 -1.088,0 c -7.643,0 -15.286,0 -22.929,0 l -3.096,0 0,0.18 -0.18,0 0.18,0 0,0.18 3.096,0 c 7.643,0 15.286,0 22.929,0 l 1.088,0 0,-0.36" /></clipPath><clipPath
1455- id="clipPath188783"
1456- clipPathUnits="userSpaceOnUse"><path
1457+ d="M210.1 193.8H182.98v.35H210.12v-.18h.18-.18v-.18m-28.2 0H154.76v.17h-.17.18v.18H181.9v-.36" />
1458+ </clipPath>
1459+ <clipPath
1460+ id="clipPath188783">
1461+ <path
1462 inkscape:connector-curvature="0"
1463 id="path188785"
1464- d="m 236.84,193.79 -0.353,0 c -7.643,0 -15.286,0 -22.93,0 l -3.095,0 0,0.18 -0.18,0 0.18,0 0,0.18 3.095,0 c 7.644,0 15.287,0 22.93,0 l 0.353,0 0,-0.36" /></clipPath><clipPath
1465- id="clipPath188795"
1466- clipPathUnits="userSpaceOnUse"><path
1467+ d="M236.84 193.8H210.45v.17h-.18.18v.18h26.37v-.36" />
1468+ </clipPath>
1469+ <clipPath
1470+ id="clipPath188795">
1471+ <path
1472 inkscape:connector-curvature="0"
1473 id="path188797"
1474- d="m 154.776,193.97 -0.36,0 0,0.18 c 0,10.384 0,20.768 0,31.152 l 0,0.857 0.36,0 0,-0.857 c 0,-10.384 0,-20.768 0,-31.152 l 0,-0.18" /></clipPath><clipPath
1475- id="clipPath188807"
1476- clipPathUnits="userSpaceOnUse"><path
1477+ d="M154.78 193.97h-.36v32.19h.36v-.86-31.33" />
1478+ </clipPath>
1479+ <clipPath
1480+ id="clipPath188807">
1481+ <path
1482 inkscape:connector-curvature="0"
1483 id="path188809"
1484- d="m 210.462,193.97 -0.36,0 0,0.18 c 0,10.384 0,20.768 0,31.152 l 0,0.857 0.36,0 0,-0.857 c 0,-10.384 0,-20.768 0,-31.152 l 0,-0.18" /></clipPath><clipPath
1485- id="clipPath188819"
1486- clipPathUnits="userSpaceOnUse"><path
1487+ d="M210.46 193.97h-.36v32.19h.36v-.86-31.33" />
1488+ </clipPath>
1489+ <clipPath
1490+ id="clipPath188819">
1491+ <path
1492 inkscape:connector-curvature="0"
1493 id="path188821"
1494- d="m 154.776,157.159 -0.36,0 0,3.144 c 0,11.162 0,22.324 0,33.487 l 0,0.18 0.36,0 0,-0.18 c 0,-11.163 0,-22.325 0,-33.487 l 0,-3.144" /></clipPath><clipPath
1495- id="clipPath188831"
1496- clipPathUnits="userSpaceOnUse"><path
1497+ d="M154.78 157.16h-.36v36.81h.36v-.18-36.64" />
1498+ </clipPath>
1499+ <clipPath
1500+ id="clipPath188831">
1501+ <path
1502 inkscape:connector-curvature="0"
1503 id="path188833"
1504- d="m 210.462,157.159 -0.36,0 0,3.144 c 0,11.162 0,22.324 0,33.487 l 0,0.18 0.36,0 0,-0.18 c 0,-11.163 0,-22.325 0,-33.487 l 0,-3.144" /></clipPath><clipPath
1505- id="clipPath188843"
1506- clipPathUnits="userSpaceOnUse"><path
1507+ d="M210.46 157.16h-.36v36.81h.36v-.18-36.64" />
1508+ </clipPath>
1509+ <clipPath
1510+ id="clipPath188843">
1511+ <path
1512 inkscape:connector-curvature="0"
1513 id="path188845"
1514- d="m 127.303,157.159 -1.1,0 0,1.014 c 0,22.274 0,44.549 0,66.824 l 0,1.162 1.1,0 0,-1.162 c 0,-22.275 0,-44.55 0,-66.824 l 0,-1.014" /></clipPath><clipPath
1515- id="clipPath188855"
1516- clipPathUnits="userSpaceOnUse"><path
1517+ d="M127.3 157.16h-1.1v69h1.1V225v-67.83" />
1518+ </clipPath>
1519+ <clipPath
1520+ id="clipPath188855">
1521+ <path
1522 inkscape:connector-curvature="0"
1523 id="path188857"
1524- d="m 182.989,157.159 -1.1,0 0,0.616 c 0,22.406 0,44.812 0,67.218 l 0,1.166 1.1,0 0,-1.166 c 0,-22.406 0,-44.812 0,-67.218 l 0,-0.616" /></clipPath></defs><sodipodi:namedview
1525+ d="M183 157.16h-1.1v68.99h1.1V225v-67.83" />
1526+ </clipPath>
1527+ </defs>
1528+ <sodipodi:namedview
1529 inkscape:window-height="1060"
1530- inkscape:window-width="1540"
1531+ inkscape:window-width="1918"
1532 inkscape:pageshadow="2"
1533 inkscape:pageopacity="0"
1534 guidetolerance="10"
1535 gridtolerance="10"
1536 objecttolerance="10000"
1537- borderopacity="1.0"
1538+ borderopacity="1"
1539 bordercolor="#666666"
1540 pagecolor="#ffffff"
1541 id="base"
1542 showgrid="false"
1543 inkscape:zoom="1"
1544- inkscape:cx="634.66944"
1545- inkscape:cy="440.58486"
1546- inkscape:window-x="2153"
1547- inkscape:window-y="0"
1548- inkscape:current-layer="layer7"
1549+ inkscape:cx="755.72"
1550+ inkscape:cy="440.58"
1551+ inkscape:window-x="1920"
1552+ inkscape:window-y="51"
1553+ inkscape:current-layer="m8"
1554 inkscape:object-nodes="false"
1555 showguides="false"
1556 inkscape:guide-bbox="true"
1557@@ -503,5904 +683,17173 @@
1558 fit-margin-left="0"
1559 fit-margin-right="0"
1560 fit-margin-bottom="0"
1561- units="px"><inkscape:grid
1562+ units="px">
1563+ <inkscape:grid
1564 type="xygrid"
1565 id="grid12850"
1566 empspacing="5"
1567 visible="true"
1568 enabled="true"
1569 snapvisiblegridlinesonly="true"
1570- originx="0.5"
1571- originy="1.487183" /></sodipodi:namedview><g
1572- inkscape:groupmode="layer"
1573- id="layer9"
1574+ originx=".5"
1575+ originy="1.49" />
1576+ </sodipodi:namedview>
1577+ <g
1578+ inkscape:groupmode="layer"
1579+ id="background"
1580+ inkscape:label="background"
1581+ style="display:inline;stroke-linecap:round;stroke-linejoin:round">
1582+ <path
1583+ d="m 745.02,340.7 0.53,0.24 0.97,-0.43 0.1,-0.52 1,0.06 0.15,0.1 0.8,-0.1 0.92,0.37 0.1,0.92 1.6,0.97 -0.27,0.46 -0.97,0.97 -0.1,0.18 -0.9,0.4 -0.63,0.9 -0.46,0.06 0,0.1 0.1,0.08 0.46,0.72 -0.1,1.44 0,0.1 -0.18,1.7 -0.38,0.1 -0.34,0.44 0.62,1 -0.28,0.9 -0.15,0 0,0.1 -0.2,0.72 -0.18,0.07 -2.23,0 0.7,0.9 0.48,0.2 -0.1,0.52 0.35,0.47 -0.1,0.1 0.66,0.87 0.33,-0.1 0.3,0.46 0.08,0 c -0.9,2.3 -1.2,0.5 -1.7,2.97 l 0.08,0.1 -0.1,0.18 0.35,0.26 0.72,1.1 0.72,-0.1 -0.25,0.9 -1,0.17 -0.2,0.18 0,0.2 -1.24,2.06 0.1,0.1 0.37,1.43 0.07,0.18 0.18,0.28 1.82,-0.56 0.43,0 -0.18,0.56 1.8,1.07 1.35,0.43 -0.9,1.1 0.9,0.53 0.28,0.36 -0.18,0.63 1,1.14 1.87,1 1,0.4 0.25,0.15 -0.06,0.45 0.33,0.97 1.63,1.63 1,0.56 1.43,0.26 1.78,-0.44 1,0.2 0.28,-0.38 1.78,0.43 1.9,-0.72 0.1,0.3 0.87,0.8 0.92,0.2 0.9,-0.2 0.62,0.18 c 0.45,0.65 1.13,1.1 1.72,1.53 l 0.1,0.1 0.1,0.62 0.52,0.9 -0.2,1.06 0.3,0.9 -0.38,2.07 0.37,0.2 0.25,0.53 -0.25,0.9 0.16,1 0.66,0.82 -0.1,0.88 0.96,0.9 0.72,0.63 -0.53,1.8 -0.2,0.35 0.1,0 0.38,0.3 -0.1,0.1 -0.8,-0.1 -2.45,-0.1 -2.15,-0.2 -0.9,0.2 -1.7,0.53 -0.18,0.9 -0.44,0.2 -0.8,0.28 -0.9,0.26 -1.82,0.18 0,0.38 0.47,0.97 -0.28,0.9 0.53,0.43 0.1,0.9 -1.45,0.3 -0.9,0.7 -0.25,0.2 -1,0.53 -0.44,0 -1.28,0.43 -0.9,0.62 -0.73,1.2 -0.87,1 -1.2,0.42 -2.05,0.38 -0.9,0.16 -0.9,-0.1 -0.17,-0.06 0,0.44 -0.72,0.9 -0.9,-0.18 -1.44,-0.1 -0.9,0.72 -0.45,0.38 -0.9,0.06 c -0.77,0.64 -1.58,1.22 -2.4,1.78 -0.83,0.56 -1.67,1.08 -2.48,1.66 l 0,7.1 1,0.65 12.97,8.1 0,0.08 c 8.85,5.75 17.76,11.74 26.16,18.08 l 5.5,3.53 0.1,0.44 0,0.38 0.43,0.87 1,0.65 0.72,0.63 0.62,0.9 1.2,0.35 0.9,-0.2 1.25,1.2 0.9,0.1 1.16,0.24 1,0.56 0.2,1.25 0.24,0.9 -0.72,1.07 1,0.9 2.15,-0.43 2.07,-0.38 c -0.04,3.24 0.05,6.5 -0.03,9.75 l 0,0.03 c -0.04,1.1 -0.1,2.18 -0.17,3.28 l -0.72,0.88 -0.24,0.9 0.1,0.2 -0.66,1.43 -0.16,0.2 -0.9,0.53 -0.72,0.9 -0.28,-0.1 -0.54,-0.08 -1.34,-0.2 -0.72,0.48 -0.9,-0.1 -2.88,0.2 -3.44,0.15 -1.43,1.38 -1.17,0.15 -0.2,0.1 -0.9,-0.24 -1.3,0 0.1,0.34 0,0.2 -0.3,0.18 0.1,0.96 0.1,1 0.52,0.44 0.1,0.9 0.53,0.9 0.66,0.83 0,0.2 1.54,0.7 0.87,0.83 0.73,0.25 -0.53,0.18 -0.25,0 -0.66,0.2 0,0.9 0.1,0.25 0.55,0.1 0.97,0.8 1.2,1 1.14,0.1 1,-0.46 0.44,0.1 0.53,1.1 -0.62,0.86 0.72,1 0.2,0.28 0.37,0.53 -0.4,1 -1.08,0.92 -0.35,0.25 -0.53,0 -0.18,-0.1 -1.1,0.3 -0.87,-0.3 -0.3,0.3 -0.1,0.42 -0.9,0.46 0,0.16 -0.9,0.56 0,0.25 -0.16,-0.06 -0.18,0.44 -0.38,0.9 -0.06,1.54 c 0.84,0.8 1.62,1.24 2.6,1.8 l 0,0.45 0.1,1.15 0,0.8 0.08,0.3 0.2,0.62 0.05,0.1 0.75,0.9 c 0.1,2.43 0.2,4.83 0.2,7.25 l 0,0.03 c 0,0.8 -0.02,1.6 -0.04,2.4 l -0.44,0 0.2,0.48 0,0.9 0.33,0.63 0.53,0.9 0.1,0.44 -0.82,0.2 0.1,0.08 1.34,-0.28 2.44,-0.28 3.97,-0.16 0.35,-0.37 1.53,-0.73 -0.87,0.72 -0.65,0 0.9,0.18 1,-0.1 2.44,0.28 1.6,0.88 1.52,1.53 0.72,0.1 0.65,-0.26 -0.82,0.45 0.1,0.9 0.87,-0.52 -0.1,0.43 0.9,0.2 -0.9,0.08 0.38,0.82 1.1,-0.66 -0.2,0.72 -0.52,0.2 0,2.05 1.16,1.72 1.25,0.6 0.3,-0.08 0.28,0.66 0.62,-1 0,0.9 0.9,-0.2 0.54,-0.8 0.72,-0.2 0.1,-0.24 -0.1,0.88 0.34,0.37 0,-2.16 0.38,1.78 0.53,-0.25 -0.34,-1 0.53,0.1 0.1,0.9 0.24,-0.9 0.72,0.52 0.47,-0.2 0.7,0 0,9.38 2.2,0.44 0.03,16 -14,0 0,4.75 11.78,0 0,299.8 69.47,0 0,-144.97 -0.27,0.08 -0.9,0 -2.07,1.62 -2.68,0.2 -1,-0.3 -0.9,0.2 0.27,0.37 -1.25,-0.1 -2.8,1.97 -0.9,-0.34 -0.9,-0.1 -0.9,-0.7 -0.34,-0.1 -0.2,-0.9 -1,-0.36 -0.7,0.07 -0.35,-0.53 -0.1,-0.8 -0.7,-0.2 -0.72,0.1 -0.38,0.47 0.28,0.9 -0.56,-0.65 -0.16,-1.26 0.44,-1.25 -0.8,-1.64 -0.73,-0.9 0.1,-0.35 -0.44,-0.9 -0.82,-0.53 0.36,-1 0.9,0.35 0.72,-0.72 0.28,-0.88 0.1,-0.9 -0.47,-2.16 -0.36,-1 -1.37,-1.8 -1.44,-2.26 -1.34,-2.7 -0.92,-2.58 -0.15,-0.9 -1.1,-2.82 -1.15,-1.78 -0.38,-0.9 0.8,-0.63 0.45,-0.4 0.38,-0.86 0.62,-0.72 0.9,0.15 0.1,0.3 0.8,0.8 -0.17,0.9 0.53,1.07 1,0.37 1,0 0.88,0.45 1.8,0.1 0.92,-0.2 0.8,0 0.9,0.38 0.9,0 0.37,-0.1 0.1,-0.9 0.7,-0.1 0.45,-0.9 1.1,-0.16 0.87,-0.37 0.05,-5.4 c 0.02,-3.5 0,-7 0,-10.5 l 0,-5.7 0,-2.24 c 0,-2.65 0,-5.27 0.03,-7.9 l 4.6,0 0,-17.78 c 0.85,0.03 1.7,-0.06 2.53,-0.2 0.04,0 0.07,0.02 0.1,0 1.3,-0.2 2.57,-0.5 3.88,-0.77 l 0.28,-0.06 0.15,-0.03 0.08,0 c 0.52,-0.1 1.05,-0.2 1.6,-0.28 l 0.65,-0.1 c 0.45,-0.05 0.9,-0.1 1.37,-0.1 l 0.34,0.63 0.72,0.8 0.47,0.9 1.25,-1.05 0.38,-0.47 1.78,-0.97 0.8,0.45 0.92,-0.72 0.37,-0.28 0.88,-0.1 1.3,-0.06 -1.3,-1.1 -0.1,-0.1 -0.86,-0.28 -2.25,-0.06 -0.3,-0.1 -3.5,0.73 -1.27,-0.64 -3.32,-3.25 -1.08,-1.08 -1.16,-1.97 0,-0.1 c 0.04,-2.43 0,-4.88 -0.03,-7.3 l 0,-0.04 -0.06,-3.64 0,-3.66 0.47,-0.1 c 0.17,-0.02 0.36,-0.06 0.56,-0.1 0.4,-0.03 0.84,-0.07 1.3,-0.08 0.68,-0.02 1.4,0 2.14,0 0.52,0 1.03,0.02 1.53,0.03 l 2.07,0 c 0.33,0 0.62,0 0.87,-0.03 l -0.2,-0.9 0.2,-0.73 0.34,-0.9 0.1,-0.9 -0.15,-0.27 0,-2.44 0.16,-0.9 0,-1.7 -0.1,-0.1 -0.05,-1.18 -0.9,0.66 -1,-0.1 -0.9,-0.1 -0.9,0.54 -0.46,0.1 -0.9,-0.2 -0.9,0.2 -0.64,-0.3 -0.35,0.4 -0.08,0.08 -1.1,0.53 0,-0.1 -0.34,-1.77 0.44,-0.28 0.28,-0.44 0,-0.1 -0.1,-0.28 0,-0.9 -0.43,-1.25 -0.1,-0.7 -1.34,-1.54 -0.28,-0.9 0.1,-1.45 -0.1,-0.27 0.1,-0.72 0.34,-2.5 -0.08,-0.46 -0.75,-1.78 0.1,-0.37 0.28,-0.98 0.1,-1 -0.38,-0.72 -5.75,0 0.1,-0.8 0.34,-0.92 -1.07,0 -0.9,0.38 -1.07,0 -0.38,-1 -0.72,-0.9 -0.28,-1.88 0.56,-0.57 0.98,-0.42 0.47,-0.63 0.34,-0.9 -0.2,-1.16 0.2,-0.92 -0.2,-0.9 -0.43,-1.35 0.28,-0.9 -0.37,-1 0.1,-0.07 0.27,-0.1 0.88,0.54 0.46,-0.44 0.18,0 0.16,-0.1 0.9,-0.55 -0.1,-3.3 0.48,-1.9 0.44,-0.92 0.53,-0.62 0.18,-0.97 1.25,0.08 0.9,-0.8 1.72,0.86 0.28,-0.15 0.63,-0.48 1.06,-0.25 -0.44,-1.9 1.16,0.18 0.37,-0.28 0.64,-0.44 1.44,0.72 0.53,-0.2 1,0.64 2.26,-0.64 0.9,-0.72 2.16,0.1 -0.2,-1.16 -0.8,-0.65 -0.9,-0.25 -2.8,-2.16 0.1,-0.63 0.9,-0.47 -0.8,-0.9 -2.06,-0.26 1.87,-0.9 -0.62,-0.9 -1.34,-1.9 -0.18,-0.7 -0.35,-0.57 -0.25,-1 -0.06,-0.22 -0.03,-0.1 c -0.02,0 -0.04,-0.03 -0.04,-0.05 -0.04,-0.17 -0.04,-0.34 -0.1,-0.5 0,-0.06 -0.04,-0.1 -0.06,-0.16 -0.05,-0.15 -0.12,-0.3 -0.2,-0.44 l 0,-0.03 c -0.07,-0.18 -0.18,-0.34 -0.3,-0.5 -0.1,-0.12 -0.17,-0.22 -0.28,-0.3 -0.04,-0.05 -0.08,-0.07 -0.13,-0.1 -0.33,-0.24 -0.75,-0.4 -1.3,-0.38 l 0.92,-0.97 0.1,-0.47 0.1,-0.44 0.33,-0.62 -0.1,-0.28 0.66,0.28 0.26,0.1 1,-0.73 1,0.15 0.16,-0.16 0.9,-0.3 0.9,0.3 -0.27,-1 -0.97,-0.63 -0.2,0 -0.9,0.1 -0.62,-0.9 0.44,-1.92 -0.9,0.38 -0.44,-0.3 0,-1.86 1,-0.2 0.9,-0.6 0.88,0.17 0.1,-0.18 0.52,-0.72 -0.78,0 -0.56,-0.2 -1.78,0 -1.34,-1.15 -0.3,-0.07 -0.17,-0.03 0,-0.1 0.18,-0.27 0.45,-0.63 0,-0.53 0.63,-0.72 0.56,-0.47 1.44,-0.1 0.9,0.66 c 0.47,-0.3 0.9,-0.5 1.35,-0.68 0.42,-0.17 0.84,-0.3 1.25,-0.44 l 0.03,0 c 0.64,-0.2 1.25,-0.4 1.9,-0.78 0.24,-0.13 0.47,-0.27 0.7,-0.44 0.22,0.17 0.4,0.3 0.56,0.4 0.17,0.12 0.3,0.2 0.44,0.26 0.13,0.06 0.24,0.1 0.34,0.12 0.07,0 0.14,0.04 0.2,0.03 0,0 0.04,0.02 0.05,0 0.04,0 0.08,0 0.12,-0.02 0.1,-0.02 0.2,-0.08 0.3,-0.12 0.2,-0.08 0.38,-0.15 0.7,-0.2 0.16,0 0.36,-0.03 0.6,-0.02 l 0.9,-1.44 0.9,-0.28 0.35,0.37 1,0.34 1.25,0 0.47,0.2 0.96,0.45 0.8,0.06 0.92,0.1 0.8,-0.54 0.9,0 0.92,0.37 0.16,0.24 0.18,0.1 -0.7,-1 -0.3,-0.78 0.1,-0.9 -0.72,-1 -0.97,-0.45 -0.47,-0.36 -0.2,-0.1 -0.95,-0.18 -0.38,-0.88 -0.8,-1.1 0.46,-0.8 -0.9,-0.54 -0.72,-1 -1.25,-0.9 -1.9,-0.88 -0.82,-0.9 0.48,-0.63 -0.28,-0.9 -1,-0.38 -0.1,-0.16 -0.62,-0.9 -1.87,-0.48 -0.9,0 -0.37,-0.16 0,-1.8 -0.97,-0.1 -1.28,0 -0.88,-0.25 -0.1,-1 -0.1,-0.62 0.54,-0.37 0.38,-0.96 0.1,-1.8 -0.48,-1 -1.34,-2.17 -1.72,-1.72 -0.2,-0.44 0.4,-1.8 -0.54,-0.44 -0.9,-0.43 -0.45,-0.9 0.06,-0.48 0.18,-0.87 -0.53,-0.25 -0.08,-0.04 0,-0.9 -0.28,-1.26 -0.53,-0.9 -0.9,0.18 -0.97,-0.1 -0.28,-0.62 0.37,-0.9 1.07,-0.9 0.7,-0.92 -0.28,-0.34 -0.43,-0.9 0,-0.9 0.27,-0.45 0.87,-0.54 0.47,-0.57 0.3,-0.35 -0.3,0 -0.18,-0.9 0.2,-1 0.62,-0.16 0.28,-0.2 0.34,-1.34 0.2,-0.2 0.6,-0.37 0.3,-0.88 -0.38,-1.1 0.9,-0.9 1.26,0.2 1,-0.4 0.9,0 0.97,0.3 0,-18.2 c -3.04,-1.7 -6.1,-3.33 -9.18,-4.96 l -1.87,-1 c -2.44,-1.3 -4.9,-2.56 -7.34,-3.82 -1.25,-0.64 -2.5,-1.3 -3.78,-1.93 l -5.5,-2.77 -0.03,0 c -3.1,-1.56 -6.22,-3.12 -9.35,-4.66 -1.64,0.7 -3,1.47 -4.7,2.16 l 0,0.1 -0.24,0.08 -0.9,0.54 -1,0.47 -0.9,0.54 -0.97,-0.18 -0.47,-0.44 c -0.47,-0.37 -0.7,-0.58 -0.97,-0.8 l -0.2,-0.17 -0.28,-0.25 -0.43,-0.4 -0.1,-0.07 c -0.18,-0.13 -0.4,-0.22 -0.66,-0.3 l -0.16,-0.1 -0.1,0 -0.2,-0.07 c -0.38,-0.1 -0.82,-0.2 -1.57,-0.37 l -1.24,-0.3 c -0.07,0 -0.13,0 -0.2,-0.02 l -0.9,-0.2 -1.53,-0.3 -0.78,-0.22 -0.06,-0.03 c -0.05,-0.02 -0.08,-0.04 -0.1,-0.07 l -0.26,-0.4 c -0.08,-0.22 -0.22,-0.58 -0.44,-1 l -0.47,-0.82 c 0,-0.02 -0.04,-0.04 -0.06,-0.06 l -0.1,-0.15 -0.27,-0.47 -0.82,-1 -0.25,-0.1 -0.9,-0.28 -0.13,-0.03 -0.1,-0.03 c -0.3,-0.1 -0.64,-0.18 -0.96,-0.28 l -0.25,-0.1 -0.1,0 -0.9,-0.28 -0.92,0.38 -0.97,-0.47 -0.45,-0.97 -0.25,-0.1 -0.1,-0.1 -0.28,-1 0,-0.9 -0.28,-0.87 -0.44,-0.72 -0.16,-0.24 c 0,-0.02 -0.04,-0.04 -0.06,-0.06 -0.68,-1 -1.43,-1.96 -2.12,-2.94 l 0.53,-0.9 0.9,-0.44 1,-0.9 -0.1,-0.44 -0.2,-0.9 -0.08,-0.2 -0.16,-0.9 -0.28,-0.9 0,-0.17 0.2,-0.45 0.33,-0.9 0.1,0 0,-0.07 0.1,-0.38 0.28,-0.62 -0.18,-0.82 -0.38,-1 -0.06,-0.1 -0.1,-0.86 0.16,-0.9 0.1,-0.4 0,-0.08 c 0.05,-0.33 0.08,-0.67 0.1,-1 l 0,-0.03 c 0,-1.03 -0.2,-2.05 -0.54,-3 l -0.38,-1 -0.53,-0.92 -0.72,-0.87 -0.1,-0.18 0,-0.72 0.73,-0.37 0.12,-0.07 c 0.4,-0.17 0.6,-0.23 0.78,-0.28 0.32,-0.07 0.48,-0.05 0.63,-0.18 0.1,-0.1 0.32,-0.4 0.54,-0.72 l 0.66,-0.9 0.62,-0.92 0,-0.62 -0.2,-0.9 -0.27,-0.88 -0.15,-0.9 0.62,-0.9 0.2,-0.2 0.86,-0.16 0.2,-0.2 0.43,-0.9 0.2,-0.1 0.56,-0.17 0.34,-0.44 c 0.15,-0.17 0.3,-0.33 0.47,-0.45 l 0.72,-0.34 0.05,-0.02 0.2,-0.1 0.65,-0.25 0.25,-0.1 0.25,-0.12 c 0.16,-0.06 0.3,-0.14 0.46,-0.24 0.03,-0.36 -0.32,-2.36 -0.18,-2.78 l 0,-0.2 0.1,-0.42 0.1,-0.2 0,-0.34 c 3.47,1.16 3.98,3.04 8.17,1.34 l 1.25,0.53 1.72,0.2 1.44,0.52 0.9,0.72 1.72,0.44 c 1.3,-0.04 1.9,0.3 2.2,0.84 0.1,0.18 0.15,0.38 0.2,0.6 0.23,0.87 0.23,2 1,2.96 l 0.82,0.9 1.78,0.82 1.72,0.2 0.9,-0.1 2.98,0.7 3.87,1.54 2.07,1.63 2.15,1.06 1,-0.06 1.78,-0.8 c 3.1,-3.1 2.5,-3.2 1.38,-6.14 l -0.1,-1.28 0.35,-0.97 0.8,-1 1.82,-1.53 0.97,-0.34 0.9,-0.56 1.82,-0.15 0.8,-0.57 0.9,-0.25 1.26,0.1 1.06,0.15 1.2,0.46 0,-19.44 -0.82,-1.35 -0.9,-0.9 -0.1,-0.56 -0.82,0.9 -0.87,0.3 -0.7,-1.45 0.43,-1.72 -0.63,-0.9 -0.47,-0.17 -0.72,-1 -0.33,-0.9 0.72,-1 0.9,-0.1 0.87,-0.7 0.9,-0.26 1,0.63 1.07,0.44 0.47,0.1 0,-1.2 -0.52,-0.33 -0.9,0.37 -0.92,-0.37 -2.34,0.56 -0.62,-0.9 0,0.18 -0.9,0.73 -0.73,-1.8 -1.16,-0.82 0.1,-0.9 0.88,0.1 0.3,0.18 0.42,-0.72 -0.87,-0.18 -0.47,-0.3 -0.34,0.83 -1.3,-1.68 -0.7,-0.1 -0.82,-1.8 -0.62,-0.35 0.47,0.1 0.53,0.15 0.34,-0.88 0.56,0 -0.28,-0.46 0.2,-0.54 0.27,-0.46 0.63,0 0.15,-0.07 0.66,-1.36 0.07,-0.53 0.9,-0.43 0.3,-0.47 0,-0.53 -0.3,-0.53 0,-0.38 0.73,0 1.37,-0.25 0.16,0 0.9,0.08 0.63,-0.16 0.56,-0.8 0,-0.1 0.88,-0.3 0.46,-0.14 0.63,0.15 0.7,0.1 0,-0.1 0.24,0 0.86,-0.15 0.1,-0.38 0,-0.44 0.53,-0.1 0.27,0 0.1,-0.27 0,-0.73 0.18,-1 -0.18,-0.53 -0.3,-0.44 -0.08,-0.62 -1.45,-0.82 -0.25,-0.18 -0.1,-0.13 -0.18,-0.25 -0.44,-0.53 0.63,-0.4 0.2,-0.13 -0.2,-0.4 -0.18,-0.4 0,-1.36 -0.1,-0.1 0.3,-0.15 0.08,-0.03 0.53,-0.2 0.2,0.1 0.8,-0.7 0.72,-0.92 0,-0.15 -0.28,-0.1 -0.8,-0.9 -0.36,-0.2 -0.9,-0.9 0,-0.15 -0.37,-0.66 c -0.12,-0.35 -0.15,-0.63 -0.12,-0.88 l 0,-0.1 0.04,-0.05 c 0.02,-0.1 0.03,-0.18 0.06,-0.26 l 0.03,-0.06 c 0.02,-0.03 0.02,-0.07 0.03,-0.1 l 0.07,-0.1 c 0,0 0.02,0 0.03,-0.02 0.06,-0.1 0.14,-0.2 0.22,-0.28 0,-0.02 0,-0.05 0.03,-0.07 l 0.2,-0.17 0.28,-0.32 c 0.15,-0.16 0.3,-0.33 0.43,-0.55 l -0.36,-0.44 -0.1,0 -0.34,-0.42 -0.1,-0.28 -0.18,-0.2 0.2,-0.1 0.7,-0.33 0.2,0.1 0.34,-0.2 -0.9,-0.43 -0.35,-0.13 -0.53,-0.14 -0.46,0.44 -0.9,0.46 -0.25,-0.28 0,-0.18 -1.63,-0.35 -0.28,-0.28 0,-0.1 -0.53,-0.24 -0.43,0 -0.18,-0.28 0.3,-0.16 0.6,-0.3 -0.73,-0.37 -0.18,-0.18 0.27,-0.16 0.15,-0.92 -0.8,-0.28 -0.16,0 -0.1,-0.1 -0.9,-0.34 -0.82,-0.7 -0.1,-0.2 -0.27,-0.2 0.2,-0.18 -0.2,-0.25 0.1,-0.56 -0.45,-0.53 -0.18,-0.2 -0.25,-0.52 -1.1,-0.44 -0.3,-0.56 -0.24,-0.34 0.1,-0.2 0.96,-0.18 0.9,0.2 0.1,0 0.1,-0.1 0.34,-0.54 1.38,0 0.72,-0.9 0.15,-0.25 0.2,-0.9 0.72,-0.37 0,-0.44 0.1,-0.1 0.43,-0.54 0.28,-0.9 0.63,-0.63 0,-0.1 0.18,-0.46 0.57,-1.12 0.26,-0.47 0.1,-0.2 0.43,-0.27 0.27,-0.18 0.25,-0.53 0.9,-0.35 0.3,-0.1 1,-0.37 0.86,-0.72 -0.25,-0.8 -0.1,-0.1 -0.9,0 -0.2,-0.35 -0.33,-0.43 -0.28,0 -0.9,-0.72 0,-0.1 -0.35,-0.18 -0.2,0 0,-0.2 0.1,-0.7 0.44,-0.54 0.64,-0.9 0.2,-0.72 0.27,-0.5 0.3,-0.5 1.5,0.48 -0.07,-0.38 -0.66,-0.9 0.1,-0.63 -0.26,-0.9 0,-0.63 0.55,-0.63 0.1,-0.08 0.33,-0.44 0.2,-0.1 0.08,-0.08 0.72,-0.9 c 0.4,-0.42 0.76,-0.75 1.13,-1.07 0.2,-0.16 0.37,-0.32 0.57,-0.47 0.2,-0.15 0.42,-0.3 0.66,-0.44 l 0.34,-0.53 0.9,-0.2 0.9,-0.72 0.1,-0.37 0,-0.34 -0.7,-0.9 0.9,-0.44 -1,-0.8 -0.54,-1.2 -0.1,0 -0.46,-0.53 -0.06,-0.73 -0.37,-0.9 -0.18,-0.1 -0.1,-0.62 0.2,-0.72 0.08,0 0.28,-1.72 -0.08,-0.15 0,-0.1 -0.28,-0.18 -0.34,-0.2 -1.54,-0.9 0.25,-0.43 0.58,-0.63 0.06,-0.08 0.1,-0.2 0.37,-0.24 1.8,-0.72 0.36,-0.75 0,-1.05 -0.28,-0.9 0.2,-0.2 c -0.87,-1.87 -1.9,-3.8 -1.88,-5.93 l 0,-0.16 -0.38,-0.56 -0.9,-0.53 -0.44,-0.37 -0.72,-0.44 -0.9,0.2 -1.35,0.08 -1.52,0.1 -0.82,0 c -2.34,0.02 -3.73,0 -6.12,-0.2 l -0.25,-0.1 -1.3,-0.18 -0.24,0 -1.2,-0.1 c -0.3,-0.03 -0.76,-0.03 -1.05,-0.15 l 0.98,-0.8 0.72,-0.2 1,-0.52 -1.72,-0.28 -0.72,0.9 -0.9,0.82 -0.16,-0.1 1.15,-1.1 0.47,-0.9 -0.2,-0.87 0.36,-0.2 0.9,-0.08 0.9,0.1 0.73,-0.38 1,-0.9 0.82,-0.9 0.53,-0.9 0.25,-1.87 -0.25,-0.9 0,-1.54 -0.37,-0.92 0.1,-1.97 0.27,-1.8 0.9,-0.8 0.73,-0.92 0,-0.9 0.34,-0.88 0.63,-0.9 0.9,-0.82 0.9,-0.1 2.26,-1 0,-3.34 -0.1,0 -0.9,0.34 -0.24,0.9 -0.9,1 0.24,-1.8 -0.87,-0.54 0.43,-0.9 -0.28,-0.9 0.9,0.18 0.92,-0.53 0.8,-0.25 0,-1.22 -0.18,-0.25 -1.87,-0.7 1.87,-0.26 0.2,-0.16 0,-7 -0.1,0.03 -0.3,0 -0.08,-0.36 0.47,-0.53 0,-1.9 -1.1,-0.15 -0.95,-0.3 -0.2,-0.24 -0.9,0.1 -0.44,-0.9 -0.6,0.35 0,-0.16 -0.92,-0.57 0.35,-1.78 -0.1,-0.9 0.47,-0.92 0.2,-1 -0.2,-1.78 0.8,0.25 -1,-1.97 -0.8,-1 -0.1,-0.34 0.38,-0.92 0.1,-0.9 -0.47,-0.97 -0.34,0.35 -0.28,-0.9 0.38,-0.88 -0.2,-0.9 0.26,-1 0.9,-0.63 0.47,-1 0,-0.97 0.15,-0.6 1,0.6 0.9,-0.33 -0.18,0.33 1.9,-0.53 0.26,-0.25 -0.25,-1.1 0.43,-0.9 0.1,-0.1 0.73,-0.8 1.06,0.56 1.08,-1.8 0.28,0.1 0.88,-0.4 0.1,-0.86 1,0.1 0.7,-1.1 0.92,-0.63 0.34,-0.9 1,-0.7 c 1.38,-1.87 2.7,-4.3 5.3,-2.7 l -0.7,-0.9 0.9,0 0.1,-0.38 0.15,0 -1.06,-0.8 0.24,-0.9 -0.06,-0.64 0.25,-0.88 -1.63,-1.44 -0.87,-0.18 -0.9,-0.47 -0.2,-0.62 -0.1,0.1 -1.62,-0.1 -0.08,-0.18 -0.06,-0.07 0,-0.18 -1.2,-2.44 -1,-0.8 0,-1 -0.05,-0.54 0.98,-0.8 0.1,-0.98 0.52,-0.9 -2.06,-2.88 0,-0.37 1.1,-1.07 -0.9,-0.7 -0.92,-0.3 0.53,-0.9 -0.15,-0.9 0,-0.1 -0.1,-0.53 0.9,-1.16 -0.65,-0.56 -0.8,-0.87 -0.88,-0.47 -0.38,-0.9 -1.88,-0.88 -0.9,-0.28 -0.92,-0.37 -0.1,0.1 -0.96,-0.17 -0.66,-0.65 -1.97,-0.87 -0.9,-0.9 -1.87,-1.1 0,-0.53 -0.1,0 -0.46,-0.2 -0.62,-0.17 0.62,-0.53 1.8,0.1 -0.33,-1.17 1.06,-0.56 1.53,0.28 1.25,1.44 0.2,0.27 0.37,0.34 0.7,0.58 0.9,0.97 0.18,0.9 0.28,-0.03 5.55,-0.2 0.6,-0.78 4.94,2.18 2.3,-2.6 0.96,-0.06 1.45,-6.07 2.94,-2.44 3.4,-0.33 1.9,-0.84 2.6,1.63 3.76,1.94 0.72,1 -1.66,2.15 0.15,1.67 0.64,0.42 0.37,0 1,-0.9 0.36,-1.54 1,-0.1 0.9,-0.34 0.97,-0.28 1.1,-1.7 -0.1,-0.36 0.1,0 0.9,0.62 0.97,0.28 0.9,0 0.44,-0.9 -0.25,-0.9 -0.1,-0.35 0.26,-0.47 3.04,-3 -1.8,-2.97 -1.5,-0.7 -2.2,-1.34 -2.16,-0.54 -3.22,-1.12 -2,-0.74 -1.96,-1.1 -1.88,-0.14 -2.54,-0.33 -3.64,1.5 -1.5,-1.04 -1.55,-0.6 -2.8,-0.17 -2.55,0.14 -6,1.18 -4.8,2.13 0,-40.96 53.92,0 0,-55.86 -53.9,0 0,-48.44 -69.48,0 0,207.16 -0.28,0.2 -0.1,0 -0.87,-0.26 -1,0.44 1,0.72 -0.92,0.28 0.9,0.53 1.26,-0.3 0,0.08 -0.28,0.13 0.28,0.1 0,1.24 -0.8,-0.34 -0.92,-0.1 -0.9,0.2 -0.97,-0.3 -1.9,0.3 1.08,0.33 -1.1,0.54 1.2,0.2 0.97,-0.2 0.9,0.38 0.72,0.9 0.9,0 -1,0.1 -0.34,0.87 0,-0.44 -0.37,-1 -0.96,-0.72 -0.9,0.37 -0.1,0.92 0.2,0.62 -0.64,-1 -1,-0.1 -0.9,0.54 0.53,1 0.9,0.38 -1.78,0.06 -0.47,-0.88 -1.78,0.35 0.25,0.9 -0.72,-0.9 -0.9,0.27 1,0.53 -0.9,0.63 c 2.8,0.17 4.55,0.85 7.37,0.56 l -0.97,0.33 -0.9,-0.2 -1.92,0.73 c -1.7,-1.7 -3.05,-1.5 -4.3,0.57 l 0.9,0.25 0.9,-0.1 -1.8,0.38 0.9,-0.1 1,0.2 -1,-0.1 1,0.28 -0.9,0.25 1.78,0.36 0.9,0 -0.9,0.1 -0.87,-0.2 -1.9,0.54 0.9,0.28 1.88,-0.1 -1.78,0.2 -1,0.43 0.9,0.45 1,1 1.88,-0.8 1.9,0 0.88,0.52 1.3,-1.5 -0.48,0.78 0.18,0.1 1.9,0 -0.55,0.46 1,0 0.9,-0.17 -0.45,-0.9 0.9,-0.82 -0.53,0.9 0.34,0.54 0.3,0.1 0.08,-0.03 0,0.57 -0.1,0.1 -0.9,-0.26 -1.06,0.45 0.34,0.9 -0.9,0 0,-0.9 -0.88,-0.53 -1,0.44 -3.34,-0.2 -2.8,1 -0.42,1 0.87,0.1 1.2,-0.28 -0.92,0.38 0.47,0.87 -0.9,-0.44 -1.3,-0.38 1,0.72 0.4,0.9 1.43,-0.9 0.97,0 -0.25,0.9 -0.2,0.3 -0.43,-0.73 -0.9,0.82 0.8,0.44 -0.1,0.1 -0.9,-0.54 -0.8,0.9 0.18,0.88 0.9,0.66 0.88,-1 -0.06,0.9 0.88,-0.18 -0.16,1.43 0.53,0 0.53,-1.52 0.9,-0.34 0.73,-0.9 0.9,-0.38 1.97,-0.2 -0.9,0.38 -0.88,1.82 0.16,-0.9 -0.1,-0.92 -0.87,0.44 -0.9,0.8 -0.1,1 -1,0.73 0.1,0.1 -0.9,0.44 -0.35,0.63 0.8,0.37 0.92,0.1 0.97,-0.53 -0.97,0.73 -0.72,0 -0.56,0.87 -0.92,-0.44 -0.15,0.82 -0.9,0.34 0.62,-0.97 -0.9,0.2 -0.2,0.86 0.1,0.83 0.7,0.62 0.67,-0.97 0.16,0.97 0.9,-0.34 -0.43,-0.9 1.87,-0.1 -0.9,0.2 0.9,0.18 -0.34,0.25 0.87,0.38 -0.44,0.44 1,-0.34 -1,0.53 -0.9,0.8 0.2,0.92 0.28,0.53 0.97,-0.72 1,-0.18 -1,0.28 -0.54,1 -0.52,-0.28 -0.9,-0.2 -0.9,-0.62 -0.26,0.9 -0.56,0.98 0.28,0.56 0.8,0.9 0.92,0.44 0.97,0.72 0.9,0.28 0.28,0.25 1.98,0.18 0.53,-0.28 -0.86,0.56 -0.47,0.88 1.8,-0.16 0.98,0.44 1.2,0.2 0,28.24 -0.54,-0.1 -0.9,0.28 -0.72,0.9 -0.1,0.9 1,0.17 0.63,0.3 -0.7,0.34 -1.3,-0.53 -0.86,-0.9 -1.8,0.38 -1.73,0.1 -1.68,0.52 -1,0.9 -0.1,0.35 -0.9,0.63 -1.25,0.65 -1,0.06 -0.25,0.8 -0.28,1.82 -0.63,1.25 -1.6,1.8 -0.45,0 0.35,0.92 1.43,0.7 1.1,0 -1.1,0.16 -0.9,0.38 -0.44,-0.1 0.43,0.38 -0.82,0.16 0.92,0.28 0.2,0.43 -0.92,-0.35 -0.9,-0.62 -1.54,0.1 0.38,0.86 0.9,0.37 0.9,-0.38 1.07,0.46 0.3,0.63 -0.3,-0.54 -1.33,-0.1 -0.9,0.2 -0.9,-0.38 -2.07,0.53 -2.97,1.54 -3.16,0.62 -0.87,0.9 -0.2,0.92 0.2,1.8 -0.3,0.16 0.45,0.9 -0.53,-0.18 c -2.23,3.32 -3.67,0.72 -6.47,3.7 l 0.63,0.9 1.06,-0.16 -0.16,0.16 -0.8,0.18 -2,0.82 -1.8,-0.38 -0.9,0 -0.9,-0.25 -1,0.35 -0.78,-1.25 -0.1,-0.9 -1.37,0.27 -1.5,-0.28 0.62,1.8 0.72,0.92 0.53,1.87 -0.1,0.92 0.82,0.8 -2.78,0.45 0.2,0.2 -0.1,0.17 -0.2,-0.37 -1.43,-0.72 -1.18,0.63 -0.88,0.1 -1.53,-1.8 -0.9,0.26 -0.9,-0.1 -0.72,1 -1.62,-0.28 -1.78,0.38 -0.9,0.34 -0.92,0.72 0.1,0.9 1.78,-0.34 0.1,0.63 -0.98,-0.4 0.1,0.92 0.87,0.53 -1.78,0.38 0.53,0.1 0.9,0.43 0.92,0.9 0.87,-0.28 2.97,0.66 0.9,0.62 0.47,0.9 0.64,-0.9 0.9,0.72 1.88,0 -0.44,0.35 0.35,1 0.9,-0.1 0.82,0 0.9,0.53 -0.97,-0.43 -0.9,0 -0.2,0.9 0.9,0.53 -0.62,1.16 0.98,0.9 0.63,0.9 0.57,0.45 0.72,0.2 0.9,0.52 0.87,0 -0.1,0.46 0.3,1.78 -0.2,0.9 -0.62,0.47 0.28,0 0.9,0.54 0.88,0.72 0.48,0.9 0.18,0.98 0.54,0.9 0.1,0.63 -0.2,-0.63 -0.72,-0.8 -0.18,-0.98 -0.82,-0.9 -0.9,-0.1 c -0.65,4.24 -0.08,7.5 -2.07,11.6 l -0.9,0.47 -0.96,0.28 -1.1,0.07 -0.9,-0.06 -1.53,-0.8 -0.87,0.24 -0.37,0.47 c -1.48,0 -2.44,-1.82 -4.7,-0.36 l -0.05,-0.2 c -2.54,0.94 -5,-0.77 -7.55,-0.6 l -0.9,-0.45 -0.92,0.33 -3.06,0.1 -0.53,-0.2 -0.9,0.48 -0.3,-0.37 -0.96,-0.25 -0.9,-0.62 -0.13,0 -1.74,-0.18 -0.9,0.62 -0.46,0.9 0.2,-0.08 0,0.43 -1.36,0.3 -0.9,0.33 -0.9,-0.06 -1.9,1.43 0.64,0.88 -0.1,0.28 0.38,0.4 0.88,-0.2 -0.16,0.2 -0.1,0.86 0.9,-0.34 -0.46,0.72 -0.18,0.9 1,-0.1 -1,0.98 0.9,-0.25 0.38,-0.38 -0.28,0.46 -1.07,0.9 0.6,0.85 0.47,-0.5 1.16,-0.18 0.34,-0.12 0.54,-0.2 0.5,0.57 -0.43,0.85 0,0.03 -0.03,0.06 0.1,0 0.08,0.26 0.07,0 0.05,0.1 0.28,-0.1 0.13,0 0.7,-0.25 0.48,-0.02 1.2,0.2 z"
1584+ id="path10450-6"
1585+ inkscape:connector-curvature="0"
1586+ overflow="visible"
1587+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1588+ <path
1589+ d="m 877.8,257.73 c 0.5,1.96 -0.94,3.5 -2.4,4.56 l 0.15,0.46 1.82,0.25 0.9,-0.7 -0.1,-0.9 0.44,-0.9 -0.14,-0.37 -0.1,-0.9 -0.56,-1.5 z"
1590+ id="path10448-2"
1591+ inkscape:connector-curvature="0"
1592+ overflow="visible"
1593+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1594+ <path
1595+ d="m 799,283.44 -1,-0.53 -0.35,0 0.53,0.64 0.8,-0.1 z"
1596+ id="path10446-4"
1597+ inkscape:connector-curvature="0"
1598+ overflow="visible"
1599+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1600+ <path
1601+ d="m 894.83,192.3 0.97,0.18 0,0.15 -1.43,0.56 -0.54,-0.57 z"
1602+ id="path10442-9"
1603+ inkscape:connector-curvature="0"
1604+ overflow="visible"
1605+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1606+ <path
1607+ d="m 886.18,201.48 0.1,0.53 -1,-0.27 0.9,-0.25 z"
1608+ id="path10440-7"
1609+ inkscape:connector-curvature="0"
1610+ overflow="visible"
1611+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1612+ <path
1613+ d="m 877.9,205.5 0.9,0.48 -0.28,0.43 z"
1614+ id="path10438-3"
1615+ inkscape:connector-curvature="0"
1616+ overflow="visible"
1617+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1618+ <path
1619+ d="m 808.08,211.9 -0.62,0.92 0.97,-0.47 z"
1620+ id="path10436-5"
1621+ inkscape:connector-curvature="0"
1622+ overflow="visible"
1623+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1624+ <path
1625+ d="m 806.18,212.63 0.9,0.63 0,-0.53 -0.9,-0.1 z"
1626+ id="path10434-3"
1627+ inkscape:connector-curvature="0"
1628+ overflow="visible"
1629+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1630+ <path
1631+ d="m 802.87,215.5 0.1,0.9 0.86,-0.36 0,-0.35 z"
1632+ id="path10432-5"
1633+ inkscape:connector-curvature="0"
1634+ overflow="visible"
1635+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1636+ <path
1637+ d="m 803.3,221 -0.9,0.26 1,-0.2 -0.1,-0.05 z"
1638+ id="path10430-2"
1639+ inkscape:connector-curvature="0"
1640+ overflow="visible"
1641+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1642+ <path
1643+ d="m 803.3,224.85 -0.1,0.1 1,0 -0.9,-0.1 z"
1644+ id="path10428-0"
1645+ inkscape:connector-curvature="0"
1646+ overflow="visible"
1647+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1648+ <path
1649+ d="m 879.08,224.85 0.63,0.28 -0.7,0 0.08,-0.28 z"
1650+ id="path10426-8"
1651+ inkscape:connector-curvature="0"
1652+ overflow="visible"
1653+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1654+ <path
1655+ d="m 803.4,225.13 -0.2,0.1 1,0.8 -0.8,-0.9 z"
1656+ id="path10424-4"
1657+ inkscape:connector-curvature="0"
1658+ overflow="visible"
1659+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1660+ <path
1661+ d="m 803.12,226.13 -0.07,0.9 0.88,0.45 -0.1,-1 -0.7,-0.35 z"
1662+ id="path10422-4"
1663+ inkscape:connector-curvature="0"
1664+ overflow="visible"
1665+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1666+ <path
1667+ d="m 871.87,226.23 1.7,0.25 0.3,1 -0.9,0 -0.3,-0.54 0.2,0.97 -0.2,0.3 -0.52,0 -0.9,-1 0.9,-0.1 -0.28,-0.87 z"
1668+ id="path10420-1"
1669+ inkscape:connector-curvature="0"
1670+ overflow="visible"
1671+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1672+ <path
1673+ d="m 883.93,226.23 0.2,0 -0.3,0.15 0.1,-0.15 z"
1674+ id="path10418-6"
1675+ inkscape:connector-curvature="0"
1676+ overflow="visible"
1677+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1678+ <path
1679+ d="m 882.68,226.76 1,0.1 -0.56,0.24 0.18,0.47 -0.28,-0.28 0.1,-0.2 -0.44,-0.34 z"
1680+ id="path10416-6"
1681+ inkscape:connector-curvature="0"
1682+ overflow="visible"
1683+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1684+ <path
1685+ d="m 872.68,228.38 1.1,0 0,0.53 -0.54,0 z"
1686+ id="path10414-2"
1687+ inkscape:connector-curvature="0"
1688+ overflow="visible"
1689+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1690+ <path
1691+ d="m 806.46,228.54 -0.9,0.37 0.9,0 z"
1692+ id="path10412-6"
1693+ inkscape:connector-curvature="0"
1694+ overflow="visible"
1695+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1696+ <path
1697+ d="m 804.83,229.2 -0.1,0.96 0.57,0.57 0.35,-1 -0.82,-0.54 z"
1698+ id="path10410-2"
1699+ inkscape:connector-curvature="0"
1700+ overflow="visible"
1701+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1702+ <path
1703+ d="m 804.5,230.16 -0.48,0.9 0.9,0 z"
1704+ id="path10408-1"
1705+ inkscape:connector-curvature="0"
1706+ overflow="visible"
1707+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1708+ <path
1709+ d="m 804.3,233.04 -0.28,1.53 0.63,-0.88 -0.1,-0.47 -0.25,-0.2 z"
1710+ id="path10406-0"
1711+ inkscape:connector-curvature="0"
1712+ overflow="visible"
1713+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1714+ <path
1715+ d="m 798.7,282.38 -0.33,0.06 0.9,0.72 0.8,0 z"
1716+ id="path10404-6"
1717+ inkscape:connector-curvature="0"
1718+ overflow="visible"
1719+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1720+ <path
1721+ d="m 773.08,316.04 0.88,0.25 0,-0.2 z"
1722+ id="path10402-4"
1723+ inkscape:connector-curvature="0"
1724+ overflow="visible"
1725+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1726+ <path
1727+ d="m 773.62,317.38 0.7,0.9 0.2,-0.55 z"
1728+ id="path10400-1"
1729+ inkscape:connector-curvature="0"
1730+ overflow="visible"
1731+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1732+ <path
1733+ d="m 871.96,351.85 0,0.88 0.37,0.9 0.35,0.28 0,0.3 -1.63,-1.82 z"
1734+ id="path10398-2"
1735+ inkscape:connector-curvature="0"
1736+ overflow="visible"
1737+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1738+ <path
1739+ d="m 875.93,357.23 0.1,1.1 -0.48,-0.92 0.38,-0.17 z"
1740+ id="path10396-1"
1741+ inkscape:connector-curvature="0"
1742+ overflow="visible"
1743+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1744+ <path
1745+ d="m 875.1,359.66 1.26,1.63 -1.78,-0.45 -0.1,-0.9 0.63,-0.3 z"
1746+ id="path10394-8"
1747+ inkscape:connector-curvature="0"
1748+ overflow="visible"
1749+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1750+ <path
1751+ d="m 876.55,362.63 0,1 -0.9,-0.8 z"
1752+ id="path12083-9"
1753+ inkscape:connector-curvature="0"
1754+ overflow="visible"
1755+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1756+ <path
1757+ d="m 885.56,266.45 0.9,-0.18 0.73,0.43 0.42,0.38 0.9,0.53 0.4,0.57 -0.14,0.75 1.76,-0.02 2.25,0.34 1.64,-0.54 0.28,-1.03 1.1,0.03 1.8,-0.96 0.3,0.9 0.98,-0.07 -0.87,-0.95 1.03,-3.5 1.7,-0.86 2.58,-1.67 -1.18,-0.48 0.76,-2.34 1.07,-0.25 0.54,-0.7 3.1,-0.1 0.1,-0.6 0.47,-0.3 0.83,-0.84 0.85,-0.27 0.62,0.1 0.25,-0.53 -0.16,-1 0,-0.06 -0.1,-0.47 -0.62,-0.9 -0.1,0 -0.56,-0.88 -0.25,-0.92 -0.38,0.1 -0.54,0.06 0.44,-0.97 0.1,-0.9 0.28,-0.1 0.18,-0.28 -0.18,-0.9 -0.72,-0.46 -0.9,-0.87 -0.45,-0.1 0.17,-0.72 0.56,-0.9 0.35,-0.28 0.28,-0.1 0.1,-1.15 -0.1,0 -0.9,-1.82 0.37,-0.96 -0.1,-0.3 -0.37,-1.8 0.18,-0.97 0.54,-0.47 0.62,-0.34 0.56,-1.2 0.07,-0.7 1,-0.16 0.46,-0.38 0,-0.28 -0.38,-0.25 -0.44,-0.38 0.25,-0.9 -0.25,-0.88 0.88,0.06 0.9,0.37 0.2,-0.9 0.9,-0.1 0.9,0.28 0.88,-0.53 0.72,-1 4.78,0.9 0.1,-0.27 -0.3,-0.63 -0.7,-0.1 -0.63,-0.9 -0.9,-0.34 -0.97,0.1 -1.9,0 -1.97,-1.38 -0.63,-0.88 0.88,0.35 -0.06,-0.9 0.25,-0.82 -0.26,-0.25 -1.9,1.15 -1,0.38 -1.06,-0.2 0.34,-0.33 1.2,-1 0.9,-0.8 0.7,-0.64 0.17,-0.1 0.27,0 1.16,-1.1 0.1,0 2,-1.33 1.05,-1.25 0.1,-0.1 0.37,-0.1 1.78,-1.6 0.2,-0.36 2.68,-2.72 1.44,-1.06 0.9,-0.9 0.73,-0.72 1.34,-2.7 -0.24,-0.55 -1,-0.82 -0.34,-0.87 -1,-0.56 -1,-0.82 -0.97,-0.34 -0.9,-0.72 -0.9,-0.47 -0.45,-0.43 -0.56,-0.54 0.56,-0.18 0.44,-0.2 1.72,-1.77 0.1,-0.66 -0.2,-0.88 -0.9,-0.57 -0.9,-0.25 -0.54,-1.1 -0.2,-0.18 -0.08,-0.15 0.1,-0.38 0.9,-0.73 -0.9,-0.8 -0.63,0.08 -0.9,-0.7 -0.34,-0.92 0.9,-0.72 0.25,-0.9 -0.9,0 0.38,-0.87 0.28,-2.44 0.97,-0.2 0.56,0.1 c -0.07,-2.9 -2.35,-4.75 -3.44,-7.38 l -1.44,-1.8 0,-0.73 2.16,-2.8 0.9,-0.8 1,-0.8 0.25,-1.26 0,-0.3 -1.7,-1.14 -0.7,-1 -0.9,-0.9 -2,-0.54 -0.9,-0.62 -0.8,-2 -0.1,-0.16 -0.1,-0.2 1.45,-1.9 -0.44,-0.87 -0.9,0 -0.2,-0.08 0.2,0 1.87,-1.43 -0.14,-1.68 1.66,-2.14 -0.72,-1 -3.76,-1.95 -2.6,-1.64 -1.9,0.83 -3.4,0.33 -2.93,2.43 -1.44,6.06 -0.97,0.05 -2.3,2.62 -4.94,-2.18 -0.6,0.77 -5.54,0.23 -0.28,0.03 -0.2,-0.9 -0.86,-0.97 -0.72,-0.58 -0.38,-0.34 -0.2,-0.28 -1.24,-1.44 -1.53,-0.28 -1.05,0.56 0.34,1.16 -1.82,-0.1 -0.62,0.54 0.62,0.18 0.47,0.2 0.1,0 0,0.52 1.87,1.1 0.9,0.9 1.97,0.88 0.65,0.65 0.97,0.16 0.1,-0.1 0.9,0.38 0.28,0.1 0.62,0.2 1.88,0.87 0.37,0.9 0.88,0.47 0.8,0.88 0.67,0.56 -0.9,1.16 0.1,0.53 0,0.1 0.14,0.9 -0.53,0.9 0.9,0.28 0.9,0.72 -1.08,1.07 0,0.37 2.06,2.9 -0.52,0.9 -0.1,0.96 -0.96,0.8 0.06,0.54 0,1 1,0.82 1.2,2.43 0,0.2 0.05,0.05 0.1,0.2 1.62,0.1 0.1,-0.1 0.18,0.62 0.9,0.47 0.88,0.17 1.64,1.44 -0.25,0.9 0.05,0.64 -0.25,0.88 1.06,0.8 -0.15,0 -0.1,0.38 -0.9,0 0.72,0.9 c -2.6,-1.58 -3.93,0.83 -5.3,2.7 l -1,0.72 -0.35,0.9 -0.53,0.38 -0.38,0.25 -0.72,1.1 -1,-0.1 -0.1,0.87 -0.87,0.38 -0.28,-0.1 -1.1,1.82 -1.06,-0.57 -0.72,0.82 -0.1,0.1 -0.43,0.9 0.24,1.1 -0.25,0.24 -1.92,0.54 0.2,-0.34 -0.92,0.34 -1,-0.62 -0.15,0.62 0,0.95 -0.46,1 -0.9,0.63 -0.26,1 0.2,0.9 -0.4,0.88 0.3,0.9 0.34,-0.33 0.47,0.97 -0.1,0.9 -0.38,0.9 0.1,0.34 0.8,1 1,1.97 -0.8,-0.24 0.18,1.78 -0.2,1 -0.46,0.9 0.1,0.9 -0.35,1.8 0.9,0.56 0,0.15 0.62,-0.34 0.44,0.92 0.9,-0.1 0.2,0.25 0.96,0.28 1.1,0.16 0,1.92 -0.47,0.53 0.1,0.37 0.27,0 0.1,-0.03 0,7 -0.2,0.15 -1.86,0.25 1.87,0.72 0.2,0.25 0,1.22 -0.82,0.24 -0.9,0.53 -0.9,-0.2 0.28,0.92 -0.44,0.9 0.87,0.52 -0.24,1.82 0.9,-1 0.26,-0.9 0.9,-0.35 0.1,0 0,3.3 -2.25,1 -0.9,0.1 -0.9,0.8 -0.64,0.9 -0.34,0.9 0,0.9 -0.73,0.9 -0.9,0.8 -0.3,1.82 -0.08,1.97 0.36,0.9 0,1.53 0.25,0.9 0.58,1.5 0.1,0.9 0.15,0.4 -0.44,0.9 0.08,0.87 -0.9,0.72 -1.82,-0.25 -0.15,-0.47 0.54,-0.4 0.28,-0.26 c 0.26,-0.23 0.5,-0.45 0.72,-0.72 0.14,-0.16 0.26,-0.35 0.37,-0.53 l 0.04,-0.04 c 0.06,-0.1 0.1,-0.2 0.16,-0.28 l 0.16,-0.3 c 0.25,-0.63 0.34,-1.3 0.15,-2.04 l -0.24,1.87 -0.53,0.92 -0.8,0.9 -1,0.88 -0.73,0.37 -0.9,-0.1 -0.9,0.1 -0.36,0.2 0.2,0.87 -0.3,0.56 -0.18,0.34 -1.15,1.1 0.16,0.1 0.9,-0.82 0.57,-0.72 0.16,-0.2 1.7,0.3 -1,0.52 -0.7,0.2 -0.98,0.8 c 0.15,0.06 0.34,0.08 0.53,0.1 l 0.53,0.06 1.2,0.1 0.24,0 1.28,0.18 0.25,0.1 1.03,0.06 1.2,0.06 c 0.68,0.03 1.48,0.06 2.18,0.06 -0.42,0 -0.87,-0.03 -1.32,-0.03 0.94,0.03 1.86,0.05 3.03,0.04 l 0.82,0 1.52,-0.1 1.34,-0.1 z"
1758+ id="path10348-0"
1759+ inkscape:connector-curvature="0"
1760+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
1761+ overflow="visible"
1762+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1763+ <path
1764+ d="m 905.1,522.83 -0.82,0.53 -0.9,-0.1 -0.82,-0.06 -0.97,-0.46 -0.48,-0.2 -1.25,0 -1,-0.34 -0.34,-0.37 -0.9,0.28 -0.9,1.45 c -0.47,-0.02 -0.77,0.05 -1,0.12 l -0.3,0.1 c -0.1,0.04 -0.2,0.1 -0.3,0.12 l -0.2,0.02 -0.18,-0.03 -0.34,-0.13 -0.43,-0.25 c -0.17,-0.1 -0.34,-0.24 -0.56,-0.4 -0.46,0.33 -0.9,0.55 -1.34,0.74 -0.42,0.2 -0.84,0.34 -1.25,0.47 -0.84,0.27 -1.66,0.52 -2.6,1.12 l -0.92,-0.65 -1.44,0.1 -0.56,0.46 -0.62,0.72 0,0.53 -0.44,0.64 -0.2,0.28 0,0.1 0.2,0.02 0.28,0.06 1.34,1.16 1.78,0 0.57,0.2 0.77,0 -0.53,0.7 -0.1,0.2 -0.87,-0.2 -0.9,0.63 -1,0.18 0,1.87 0.43,0.3 0.9,-0.4 -0.43,1.92 0.62,0.9 0.9,-0.1 0.2,0 0.96,0.63 0.28,1 -0.9,-0.28 -0.9,0.28 -0.17,0.16 -1,-0.16 -1,0.72 -0.25,-0.1 -0.66,-0.27 0.1,0.28 -0.35,0.62 -0.08,0.44 -0.1,0.46 -0.9,0.97 c 0.13,0 0.25,0.02 0.37,0.03 l 0.15,0.03 c 0.17,0.03 0.33,0.08 0.47,0.15 l 0.28,0.15 c 0.04,0.04 0.1,0.06 0.13,0.1 l 0.28,0.3 c 0.12,0.17 0.23,0.33 0.32,0.5 l 0,0.04 c 0.13,0.28 0.23,0.6 0.3,0.9 l 0.04,0.2 0.03,0.06 0.02,0.1 0.07,0.2 c 0.07,0.36 0.15,0.7 0.24,1 l 0.34,0.57 0.2,0.72 1.33,1.87 0.64,0.9 -1.88,0.9 2.06,0.26 0.82,0.9 -0.9,0.47 -0.1,0.63 2.78,2.16 0.9,0.24 0.82,0.65 0.18,1.15 -2.15,-0.1 -0.9,0.72 -2.26,0.63 -1,-0.63 -0.52,0.2 -1.44,-0.73 -0.62,0.44 -0.38,0.28 -1.15,-0.2 0.42,1.92 -1.06,0.25 -0.62,0.47 -0.28,0.15 -1.72,-0.87 -0.9,0.8 -1.26,-0.08 -0.2,0.97 -0.52,0.62 -0.43,0.9 -0.47,1.9 0.1,3.32 -0.92,0.56 -0.15,0.1 -0.2,0 -0.47,0.43 -0.87,-0.52 -0.3,0.1 -0.08,0.06 0.38,1 -0.28,0.9 0.43,1.35 0.2,0.9 -0.2,0.9 0.2,1.15 -0.34,0.9 -0.47,0.64 -0.98,0.42 -0.56,0.57 0.28,1.86 0.72,0.9 0.37,1 1.06,0 0.9,-0.37 1.06,0 -0.34,0.9 -0.1,0.8 5.76,0 0.37,0.73 -0.1,1 -0.27,0.97 -0.1,0.37 0.75,1.78 0.06,0.47 -0.35,2.5 -0.1,0.72 0.1,0.28 -0.1,1.44 0.3,0.9 1.33,1.54 0.1,0.72 0.43,1.25 0,0.9 0.1,0.28 0,0.1 -0.27,0.44 -0.44,0.27 0.33,1.78 0,0.1 1.1,-0.54 0.1,-0.08 0.33,-0.38 0.66,0.28 0.87,-0.18 0.9,0.18 0.47,-0.1 0.87,-0.52 0.9,0.1 1,0.1 0.92,-0.67 0.06,1.2 0.1,0.08 0,1.7 -0.16,0.9 0,2.44 0.15,0.28 -0.08,0.88 -0.34,0.9 -0.2,0.72 0.2,0.9 c -0.25,0.03 -0.55,0.04 -0.88,0.04 l -1.1,0 c -1.44,-0.02 -3.2,-0.08 -4.68,-0.03 -0.47,0 -0.92,0.05 -1.3,0.1 -0.22,0.02 -0.4,0.05 -0.58,0.1 -0.15,0.02 -0.34,0.04 -0.46,0.08 -0.02,2.46 0.02,4.88 0.06,7.32 l 0,0.03 c 0.03,2.44 0.07,4.88 0.03,7.32 l 0,0.1 1.15,1.96 1.1,1.1 3.3,3.24 1.3,0.63 3.5,-0.72 0.27,0.1 2.24,0.06 0.88,0.28 0.1,0.1 1.27,1.08 -1.3,0.07 -0.86,0.1 -0.38,0.27 -0.9,0.72 -0.82,-0.44 -1.78,0.97 -0.37,0.46 -1.26,1.06 -0.47,-0.9 -0.72,-0.82 -0.34,-0.62 c -0.46,0 -0.9,0.04 -1.37,0.1 -0.22,0.02 -0.44,0.05 -0.66,0.1 -0.53,0.06 -1.06,0.16 -1.6,0.27 l -0.05,0 c -0.06,0 -0.1,0.02 -0.16,0.03 l -0.28,0.06 c -1.3,0.28 -2.6,0.58 -3.87,0.78 l -0.1,0 c -0.4,0.07 -0.82,0.12 -1.24,0.16 -0.42,0.03 -0.85,0.04 -1.28,0.03 l 0,17.76 -4.6,0 c -0.02,2.64 -0.02,5.26 -0.02,7.9 l 0,8.02 c 0,3.5 0.02,7 0,10.5 0,1.8 -0.04,3.6 -0.07,5.4 l -0.88,0.38 -1.1,0.16 -0.43,0.9 -0.73,0.1 -0.1,0.9 -0.37,0.1 -0.9,0 -0.88,-0.37 -0.8,0 -0.92,0.18 -1.8,-0.1 -0.9,-0.43 -1,0 -1,-0.37 -0.52,-1.07 0.2,-0.9 -0.82,-0.8 -0.1,-0.3 -0.9,-0.15 -0.63,0.72 -0.37,0.87 -0.44,0.38 -0.8,0.62 0.36,0.9 1.16,1.8 1.1,2.8 0.15,0.9 0.9,2.6 1.34,2.7 1.44,2.24 1.37,1.8 0.34,1 0.46,2.17 -0.1,0.9 -0.27,0.88 -0.73,0.73 -0.9,-0.35 -0.35,1 0.8,0.54 0.45,0.9 -0.1,0.35 0.72,0.9 0.8,1.63 -0.43,1.25 0.16,1.25 0.56,0.65 -0.3,-0.9 0.38,-0.47 0.72,-0.1 0.72,0.2 0.1,0.8 0.34,0.54 0.72,-0.07 1,0.35 0.18,0.9 0.35,0.1 0.9,0.72 0.92,0.1 0.87,0.33 2.8,-1.97 1.26,0.1 -0.28,-0.38 0.9,-0.18 1,0.28 2.7,-0.2 2.05,-1.62 0.9,0 0.3,-0.06 0,144.97 69.55,0 0,-226.9 0.35,-0.2 3.53,-1.6 0.87,-0.27 0.66,-0.47 0.86,0 0.63,-0.25 1.52,-1.18 1.8,-1.07 0.3,-0.9 1.06,-0.53 1.9,-2.82 0.8,-0.87 0.45,-0.9 -0.37,-0.63 1.1,-2 -0.1,-0.88 -0.72,0.16 -0.1,-0.87 -0.43,-0.9 0.44,-0.9 -0.25,-0.9 0.06,-0.98 -0.35,-0.28 0.2,-1.82 -0.72,-0.9 0.88,-0.63 -0.25,-0.97 0.1,-0.9 -0.37,-0.72 0.1,-1.9 -0.35,-0.82 0.06,-0.87 -0.44,-0.65 0.63,-0.97 0.1,-2.7 -0.35,-0.35 -0.3,0.28 -0.8,0.44 -0.9,0.8 -2.25,0.82 -0.9,0.62 -0.98,0.18 -0.9,0.1 -1.35,0.53 -0.62,0.62 -0.9,-0.53 -0.92,-0.28 -0.62,0.1 -1.25,1.53 -0.92,0.34 -0.2,0.3 -0.9,-0.1 -0.9,-0.35 -0.25,-0.37 -0.9,0.1 -0.9,0.7 -0.2,0 -0.15,0.1 -1.82,-0.7 -1.72,-0.73 -0.87,0.72 -0.72,0 -0.2,-0.1 -1.93,0 -0.37,-0.9 -0.9,-0.9 -0.35,-0.73 0.15,-1.16 -0.06,-0.9 -0.28,-0.25 -0.1,-1.9 -0.1,-0.3 0,-0.15 -0.1,-0.18 -0.24,-0.47 -0.57,-0.78 -0.88,-0.75 -0.8,0.18 -0.3,0.47 -0.7,-0.65 -0.73,0.1 -0.92,-0.17 -1.78,-0.7 -0.38,0 -0.7,-0.4 -0.1,0 0,-0.08 -0.2,-0.2 -0.87,-0.05 -0.2,-0.38 -1.9,-0.53 -0.43,0.1 -0.9,-0.92 -0.26,0.2 -0.37,-0.2 -0.45,-0.9 -0.37,-0.1 -0.54,-0.34 -0.9,0 -0.2,-0.9 -0.8,-0.92 -0.25,-0.9 -1.45,-2.35 0,-0.87 -0.37,-1.9 -1.44,-1.8 -1,-0.18 -0.88,-0.72 -0.37,-1 0.9,-0.9 0,-0.9 -0.47,-0.88 -0.16,-0.9 0.16,-0.73 -0.25,-0.9 -0.72,-0.73 0.25,-1.88 0.57,0 0,-0.2 1.06,-0.53 0.8,-1.1 0.55,-0.9 0.46,-0.34 0,-0.38 0.3,-0.7 0.33,-0.3 0.44,-0.53 0.38,-0.34 0.53,-0.9 -0.08,-0.3 0.2,-0.33 -1.73,-0.1 -0.17,-0.9 0.44,-0.44 -0.44,0 0.63,-1.18 0.9,-0.18 0.07,0.1 0,-0.1 0.46,-1.44 -0.3,-0.44 -0.08,-0.1 0,-0.1 0.1,-0.42 0,-0.82 -0.1,-0.28 -0.16,-0.2 -0.1,-0.14 0,-0.28 -0.27,-0.28 -0.3,-0.07 -0.7,-1.47 -0.45,0 -0.2,0.3 -0.08,0.08 -1.44,1.44 -0.44,0.1 -0.38,-0.73 -0.44,0.1 -0.62,0.17 0,-0.47 -0.07,-0.3 0,-0.04 c -0.02,-0.5 0.02,-1 0.1,-1.5 l 0,-0.03 c 0.15,-0.58 0.23,-1.13 0.27,-1.7 0,-0.05 0.03,-0.1 0.03,-0.18 0.1,-0.6 0.16,-1.18 0.2,-1.8 l 0.08,-0.38 -0.1,-0.28 0.9,-1.7 0.3,-1.9 0.06,-0.1 0.1,0 1,-0.8 0.43,-0.55 0.72,-0.34 0.27,0.98 0.03,-1.34 0.7,0.8 1.24,-1.8 0.9,-0.35 0.82,-0.9 0.37,-0.64 -0.28,-1.53 -0.37,0.37 -1.07,-0.8 -0.46,-0.2 -0.06,0.2 -0.9,-0.57 0.25,-0.88 0.46,-1 -0.47,-1.25 0.37,-0.7 0,-0.92 0.1,-0.28 -1.87,-0.02 0.03,-1.1 -1.66,-0.5 -1.8,-1.88 -0.02,-0.8 -1.77,0.08 -0.88,0.8 -2.66,-0.48 -1.24,0.6 -2.88,-1.4 -0.36,-0.9 -1,-0.42 z"
1765+ id="path42336-1"
1766+ inkscape:connector-curvature="0"
1767+ sodipodi:nodetypes="ccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
1768+ overflow="visible"
1769+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1770+ <path
1771+ d="m 953.78,431.67 c -0.36,-0.24 -0.6,-0.92 -0.8,-1.34 l -0.73,-0.9 0.44,-1 -0.1,-0.63 -1.8,-2.78 -0.9,-0.9 0.1,-0.1 -0.72,-1 -1.53,-2.7 -1.53,-1.87 -0.38,-1 -0.87,-0.9 -1,-1.88 -0.72,-0.9 -0.2,-0.47 -0.9,-0.25 -1.68,0.34 -0.28,-0.35 0.42,-0.53 0.66,-1.82 -0.1,-0.7 0.82,-3.26 0.34,0 1.16,0.18 1.2,0.28 1.24,0.16 1.2,0.2 0.95,-0.73 0,-0.1 1.1,-0.9 0.7,-1.16 1,-0.62 1.26,-0.28 1.15,-0.25 0.4,0 0.08,-0.2 0.44,-0.9 0.72,-0.9 1.18,-0.63 c -0.75,-0.83 -1.55,-1.68 -2.34,-2.54 -0.75,-0.8 -1.47,-1.6 -2.16,-2.4 l 0.25,-0.3 0.38,-0.08 0.2,0 0.05,-0.1 1.28,-0.34 0,-0.03 1.25,-0.33 0.9,-0.16 0.1,-0.08 1.16,-0.28 0.08,-0.1 1.25,-0.28 0.38,-0.16 1.26,-0.28 0.18,-0.1 1.16,-0.7 0.66,-0.54 0,-0.1 -0.3,-0.53 -0.08,0 -1,-0.28 0,-0.17 -0.1,-0.17 0.1,0 0.2,-0.1 0.08,-0.1 -0.37,-1.17 -0.9,-3.32 c 2.3,-1.1 4.57,-2.38 6.76,-3.6 l 0.25,-0.18 0.1,0 0.3,-0.1 0.08,-0.1 1.7,-0.9 0.8,-0.43 0.28,-0.2 0,-0.08 1,-1.78 0,-0.1 -0.1,-1 0,-0.8 0.35,-1.88 0.2,-0.2 0.28,-1 -0.37,-1.25 -0.15,-0.9 0.06,-0.73 0.3,-0.9 1,-0.53 0.9,-0.2 1.44,-1.16 0.06,0 1.37,-1.34 -0.1,-0.28 1.07,-0.28 0.82,-1.16 0.9,0.28 0.9,-0.28 0.98,0.28 0.9,0.35 1,0.2 0.82,-0.2 0.62,-0.28 0.63,0.9 -0.1,0.4 0.92,0.08 0.9,-0.56 0.82,-0.07 0.1,0.16 0.08,-0.9 -0.9,-0.63 -0.1,-0.34 -0.1,-0.9 0.2,-0.3 -0.72,-0.43 -0.9,-0.44 c 0.87,-3.5 0.77,-0.63 0,-4.26 l 0.18,-0.97 -0.56,-0.65 -0.1,-0.25 0,-0.9 -0.62,-1.1 1.72,-0.16 0.34,-1.52 0.9,-0.2 0.73,0.54 -0.17,-0.43 -1.1,-0.92 -0.37,-0.53 -0.34,-0.1 -0.1,-0.1 -0.53,-0.18 c -1.43,0.42 -1.56,0.06 -2.8,-0.43 l 0.17,-0.63 -0.34,-0.9 0.18,-0.8 0.36,-0.54 0.1,-0.2 0,-0.27 -0.1,-0.35 -0.53,-1 -0.72,-0.72 -1.1,-0.44 -0.08,-0.3 -0.16,-0.08 0.16,-0.28 -0.9,-0.54 -0.54,-0.53 -0.53,-0.1 0.28,-0.33 -1.2,0 -0.33,0.7 -1.8,-0.27 -0.92,0 -0.44,0.35 -0.46,-0.16 -0.8,-0.28 -0.08,-0.1 -1,0.9 -1.25,0.73 -0.9,0.3 -0.9,0.52 -2.45,1 -0.62,-0.37 -1.97,-0.28 -0.9,-0.35 -2.53,0.44 -0.63,0.38 -1.78,0.1 -2.34,-0.57 -0.38,-0.53 -0.87,0.53 -0.2,-0.1 0,-20.35 -0.08,-0.03 -1.54,-1.82 -1.9,-0.62 -0.17,-0.53 0.9,-0.28 -1.1,-0.53 0.9,-0.45 1.26,0.53 1.2,0.1 0.52,-0.13 0,-9.88 0.1,-0.1 1.78,-0.24 0.9,0.06 0.63,-0.16 -0.1,-0.3 -0.1,-1 0.38,-0.86 0.9,-0.9 0.9,-0.3 0.07,-0.08 0.38,-0.1 0.43,-0.87 c 1.5,0.1 2.8,0.08 4.35,0.06 l 0,-0.88 0.35,-0.38 -0.1,-0.1 0.63,-0.9 0.1,-0.06 0,-0.38 -0.2,0 -0.05,0.1 -0.2,0 -0.1,-0.1 -0.17,-0.18 0.37,-0.16 -0.28,-0.9 -0.9,-0.47 0,-0.26 0.1,-0.2 0.52,-0.9 0.9,0.1 0.38,-0.38 -0.2,-0.16 -0.17,0.1 -0.2,0.06 -0.87,-0.25 0.1,-0.8 0.98,-0.63 0.7,-0.9 -0.14,-0.53 -0.28,-0.38 0.34,-0.9 -0.62,-0.1 -0.1,0.1 -0.44,0.28 -0.9,-0.3 -0.53,-0.8 -0.9,0 -0.9,-0.87 -0.9,0.43 -0.26,0 -0.9,-0.53 -0.9,-0.37 -0.92,-0.25 -0.78,-0.1 0.06,0.1 -0.78,0.53 -0.28,-0.47 -0.1,-0.05 -0.1,-0.2 -0.9,-0.36 -0.43,-0.64 -0.62,-0.9 -0.9,-0.54 -0.9,0.53 -0.82,0 -0.44,0.1 -0.2,0.1 -0.9,0.62 -0.87,-0.63 -0.56,0.2 -0.36,-0.45 -0.9,-0.57 -0.8,0.1 -0.73,0.46 -0.52,-0.48 -0.72,-0.9 0.15,-0.88 0,-0.1 c -0.1,-0.27 -0.24,-0.58 -0.43,-0.9 l -0.28,-0.47 -0.13,-0.15 -0.06,-0.1 c -0.16,-0.22 -0.35,-0.42 -0.53,-0.62 l -0.03,-0.03 c -0.02,-0.03 -0.03,-0.07 -0.06,-0.1 l -0.06,-0.15 -0.56,-0.44 c -0.6,0.2 -0.97,0.28 -1.22,0.28 -0.38,0 -0.5,-0.17 -0.78,-0.3 -0.1,-0.06 -0.2,-0.1 -0.35,-0.14 -0.27,-0.07 -0.68,-0.1 -1.33,-0.03 l 0.2,-0.1 0.27,-0.63 -0.1,0 -0.18,-0.37 -0.28,-0.9 -0.35,-0.45 0.28,-0.28 0.17,0 0.8,-0.87 c -2.5,-1.7 -0.74,-1.9 -2.1,-2.88 l -0.04,0 c -0.2,-0.14 -0.46,-0.28 -0.82,-0.47 l -0.9,0.54 -0.1,-0.26 -0.14,-0.2 -0.28,0 -0.82,-0.1 -0.53,0.3 -0.9,0.43 -0.9,0 -0.82,-0.34 -0.87,-0.1 0,0.54 -0.2,0.18 -0.7,0.9 -0.9,0.07 -1,-0.34 -4.02,0.22 -1.9,2.64 0.36,1.57 -0.45,0.9 -1.64,-1.4 -3.84,0.65 -1.05,-1.4 -0.36,-0.15 -1.18,0.5 -0.44,0.84 -2.12,-1.53 -1.8,0.3 -0.7,0.78 -0.25,-0.03 0,-0.64 -9.7,-1.95 -5.35,0.24 -1.53,1.52 -1.86,0.57 -0.3,-0.75 0.1,0.63 0.18,0.1 0.38,0.9 0.06,0.72 0.47,0.53 0.1,0 0.52,1.2 1,0.8 -0.9,0.44 0.72,0.9 0,0.35 -0.1,0.37 -0.9,0.7 -0.92,0.2 -0.34,0.53 c -0.24,0.14 -0.46,0.3 -0.66,0.44 -0.2,0.14 -0.38,0.3 -0.56,0.47 -0.37,0.32 -0.74,0.65 -1.13,1.06 l -0.73,0.9 -0.1,0.1 -0.18,0.1 -0.35,0.43 -0.1,0.1 -0.52,0.62 0,0.62 0.25,0.9 -0.1,0.63 0.66,0.9 0.06,0.4 -1.5,-0.48 -0.28,0.5 -0.28,0.5 -0.2,0.72 -0.6,0.9 -0.45,0.53 -0.1,0.72 0,0.18 0.18,0 0.35,0.2 0,0.08 0.9,0.72 0.28,0 0.36,0.44 0.18,0.34 0.9,0 0.1,0.1 0.25,0.8 -0.88,0.73 -1,0.36 -0.28,0.1 -0.9,0.34 -0.26,0.53 -0.28,0.2 -0.44,0.27 -0.1,0.2 -0.24,0.45 -0.56,1.13 -0.2,0.47 0,0.1 -0.62,0.62 -0.28,0.9 -0.43,0.53 -0.1,0.1 0,0.44 -0.72,0.37 -0.17,0.92 -0.16,0.25 -0.72,0.9 -1.37,0 -0.35,0.53 -0.1,0.1 -0.1,0 -0.9,-0.2 -0.96,0.2 -0.1,0.2 0.26,0.33 0.28,0.56 1.1,0.43 0.25,0.53 0.2,0.2 0.43,0.52 -0.1,0.56 0.2,0.25 -0.2,0.18 0.28,0.2 0.1,0.17 0.8,0.72 0.92,0.35 0.1,0.1 0.15,0 0.8,0.27 -0.15,0.9 -0.28,0.15 0.2,0.2 0.7,0.37 -0.6,0.28 -0.3,0.15 0.2,0.3 0.43,0 0.53,0.24 0,0.08 0.28,0.28 1.62,0.34 0,0.2 0.25,0.27 0.92,-0.47 0.47,-0.43 0.52,0.15 0.34,0.13 0.9,0.44 -0.33,0.17 -0.2,-0.1 -0.7,0.35 -0.2,0.1 0.2,0.18 0.08,0.3 0.36,0.42 0.1,0 0.37,0.44 c -0.08,0.13 -0.2,0.26 -0.3,0.38 l -0.14,0.18 c -0.06,0.05 -0.1,0.1 -0.14,0.16 l -0.15,0.16 -0.18,0.18 c -0.02,0.02 -0.02,0.05 -0.03,0.07 -0.04,0 -0.05,0.05 -0.07,0.08 -0.05,0.05 -0.1,0.1 -0.13,0.16 0,0 -0.02,0 -0.03,0.03 l -0.03,0.03 c -0.03,0.03 -0.05,0.06 -0.06,0.1 -0.02,0.02 -0.02,0.06 -0.04,0.1 l -0.03,0.05 -0.05,0.25 -0.03,0.06 0,0.1 c 0,0.1 -0.02,0.2 0,0.34 0,0.16 0.05,0.33 0.12,0.53 l 0.38,0.66 0,0.14 0.9,0.9 0.35,0.2 0.8,0.9 0.3,0.1 0,0.15 -0.73,0.9 -0.8,0.72 -0.2,-0.1 -0.53,0.2 -0.08,0.02 -0.28,0.16 0.1,0.1 0,1.34 0.18,0.4 0.2,0.4 -0.2,0.13 -0.63,0.4 0.43,0.54 0.2,0.26 0.08,0.13 0.26,0.17 1.44,0.82 0.1,0.6 0.28,0.45 0.18,0.53 -0.18,1 0,0.72 -0.1,0.28 -0.41,0 -0.53,0.1 0,0.43 -0.1,0.4 -0.87,0.14 -0.28,0 0,0.1 -0.72,-0.1 -0.63,-0.15 -0.46,0.14 -0.87,0.28 0,0.1 -0.56,0.8 -0.63,0.17 -0.9,-0.08 -0.16,0 -1.37,0.25 -0.7,0 0,0.38 0.27,0.53 0,0.53 -0.28,0.48 -0.92,0.44 -0.06,0.53 -0.66,1.37 -0.15,0.07 -0.62,0 -0.28,0.45 -0.2,0.54 0.3,0.45 -0.57,0 -0.34,0.88 -0.54,-0.16 -0.47,-0.1 0.6,0.35 0.82,1.82 0.72,0.1 1.28,1.68 0.35,-0.82 0.47,0.3 0.87,0.17 -0.43,0.72 -0.28,-0.2 -0.88,-0.1 -0.1,0.92 1.16,0.8 0.72,1.82 0.9,-0.72 0,-0.18 0.63,0.9 2.35,-0.56 0.9,0.37 0.9,-0.37 0.54,0.34 0,1.2 -0.47,-0.1 -1.06,-0.44 -1,-0.63 -0.92,0.25 -0.87,0.72 -0.9,0.1 -0.72,1 0.35,0.9 0.7,1 0.48,0.16 0.64,0.9 -0.44,1.72 0.72,1.44 0.87,-0.28 0.8,-0.9 0.1,0.56 0.9,0.9 0.82,1.35 0,19.43 -1.2,-0.46 -1.05,-0.16 -1.25,-0.1 -0.9,0.26 -0.82,0.56 -1.8,0.15 -0.92,0.57 -0.97,0.34 -1.8,1.53 -0.8,1 -0.36,0.96 0.1,1.28 c 1.12,2.95 1.72,3.04 -1.38,6.13 l -1.78,0.8 -1,0.07 -2.16,-1.06 -2.06,-1.63 -3.87,-1.53 -2.98,-0.72 -0.9,0.1 -1.73,-0.2 -1.8,-0.8 -0.8,-0.9 c -0.78,-0.96 -0.78,-2.1 -1,-2.98 -0.06,-0.22 -0.12,-0.4 -0.22,-0.6 -0.3,-0.53 -0.9,-0.87 -2.2,-0.83 l -1.7,-0.45 -0.9,-0.72 -1.45,-0.53 -1.72,-0.2 -1.24,-0.52 c -4.2,1.7 -4.7,-0.18 -8.18,-1.34 l 0,0.34 -0.1,0.2 -0.1,0.42 0,0.2 c -0.13,0.4 0.22,2.4 0.2,2.77 -0.17,0.1 -0.3,0.18 -0.47,0.25 l -0.24,0.13 c -0.08,0.03 -0.18,0.06 -0.25,0.1 l -0.65,0.24 -0.2,0.1 c 0,0 -0.03,0 -0.05,0.02 l -0.72,0.34 c -0.17,0.12 -0.32,0.28 -0.47,0.44 l -0.33,0.44 -0.56,0.18 -0.18,0.1 -0.44,0.9 -0.2,0.2 -0.86,0.15 -0.2,0.18 -0.6,0.9 0.14,0.92 0.28,0.87 0.2,0.9 0,0.63 -0.63,0.9 -0.65,0.92 c -0.22,0.3 -0.43,0.62 -0.53,0.7 -0.15,0.14 -0.3,0.12 -0.63,0.2 -0.2,0.04 -0.4,0.1 -0.8,0.27 l -0.1,0.07 -0.73,0.37 0,0.73 0.1,0.2 0.7,0.86 0.54,0.9 0.4,1 c 0.32,0.96 0.53,1.97 0.52,3 l 0,0.03 c 0,0.33 -0.04,0.67 -0.1,1 l 0,0.1 -0.1,0.37 -0.14,0.9 0.1,0.88 0.05,0.1 0.38,1 0.2,0.8 -0.3,0.63 -0.08,0.4 0,0.05 -0.1,0 -0.34,0.9 -0.2,0.47 0,0.16 0.3,0.9 0.15,0.9 0.1,0.2 0.18,0.9 0.1,0.44 -1,0.9 -0.9,0.45 -0.53,0.9 c 0.7,0.98 1.44,1.94 2.12,2.94 0,0.03 0.04,0.05 0.06,0.07 l 0.15,0.25 0.45,0.72 0.28,0.88 0,0.9 0.28,1 0.1,0.1 0.26,0.1 0.47,0.96 0.96,0.47 0.9,-0.38 0.9,0.28 0.1,0 0.25,0.1 c 0.32,0.1 0.65,0.2 0.97,0.28 l 0.1,0.03 0.12,0.03 0.9,0.27 0.25,0.1 0.8,1 0.3,0.47 0.08,0.15 c 0.02,0 0.05,0.03 0.06,0.05 l 0.47,0.82 c 0.23,0.42 0.37,0.78 0.45,1 l 0.25,0.4 0.1,0.07 0.06,0.03 0.78,0.22 c 0.36,0.06 0.82,0.15 1.53,0.3 0.3,0.06 0.6,0.12 0.9,0.2 0.06,0 0.13,0 0.2,0.02 l 1.24,0.28 1.57,0.37 0.22,0.07 0.1,0 0.14,0.1 c 0.28,0.08 0.5,0.17 0.66,0.3 l 0.1,0.06 0.43,0.4 c 0.06,0.07 0.2,0.2 0.28,0.26 l 0.2,0.16 c 0.27,0.23 0.5,0.44 0.97,0.8 l 0.47,0.45 0.97,0.18 0.9,-0.53 1,-0.47 0.92,-0.53 0.25,-0.1 0,-0.08 c 1.7,-0.7 3.05,-1.46 4.7,-2.16 3.12,1.54 6.22,3.1 9.33,4.66 l 0.03,0 5.5,2.78 c 1.26,0.64 2.52,1.3 3.78,1.93 2.47,1.26 4.9,2.53 7.36,3.82 l 1.87,1 c 0.73,0.4 1.46,0.8 2.2,1.18 0.8,0.43 1.6,0.85 2.4,1.3 l 4.6,2.5 0,-2.02 4.27,-0.2 0,-9.6 29.15,-0.42 0.84,-0.63 0.15,0.9 28.13,0 z"
1772+ id="path42116-7"
1773+ inkscape:connector-curvature="0"
1774+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
1775+ overflow="visible"
1776+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1777+ <path
1778+ d="m 884.22,104.8 0,40.95 4.78,-2.13 6,-1.18 2.56,-0.15 2.8,0.16 1.54,0.6 1.5,1.05 3.64,-1.5 2.54,0.32 1.88,0.14 1.96,1.1 2,0.74 3.22,1.12 2.17,0.54 2.2,1.35 1.5,0.7 1.8,2.98 5,1.98 3.8,1.27 1.32,2.36 2.52,-0.07 1.47,0.8 3.6,0.2 4.77,1.6 5,2.54 0,-57.57 -0.08,-34.04 -9.37,0 0,-21.7 9.36,0 0.07,-48.46 -69.56,0 0,48.43 53.9,0 0,55.84 z"
1779+ id="path42114-4"
1780+ inkscape:connector-curvature="0"
1781+ overflow="visible"
1782+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1783+ <path
1784+ d="m 925.25,536.33 0.53,-0.53 0,-0.2 z"
1785+ id="path42112-7"
1786+ inkscape:connector-curvature="0"
1787+ overflow="visible"
1788+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1789+ <path
1790+ d="m 894.84,192.3 -1,0.34 0.53,0.56 1.44,-0.56 0,-0.15 z"
1791+ id="path42110-9"
1792+ inkscape:connector-curvature="0"
1793+ overflow="visible"
1794+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1795+ <path
1796+ d="m 886.2,201.5 -0.92,0.24 1,0.28 -0.1,-0.53 z"
1797+ id="path42108-3"
1798+ inkscape:connector-curvature="0"
1799+ overflow="visible"
1800+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1801+ <path
1802+ d="m 877.9,205.52 0.63,0.9 0.28,-0.43 z"
1803+ id="path42106-0"
1804+ inkscape:connector-curvature="0"
1805+ overflow="visible"
1806+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1807+ <path
1808+ d="m 879.1,224.86 -0.1,0.28 0.72,0 -0.63,-0.28 z"
1809+ id="path42104-4"
1810+ inkscape:connector-curvature="0"
1811+ overflow="visible"
1812+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1813+ <path
1814+ d="m 871.88,226.24 0.28,0.87 -0.9,0.1 0.9,1 0.53,0 0.17,-0.28 -0.18,-0.97 0.27,0.54 0.9,0 -0.28,-1 -1.73,-0.26 z"
1815+ id="path42102-6"
1816+ inkscape:connector-curvature="0"
1817+ overflow="visible"
1818+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1819+ <path
1820+ d="m 883.94,226.24 -0.1,0.15 0.3,-0.16 -0.2,0 z"
1821+ id="path42100-7"
1822+ inkscape:connector-curvature="0"
1823+ overflow="visible"
1824+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1825+ <path
1826+ d="m 882.7,226.77 0.42,0.34 0.57,-0.24 -1,-0.1 z"
1827+ id="path42098-6"
1828+ inkscape:connector-curvature="0"
1829+ overflow="visible"
1830+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1831+ <path
1832+ d="m 883.13,227.1 -0.1,0.2 0.28,0.28 -0.17,-0.47 z"
1833+ id="path42096-9"
1834+ inkscape:connector-curvature="0"
1835+ overflow="visible"
1836+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1837+ <path
1838+ d="m 872.7,228.4 0.55,0.52 0.53,0 0,-0.53 z"
1839+ id="path42094-7"
1840+ inkscape:connector-curvature="0"
1841+ overflow="visible"
1842+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1843+ <path
1844+ d="m 871.97,351.86 -0.9,0.53 1.62,1.8 0,-0.28 -0.36,-0.28 -0.37,-0.9 z"
1845+ id="path42092-1"
1846+ inkscape:connector-curvature="0"
1847+ overflow="visible"
1848+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1849+ <path
1850+ d="m 875.94,357.24 -0.38,0.18 0.47,0.9 -0.1,-1.08 z"
1851+ id="path42090-5"
1852+ inkscape:connector-curvature="0"
1853+ overflow="visible"
1854+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1855+ <path
1856+ d="m 875.13,359.67 -0.63,0.28 0.1,0.9 1.77,0.45 -1.25,-1.63 z"
1857+ id="path42088-8"
1858+ inkscape:connector-curvature="0"
1859+ overflow="visible"
1860+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1861+ <path
1862+ d="m 876.56,362.64 -0.9,0.2 0.9,0.8 z"
1863+ id="path12116-7"
1864+ inkscape:connector-curvature="0"
1865+ overflow="visible"
1866+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1867+ <path
1868+ d="m 953.77,0.5 0,48.45 -9.44,0 0,21.7 9.44,0 0,91.62 -5,-2.53 -4.76,-1.62 -3.6,-0.2 -1.46,-0.8 -2.52,0 -1.3,-2.3 -3.82,-1.26 -5,-1.98 -3.3,3.46 0.08,0.34 0.25,0.9 -0.43,0.92 -0.9,0 -0.98,-0.3 -0.9,-0.6 -0.1,0 0.1,0.27 0,0.1 -1.1,1.68 -0.97,0.28 -0.9,0.35 -1,0.1 -0.35,1.52 -1,0.9 -0.37,0 -2.5,1 -0.2,0 0.2,0.1 0.9,0 0.44,0.88 -1.44,1.9 0.1,0.2 0.1,0.15 0.8,2 0.88,0.62 2,0.53 0.92,0.9 0.7,1 1.7,1.17 0,0.28 -0.25,1.25 -1,0.8 -0.9,0.82 -2.16,2.78 0,0.72 1.45,1.8 c 1.1,2.64 3.37,4.48 3.43,7.4 l -0.56,-0.1 -0.97,0.18 -0.28,2.44 -0.37,0.88 0.9,0 -0.25,0.9 -0.9,0.72 0.34,0.9 0.9,0.73 0.62,-0.1 0.9,0.8 -0.9,0.73 -0.1,0.38 0.1,0.15 0.2,0.2 0.52,1.1 0.9,0.25 0.9,0.56 0.2,0.88 -0.1,0.66 -1.7,1.78 -0.45,0.2 -0.57,0.18 0.56,0.53 0.43,0.43 0.9,0.47 0.9,0.72 0.98,0.35 1,0.8 1,0.57 0.35,0.88 1,0.8 0.25,0.57 -1.34,2.7 -0.72,0.7 -0.9,0.9 -1.44,1.08 -2.7,2.7 -0.18,0.36 -1.78,1.62 -0.37,0.1 -0.1,0.1 -1.06,1.24 -2,1.34 -0.08,0 -1.16,1.1 -0.28,0 -0.16,0.1 -0.72,0.62 -0.9,0.8 -1.2,1 -0.33,0.35 1.06,0.2 1,-0.38 1.9,-1.16 0.25,0.24 -0.25,0.8 0.07,0.92 -0.88,-0.35 0.63,0.9 1.97,1.36 1.9,0 0.97,-0.1 0.9,0.35 0.62,0.92 0.72,0.1 0.28,0.62 -0.1,0.28 -4.78,-0.9 -0.7,1 -0.9,0.53 -0.9,-0.3 -0.9,0.1 -0.2,0.9 -0.9,-0.36 -0.87,-0.07 0.25,0.87 -0.25,0.9 0.44,0.38 0.38,0.25 0,0.28 -0.47,0.4 -1,0.15 -0.05,0.7 -0.56,1.2 -0.63,0.35 -0.54,0.46 -0.18,0.97 0.37,1.82 0.1,0.28 -0.38,0.97 0.9,1.8 0.1,0 -0.1,1.16 -0.27,0.1 -0.35,0.28 -0.56,0.9 -0.16,0.72 0.44,0.1 0.9,0.87 0.73,0.47 0.18,0.88 -0.18,0.28 -0.3,0.1 -0.08,0.9 -0.45,0.97 0.53,-0.07 0.38,-0.1 0.25,0.92 0.57,0.87 0.1,0 0.62,0.9 0.08,0.48 0,0.06 0.16,1 -0.25,0.52 0.06,0.15 -0.68,-0.24 -0.85,0.26 -0.83,0.82 -0.47,0.32 -0.08,0.6 -3.1,0.1 -0.56,0.7 -1.08,0.24 -0.76,2.34 1.18,0.47 -2.58,1.66 -1.7,0.85 -1.03,3.52 0.87,0.95 -0.98,0.06 -0.3,-0.9 -1.8,0.97 -1.1,-0.03 -0.28,1.03 -1.65,0.54 -2.26,-0.34 -1.76,0.02 c 0.05,0.55 0.36,1.27 0.47,1.72 l 0,0.03 c 0.22,0.74 0.55,1.45 0.87,2.16 l 0,0.03 0.66,1.4 -0.2,0.2 0.3,0.9 0,1.06 -0.38,0.75 -1.78,0.72 -0.38,0.24 -0.1,0.2 -0.05,0.08 -0.58,0.63 -0.25,0.44 1.54,0.9 0.35,0.18 0.28,0.2 0,0.08 0.1,0.16 -0.3,1.72 -0.08,0 -0.2,0.7 0.32,0.75 1.85,-0.58 1.53,-1.53 5.34,-0.25 9.7,1.96 0,0.65 0.26,0.03 0.7,-0.8 1.8,-0.26 2.12,1.52 0.44,-0.84 1.2,-0.5 0.35,0.16 1.05,1.4 3.84,-0.67 1.65,1.4 0.46,-0.9 -0.36,-1.56 1.9,-2.64 4.02,-0.22 1,0.33 0.9,-0.05 0.7,-0.9 0.2,-0.2 0,-0.53 0.88,0.1 0.8,0.34 0.92,0 0.9,-0.44 0.53,-0.28 0.82,0.1 0.28,0 0.15,0.18 0.1,0.25 0.9,-0.53 c 0.36,0.18 0.6,0.33 0.82,0.47 1.44,1 -0.4,1.16 2.15,2.9 l -0.8,0.86 -0.17,0 -0.28,0.28 0.35,0.44 0.28,0.9 0.18,0.38 0.1,0 -0.28,0.63 -0.2,0.08 c 0.66,-0.07 1.07,-0.04 1.35,0.03 l 0.35,0.14 c 0.28,0.14 0.4,0.3 0.78,0.3 0.12,0 0.3,0 0.47,-0.05 0.2,-0.06 0.45,-0.12 0.75,-0.23 l 0.56,0.44 0.07,0.16 c 0.03,0.03 0.04,0.07 0.06,0.1 l 0.04,0.03 c 0.17,0.2 0.37,0.38 0.53,0.6 l 0.06,0.1 0.12,0.16 0.3,0.47 c 0,0.04 0.03,0.1 0.05,0.13 l 0.37,0.78 0,0.1 -0.15,0.87 0.72,0.9 0.53,0.48 0.72,-0.47 0.8,-0.08 0.9,0.56 0.36,0.44 0.56,-0.2 0.88,0.64 0.9,-0.63 0.2,-0.1 0.43,-0.1 0.8,0 0.92,-0.52 0.9,0.54 0.63,0.9 0.43,0.63 0.9,0.38 0.1,0.2 0.1,0.05 0.28,0.47 0.8,-0.53 -0.07,-0.1 0.78,0.1 0.92,0.25 0.9,0.36 0.9,0.53 0.26,0 0.9,-0.44 0.9,0.87 0.92,0 0.53,0.8 0.9,0.3 0.44,-0.3 0.1,-0.08 0.62,0.1 -0.35,0.9 0.28,0.37 0.16,0.54 -0.73,0.9 -0.97,0.63 -0.1,0.8 0.88,0.25 0.2,-0.06 0.17,-0.1 0.2,0.15 -0.38,0.37 -0.9,-0.1 -0.54,0.92 -0.1,0.18 0,0.25 0.9,0.47 0.3,0.9 -0.38,0.17 0.18,0.2 0.1,0.1 0.2,0 0.05,-0.1 0.2,0 0,0.37 -0.1,0.06 -0.63,0.9 0.1,0.1 -0.35,0.38 0,0.88 c -1.54,0.02 -2.84,0.04 -4.35,-0.06 l -0.43,0.87 -0.38,0.1 -0.06,0.08 -0.9,0.28 -0.9,0.9 -0.4,0.88 0.1,1 0.1,0.28 -0.63,0.16 -0.9,-0.06 -1.78,0.25 -0.1,0.1 0,9.87 -0.53,0.12 -1.2,-0.1 -1.24,-0.52 -0.9,0.43 1.1,0.54 -0.9,0.3 0.14,0.52 1.9,0.62 1.54,1.82 0.1,0.03 0,20.36 0.18,0.1 0.88,-0.54 0.37,0.54 2.35,0.56 1.8,-0.1 0.6,-0.37 2.54,-0.44 0.9,0.36 1.97,0.28 0.62,0.37 2.43,-1 0.9,-0.52 0.9,-0.28 1.26,-0.72 1,-0.9 1,-1.43 0.06,-0.53 -0.53,-1.82 -0.54,-1.06 -0.1,-0.9 -0.47,-1 -0.87,-0.25 -0.82,-0.92 -1,-0.63 -1.78,-0.37 -0.9,-0.8 -1.2,-0.64 -0.15,-0.1 0.08,0.03 1.3,0.4 1.35,-0.15 3.96,1.3 3.1,0.3 1.26,-0.32 1.83,0.66 1.17,1.9 0.7,0.3 1.94,0.8 -0.2,0.43 1.57,0.74 1.25,-0.75 0.26,-0.5 1.3,-0.1 0.8,0.7 0.48,-0.6 1.75,1 2.13,0.4 -0.2,1.03 4.2,0.78 2,1 0.73,0.9 0.97,0.7 0.56,0.9 1.68,0.4 0.9,-0.63 0.72,-0.9 0.18,0 1.35,-0.64 0.1,-0.18 0.52,-0.9 0.1,-0.2 0.06,-0.03 -0.06,-0.06 -0.1,0 0,-0.1 c -0.43,-0.03 -0.38,0.1 -0.62,-0.2 l -0.1,-0.08 -0.08,-0.1 0,-0.06 -0.1,-0.18 0,-0.2 -0.06,-0.18 -0.1,0 0,-0.1 -0.1,-0.1 -0.08,-0.05 -0.1,0 0,-0.08 -0.1,-0.1 0,-0.1 -0.1,-0.08 0,-0.1 -0.05,-0.1 0,-0.08 -0.12,-0.06 -0.06,-0.1 0,-0.1 -0.1,-0.1 0,-0.08 -0.1,0 0,-0.1 -0.18,-0.1 -0.1,0 0,-0.08 -0.1,0 -0.06,-0.1 0,-0.06 -0.1,-0.1 -0.1,0 0,-0.08 -0.08,-0.1 0,-0.1 -0.1,0 0,-0.18 -0.1,0 0,-0.16 -0.08,-0.1 0,-0.05 -0.1,0 0,-0.1 -0.1,-0.1 -0.24,0 -0.1,-0.08 -0.1,0 -0.1,-0.1 0,-0.15 -0.08,-0.1 0,-0.28 0.1,0 0,-0.2 -0.1,-0.08 0,-0.35 -0.06,-0.1 -0.2,-0.1 -0.08,0 0,-0.1 -0.1,0 -0.1,-0.17 0,-0.07 -0.27,0 -0.06,-0.17 -0.1,0 0,-0.1 -0.1,0 -0.1,-0.1 0,-0.52 0.1,0 0,-0.27 0.1,-0.1 -0.1,-0.1 0,-0.05 0.1,-0.1 0.1,-0.1 0.05,0 0,-0.08 0.1,0 0,-0.1 0.1,0 0,-0.1 0.08,0 0,-0.18 -0.1,0 0,-0.1 -0.1,0 0,0.1 -0.08,0 0,0.1 -0.16,0.1 0,-0.73 -0.1,0 0,-0.1 0.1,-0.2 0,-0.15 0.08,0 0,-0.1 0.07,0 -0.07,-0.08 0,-0.3 0.07,0 0,-0.24 0.1,0 0,-0.28 0.08,-0.1 0.1,-0.18 0.1,-0.25 0,-0.1 0.1,-0.18 0,-0.1 0.08,0 0,-0.08 0.07,-0.1 0.13,0 0,-0.06 -0.13,0 -0.06,-0.1 0,-0.1 -0.17,0 -0.1,0.1 -0.1,0 -0.1,0.1 -0.08,0.06 0,0.56 -0.06,0 0,0.25 -0.1,0 0.1,0.1 0,0.1 -0.1,0 0,0.18 -0.1,0 0,0.34 -0.1,0.1 0,0.36 -0.1,0 0,0.1 -0.08,0 0,-0.1 -0.1,0 0,-0.2 -0.06,-0.08 0,-0.1 -0.13,-0.1 0,-0.14 0.13,0.1 0.06,0 0,-0.1 0.1,0 0,-0.2 0.1,-0.08 0.08,-0.1 -0.1,-0.1 0,-0.18 0.1,-0.06 0.1,0 0.1,-0.1 0,-0.28 -0.1,-0.1 -0.1,0 0,0.1 -0.1,0 0,-0.1 0.1,0 0,-0.24 -0.18,0 0,-0.28 -0.1,-0.1 -0.06,-0.1 0,-0.18 -0.13,0 0,-0.25 -0.06,0 -0.1,-0.1 -0.1,-0.1 -0.08,-0.1 0,-0.18 -0.1,-0.1 0,-0.15 -0.1,-0.18 0,-0.2 -0.15,0 0,0.1 -0.13,0 0,0.1 -0.06,0 0,-0.1 -0.2,0 0,-0.1 -0.08,0 0,-0.1 -0.1,0 0,-0.1 -0.1,0 0,-0.24 -0.08,-0.1 0,-0.15 -0.06,0 -0.1,-0.1 -0.37,0 -0.1,-0.1 -0.18,0 -0.08,-0.08 -0.18,0 0,0.1 -0.2,0 -0.1,-0.1 0,-0.06 -0.14,0 0,-0.1 -0.13,0 c 0.03,-0.53 -0.1,-0.2 -0.06,-0.62 l 0.2,0 0,-0.1 -0.13,-0.1 0,-0.08 0.13,0 0,-0.38 0.15,0 0,-0.15 0.1,-0.1 0.28,0 0.1,-0.08 0,-0.1 0.06,-0.1 0.08,0 0.1,-0.08 0.1,-0.1 0.08,0.1 0.1,0 0,-0.16 0.1,-0.1 0.08,-0.1 -0.1,-0.17 0,-0.37 0.1,0 0,0.38 0.1,0 0,0.2 0.06,0 0,0.1 0.1,0.14 0,-0.06 0.1,-0.1 0,-0.18 0.08,0 0,-0.53 -0.1,-0.1 0.2,0 0,0.1 0.1,0 0,-0.1 0.08,0 0,-0.1 0.2,0 0,-0.08 0.05,-0.1 0,-0.3 0.1,0 0,-0.14 0.1,0 0,-0.2 0.1,-0.08 0,-0.35 0.34,0 0,0.06 0.12,0 0,-0.72 0.06,-0.1 0,-0.06 0.1,0 0,-0.2 0.1,-0.08 0.1,0 0,-0.1 -0.1,-0.1 -0.1,0.1 -0.1,0 0,-0.1 -0.06,0 0,-0.08 0.53,0 0,-0.34 0.1,0 0,-0.1 0.05,0 0,-0.1 -0.06,0 0,-0.18 -0.1,0 0,-0.1 -0.1,-0.06 0.2,0 0,0.16 0.05,0.1 0.1,0 0,-0.1 0.1,0 0,-0.16 -0.1,-0.1 0,-0.08 -0.1,0 0.1,-0.1 0,-0.1 -0.16,0 0,-0.08 -0.3,0 0,-0.1 -0.18,0 0,-0.2 -0.1,0 0,-0.05 -0.06,-0.1 0,-0.1 0.16,0 0,0.1 0.28,0 0.1,0.1 -0.1,0.06 -0.1,0 -0.1,-0.06 0,0.16 0.1,0 0,0.1 0.1,0 0.2,0.1 0.14,0 0.1,0.08 0,0.1 0.1,0.1 0,0.1 0.08,0.08 0,0.07 0.1,0.1 0.1,0 0,-0.17 -0.1,0 0.1,-0.1 0,-0.18 -0.2,0 0,-0.52 0.1,0 -0.1,-0.05 -0.1,0 0,-0.2 -0.08,0 0,0.1 -0.1,0 0,-0.18 0.28,0 0,0.08 0.1,0 0,0.1 0.1,0 0,0.15 0.24,0 0.1,0.1 0.18,0 0,0.2 0.1,0.17 0.1,0 0,0.1 0.1,0 0.05,-0.1 0,-0.1 -0.07,0 0,-0.08 0.06,-0.1 0,-0.25 0.18,0 0,0.16 0.1,0 0,-0.1 0.1,-0.06 0.17,0 0,-0.1 0.1,0 0,0.1 0.1,0.06 0.05,0 0,-0.06 0.2,0 0,-0.2 0.18,0 0,0.1 0.1,0 0.1,0.1 0,-0.1 0.33,0 0,0.1 0.1,0 0,-0.1 -0.1,-0.1 0,-0.08 0.3,0 0,-0.2 0.1,-0.1 0,-0.15 0.08,0.07 0,-0.07 0.06,0 0.1,0.07 0.28,0 0,-0.07 -0.2,0 0,-0.1 -0.08,0 0.1,-0.08 0.18,0 0,-0.2 0.1,0 0,-0.1 0.1,0 0,-0.08 0.24,0 0.1,-0.1 0.1,0 0,-0.07 0.08,0 0.1,0.07 0.1,0 0,0.1 0.08,0.08 0,0.1 0.06,0 0.13,0.1 0.07,0.1 0,0.17 0.1,0.07 0,0.1 0.1,0 0,-0.17 0.28,0 0,0.07 0.08,-0.07 -0.1,-0.1 0,-0.08 -0.08,0 0,-0.1 -0.1,-0.1 0,-0.1 0.1,0 0,-0.08 -0.1,-0.17 -0.28,0 -0.06,0.07 -0.12,0 0,-0.07 0.13,0 0,-0.1 0.26,0 0,-0.27 -0.1,-0.1 0,-0.1 -0.28,-0.08 -0.06,0 0,-0.1 0.06,0.1 0.13,0 0,-0.16 0.07,-0.1 0.1,0.1 0,-0.1 0.1,0 0.08,0.1 0.1,0 0,0.06 0.1,0 0.08,0.1 0,0.1 0.07,0.1 0.1,-0.1 -0.1,-0.1 0,-0.16 -0.07,0 0,-0.1 0.07,0 0,0.1 0.1,0 0,0.16 0.18,0 0,-0.1 -0.1,0 0,-0.15 -0.1,0 0,-0.1 0.1,0 0,0.1 0.1,0 0,-0.2 0.1,0 0,0.1 0.1,0 0,0.25 0.08,0 0,0.1 0.1,0 0,-0.25 -0.1,0 0,-0.1 0.1,0 0,-0.1 0.1,0 0,-0.08 0.24,0 0,-0.2 0.1,0 0,0.1 0.1,0 0.08,0.1 0,0.1 0.1,0.08 0.06,-0.1 -0.06,-0.08 0,-0.44 -0.3,0 0.1,-0.08 0,-0.1 0.2,0 0,-0.1 0.06,0 0,-0.18 0.2,0 0,0.1 -0.07,0 0,0.18 0.15,0 0.1,0.1 0.28,0 0,0.1 0.15,0 0,-0.1 -0.06,0 0,-0.1 -0.1,0 -0.1,-0.1 0,-0.1 -0.1,0 0,-0.33 -0.08,0 0,-0.1 -0.2,0 0,-0.1 0.13,0 -1.37,-0.87 -0.38,0.1 -0.43,-0.48 -0.72,-0.25 -0.53,-0.37 0.1,-0.2 0.96,-0.43 0.9,0.44 0.2,-0.97 -1.1,-1.44 -0.8,-1.8 -0.9,-0.82 -0.36,-0.62 -0.9,-0.7 -1.9,0.08 -0.45,-0.2 -0.35,-0.18 -0.2,-0.1 -0.17,0.1 0,0.1 -0.25,0.62 -0.28,-0.15 -0.2,-0.1 -0.34,-0.62 0,-0.2 -0.28,-1.8 0.1,-0.25 -1.78,-0.72 -1,-0.28 0.43,-1.53 0.5,-1.1 c 0.15,-0.3 0.27,-0.5 0.38,-0.65 0.1,-0.14 0.17,-0.23 0.25,-0.28 0.04,-0.04 0.1,-0.05 0.12,-0.07 0.17,-0.07 0.3,-0.03 0.4,-0.18 0.06,-0.07 0.1,-0.16 0.17,-0.32 0.05,-0.15 0.12,-0.37 0.18,-0.65 l -0.47,-0.35 -0.53,-0.37 -0.1,-0.44 0.2,-1 0.43,-1.87 1.44,-0.72 0.28,-1.82 0.53,-0.43 0.9,-0.47 1.54,1.44 0.8,0.9 0,0.38 0.92,0.8 1.15,-0.08 0.18,-0.1 1.16,-0.56 0,-0.05 0.18,-0.28 -0.9,-1.82 -0.2,-0.97 -0.43,-0.9 1,0.28 1.06,-0.56 0.92,-0.63 0.9,-0.34 -0.2,-1 1,-0.53 0.92,0 0.63,-0.66 0.34,-0.16 0.92,-0.18 1.62,-1.25 0.25,-0.9 0.9,0.18 -0.1,-0.56 0,-0.54 0.22,-0.18 -0.2,-0.66 -0.9,-0.48 -0.8,-0.25 -0.44,0 -1,-0.8 -0.16,-0.3 -0.9,0 -0.82,-0.9 -0.53,-0.25 -0.9,0 0.1,-0.56 -0.92,-0.1 -0.28,0 -0.9,0.47 -0.7,-0.9 -0.27,-0.53 -0.9,-0.28 -0.2,0.1 -0.43,-0.1 0,-0.2 0.37,-0.34 0.7,-0.53 -0.36,-0.72 -0.18,0.07 -0.63,-0.07 -0.1,-0.1 -0.53,-0.9 -0.28,-0.18 -0.18,-0.2 -0.63,-0.87 0.18,-0.47 0.9,-0.24 0.54,0 0.28,-0.9 -0.2,-0.1 0.1,-0.37 0.63,0 0.1,-0.17 -0.3,-0.47 1,0.2 0.92,0.08 0.53,-0.62 0.38,-0.28 0.07,0 0.8,0.18 0.92,-0.18 0.9,0.28 0.62,-0.38 1,0.38 0.1,0 0,-1 0.9,-0.38 0.06,-0.87 0.1,-0.28 0,-0.73 -0.35,-0.63 -0.34,-0.47 -0.07,-0.03 0.03,-0.03 0.03,0.07 0.83,0.25 0.9,0.72 0.1,-0.1 1,-0.37 0,0.1 0.88,0 0.2,-0.1 0.43,-0.96 1,-0.46 0.38,-0.25 0.63,0.24 0.9,0.56 0.9,0.06 0.64,0.8 0.87,-0.14 0.9,-0.28 0.3,0.18 0.46,0.57 -0.06,0.02 0.03,0.03 0.62,0 0.9,0.53 0.38,-0.28 0.15,-0.16 0.38,0.35 -0.43,0.9 0.16,0.43 1.9,0.2 -0.2,-0.98 -0.36,-0.9 0.37,-0.9 0,-0.1 0.54,-0.9 0.28,-0.64 0,-0.6 -0.38,-0.3 -0.53,-0.8 -0.44,0 -0.08,-0.1 -0.1,-0.06 0,-0.2 -0.28,-0.08 0,-0.1 -0.34,-0.34 0.34,-0.1 0.72,-0.37 1,0.1 1.72,-1.82 0.2,-0.44 0.86,-0.54 -0.34,-1 -0.63,0 -0.37,-0.62 -0.53,-0.1 -0.63,-0.18 -0.47,0.1 -1.15,0.37 -0.44,-0.57 0.87,-0.43 0.47,-0.82 -0.1,-0.9 -0.9,0.2 -0.34,0.8 -0.9,-0.52 -0.2,-0.38 0,-0.9 0.35,-0.88 -0.06,0 0,-0.1 -0.38,0 0,0.16 -0.26,0 -0.12,0.1 0.47,0.18 0,0.1 -0.3,0.28 -0.7,0.25 -0.45,0.9 0.34,0.1 0.1,0.7 -0.92,0.38 -0.25,0.06 -0.9,-0.15 -0.44,-0.1 0.08,0.9 -1,-0.1 -0.8,0.26 -0.92,-0.25 -0.9,0.26 -0.2,-0.44 1.1,-1.1 -0.9,0.1 -0.53,0.47 -0.63,-0.48 -1,-0.35 -0.1,-0.1 -0.24,-0.52 -0.57,-0.37 -0.35,0.1 -0.9,-0.92 0,-0.2 -0.2,-0.8 -0.87,-0.15 -1,0.16 0.1,-0.72 -0.38,-0.87 -0.97,-0.2 -0.37,-1.18 -1.82,0.18 -0.87,-0.9 0.2,-0.35 -0.92,0.8 -0.47,0.2 -0.9,-0.66 -0.88,0.3 -0.9,-0.2 -0.2,0.2 -0.62,0.9 -1.2,0 -0.8,-0.1 -0.87,0.9 -0.27,0 -0.97,0.26 -0.9,-0.54 -0.73,-0.1 -0.8,-0.25 0.24,-0.56 -0.2,-0.92 0.57,-0.15 -0.8,-0.9 0.43,-0.92 0.2,-0.24 0.9,0.16 0.1,0.1 0.86,-0.35 0.9,0.1 0.66,-0.82 0,-0.2 -0.1,-0.08 0.63,-1.8 -0.9,-0.17 -0.73,-0.28 -2.78,0 -1.44,-0.1 -0.28,-0.28 0,-0.43 0.53,-1.24 0.1,-0.1 0.18,-0.28 0.2,-0.1 0.16,-0.87 0.1,-0.27 1,-0.1 0.9,-0.43 0.53,-0.9 0.7,0 0.3,-0.9 0.96,-0.64 -0.54,-1 -0.8,-0.34 -0.1,-0.9 -0.8,-1 0.17,-0.9 0.1,-0.98 -0.92,-0.72 0.28,-1 0,-0.1 0.1,-0.7 -1,0.36 -0.9,0 -0.92,-0.28 -0.15,-0.2 0.08,-0.9 0.97,-0.06 0.9,-0.28 0.72,-2.34 0.2,-0.2 0,-0.08 0.43,-0.88 -0.1,-0.1 -0.15,-0.18 0.72,-1.25 0.87,-0.2 0.75,0 1.34,0.3 0.9,0.96 1.78,0.18 0.1,0.28 0.37,0.97 0.43,1.63 -0.1,0.28 0.44,0 -0.34,0.9 -0.72,0.97 0.2,0.92 0,1 0.44,1.06 0.53,0.1 1.1,0.18 0.62,0 0,0.53 -0.1,0 -0.1,0.7 1,0 0.44,0.48 0.9,0.35 0.1,0.9 0.9,0.1 0.25,-0.47 0,-1.88 0.9,-0.8 0,-0.73 0.37,0.1 2.8,-0.72 0.9,-0.38 0.52,-0.53 0.9,-0.38 0.8,0.38 0.98,0.2 0.2,-0.2 0.9,-0.8 0.46,-0.92 0.78,-0.44 1,0.53 0.2,-0.54 0,-0.18 -1.9,-1.63 -0.55,-0.97 0.3,-0.72 0.86,-0.37 0.2,0.08 0.9,0.1 0.53,-0.9 0.37,0.02 1,0.06 0.8,-0.9 1.8,0.28 0.34,0.9 0.9,0.35 1,0.08 0.44,-0.9 3.98,0.62 1,0.2 0.34,-0.1 0.3,-0.9 1.8,-0.73 0.97,0.2 0.7,-1 0.72,-0.08 1,0.15 0.82,-1.25 1.87,-0.9 0.67,0.1 0.97,0.18 0.9,-0.2 6.38,0 1.8,-0.62 0.26,-0.28 1,-0.34 -0.06,-0.9 0.7,-1.35 -0.36,-0.92 0.9,-1.8 0.2,-0.73 -0.82,-0.87 -0.37,-1 0.37,-0.9 -0.1,-0.54 -0.9,-0.47 0.25,-0.97 0.12,-1.62 0.78,-1.82 0,-0.9 0.37,-0.88 0.54,-1 0.72,-0.9 -1.15,-0.97 0.2,-0.9 -0.67,-0.9 0.9,-1.54 -0.1,-0.9 1.54,-1.35 0.9,-0.7 0.92,0.1 1.25,1.14 0.54,-0.9 1,-0.16 0.53,-0.9 0.8,-0.63 0.4,-0.9 0.6,-0.9 0.92,-0.73 0.7,-0.8 0.82,-0.2 2.7,-1.06 0.9,-0.1 0.34,-0.8 0.18,-0.92 0.44,-0.87 1,-0.28 0.1,-0.54 0.62,-0.9 1.8,-0.82 0.92,-0.9 0.15,0 0.9,-0.1 1.92,-1.06 0.9,-0.2 0.68,-0.37 0.75,-0.42 -0.2,-0.72 0.45,-1 1.9,-1.07 0.54,-0.82 1,0 0.87,-0.62 -0.98,-0.72 -0.37,-0.56 1.9,-0.63 -0.9,-0.9 0.28,-0.88 -2.34,0 -0.92,-0.2 -0.44,-1.8 0.35,-0.97 0.52,-1 0.8,-0.9 -0.9,-0.82 -0.62,-0.9 -0.1,-0.35 -0.87,-0.1 -0.9,-0.52 -0.9,0.16 -0.92,-0.34 0,-0.63 1.45,-1.44 0.37,-0.28 0.54,-0.72 0.12,0.06 0,-14.2 22.97,-28.1 0,-84.32 -81.32,0 0,-32.2 z"
1869+ id="path81422-1"
1870+ inkscape:connector-curvature="0"
1871+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
1872+ overflow="visible"
1873+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1874+ <path
1875+ d="m 923,530.57 0,0.9 -0.4,0.72 0.48,1.24 -0.47,1 -0.24,0.88 0.9,0.56 0.07,-0.2 0.47,0.2 1.06,0.8 0.38,-0.36 0.53,-0.72 0,0.2 -0.53,0.52 0.28,1.53 -0.37,0.63 -0.82,0.9 -0.9,0.35 -1.25,1.8 -0.7,-0.8 -0.02,1.34 -0.28,-0.97 -0.72,0.34 -0.44,0.54 -1,0.8 -0.1,0 -0.05,0.1 -0.3,1.9 -0.9,1.7 0.1,0.28 c -0.47,1.72 -0.12,3.03 -0.8,4.68 l 0.08,0.72 0.1,0.53 0,0.46 0.62,-0.18 0.44,-0.1 0.38,0.72 0.44,-0.1 1.44,-1.43 0.1,-0.1 0.18,-0.28 0.44,0 0.72,1.46 0.28,0.07 0.28,0.28 0,0.3 0.1,0.14 0.15,0.2 0.1,0.27 0,0.83 -0.1,0.43 0,0.1 0.1,0.1 0.3,0.43 -0.48,1.43 0,0.1 -0.07,-0.1 -0.9,0.18 -0.63,1.2 0.44,0 -0.44,0.44 0.16,0.9 1.72,0.1 -0.2,0.34 0.1,0.28 -0.53,0.9 -0.37,0.35 -0.44,0.54 -0.34,0.3 -0.28,0.7 0,0.38 -0.47,0.34 -0.53,0.9 -0.82,1.1 -1.06,0.53 0,0.18 -0.56,0 -0.25,1.88 0.72,0.72 0.25,0.9 -0.16,0.72 0.16,0.9 0.47,0.88 0,0.9 -0.92,0.9 0.38,1 0.87,0.73 1,0.2 1.44,1.78 0.37,1.9 0,0.88 1.44,2.35 0.25,0.9 0.8,0.92 0.2,0.9 0.9,0 0.54,0.35 0.37,0.1 0.44,0.9 0.38,0.2 0.25,-0.2 0.9,0.9 0.45,-0.1 1.9,0.54 0.2,0.4 0.87,0.05 0.2,0.2 0,0.08 0.08,0 0.72,0.38 0.37,0 1.77,0.73 0.9,0.15 0.73,-0.1 0.72,0.66 0.28,-0.46 0.8,-0.2 0.9,0.76 0.55,0.78 0.25,0.47 0.1,0.18 0,0.15 0.1,0.28 0.08,1.92 0.28,0.25 0.06,0.9 -0.15,1.16 0.34,0.72 0.92,0.9 0.37,0.9 2.06,0 0.18,0.1 0.72,0 0.88,-0.7 1.72,0.7 1.8,0.73 0.16,-0.1 0.2,0 0.9,-0.72 0.9,-0.1 0.25,0.38 0.9,0.35 0.92,0.08 0.17,-0.28 0.9,-0.34 1.26,-1.53 0.63,-0.1 0.9,0.28 0.9,0.54 0.63,-0.62 1.34,-0.53 0.9,-0.1 0.97,-0.2 0.92,-0.62 2.25,-0.8 0.9,-0.82 0.82,-0.44 0.27,-0.28 0.34,0.34 -0.08,2.72 -0.63,0.97 0.43,0.66 -0.06,0.87 0.34,0.8 -0.08,1.92 0.37,0.72 -0.1,0.9 0.25,0.97 -0.88,0.64 0.72,0.9 -0.2,1.82 0.35,0.28 -0.06,0.97 0.24,0.9 -0.44,0.92 0.44,0.9 0.1,0.88 0.7,-0.16 0.1,0.88 -1.1,2 0.4,0.62 -0.45,0.9 -0.82,0.9 -1.9,2.8 -1.07,0.53 -0.27,0.9 -1.82,1.07 -1.52,1.2 -0.62,0.24 -0.88,0 -0.65,0.46 -0.88,0.3 -3.53,1.58 -0.34,0.2 0,226.86 69.46,0 0,-73.53 -16.37,0 0,-12 16.37,0 0,-172.4 -34.83,0 0,-14.2 34.84,0 0,-88.29 11.57,0 0,-14.16 -11.56,0 0,-11.24 2.8,-1.2 0,-0.27 -1.26,-2.78 -0.38,-0.2 0,-0.05 -0.1,-0.2 -0.87,-2.05 -0.1,-0.1 -0.1,-0.2 -0.7,-1.8 -1.54,-3.6 2.24,-0.77 11.6,-4.06 2.97,-9.28 -0.24,-1 -1.72,-2.88 -1,0.38 -11.16,-1.44 -0.44,-0.56 -1.43,-1.88 -1.24,-1.43 -0.57,-0.82 -0.2,-0.08 -0.7,-1 -0.1,-0.72 0,-0.53 0.9,0.8 0.1,0.92 0.62,0.33 2.25,-0.44 0.37,-0.35 0,-16 0.22,-0.72 -1.84,-1.22 -2.88,-0.86 -1.53,-2.25 -1.14,-2.82 -1.3,-2.5 -1.77,-2 -1.9,-1.88 -3.42,-0.47 -3.78,0 -0.03,-0.03 -0.16,-0.3 -1,-0.64 -0.14,-0.37 0.06,-1.9 -0.72,-0.55 -0.9,-0.34 0,-0.9 0.12,-1 0.06,-0.34 0.47,-1.1 0.1,-0.06 -0.48,-0.9 -0.7,-1 -0.45,-0.72 -0.56,-1.1 -0.88,-0.06 -0.72,-0.28 -0.2,-0.28 -1.9,-1.35 -0.7,-0.42 -0.45,-0.2 -1,0 0.1,-0.9 0.3,-0.25 -0.92,-1.53 -0.2,-0.1 -0.08,-0.27 -0.88,-0.44 -1.62,-1.82 0.28,-0.35 0.44,-0.8 -0.44,-0.92 -0.12,-0.27 0.37,-0.9 0.9,0.28 -0.27,-1 0.56,-0.87 0.44,-0.47 0.25,-0.34 0.1,-0.2 1,0 0.1,-0.36 -0.2,-0.63 -0.62,-0.9 0.1,-0.82 0.9,-0.52 0,-0.44 -1,-0.18 -0.9,0.1 -0.44,-0.38 -0.38,-0.44 -0.15,0 -0.18,-0.1 -0.2,-0.1 -0.18,-0.08 -0.25,0.2 -0.38,0 -0.1,-0.1 0,-0.98 -0.25,-0.9 -0.9,-0.57 -0.1,-0.14 -0.18,-0.2 0.27,-0.7 -0.38,-0.45 -0.63,-0.17 -0.1,-0.1 0.2,-0.9 -0.45,-0.9 -0.1,-0.17 -0.8,0.07 -0.9,0.56 -0.9,-0.1 0.08,-0.38 -0.63,-0.9 -0.62,0.28 -0.8,0.18 -1,-0.18 -0.92,-0.35 -0.97,-0.28 -0.9,0.28 -0.9,-0.28 -0.83,1.16 -1.06,0.28 0.1,0.3 -1.38,1.33 -0.07,0 -1.16,0.94 -0.03,0 c -0.18,0.1 -0.43,0.2 -0.7,0.3 l -0.46,0.1 -1,0.54 -0.28,0.9 -0.06,0.73 0.16,0.9 0.37,1.26 -0.28,1 -0.2,0.18 -0.34,1.87 0,0.8 0.1,1 0,0.1 -1,1.8 0,0.08 -0.3,0.2 -0.8,0.43 -1.7,0.9 -0.08,0.1 -0.28,0.1 -0.1,0 -0.25,0.18 -0.28,0.15 -0.1,0 -0.1,0.1 -0.52,0.27 -0.2,0.1 -1.24,0.7 -3.77,1.98 c -0.18,0.1 -0.35,0.2 -0.53,0.28 l 0.88,3.3 0.37,1.2 -0.1,0.1 -0.18,0.1 -0.1,0 0.1,0.15 0,0.18 1,0.28 0.1,0 0.28,0.54 0,0.1 -0.66,0.52 -1.17,0.72 -0.18,0.1 -1.25,0.27 -0.38,0.15 -1.25,0.28 -0.1,0.1 -1.15,0.28 -0.02,0 -0.8,0.23 -0.18,0.03 c -0.06,0 -0.12,0.04 -0.2,0.06 l -1.05,0.28 0,0.03 c -0.42,0.12 -0.85,0.2 -1.28,0.35 l -0.07,0.1 -0.2,0 -0.36,0.08 -0.25,0.28 c 0.68,0.8 1.4,1.6 2.15,2.4 l 0.06,0.07 c 0.77,0.85 1.55,1.68 2.3,2.48 l -1.2,0.63 -0.72,0.9 -0.43,0.92 -0.1,0.2 -0.37,0 -1.15,0.24 -1.25,0.28 -1,0.62 -0.72,1.16 -1.1,0.9 0,0.1 -0.96,0.72 -1.2,-0.2 -1.24,-0.15 -1.2,-0.3 -1.15,-0.17 -0.33,0 -0.82,3.25 0.1,0.7 -0.66,1.83 -0.44,0.54 0.28,0.34 1.7,-0.34 0.9,0.25 0.18,0.46 0.72,0.9 1,1.88 0.87,0.9 0.38,1 1.54,1.88 1.53,2.7 0.72,1 -0.1,0.08 0.9,0.9 1.78,2.8 0.1,0.6 -0.44,1 0.72,0.92 0.72,1.34 0.1,0 0,11.56 -3.17,0.04 -24.95,0 -0.16,-0.9 -0.78,0.65 -29.22,0.43 0,9.6 -4.28,0.2 0,20.2 -0.97,-0.3 -0.9,0 -1,0.4 -1.26,-0.2 -0.9,0.9 0.36,1.1 -0.28,0.87 -0.62,0.38 -0.2,0.2 -0.34,1.33 -0.28,0.2 -0.62,0.15 -0.2,1 0.2,0.9 0.28,0 -0.28,0.35 -0.47,0.57 -0.87,0.53 -0.3,0.44 0,0.9 0.45,0.9 0.28,0.35 -0.7,0.9 -1.07,0.9 -0.37,0.9 0.28,0.64 0.97,0.1 0.9,-0.2 0.54,0.9 0.3,1.26 0,0.9 0.08,0.04 0.53,0.25 -0.2,0.86 -0.05,0.47 0.44,0.9 0.9,0.44 0.53,0.44 -0.37,1.82 0.2,0.44 1.7,1.72 1.35,2.16 0.47,1 -0.1,1.8 -0.37,0.98 -0.53,0.37 0.1,0.62 0.1,1 0.86,0.25 1.28,0 0.97,0.1 0,1.8 0.38,0.16 0.9,0 1.9,0.47 0.6,0.9 0.1,0.16 1,0.38 0.3,0.9 -0.48,0.63 0.8,0.9 1.92,0.88 1.25,0.9 0.7,1 0.9,0.54 -0.46,0.8 0.82,1.1 0.37,0.87 0.97,0.18 0.2,0.1 0.46,0.37 0.96,0.44 0.72,1 -0.1,0.9 0.3,0.8 0.7,1 -0.18,-0.1 -0.15,-0.26 0.34,1.08 0.74,0.4 0.36,0.93 2.88,1.42 1.24,-0.62 2.66,0.5 0.9,-0.82 1.76,-0.08 0.02,0.8 1.8,1.87 1.66,0.52 -0.03,1.08 1.4,0.6 z"
1876+ id="path42362-2"
1877+ inkscape:connector-curvature="0"
1878+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
1879+ overflow="visible"
1880+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1881+ <path
1882+ d="m 953.77,32.7 0,16.25"
1883+ id="path42485-5"
1884+ inkscape:connector-curvature="0"
1885+ sodipodi:nodetypes="cc"
1886+ overflow="visible"
1887+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1888+ <path
1889+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
1890+ d="m 1084.43,316.1 0.2,0.1 0.14,0 c -0.1,-0.04 -0.23,-0.06 -0.34,-0.1 z m -18.9,111.4 c -0.88,-1.08 -4.33,-0.68 -6.04,-0.77 l -3.6,-0.3 -3.16,-0.6 -3.7,-0.2 -2.86,-0.9 -1.35,-2.5 -0.72,-3.07 -2.33,-1.43 -5.75,1.87 -4.5,0.72 -3.16,-0.63 -2.34,-1.54 -2.06,-1.72 -0.5,-0.3 -1.85,-1.23 -2.86,-0.86 -1.53,-2.25 -1.15,-2.82 -1.28,-2.5 -1.78,-2 -1.92,-1.88 -3.4,-0.47 -3.8,0 -0.02,-0.03 -0.15,-0.3 -1,-0.64 -0.15,-0.37 0.06,-1.9 -0.7,-0.55 -0.9,-0.34 0,-0.9 0.1,-1 0.07,-0.34 0.47,-1.1 0.1,-0.06 -0.47,-0.9 -0.72,-1 -0.44,-0.72 -0.55,-1.1 -0.87,-0.06 -0.72,-0.28 -0.2,-0.28 -1.9,-1.35 -0.72,-0.42 -0.43,-0.2 -1,0 0.1,-0.9 0.28,-0.25 -0.9,-1.53 -0.2,-0.1 -0.1,-0.27 -0.86,-0.44 -1.63,-1.82 0.28,-0.35 0.43,-0.8 -0.42,-0.92 -0.13,-0.27 0.38,-0.9 0.9,0.28 -0.28,-1 0.56,-0.87 0.45,-0.47 0.25,-0.34 0.1,-0.2 1,0 0.1,-0.36 -0.2,-0.63 -0.62,-0.9 0.1,-0.82 0.9,-0.52 0,-0.44 -1,-0.18 -0.9,0.1 -0.45,-0.38 -0.37,-0.44 -0.16,0 -0.2,-0.1 -0.17,-0.1 -0.2,-0.08 -0.24,0.2 -0.4,0 -0.08,-0.1 0,-0.98 -0.25,-0.9 -0.9,-0.57 -0.1,-0.14 -0.2,-0.2 0.3,-0.7 -0.38,-0.45 -0.64,-0.17 -0.1,-0.1 0.2,-0.9 -0.44,-0.9 -0.1,-0.17 0.2,-0.74 -0.9,-0.62 -0.1,-0.34 -0.1,-0.9 0.2,-0.3 -0.72,-0.43 -0.9,-0.44 c 0.87,-3.5 0.77,-0.63 0,-4.26 l 0.18,-0.97 -0.56,-0.65 -0.1,-0.25 0,-0.9 -0.62,-1.1 1.72,-0.16 0.34,-1.52 0.9,-0.2 -0.53,-0.8 1.1,0.9 0.15,0.43 0.8,1.2 0.57,0.63 0.82,0.53 0.43,0.62 0.2,0.47 0.24,0.1 0.72,0.15 0.9,0.28 1,0.1 0.63,0.25 0.9,-0.35 0.72,0.2 1,-0.92 0.34,-0.53 1,-0.37 1.6,-1.44 0.9,-0.38 0.9,-0.53 0.07,-0.1 0.03,-0.07 0.8,-0.25 0.04,0.03 0.03,0 0.9,0.8 0.82,0.9 0,0.06 -0.87,0.37 0.25,0.9 0.47,0.45 -0.2,0.46 -0.9,0.16 0.1,0.9 0.62,0.44 0.9,0.47 0.44,0.67 0.25,0.37 0.05,0.04 0.1,0 0.08,0.18 c 2.95,1.94 -1.56,8.2 0.9,-0.34 l 0.35,0.24 0.1,0 c -0.06,0.4 -0.12,0.76 -0.1,1.16 l 0.1,0 0,0.53 0.1,0.1 0,0.56 0.1,0.07 0,0.1 0.08,0 0,0.65 0.1,0 0,0.06 0.06,0 0,0.47 0.1,0.1 0.08,0.1 0,0.14 0.1,0.1 0.1,0.08 0.18,0.2 0.06,0 0,0.08 0.13,0 0,0.1 0.06,0 0.1,0.06 0.1,0 0.08,0.1 0.2,0.1 0.1,0.08 0.15,0 0.1,0.1 0.18,0.1 0.1,0 0.1,0.08 0.33,0 0.2,0.1 0.8,0 0.1,0.1 0.8,0 0,-0.1 0.26,0 0,0.1 -0.06,0 0,0.05 0.15,0 0.1,0.1 0.3,0 0.14,0.1 0.28,0 0.1,0.08 0.2,0 0,0.1 0.08,0 0,0.35 0.1,0.1 0,0.1 0.03,0.05 0.03,0.03 0,0.1 0.1,0.1 0,0.18 0.08,0 0,0.16 0.1,0 0,0.1 0.1,0 0,0.1 0.18,0 0,0.08 0.2,0.1 0.05,0.1 0.1,0 0,0.18 0.1,0 0.08,0.06 0.28,0.1 0.06,0.1 0.12,0.08 0.16,0 0.1,0.1 0,0.1 0.08,0 0.1,0.08 0.34,0.16 0.1,0 0,0.1 0.18,0 0.1,0.1 0.1,0 0,0.08 0.18,0 0,0.1 0.06,0 0.2,0.18 0.08,0 0,0.1 0.1,0 0.1,0.06 0.08,0 0.2,0.1 0.15,0 0.1,0.08 0.37,0 0.06,0.1 0.47,0 0.2,0.1 0.24,0 0.1,0.1 0.18,0 0.1,0.08 0.27,0 0.16,0.1 0.37,0 0.1,0.1 0.34,0 0,0.05 0.27,0 0.1,0.1 0.71,0 0.2,-0.1 0.24,0 0.1,-0.06 0.18,0 0,-0.1 0.28,0 0.07,-0.1 0.28,0 0,-0.08 0.28,0 0.26,-0.1 0.2,0 0.08,-0.1 c 0.94,0.05 0.25,-0.14 0.97,-0.1 l 0,-0.1 0.48,0 0.1,-0.08 0.18,0 0.16,-0.07 0.18,0 0.1,-0.1 0.25,0 0,-0.08 0.2,0 0.08,-0.1 0.28,0 0.1,-0.1 c 0.4,0.03 0.12,-0.12 0.72,-0.08 l 0.1,-0.1 0.43,0 0.1,-0.1 1,0 0,-0.06 1.25,0 0.1,-0.1 0.15,0 0,-0.1 0.12,0 0,-0.08 0.07,0 0,0.18 -0.07,0.1 -0.37,0 0,0.06 -0.38,0 -0.06,0.1 -0.1,0 -0.1,-0.1 -0.08,0 -0.1,0.1 -0.37,0 0,0.1 -0.05,0 0.06,0.08 0,0.1 0.4,0 0.08,0.1 0.97,0 0.12,-0.1 0.16,0 0,-0.82 -0.16,0 0,-0.1 0.07,-0.1 0,-0.14 -0.07,0 0,-0.2 -0.12,0 0,-0.27 -0.06,-0.1 0,-0.34 -0.1,-0.08 0,-0.1 -0.1,-0.1 0,-0.43 -0.1,0 0,-0.35 0.3,0 1.05,0.1 1.8,-0.66 0.45,-0.08 0.2,-0.18 0.17,-0.1 0.07,-0.9 0.9,-0.82 0.38,-0.43 0.9,-0.48 1.44,-0.53 1.16,-0.1 0.9,0.27 0.9,0 0.45,-0.1 0.18,-0.7 1.88,-0.38 0.2,0.17 0.9,0.3 0.7,-0.3 0.82,0.54 0.16,0.9 1.92,0.48 0.9,0.34 1.07,0.3 0.9,0.8 0.52,-0.2 0.9,0.1 0.63,-0.28 0.9,0.38 0.92,0.62 0.72,0.72 0.42,0.9 0.63,0.35 0.9,0.1 0.9,0.47 1.54,1.97 3.6,0.1 0.17,0 0,1.78 0.38,0.72 -0.28,0.9 -0.2,0.2 0.54,0.9 0,0.9 -0.25,0.62 -0.9,3.18 -0.03,0.75 -1.42,1.1 -0.04,0.26 0.75,1.06 -1.14,0.13 -0.57,1.2 -0.06,1.5 0.27,0.84 1.56,0.52 -1.55,1.8 1.33,4.92 -0.26,1 0.22,2.66 3.53,0.62 0.92,1.5 -0.13,1.1 -4.24,5.18 0.25,-0.16 1.7,1.87 0.63,0.9 0,0.3 0.82,1.34 0.06,0.1 0.37,0.9 1.1,1.06 0.9,0.47 1.5,0.34 0.92,0.92 0.2,0 0.7,0.44 -0.1,0.53 0.36,2.8 -0.07,0.25 -0.17,0.9 0.9,0.2 0.53,-0.1 0.9,0.1 0.17,0.34 0.1,0.05 0,0.03 -0.17,0 -0.18,0.2 -0.1,0.36 -0.43,1.97 -0.1,-0.08 -1.44,0 -0.9,0.28 -1.27,0.25 -0.35,0.9 -0.28,-0.1 -0.25,-0.08 -1,0.66 -0.62,0.87 -0.1,1.1 -0.53,0.53 -0.28,2.34 0,0.44"
1891+ id="path12134-4-9-5"
1892+ inkscape:connector-curvature="0"
1893+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
1894+ overflow="visible" />
1895+ <path
1896+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
1897+ d="m 972.6,342.58 -0.1,-0.1 1,-1.43 0.06,-0.53 -0.53,-1.82 -0.54,-1.06 -0.1,-0.9 -0.47,-1 -0.87,-0.25 -0.82,-0.92 -1,-0.63 -1.78,-0.37 -0.9,-0.8 -1.2,-0.64 -0.15,-0.1 0.08,0.03 1.3,0.4 1.35,-0.15 3.96,1.3 3.1,0.3 1.26,-0.32 1.83,0.66 1.17,1.9 0.7,0.3 1.94,0.8 -0.2,0.43 1.57,0.74 1.25,-0.75 0.26,-0.5 1.3,-0.1 0.8,0.7 0.48,-0.6 1.74,1 2.13,0.4 -0.2,1.03 4.2,0.78 0,0.02 2,1 0.73,0.87 0.97,0.7 0.56,0.92 1.68,0.37 0.9,-0.63 0.72,-0.9 0.2,0 1.33,-0.63 0.1,-0.2 0.53,-0.9 0.1,-0.2 0.05,-0.02 0.04,0.03 0,0.1 0.1,0.06 0.1,0 0.1,0.1 0.05,0.1 0.02,0 0.1,0.1 0.34,0.37 0.1,0.12 0,0.02 0.1,0.1 0,0.1 0.08,0 0,0.27 0.16,0 0,0.08 0.1,0 0,0.1 0.08,0 0,0.15 0.1,0 0,0.2 0.1,0.1 0.1,0 0,0.08 0.08,0 0,0.1 0.1,0 0,0.16 0.06,0 0,0.1 0.18,0 0,0.1 0.1,0 0,0.08 0.1,0.2 0,0.08 0.08,0 0,0.1 0.1,0.06 0.06,0.2 0.13,0 0,0.55 0.06,0 0,0.25 0.1,0 0,0.28 0.1,0.2 0,0.05 0.08,0.1 0,0.1 0.1,0 0.1,0.1 0,0.08 0.1,0 0,0.1 0.05,0 0,0.1 0.1,0 0,0.1 0.1,0 0,0.05 0.1,0.1 0.08,0 0,0.18 0.1,0 0,0.1 0.1,0 0,0.1 0.33,0 0,0.1 0.1,0.08 0.1,0 0,0.25 -0.1,0.1 0,0.28 0.1,0.1 0.08,0.1 0.1,0.06 0.1,0 0,0.1 0.34,0 0,0.1 0.1,0 0,0.08 0.36,0 0.07,0.1 0.48,0 0.1,-0.1 0.71,0 0,0.1 0.08,0.1 0.06,0.08 0.13,0 0,0.1 0.25,0 0,0.06 0.28,0 0,0.1 0.1,0.08 0.06,0.1 0,0.1 0.1,0 0,0.1 0.08,0 0.1,0.08 0.1,0 0,0.16 0.1,0 c -0.06,0.82 0.1,0.4 0.08,0.8 l -0.1,-0.05 0,-0.1 -0.1,-0.1 0,-0.1 -0.08,0 0,-0.08 -0.1,0 -0.1,-0.1 -0.08,0 0,-0.1 -0.44,0 -0.1,-0.08 -0.28,0 0,0.08 -0.06,0 -0.1,-0.1 -0.1,0 0,0.1 -0.08,0 0,0.1 -0.2,0 0,-0.1 -0.08,-0.1 -0.16,0 -0.1,-0.08 -0.1,0 0,0.1 -0.08,0 -0.1,0.08 0,0.2 -0.1,0 0,0.08 -0.24,0 0,0.1 -0.28,0 0,0.1 -0.1,0 0,0.1 -0.24,0 -0.13,0.05 -0.16,0 0,0.1 -0.1,0 0,0.1 -0.1,0 -0.1,0.1 -0.08,0.08 0,0.35 -0.16,0 0,0.1 -0.1,0 0,0.18 0.1,0.1 0,0.1 0.07,0 0,0.18 -0.07,0.1 -0.1,0 0,0.06 -0.08,0.1 0,0.1 0.1,0 0,0.17 0.08,0 c -0.27,0.3 -0.17,0.06 -0.18,0.45 l -0.1,0 0,0.28 0.1,0.1 0,0.18 -0.2,0 0,0.08 -0.1,0.1 0,0.08 -0.08,0 -0.1,0.1 0,0.28 -0.1,0 0,0.25 -0.05,0.08 0,0.2 0.05,0 0,0.08 0.1,0.1 0.1,0 0,0.1 0.08,0 0.1,0.08 0.1,0.07 0.1,0 0,0.2 -0.1,0 0,0.18 -0.1,-0.1 -0.1,0 0.1,0.1 0,0.1 0.1,0.1 -0.1,0 -0.1,-0.1 0,-0.1 -0.1,0 -0.08,-0.1 -0.16,0 0,0.1 -0.2,0.2 0,0.8 -0.1,0.16 0,0.1 -0.1,0 0,0.46 -0.08,0 -0.1,0.1 0,0.06 -0.18,0 -0.03,0.03 -0.2,-0.04 0,-0.07 -0.1,0 0,-0.1 c 0.4,0 0.16,0.07 0.46,-0.2 l 0,-0.27 -0.12,-0.1 -0.26,0 c 0.02,-0.25 0.03,-0.4 -0.37,-0.43 l -0.05,0.1 -0.1,0.1 0,0.18 -0.1,0.06 0,0.37 0.1,0 0,0.23 -0.18,-0.03 0,0.64 -0.1,0.08 -0.1,0 0,0.1 -0.17,0 0,0.34 0.1,0 0,0.18 0.08,0 0,0.1 -0.1,0.37 0.1,0.9 0,0.1 -0.34,-0.08 -0.9,0.34 -0.1,-0.18 -0.1,0 -0.03,-0.04 -0.24,-0.37 -0.43,-0.66 -0.9,-0.46 -0.63,-0.43 -0.1,-0.9 0.9,-0.16 0.2,-0.46 -0.47,-0.44 -0.25,-0.9 0.87,-0.38 0,-0.07 -0.8,-0.9 -0.92,-0.8 -0.03,0 -0.03,-0.02 -0.8,0.25 -0.04,0.06 -0.06,0.1 -0.9,0.54 -0.92,0.38 -1.6,1.44 -1,0.37 -0.33,0.53 -1,0.9 -0.72,-0.18 -0.9,0.35 -0.63,-0.25 -1,-0.1 -0.9,-0.28 -0.73,-0.16 -0.25,-0.1 -0.2,-0.46 -0.43,-0.62 -0.82,-0.53 -0.56,-0.63 -0.82,-1.2 -0.16,-0.42 -1.1,-0.9 -0.37,-0.54 -0.34,-0.1 -0.08,-0.1 -0.54,-0.18 c -1.42,0.42 -1.55,0.06 -2.78,-0.43 l 0.16,-0.63 -0.34,-0.9 0.18,-0.82 0.35,-0.53 0.1,-0.2 0,-0.27 -0.1,-0.34 -0.53,-1 -0.72,-0.72 -1.1,-0.43 -0.08,-0.3 -0.16,-0.08 0.16,-0.28 -0.9,-0.54 -0.54,-0.53 -0.53,-0.1 0.28,-0.33 -1.2,0 -0.33,0.7 -1.8,-0.27 -0.92,0 -0.44,0.35 -0.46,-0.16 z"
1898+ id="path81935-3"
1899+ inkscape:connector-curvature="0"
1900+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
1901+ overflow="visible" />
1902+ <path
1903+ d="m 999.55,221.54 -0.87,0.2 -0.72,1.24 0.16,0.18 0.1,0.1 -0.45,0.87 0,0.1 -0.2,0.18 -0.7,2.36 -0.9,0.28 -0.98,0.06 -0.1,0.9 0.15,0.2 0.9,0.28 0.92,0 1,-0.38 -0.1,0.72 0,0.1 -0.28,1 0.9,0.7 -0.1,0.98 -0.2,0.9 0.83,1 0.1,0.9 0.8,0.36 0.53,1 -0.96,0.62 -0.3,0.9 -0.7,0 -0.54,0.9 -0.9,0.45 -1,0.1 -0.1,0.28 -0.15,0.88 -0.18,0.1 -0.2,0.28 -0.08,0.1 -0.53,1.24 0,0.44 0.3,0.28 1.43,0.1 2.78,0 0.73,0.27 0.9,0.15 -0.62,1.8 0.1,0.1 0,0.2 -0.65,0.8 -0.9,-0.1 -0.9,0.36 -0.08,-0.1 -0.9,-0.14 -0.2,0.25 -0.43,0.9 0.8,0.92 -0.55,0.16 0.18,0.9 -0.25,0.56 0.8,0.25 0.73,0.1 0.9,0.52 0.97,-0.25 0.28,0 0.9,-0.9 0.8,0.1 1.2,0 0.6,-0.92 0.2,-0.2 0.9,0.2 0.88,-0.28 0.9,0.66 0.48,-0.2 0.9,-0.8 -0.18,0.34 0.87,0.9 1.8,-0.18 0.4,1.18 0.96,0.18 0.38,0.88 -0.1,0.72 1,-0.16 0.88,0.16 0.2,0.8 0,0.2 0.9,0.9 0.34,-0.1 0.56,0.38 0.25,0.54 0.1,0.1 1,0.33 0.63,0.48 0.53,-0.47 0.9,-0.08 -1.08,1.1 0.18,0.43 0.9,-0.25 0.92,0.25 0.8,-0.25 1,0.1 -0.08,-0.9 0.43,0.08 0.9,0.16 0.26,-0.06 0.9,-0.38 -0.1,-0.72 -0.34,-0.1 0.44,-0.9 0.7,-0.25 0.3,-0.28 0,-0.1 -0.47,-0.18 0.12,-0.1 0.25,0 0,-0.15 0.38,0 0,0.1 0.06,0 -0.35,0.87 0,0.9 0.18,0.37 0.9,0.53 0.35,-0.8 0.9,-0.2 0.1,0.9 -0.47,0.82 -0.87,0.44 0.43,0.56 1.15,-0.38 0.47,-0.1 0.97,-0.8 0.9,0 0.63,-0.88 0.72,-0.47 0.1,-0.1 -0.1,-0.34 0,-0.28 0.1,0 -0.1,-0.63 -0.97,-0.53 -0.2,-0.2 -0.17,-0.18 0.1,-0.1 -0.1,-0.43 -0.44,0.3 -0.48,0.06 0.37,-0.88 0.62,-0.1 0.1,0 0,-0.7 0.53,-0.92 0.9,-0.18 -0.37,-1.07 0,-0.17 -0.82,-1 0.13,-0.9 0.05,-0.26 -0.87,-0.2 0.8,-0.9 -0.12,-0.24 -0.25,-1.3 -0.08,-0.42 -0.8,-1.1 -0.1,-0.9 -0.35,-0.87 -0.38,-1.2 0.7,-0.95 -0.52,-0.82 -0.1,-0.72 0.54,-0.9 -0.9,0 -1.6,-0.63 -0.47,-0.9 0.56,-0.9 0.45,-1.53 0.9,-0.28 0.44,-1.9 -0.44,-1 -0.72,-0.52 -1.1,0.44 -1.96,-0.06 -1.82,-0.28 -0.53,-0.2 -1,-0.52 -0.78,0.43 -0.47,0.9 -0.9,0.8 -0.2,0.2 -0.96,-0.2 -0.8,-0.36 -0.92,0.37 -0.53,0.54 -0.9,0.38 -2.8,0.72 -0.36,-0.1 0,0.72 -0.9,0.82 0,1.87 -0.25,0.47 -0.9,-0.1 -0.1,-0.9 -0.9,-0.34 -0.44,-0.47 -1,0 0.1,-0.7 0.1,0 0,-0.54 -0.63,0 -1.1,-0.2 -0.53,-0.08 -0.43,-1.07 0,-1 -0.18,-0.9 0.72,-0.96 0.34,-0.9 -0.44,0 0.1,-0.3 -0.44,-1.6 -0.37,-0.98 -0.1,-0.28 -1.78,-0.2 -0.9,-0.96 -1.35,-0.28 -0.75,0 z"
1904+ id="path81828-5"
1905+ inkscape:connector-curvature="0"
1906+ overflow="visible"
1907+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1908+ <path
1909+ d="m 1018.12,264.38 -0.38,0.25 -1,0.47 -0.44,0.97 -0.18,0.1 -0.88,0 0,-0.1 -1,0.37 -0.1,0.1 -0.9,-0.72 -0.84,-0.25 0.34,0.47 0.34,0.62 0,0.72 -0.1,0.28 -0.05,0.88 -0.9,0.37 0,1 -0.1,0 -1,-0.36 -0.63,0.37 -0.9,-0.27 -0.9,0.2 -0.82,-0.2 -0.06,0 -0.38,0.28 -0.53,0.64 -0.9,-0.1 -1,-0.18 0.28,0.47 -0.1,0.15 -0.6,0 -0.1,0.38 0.18,0.1 -0.28,0.9 -0.53,0 -0.9,0.25 -0.2,0.48 0.63,0.87 0.18,0.2 0.3,0.18 0.52,0.9 0.1,0.1 0.62,0.06 0.18,-0.07 0.35,0.7 -0.7,0.55 -0.36,0.34 0,0.2 0.43,0.08 0.2,-0.1 0.9,0.3 0.28,0.52 0.7,0.9 0.9,-0.46 0.27,0 0.9,0.1 -0.08,0.55 0.9,0 0.53,0.26 0.82,0.9 0.9,0 0.16,0.3 1,0.8 0.44,0 0.8,0.25 0.9,0.48 0.2,0.66 0.4,-0.35 0.9,-0.47 0.92,-0.72 0.63,-0.87 0,-0.2 -0.2,-0.8 0.48,-1 0.1,-0.9 0.9,-0.07 0.15,-0.56 0.38,-0.9 0.37,-0.26 0.35,-0.28 0.72,-0.9 0.1,-1.16 -0.1,-0.9 0.37,-1.16 0.52,-0.9 0.1,-0.48 0.34,-1.5 -0.44,-0.9 -0.62,-0.38 1.53,-0.53 0.15,0 0.07,0.06 0.06,-0.02 -0.46,-0.56 -0.28,-0.2 -0.9,0.3 -0.88,0.15 -0.63,-0.8 -0.9,-0.08 -0.9,-0.57 -0.63,-0.25 z"
1910+ id="path81826-2"
1911+ inkscape:connector-curvature="0"
1912+ overflow="visible"
1913+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1914+ <path
1915+ d="m 1012.4,265.57 -0.03,-0.06 -0.04,0.04 0.07,0.03 z"
1916+ id="path81824-9"
1917+ inkscape:connector-curvature="0"
1918+ overflow="visible"
1919+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1920+ <path
1921+ d="m 1084.43,316.1 0.2,0.1 0.14,0 c -0.1,-0.04 -0.23,-0.06 -0.34,-0.1 z"
1922+ id="path81822-9"
1923+ inkscape:connector-curvature="0"
1924+ overflow="visible"
1925+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1926+ <path
1927+ d="m 1023.46,416.13 -0.22,0.72 0,16 -0.37,0.34 -2.25,0.43 -0.63,-0.34 -0.1,-0.92 -0.9,-0.8 0,0.52 0.08,0.72 0.72,1 0.2,0.1 0.55,0.8 1.25,1.44 1.44,1.88 0.44,0.56 11.15,1.44 1,-0.38 1.72,2.88 0.25,1 -2.97,9.28 -11.6,4.06 -2.24,0.78 1.52,3.6 0.72,1.78 0.1,0.22 0.1,0.1 0.86,2.05 0.1,0.2 0,0.06 0.37,0.2 1.25,2.77 0,0.28 -2.78,1.2 0,11.22 11.56,0 0,14.16 -11.56,0 0,88.28 -34.82,0 0,14.18 34.84,0 0,172.4 2.28,0 0,12 -2.28,0 0,73.54 69.56,0 0,-422.3 -0.18,-0.2 0.18,-0.12 0,-0.2 -0.72,-0.15 -0.46,-1.6 -0.72,-1.8 -1.78,-0.52 -0.1,-0.57 0.16,-1.05 -1.35,-1.8 -0.8,0.36 0.9,0.45 -0.9,-0.2 -0.98,0.1 -1.8,0.54 -1.26,-0.26 -0.92,0.34 -2.06,0 -1,0.28 -0.9,-0.1 -0.88,-0.8 -0.9,0.53 -1,-0.26 -0.9,0.2 -0.2,0.77 -1.78,-0.24 -1,0.1 -0.9,-0.2 -0.88,0.1 -0.9,0.34 -0.9,-0.16 -1.83,0.72 -0.15,-0.65 -0.38,0 0,-0.43 -6.03,-0.34 -3.6,-0.3 -3.16,-0.6 -3.7,-0.2 -2.86,-0.9 -1.35,-2.5 -0.7,-3.07 -2.36,-1.43 -5.75,1.87 -4.5,0.72 -3.15,-0.63 -2.35,-1.54 -2.06,-1.72 -0.5,-0.3 z"
1928+ id="path12134-6"
1929+ inkscape:connector-curvature="0"
1930+ overflow="visible"
1931+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1932+ <path
1933+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
1934+ d="m 1023.15,0.5 69.65,0 0,32.2 -69.65,0 z"
1935+ id="path81403-3"
1936+ inkscape:connector-curvature="0"
1937+ sodipodi:nodetypes="ccccc"
1938+ overflow="visible" />
1939+ <path
1940+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
1941+ d="m 1064.63,374.77 1,0.53 0.9,0.18 0.63,-0.28 0.62,0.38 0.82,0.72 0,0.1 0.1,0.52 1.05,-0.62 0.9,0 0.82,-0.63 1,-0.72 0.44,-0.9 0.2,-0.1 -0.63,-0.8 c 2.96,0 3.48,-1.2 5.84,-1.98 l 0.92,-0.62 0.28,-0.82 0,-0.9 0.53,-1 0.28,-0.53 0,-0.9 0.9,-0.45 2.43,-0.18 0.53,-1 0.62,-0.72 2.25,1.18 1.1,0 0.1,-0.1 0.27,0 1.78,-0.08 0.63,0.18 0.38,0.44 0.54,0.38 0.62,-0.2 0.38,-0.02 0.18,0 0.35,-0.03 0.15,0.06 0.1,0 0.47,0.2 0.62,0.96 0.37,0.28 0.25,0.18 0.1,0 0.9,-0.46 0.28,-0.54 1.34,-0.43 0.9,-0.28 0.44,-0.54 0.9,0.72 1,0.53 0.45,-0.28 0.1,-0.15 -0.1,-0.38 -0.1,-1 c 0.2,-0.17 0.37,-0.32 0.54,-0.44 0,0 0,-0.02 0.03,-0.03 0.07,-0.05 0.14,-0.05 0.22,-0.1 0.25,-0.13 0.5,-0.24 0.7,-0.27 0.45,-0.06 0.86,0.05 1.26,0.15 0.28,0.07 0.55,0.15 0.85,0.16 l 0.56,-0.9 -0.13,-0.35 -0.07,-0.3 0.25,-0.9 0.47,-0.43 1.35,-1.82 1.15,-0.25 1,0.44 1,0.9 -0.28,0.9 0.38,0.83 0.87,-0.1 0.08,0.53 -0.43,1.72 -0.1,0.44 0,0.9 -0.28,0.9 0.8,1.9 0.2,0.17 0.63,0.1 1.9,-1.25 0.35,-0.28 1.9,-0.38 0.35,-0.72 2.34,-1.43 2.44,0 0,0.46 0.2,0.63 0.86,-0.38 0.63,-0.15 0.9,-0.56 0.9,0.28 0.1,0 0.63,-0.1 0,0.03 1,0.75 0.1,0.04 -0.8,1.12 -0.06,0 c -0.1,-0.02 -0.18,-0.04 -0.28,-0.04 -0.1,0 -0.24,0.04 -0.37,0.06 l -0.14,0.03 -0.03,0 c -0.42,0.1 -0.95,0.3 -1.68,0.66 l -0.9,0.45 -0.9,-0.38 -0.64,-0.06 -0.15,0 c -2.8,0.33 -4,0.17 -6.7,0.98 l -1.33,1.2 -0.9,0.33 -0.63,0.48 -1.8,1.6 0.3,0.27 0.86,0.72 0.47,0.9 -0.1,0.35 0.63,1 -0.53,0.53 0.44,1 -0.44,0.54 -0.1,0.17 -0.1,0.2 -0.7,0.33 -1.63,1.82 -0.1,0.28 0.82,0.87 -0.2,0.47 -0.08,0.63 -0.06,0.37 -1.57,0.53 -0.86,0 -2.53,-0.53 -0.43,0.06 -0.1,0.1 0.2,0.9 0.15,0.2 0.2,0.34 0.9,0.65 0.24,0.87 0.2,0.18 -0.45,0.9 -0.9,0.54 -0.52,0.27 -1,0 -0.72,0.2 0,0.87 -0.2,0.1 -0.08,0.9 -0.88,1 -0.1,0.1 0.35,2.77 -0.34,0.26 -0.7,0.9 -0.92,0.48 -0.53,-0.2 -1,-0.52 -2.06,0 -0.3,0.34 -1.34,0.72 -0.9,0.1 1,0.9 0,0.1 -0.63,0.24 -1.9,0.28 -0.63,0 -0.38,-0.1 -0.06,-0.33 -0.9,0.34 -0.47,0.2 -0.45,0.9 -0.9,0.44 -0.16,0.2 -0.4,1.05 -0.08,0.9 c 0.14,1.86 0.18,2.72 -0.13,3.2 l -0.16,0.14 c -0.47,0.42 -1.44,0.44 -3.3,0.97 l -2.45,0.67 -0.2,-0.1 -2.4,0 -0.3,0.1 -0.42,0.06 -0.9,0.66 -0.92,-0.3 -1.34,-0.18 -1.8,0.1 -3.6,0.27 -0.73,-0.2 -3.16,-1 -3.4,-1.06 -0.26,0.16 4.24,-5.17 0.13,-1.1 -0.92,-1.5 -3.54,-0.63 -0.23,-2.65 0.26,-1 -1.32,-4.92 1.56,-1.8 -1.55,-0.54 -0.26,-0.85 0.05,-1.5 0.56,-1.2 1.15,-0.13 -0.74,-1.06 0.04,-0.27 1.42,-1.1 0.04,-0.76 0.9,-3.18 0.25,-0.3 z"
1942+ id="path12140-5-8-9"
1943+ inkscape:connector-curvature="0"
1944+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
1945+ overflow="visible" />
1946+ <path
1947+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
1948+ d="m 1065.04,287.2 -7.16,-3.78 -0.3,-0.83 2.88,-0.87 1.62,-1.06 -1.5,-2.1 1.6,-1.82 1.88,-0.3 2.3,0.43 0.7,-0.72 -3.85,-1.37 -0.06,-1.28 0.75,0.1 0.26,-0.57 -2.64,-0.62 0.75,0 0.74,-1 -0.98,-0.63 2,-1.08 0.6,0.35 3.6,0.05 0.7,0.8 0.6,-1.24 7.9,-1.74 3.94,0.2 0.06,-1.28 1.28,-0.8 3.08,0 5.54,-1.4 4.1,-0.72 1.74,-1.48 0.64,-0.93 4.55,0.03 2.15,1.12 1.13,-0.93 1.66,0.08 -0.55,-1.8 0.2,-0.87 0.86,-0.82 -0.86,-0.37 0.34,-0.9 0,-0.54 1,-0.44 0.28,-0.9 -0.37,-0.48 -0.1,-0.16 0.37,-0.9 -0.47,-0.9 0.9,-0.2 0.54,-0.43 -0.16,-1 0.97,0.18 1,-0.17 0.9,-0.72 0,-0.18 -0.52,-0.88 -0.9,-0.62 -1,-0.8 -0.2,-0.1 -0.44,-0.9 -0.9,0.17 -0.54,0.87 -0.38,-0.53 -0.72,-0.35 0.28,-0.9 0.54,-0.92 -0.25,0.1 -0.1,-0.63 -0.4,-0.62 -0.25,-0.38 0.1,-0.1 0,-0.15 -0.1,-0.56 0.56,-0.97 0.44,-1 0.43,-0.9 0.58,-1 0.9,-0.07 0.16,0.16 0.9,0.72 -0.28,0.9 0.13,1 0.86,0.25 0.28,0 0.9,-0.15 0.98,-0.1 0.9,0.44 1,0.2 1,0.08 0.97,0 0.9,-0.2 0,-0.33 0.9,-0.38 2.85,0 0,0.06 0.94,0 0.18,0.03 0.96,0 c 0.5,-0.3 0.96,-0.58 1.38,-0.86 l 0.7,-0.46 0.1,-0.1 c 0.17,-0.12 0.55,-0.4 0.73,-0.56 l 0.75,-0.66 0.56,-0.43 0.22,-0.35 0.06,-0.1 c 0.7,-0.7 1.44,-1.45 2.35,-2.43 l -0.1,-0.9 1.34,-1.97 1.44,-0.82 0.9,0 0.9,-0.28 0.38,-1 0.07,-1.87 -0.16,-0.8 0.62,-0.9 -0.47,-0.64 0.46,-1 0.96,-0.72 -0.34,-0.87 0.44,0 0,-0.1 0.18,-0.9 0.35,0.1 0.36,0.1 0.63,0.08 0.8,-0.1 1.9,0.44 0.9,-0.3 0.9,0.2 0.36,0 0.88,-0.34 1,0.34 0.9,-0.34 0.9,0.1 0.26,0.15 0.47,1 0.9,-0.27 1.88,0.1 0.9,0.08 0.9,-0.6 1.9,-0.2 1,0.2 1,0.8 0.86,0.1 2,-0.2 0.98,0.63 0.9,0 0.63,-1 0.58,-0.4 1.68,-1.2 0.9,-0.56 2.07,-0.25 1.47,1.07 0.88,0.46 1.1,-0.2 1.77,-1 4.97,-2.15 0,-0.9 0.44,-0.15 0.47,-0.9 -1,0 -0.9,-0.3 -0.64,-0.52 -1,-0.1 -0.9,-0.62 -0.9,0 -0.9,-0.7 -0.18,-0.38 -0.1,-0.97 -0.34,-0.66 0.78,-0.98 0.9,-0.8 0.48,-0.9 0.87,-0.64 0,-0.37 0.76,-0.87 0.88,-0.56 0.47,-0.88 -0.1,-0.66 -0.27,-0.25 0.38,-1 -0.8,-0.92 -0.1,-0.62 -1,-0.35 -0.44,-0.46 0.9,-0.34 1.07,-1.8 0.9,-0.83 0.9,-0.25 0.54,-1 0.3,-0.9 -0.4,-0.53 -0.43,-0.92 0.28,-1 -0.28,-0.9 -0.9,-0.72 -1.82,0.46 -0.96,-0.37 -0.63,-0.88 -1.9,0.25 -1,0 0.46,-0.9 -0.38,-0.63 0.28,-0.44 0.9,-0.82 -0.28,-0.9 0,-0.9 -1.25,-0.63 -0.37,-0.9 -0.88,-0.72 -1.8,0.1 -0.2,-0.9 -1,-0.9 0.2,-0.9 0.8,-0.37 -0.7,-0.9 -0.98,-0.78 -0.38,-0.9 0.38,-0.72 0.06,-1 -0.72,-0.9 -1.06,-0.9 -1.35,-0.86 -1.62,-1.03 0.62,-0.8 -0.1,-0.9 0.35,-0.9 -1.15,-0.45 0,-0.9 -0.9,-0.44 -0.73,-0.9 0.28,-0.44 1.97,0 0.7,-0.9 0,-0.9 0.48,0 0.1,-0.1 0.87,-0.82 0,-1.06 -0.34,-0.9 0.97,-0.82 0.9,-0.28 -0.15,-0.16 -1.8,-1 -0.3,-0.9 -0.15,-0.16 -0.8,-0.75 0.62,-0.86 -2.83,-0.38 -0.15,-1.8 -0.38,-0.26 -0.53,0.97 -0.9,0.56 -0.1,-0.1 -0.05,-0.1 -1,0.2 -0.9,0.35 c -0.75,-0.4 -1.33,-0.66 -1.82,-0.82 -0.53,-0.17 -0.92,-0.24 -1.25,-0.25 l -1.43,0 c 0,0 -0.02,0.02 -0.03,0 l -0.06,-0.02 -0.67,-0.53 -0.4,-0.44 c -0.33,-0.36 -0.72,-0.84 -1.22,-1.52 l -0.43,0 -1,-0.28 -0.63,-0.87 -0.34,-0.82 0.87,-0.6 -0.18,-0.3 0.9,-0.7 0.37,-0.4 2.78,-1.58 0.44,-0.66 1,-0.43 0.9,-0.1 0.9,0.53 0.44,-0.15 -0.63,-0.9 0.45,-0.9 -0.72,-1 0.2,-0.16 -0.36,-0.9 -0.1,-0.9 -0.6,-0.92 -1.92,-0.25 -1.97,-1.28 -1.9,-0.82 0,-0.63 0.9,-0.53 0.1,-1 1.87,0.1 1,-0.2 0.56,-0.62 -0.36,-1.06 0.72,-0.9 -0.9,-0.48 -1,-0.43 -0.98,0 -1.8,-0.35 -0.92,-0.37 -0.25,0.1 -1,-0.62 -1,-1.72 -0.05,-0.2 0,-14.9 18.55,0 0,-117.6 -69.5,0 0,32.2 11.66,0 0,84.4 -22.97,28.13 0,14.18 -0.13,-0.05 -0.54,0.72 -0.37,0.28 -1.44,1.44 0,0.6 0.9,0.36 0.9,-0.16 0.92,0.53 0.88,0.1 0.1,0.34 0.6,0.9 0.92,0.82 -0.8,0.9 -0.54,1 -0.35,0.96 0.44,1.82 0.9,0.18 2.34,0 -0.28,0.88 0.9,0.9 -1.9,0.63 0.37,0.56 0.97,0.72 -0.87,0.63 -1,0 -0.53,0.8 -1.9,1.07 -0.45,1 0.2,0.72 -0.76,0.44 -0.7,0.38 -0.9,0.2 -1.9,1.05 -0.92,0.1 -0.15,0 -0.9,0.9 -1.82,0.8 -0.62,0.92 -0.1,0.53 -1,0.28 -0.43,0.88 -0.18,0.9 -0.35,0.82 -0.9,0.1 -2.7,1.05 -0.8,0.2 -0.72,0.8 -0.9,0.73 -0.63,0.9 -0.38,0.9 -0.82,0.64 -0.53,0.9 -1,0.16 -0.53,0.9 -1.25,-1.15 -0.9,-0.1 -0.92,0.73 -1.53,1.35 0.1,0.9 -0.9,1.54 0.65,0.9 -0.2,0.9 1.16,0.97 -0.7,0.9 -0.55,1 -0.37,0.88 0,0.9 -0.77,1.82 -0.13,1.62 -0.25,0.96 0.9,0.47 0.1,0.53 -0.37,0.9 0.37,1 0.82,0.88 -0.2,0.72 -0.9,1.82 0.35,0.9 -0.7,1.35 0.07,0.9 -1,0.35 -0.26,0.28 -1.8,0.62 -6.4,0 -0.9,0.2 -0.96,-0.2 -0.66,-0.1 -1.87,0.9 -0.82,1.26 -1,-0.15 -0.7,0.05 -0.73,1 -0.97,-0.2 -1.8,0.73 -0.3,0.9 -0.34,0.1 -1,-0.2 -3.98,-0.6 -0.44,0.9 -1,-0.1 -0.9,-0.34 -0.35,-0.9 -1.78,-0.3 -0.8,0.92 -1,-0.07 -0.38,-0.04 -0.54,0.9 -0.9,-0.08 -0.2,-0.1 -0.86,0.38 -0.3,0.72 0.55,0.97 1.9,1.62 0,0.2 -0.2,0.52 0.55,0.18 1.8,0.28 1.98,0.06 1.1,-0.44 0.7,0.53 0.45,1 -0.44,1.9 -0.9,0.27 -0.44,1.53 -0.57,0.9 0.47,0.9 1.6,0.64 0.9,0 -0.53,0.9 0.08,0.72 0.54,0.82 -0.72,0.97 0.37,1.18 0.35,0.88 0.1,0.9 0.8,1.1 0.1,0.45 0.25,1.28 0.12,0.25 -0.82,0.9 0.87,0.2 -0.06,0.24 -0.13,0.9 0.8,1 0,0.2 0.38,1.06 -0.9,0.18 -0.53,0.9 0,0.73 -0.1,0 -0.62,0.08 -0.38,0.88 0.47,-0.06 0.43,-0.3 0.1,0.45 -0.1,0.1 0.2,0.18 0.17,0.2 0.97,0.52 0.1,0.63 -0.1,0 0,0.28 0.1,0.34 -0.1,0.1 -0.72,0.46 -0.62,0.88 -0.9,0 -0.98,0.8 0.63,0.2 0.53,0.1 0.4,0.62 0.6,0 0.35,1 -0.87,0.53 -0.2,0.43 -1.7,1.8 -1,-0.1 -0.73,0.4 -0.34,0.08 0.35,0.36 0,0.1 0.3,0.08 0,0.2 0.08,0.05 0.1,0.1 0.43,0 0.53,0.8 0.37,0.28 0,0.63 -0.28,0.63 -0.55,0.9 0,0.1 -0.37,0.9 0.37,0.9 0.2,0.98 -1.9,-0.17 -0.17,-0.44 0.44,-0.92 -0.38,-0.34 -0.15,0.15 -0.4,0.28 -0.9,-0.54 -0.62,0 -0.03,-0.03 -0.06,-0.05 -0.17,0 -1.53,0.53 0.62,0.38 0.44,0.9 -0.34,1.5 -0.1,0.47 -0.53,0.9 -0.38,1.16 0.1,0.9 -0.1,1.16 -0.72,0.9 -0.35,0.28 -0.37,0.25 -0.38,0.9 -0.15,0.56 -0.9,0.07 -0.1,0.9 -0.47,1 0.2,0.8 0,0.2 -0.64,0.88 -0.9,0.73 -0.9,0.46 -0.42,0.34 -0.22,0.2 -0.3,-0.02 0.12,0.88 -0.63,0.03 -0.26,0.9 -1.62,1.26 -0.9,0.18 -0.35,0.15 -0.63,0.66 -0.9,0 -1,0.52 0.18,1 -0.9,0.34 -0.9,0.63 -1.07,0.55 -1,-0.28 0.44,0.9 0.17,0.97 0.9,1.82 -0.18,0.28 0,0.06 -1.16,0.56 -0.2,0.1 -1.15,0.1 -0.9,-0.82 0,-0.38 -0.83,-0.9 -1.53,-1.44 -0.9,0.47 -0.54,0.43 -0.28,1.8 -1.43,0.73 -0.45,1.87 -0.2,1 0.1,0.44 0.54,0.37 0.46,0.35 c -0.07,0.28 -0.14,0.5 -0.2,0.64 -0.04,0.16 -0.1,0.26 -0.15,0.32 -0.1,0.15 -0.22,0.1 -0.4,0.18 -0.03,0.02 -0.08,0.03 -0.12,0.07 -0.08,0.06 -0.15,0.15 -0.25,0.3 -0.1,0.14 -0.23,0.35 -0.37,0.64 -0.15,0.3 -0.32,0.64 -0.5,1.1 l -0.25,0.87 0,0.73 0.82,0.22 1.78,0.72 -0.1,0.25 0.3,1.8 0,0.2 0.33,0.62 0.2,0.1 0.27,0.15 0.25,-0.63 0,-0.1 0.2,-0.1 0.17,0.1 0.35,0.2 0.47,0.18 1.87,-0.1 0.92,0.73 0.37,0.62 0.87,0.8 0.8,1.83 1.1,1.43 -0.18,0.97 -0.92,-0.44 -0.97,0.43 -0.08,0.2 0.53,0.36 0.72,0.24 0.43,0.47 0.38,-0.08 1.37,0.87 -0.12,0 0,0.1 0.2,0 0,0.08 0.08,0 0,0.35 0.1,0 0,0.1 0.1,0.08 0.1,0 0,0.1 0.05,0 0,0.1 -0.15,0 0,-0.1 -0.28,0 -0.1,-0.1 -0.15,0 0,-0.17 0.06,0 0,-0.1 -0.2,0 0,0.2 -0.05,0 0,0.08 -0.2,0 0,0.1 -0.08,0.1 0.28,0 0,0.44 0.06,0.1 -0.06,0.1 -0.1,-0.1 0,-0.1 -0.1,-0.1 -0.08,0 0,-0.1 -0.1,0 0,0.2 -0.25,0 0,0.1 -0.1,0 0,0.1 -0.08,0 0,0.08 0.1,0 0,0.25 -0.1,0 0,-0.1 -0.1,0 0,-0.24 -0.1,0 0,-0.1 -0.1,0 0,0.2 0.1,0.08 -0.1,0.08 0,0.1 -0.17,0 0,-0.17 -0.1,0 0,0.17 0.1,0.1 -0.1,0.1 -0.06,-0.1 0,-0.1 -0.1,-0.1 -0.1,0 0,-0.06 -0.08,0 -0.1,-0.08 -0.1,0 0,0.1 -0.08,-0.1 -0.07,0.1 0,0.15 -0.1,0 0.27,0.1 0,0.1 0.1,0.08 0,0.28 -0.26,0 0,0.1 -0.1,0 0,0.06 0.1,0 0.08,-0.07 0.28,0 0.1,0.15 0,0.1 -0.1,0 0,0.1 0.1,0.08 0,0.1 0.08,0 0,0.1 0.1,0.08 -0.1,0.07 0,-0.06 -0.28,0 0,0.16 -0.1,0 0,-0.1 -0.08,-0.06 0,-0.18 -0.07,-0.1 -0.1,-0.1 -0.07,0 0,-0.01 -0.1,-0.1 0,-0.1 -0.1,0 -0.1,-0.05 -0.08,0 0,0.06 -0.1,0 -0.1,0.08 -0.24,0 0,0.1 -0.08,0 0,0.1 -0.1,0 0,0.18 -0.18,0 -0.1,0.1 0.1,0 0,0.08 0.18,0 0,0.07 -0.28,0 -0.1,-0.06 -0.05,0 0,0.07 -0.1,-0.06 0,0.16 -0.1,0.1 0,0.18 -0.28,0 0,0.1 0.1,0.1 0,0.08 0.1,0 -0.1,0.06 0,-0.06 -0.1,0 0,-0.1 -0.35,0 0,0.1 -0.1,-0.1 -0.08,0 0,-0.09 -0.2,0 0,0.18 -0.2,0 0,0.07 -0.05,0 -0.1,-0.07 0,-0.1 -0.1,0 0,0.1 -0.18,0 -0.1,0.07 0,0.1 -0.08,0 0,-0.17 -0.2,0 0,0.25 -0.06,0.1 0,0.1 0.06,0 0,0.1 -0.06,0.1 -0.1,0 0,-0.1 -0.1,0 -0.08,-0.2 0,-0.18 -0.2,0 -0.08,-0.1 -0.25,0 0,-0.15 -0.1,0 0,-0.1 -0.1,0 0,-0.1 -0.27,0 0,0.2 0.1,0 0,-0.1 0.1,0 0,0.2 0.08,0 0.1,0.06 -0.1,0 0,0.48 0.2,0 0,0.18 -0.1,0.1 0.1,0 0,0.15 -0.1,0 -0.1,-0.1 0,-0.07 -0.1,-0.1 0,-0.1 -0.1,-0.08 0,-0.1 -0.08,-0.1 -0.16,0 0,0.1 0.16,0 0,0.1 -0.1,0.1 0.1,0 0,0.08 0.1,0.1 0,0.15 -0.1,0 0,0.1 -0.1,0 -0.06,-0.1 0,0.2 0.06,0 0,0.08 -0.06,0 0,0.1 -0.1,0 0,0.35 -0.52,0 0,0.1 0.06,0 0,0.1 0.1,0 0.1,-0.1 0.08,0.1 0,0.08 -0.1,0 -0.1,0.1 0,0.18 -0.08,0 0,0.08 -0.06,0.1 0,0.71 -0.13,0 0,-0.07 -0.34,0 0,0.34 -0.1,0.1 0,0.18 -0.08,0 0,0.16 -0.1,0 0,0.3 -0.06,0.08 0,0.1 -0.18,0 0,0.1 -0.1,0 0,0.08 -0.1,0 0,-0.1 -0.18,0 0.1,0.1 0,0.53 -0.1,0 0,0.18 -0.1,0.1 0,0.06 -0.1,-0.16 0,-0.1 -0.05,0 0,-0.18 -0.1,0 0,-0.37 -0.1,0 0,0.37 0.1,0.2 -0.1,0.08 -0.08,0.1 0,0.15 -0.1,0 -0.1,-0.1 -0.08,0.1 -0.1,0.1 -0.1,0 -0.06,0.1 0,0.08 -0.1,0.1 -0.28,0 -0.1,0.1 0,0.16 -0.15,0 0,0.37 -0.1,0 0,0.1 0.1,0.1 0,0.08 -0.18,0 c -0.02,0.44 0.1,0.1 0.07,0.64 l 0.1,0 0,0.1 0.17,0 0,0.05 0.1,0.1 0.18,0 0,-0.1 0.2,0 0.05,0.1 0.18,0 0.1,0.08 0.37,0 0.1,0.1 0.06,0 0,0.18 0.1,0.1 0,0.25 0.1,0 0,0.1 0.1,0 0,0.1 0.1,0 0,0.1 0.17,0 0,0.08 0.07,0 0,-0.1 0.12,0 0,-0.1 0.16,0 0,0.2 0.1,0.2 0,0.14 0.08,0.1 0,0.2 0.1,0.08 0.1,0.1 0.1,0.1 0.05,0 0,0.24 0.12,0 0,0.18 0.07,0.1 0.1,0.1 0,0.27 0.18,0 0,0.24 0.1,0 0.08,0.1 0,0.28 -0.1,0.1 -0.08,0 -0.1,0.05 0,0.2 0.1,0.1 -0.1,0.08 -0.1,0.1 0,0.18 -0.1,0 0,0.1 -0.05,0 -0.12,-0.1 0,0.16 0.12,0.08 0,0.1 0.06,0.1 0,0.18 0.1,0 0,0.1 0.1,0 0,-0.1 0.1,0 0,-0.38 0.08,-0.1 0,-0.34 0.1,0 0,-0.18 0.1,0 0,-0.1 -0.1,-0.1 0.1,0 0,-0.24 0.06,0 0,-0.56 0.1,-0.07 0.1,-0.1 0.08,0 0.1,-0.1 0.2,0 0,0.1 0.05,0.1 0.1,0 0,0.06 -0.1,0 -0.07,0.1 0,0.08 -0.1,0 0,0.1 -0.1,0.2 0,0.08 -0.08,0.25 -0.1,0.2 -0.1,0.08 0,0.28 -0.1,0 0,0.25 -0.05,0 0,0.28 0.06,0.1 -0.06,0 0,0.1 -0.1,0 0,0.15 -0.1,0.2 0,0.1 0.1,0 0,0.7 0.16,-0.1 0,-0.08 0.1,0 0,-0.1 0.1,0 0,0.1 0.1,0 0,0.2 -0.1,0 0,0.08 -0.1,0 0,0.1 -0.1,0 0,0.1 -0.06,0 -0.1,0.08 -0.1,0.1 0,0.06 0.1,0.1 -0.1,0.1 0,0.27 -0.08,0 0,0.54 0.1,0.1 0.1,0 0,0.1 0.08,0 0.06,0.17 0.28,0 0,0.08 0.1,0.18 0.1,0 0,0.1 0.1,0 0.17,0.1 0.08,0.08 0,0.35 0.1,0.08 0,0.2 -0.1,0 0,0.27 0.1,0.1 0,0.15 0.08,0.1 0.1,0 0.1,0.1 0.24,0 0.1,0.08 0,0.1 0.1,0 0,0.1 0.08,0.08 0,0.16 0.1,0 0,0.2 0.1,0 0,0.08 0.1,0.1 0,0.1 0.08,0 0.1,0.08 0,0.06 0.06,0.1 0.1,0 0,0.1 0.08,0 0.2,0.08 0,0.1 0.1,0 0,0.1 0.08,0.1 0,0.08 0.06,0.1 0.13,0.06 0,0.1 0.06,0.08 0,0.1 0.1,0.1 0,0.08 0.1,0.1 0,0.1 0.08,0 0.1,0.05 0.1,0.1 0,0.1 0.1,0 0.05,0.18 0,0.2 0.1,0.17 0,0.07 0.1,0.08 0.1,0.1 c 0.23,0.28 0.18,0.15 0.6,0.18 l 0,0.1 0.1,0 0.07,0.06 0.03,0.03 0,0.1 0.1,0.05 0.1,0 0.08,0.1 0.06,0.1 0.18,0 0,0.1 0.06,0 0.1,0.08 0.1,0.1 0.08,0.18 0.1,0.06 0,0.05 0.1,0.1 0,0.08 0.08,0 0,0.3 0.16,0 0,0.08 0.1,0 0,0.1 0.1,0 0,0.15 0.08,0 0,0.2 0.1,0.08 0.1,0 0,0.1 0.08,0 0,0.1 0.1,0 0,0.15 0.06,0 0,0.1 0.2,0 0,0.1 0.08,0 0,0.1 0.1,0.17 0,0.1 0.09,0 0,0.1 0.08,0.05 0.07,0.2 0.12,0 0,0.55 0.06,0 0,0.25 0.1,0 0,0.28 0.1,0.2 0,0.05 0.08,0.1 0,0.1 0.1,0 0.1,0.08 0,0.1 0.1,0 0,0.1 0.06,0 0,0.1 0.1,0 0,0.08 0.1,0 0,0.06 0.08,0.1 0.1,0 0,0.18 0.1,0 0,0.1 0.08,0 0,0.1 0.35,0 0,0.08 0.1,0.1 0.08,0 0,0.25 -0.1,0.1 0,0.27 0.1,0.1 0.1,0.1 0.1,0.05 0.1,0 0,0.1 0.33,0 0,0.1 0.1,0 0,0.08 0.37,0 0.06,0.1 0.48,0 0.1,-0.1 0.71,0 0,0.1 0.1,0.1 0.05,0.1 0.12,0 0,0.08 0.25,0 0,0.07 0.28,0 0,0.1 0.1,0.1 0.06,0.08 0,0.1 0.1,0 0,0.1 0.1,0 0.08,0.08 0.1,0 0,0.16 0.1,0 c -0.02,0.2 -0.02,0.3 0,0.4 l 0,0.09 0.02,0.02 0,0.03 0.03,0.03 c 0,0.03 0.03,0.07 0.02,0.22 l -0.1,-0.06 0,-0.1 -0.1,-0.1 0,-0.08 -0.08,0 0,-0.1 -0.1,0 -0.1,-0.1 -0.08,0 0,-0.08 -0.44,0 -0.1,-0.1 -0.27,0 0,0.1 -0.07,0 -0.1,-0.1 -0.08,0 0,0.1 -0.1,0 0,0.1 -0.2,0 0,-0.1 -0.08,-0.1 -0.16,0 -0.1,-0.1 -0.08,0 0,0.1 -0.1,0 -0.1,0.1 0,0.2 -0.1,0 0,0.08 -0.24,0 0,0.1 -0.28,0 0,0.1 -0.1,0 0,0.08 -0.24,0 -0.13,0.06 -0.16,0 0,0.1 -0.1,0 0,0.1 -0.1,0 -0.08,0.08 -0.1,0.1 0,0.34 -0.15,0 0,0.1 -0.1,0 0,0.18 0.07,0.06 0.03,0.04 0,0.1 0.07,0 0,0.18 -0.07,0.1 -0.1,0 0,0.05 -0.08,0.1 0,0.1 0.1,0 0,0.18 0.08,0 c -0.13,0.15 -0.17,0.17 -0.18,0.2 l 0,0.25 -0.1,0 0,0.28 0.1,0.1 0,0.18 -0.2,0 0,0.07 -0.08,0.1 0,0.1 -0.1,0 -0.1,0.08 0,0.28 -0.1,0 0,0.25 -0.02,0.07 -0.03,0.03 0,0.18 0.05,0 0,0.1 0.1,0.1 0.09,0 0,0.08 0.1,0 0.1,0.1 0.08,0.06 0.1,0 0,0.2 -0.1,0 0,0.18 0.1,0 -0.1,0.1 0,-0.1 -0.1,-0.1 -0.1,0 0.1,0.1 0,0.1 0.1,0.08 0.1,0 0,0.1 -0.1,0 0,-0.1 -0.1,0 -0.1,-0.1 0,-0.08 -0.08,0 -0.1,-0.1 -0.15,0 0,0.1 -0.2,0.18 0,0.82 -0.1,0.15 0,0.1 -0.1,0 0,0.46 -0.08,0 -0.1,0.1 0,0.05 -0.18,0 -0.03,0.03 -0.02,0.06 -0.2,0 -0.08,-0.1 0.09,0 0,-0.05 -0.1,0 0,-0.1 c 0.4,-0.02 0.16,0.06 0.46,-0.2 l 0,-0.27 -0.12,-0.1 -0.26,0 c 0.02,-0.26 0.03,-0.4 -0.36,-0.44 l -0.07,0.1 -0.1,0.08 0,0.2 -0.08,0.05 0,0.38 0.1,0 0,0.35 -0.1,0 0,0.28 -0.1,0 0,0.2 -0.1,0.08 -0.1,0 0,0.1 -0.17,0 0,0.35 0.1,0 0,0.2 0.08,0 0,1.33 0.1,0.1 0,0.1 -0.1,0 0,0.08 0.1,0 c -0.06,0.4 -0.13,0.76 -0.1,1.16 l 0.1,0 0,0.53 0.1,0.1 0,0.56 0.1,0.07 0,0.1 0.08,0 0,0.65 0.1,0 0,0.06 0.06,0 0,0.47 0.1,0.1 0.08,0.1 0,0.14 0.1,0.1 0.1,0.08 0.18,0.2 0.06,0 0,0.08 0.13,0 0,0.1 0.06,0 0.1,0.06 0.1,0 0.08,0.1 0.2,0.1 0.1,0.08 0.15,0 0.1,0.1 0.18,0.1 0.1,0 0.1,0.08 0.33,0 0.2,0.1 0.8,0 0.1,0.1 0.8,0 0,-0.1 0.26,0 0,0.1 -0.06,0 0,0.05 0.15,0 0.1,0.1 0.3,0 0.14,0.1 0.28,0 0.1,0.08 0.2,0 0,0.1 0.08,0 0,0.35 0.1,0.1 0,0.1 0.02,0.05 0.04,0.03 0,0.1 0.1,0.1 0,0.18 0.08,0 0,0.16 0.1,0 0,0.1 0.1,0 0,0.1 0.18,0 0,0.08 0.2,0.1 0.05,0.1 0.1,0 0,0.18 0.1,0 0.08,0.06 0.28,0.1 0.06,0.1 0.12,0.08 0.16,0 0.1,0.1 0,0.1 0.08,0 0.1,0.08 0.34,0.16 0.1,0 0,0.1 0.18,0 0.1,0.1 0.1,0 0,0.08 0.18,0 0,0.1 0.06,0 0.2,0.18 0.08,0 0,0.1 0.1,0 0.1,0.06 0.08,0 0.2,0.1 0.15,0 0.1,0.08 0.37,0 0.06,0.1 0.47,0 0.18,0.1 0.26,0 0.1,0.1 0.2,0 0.08,0.08 0.28,0 0.16,0.1 0.37,0 0.1,0.1 0.34,0 0,0.05 0.27,0 0.1,0.1 0.71,0 0.2,-0.1 0.24,0 0.1,-0.06 0.18,0 0,-0.1 0.28,0 0.07,-0.1 0.28,0 0,-0.08 0.28,0 0.26,-0.1 0.2,0 0.08,-0.1 c 0.94,0.05 0.25,-0.14 0.97,-0.1 l 0,-0.1 0.48,0 0.1,-0.08 0.18,0 0.16,-0.07 0.18,0 0.1,-0.1 0.25,0 0,-0.08 0.18,0 0.1,-0.1 0.28,0 0.1,-0.1 c 0.4,0.03 0.12,-0.12 0.72,-0.08 l 0.1,-0.1 0.43,0 0.1,-0.1 1,0 0,-0.06 1.25,0 0.1,-0.1 0.15,0 0,-0.1 0.12,0 0,-0.08 0.07,0 0,0.18 -0.07,0.1 -0.37,0 0,0.06 -0.38,0 -0.06,0.1 -0.1,0 -0.1,-0.1 -0.08,0 -0.1,0.1 -0.37,0 0,0.1 -0.05,0 0.06,0.08 0,0.1 0.4,0 0.08,0.1 0.97,0 0.12,-0.1 0.16,0 0,-0.82 -0.16,0 0,-0.1 0.07,-0.1 0,-0.14 -0.07,0 0,-0.2 -0.12,0 0,-0.27 -0.06,-0.1 0,-0.34 -0.1,-0.08 0,-0.1 -0.1,-0.1 0,-0.43 -0.1,0 0,-0.35 0.3,0 1.05,0.1 1.8,-0.66 0.45,-0.08 0.2,-0.18 0.17,-0.1 0.06,-0.9 0.9,-0.82 0.4,-0.43 0.9,-0.48 1.43,-0.53 1.16,-0.1 0.9,0.27 0.9,0 0.45,-0.1 0.18,-0.7 1.88,-0.38 0.2,0.17 0.9,0.3 0.7,-0.3 0.82,0.54 0.16,0.9 1.92,0.48 0.9,0.34 1.06,0.3 0.9,0.8 0.54,-0.2 0.9,0.1 0.63,-0.28 0.9,0.38 0.92,0.62 0.7,0.72 0.45,0.9 0.63,0.35 0.9,0.1 0.9,0.47 1.54,1.97 3.58,0.1 0.2,0 0,1.78 0.37,0.72 -0.28,0.9 -0.2,0.2 0.54,0.9 0,0.9 0.2,0.16 0.62,0.28 1,0.53 0.9,0.2 0.63,-0.28 0.63,0.37 0.8,0.7 0,0.1 0.1,0.54 1.07,-0.63 0.9,0 0.82,-0.6 1,-0.73 0.43,-0.9 0.2,-0.1 -0.63,-0.8 c 2.95,0 3.48,-1.2 5.84,-1.98 l 0.92,-0.64 0.28,-0.8 0,-0.92 0.53,-1 0.28,-0.53 0,-0.9 0.9,-0.43 2.42,-0.2 0.53,-1 0.63,-0.7 2.25,1.18 1.1,0 0.1,-0.1 0.27,0 1.78,-0.1 0.62,0.2 0.38,0.44 0.53,0.36 0.64,-0.2 0.37,-0.02 0.8,0.03 0.46,0.2 0.63,0.96 0.36,0.28 0.25,0.2 0.1,0 0.9,-0.47 0.3,-0.53 1.34,-0.44 0.9,-0.28 0.44,-0.53 0.9,0.72 1,0.53 0.44,-0.28 0.1,-0.16 -0.1,-0.37 -0.1,-1 c 0.2,-0.2 0.38,-0.34 0.54,-0.45 l 0.03,-0.03 c 0.07,-0.05 0.14,-0.06 0.2,-0.1 0.26,-0.13 0.5,-0.25 0.73,-0.28 0.44,-0.05 0.84,0.06 1.25,0.16 0.27,0.07 0.55,0.14 0.84,0.16 l 0.57,-0.9 -0.14,-0.35 -0.06,-0.28 0.25,-0.9 0.47,-0.44 1.34,-1.8 1.16,-0.26 1,0.44 1,0.9 -0.28,0.9 0.37,0.82 0.9,-0.1 0.08,0.54 -0.44,1.72 -0.1,0.43 0,0.9 -0.27,0.92 0.8,1.86 0.2,0.2 0.62,0.08 1.9,-1.25 0.34,-0.3 1.9,-0.36 0.35,-0.72 2.34,-1.44 2.43,0 0,0.47 0.2,0.62 0.87,-0.37 0.62,-0.16 0.9,-0.56 0.9,0.28 0.1,0 0.63,-0.1 -0.26,0.9 0.16,-0.17 0.47,-0.2 0.72,0.28 0.33,-0.28 0.53,-0.34 -0.53,-0.9 -0.28,-1 -0.06,-1.26 -0.48,-0.9 -0.1,-0.98 0.3,-0.46 -0.83,-0.97 -1.16,-0.4 -0.9,-0.08 -0.92,0.62 -0.43,0 -0.64,-0.62 0,-0.1 -0.37,-0.9 0.42,-0.88 -0.25,-0.28 -0.7,-0.9 0.14,-1.25 -3.48,0.48 -2.35,0.1 -0.75,1 -0.48,-0.27 -1.8,-0.36 -0.25,-0.94 -0.88,-0.07 -0.26,-0.8 -2.12,1.15 -4.13,-0.9 -3.85,0.15 0.1,-2.32 0.47,0.07 0.65,-1 1.95,-0.3 2.63,1.06 -0.08,0.42 2.33,-1.9 1.7,-0.04 1.27,0.6 1.63,-0.6 0.28,-0.4 0.73,-0.47 0.8,0.28 -0.08,-1.2 0.9,0.47 0.4,-0.05 0.72,-0.85 1.15,-0.32 0.15,-0.55 -2.42,-0.17 -0.2,-0.46 -1.1,-0.38 -0.55,0.1 -0.25,-1 -0.9,-0.12 -0.93,-1.4 -0.66,-0.05 -0.1,0.78 -0.67,0 -0.16,1.07 -2.9,-0.67 -0.47,-1.12 -1.1,0.18 -1.02,-0.94 4.77,-3.28 -1.48,-0.3 -0.7,0.33 -0.52,0.9 -0.9,-0.36 -0.26,0.1 -0.8,0.9 -0.9,0.72 -1.9,0.72 -0.7,0.44 -0.48,0.47 -0.8,0.25 -0.45,0.9 -1.16,1 -0.47,0.54 -0.35,0.28 -0.37,0.53 0.1,0.2 0,0.08 0.27,0.97 -1,0 -0.8,-0.34 -0.2,-0.1 -1,-0.62 c 0.68,-0.45 0.7,-0.64 0.66,-1.35 l -1,-0.73 -0.1,0 -0.1,0.1 -0.9,-0.1 -2.3,0.25 -2,-0.1 -0.44,-0.96 -0.44,-1.9 -0.13,-0.97 -0.96,-0.83 -0.9,0 -0.53,-0.46 0.34,-2.87 0,-0.9 0.1,-0.88 -0.96,0.06 -1,-0.86 -0.44,-0.9 -0.9,-0.92 -0.9,-0.62 -0.83,-0.9 -0.18,-0.1 -0.9,-0.1 -1,0.47 -1,0.25 -0.9,0 c -4.47,-0.57 -5.57,-0.37 -9.96,0.47 -1.15,-1.36 -2.8,-2.85 -4.07,-4.16 l -0.18,-0.44 -0.83,-1 -0.87,-0.53 -1.2,-0.63 -2.24,-1.34 c -1.15,-0.55 -2.15,-1.37 -3.3,-1.9 -0.6,-0.2 -2.72,-1.76 -3.26,-1.88 -0.04,0.07 -0.06,0.13 -0.13,0.22 l 0.04,-0.22 0.1,0 c 0.27,-0.48 -0.03,-0.54 0.22,-0.97 l 0,-0.28 0.2,-0.16 0.17,-0.18 0.18,-0.18 c 0.46,-0.54 0.63,-0.2 0.9,-0.2 l 0,-0.15 0.07,-0.1 0.1,0 0.1,0.1 0.27,0 c 0.5,-0.93 2.04,-2.63 2.75,-3.5 l 1,-1 0.9,-0.73 0.2,-0.18 0.96,-0.36 0.53,-0.9 0,-0.1 0.2,-1 0.9,0.28 0.9,0.1 0.9,-0.28 0.16,-0.35 0.38,-0.9 0.44,-0.92 0.47,-1 0.63,-0.16 0.9,-0.1 1,0 0.98,0.54 0.63,0.8 0.9,0.64 0.9,0.9 0.3,0.9 2.56,-1.1 3.77,-2.36 0.97,-0.72 -0.25,-0.18 -1.1,-1.35 -0.54,-1 -0.72,-0.9 -0.62,-0.26 -2.25,-1 -0.1,0 0.1,-0.9 -1.72,-0.45 -0.2,-0.1 -0.7,-0.63 -0.35,-0.9 -0.2,0 0.2,-1 -0.8,-0.88 0.7,-0.82 1.26,-1.9 0.9,-0.1 0.1,-0.25 -1.16,-1.8 -0.66,-0.73 -0.72,-1.8 -0.87,0 0.87,-0.9 0.2,0 -1,-0.7 -0.16,-1 -0.9,0.28 -0.4,-0.57 -0.95,-0.52 z"
1949+ id="path82158-7"
1950+ inkscape:connector-curvature="0"
1951+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
1952+ overflow="visible" />
1953+ <path
1954+ d="m 1128.05,238.63 0.2,0.2 1,0.52 z"
1955+ id="path42591-5"
1956+ inkscape:connector-curvature="0"
1957+ overflow="visible"
1958+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1959+ <path
1960+ d="m 1028.8,368.1 -0.06,-0.1 -0.1,0.1 0.16,0 z"
1961+ id="path42589-3"
1962+ inkscape:connector-curvature="0"
1963+ overflow="visible"
1964+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1965+ <path
1966+ d="m 1000.02,329.94 -0.1,0 0,0.1 0.1,0 z"
1967+ id="path42587-4"
1968+ inkscape:connector-curvature="0"
1969+ overflow="visible"
1970+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1971+ <path
1972+ d="m 1000.3,320.13 0,-0.15 -0.2,0 0.1,0.06 0,0.1 0.1,0 z"
1973+ id="path42585-1"
1974+ inkscape:connector-curvature="0"
1975+ overflow="visible"
1976+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1977+ <path
1978+ d="m 1000.3,319.5 -0.18,-0.1 -0.1,0 0,0.1 0.28,0 z"
1979+ id="path42583-0"
1980+ inkscape:connector-curvature="0"
1981+ overflow="visible"
1982+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1983+ <path
1984+ d="m 1000.02,319.4 0,-0.08 -0.1,0 0,-0.16 0.1,0.07 0.1,0 0.1,-0.07 -0.1,-0.1 -0.3,0 0,-0.06 -0.14,0 0,0.1 0.06,0.08 0,0.07 0.1,0 0,0.18 0.18,0 z"
1985+ id="path42581-3"
1986+ inkscape:connector-curvature="0"
1987+ overflow="visible"
1988+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1989+ <path
1990+ d="m 1005.5,317.07 -0.07,-0.1 0,0.1 z"
1991+ id="path42579-4"
1992+ inkscape:connector-curvature="0"
1993+ overflow="visible"
1994+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
1995+ <path
1996+ d="m 1006.3,316.9 0,-0.08 -0.06,0 0,0.1 z"
1997+ id="path42577-3"
1998+ inkscape:connector-curvature="0"
1999+ overflow="visible"
2000+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2001+ <path
2002+ d="m 1006.58,316.98 0,-0.16 -0.1,0 0,0.16 z"
2003+ id="path42575-0"
2004+ inkscape:connector-curvature="0"
2005+ overflow="visible"
2006+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2007+ <path
2008+ d="m 1006.5,316.82 0,-0.1 -0.1,0 0,0.1 z"
2009+ id="path42573-3"
2010+ inkscape:connector-curvature="0"
2011+ overflow="visible"
2012+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2013+ <path
2014+ d="m 1107.77,260.5 0.66,0.4 -0.25,-0.4 z"
2015+ id="path42571-0"
2016+ inkscape:connector-curvature="0"
2017+ overflow="visible"
2018+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2019+ <path
2020+ d="m 1015.46,311.98 -0.06,0.06 0,0.2 -0.1,0 0,0.08 -0.06,0 0,-0.2 0.06,-0.08 0.16,-0.06 z"
2021+ id="path42569-6"
2022+ inkscape:connector-curvature="0"
2023+ overflow="visible"
2024+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2025+ <path
2026+ d="m 1014.62,312.26 0,0.06 0.06,0 -0.06,0.1 0,0.24 -0.13,0 -0.07,0.1 -0.1,0 0,-0.1 0.1,0 0.06,-0.1 0,-0.15 -0.07,0 -0.1,0.08 -0.18,0 0,0.1 -0.1,0 0,-0.07 0.1,-0.02 0.28,-0.16 0.2,-0.06 z"
2027+ id="path42567-2"
2028+ inkscape:connector-curvature="0"
2029+ overflow="visible"
2030+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2031+ <path
2032+ d="m 1013.58,312.73 0.03,0 0,0.12 -0.08,0 0,-0.06 z"
2033+ id="path42565-8"
2034+ inkscape:connector-curvature="0"
2035+ overflow="visible"
2036+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2037+ <path
2038+ d="m 1022.18,312.8 0,0.05 -0.2,0 z"
2039+ id="path42563-9"
2040+ inkscape:connector-curvature="0"
2041+ overflow="visible"
2042+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2043+ <path
2044+ d="m 1012.9,313.35 0,0.03 -0.07,0 z"
2045+ id="path42561-9"
2046+ inkscape:connector-curvature="0"
2047+ overflow="visible"
2048+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2049+ <path
2050+ d="m 1009.4,314.32 0.25,0.06 0.34,0.06 0,0.04 0.12,0 0,0.1 -0.13,0 0,-0.1 -0.07,0 0,0.18 -0.1,0 0,-0.18 -0.1,0 -0.08,-0.1 -0.2,0 -0.05,-0.06 z"
2051+ id="path42559-8"
2052+ inkscape:connector-curvature="0"
2053+ overflow="visible"
2054+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2055+ <path
2056+ d="m 1009.37,314.38 0.1,0.1 0,0.18 -0.07,0 -0.03,-0.28 z"
2057+ id="path42557-9"
2058+ inkscape:connector-curvature="0"
2059+ overflow="visible"
2060+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2061+ <path
2062+ d="m 1011,314.38 0,0.1 -0.2,0 z"
2063+ id="path42555-0"
2064+ inkscape:connector-curvature="0"
2065+ overflow="visible"
2066+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2067+ <path
2068+ d="m 1010.37,314.5 0.1,0.04 0,0.03 -0.1,0 0,-0.06 z"
2069+ id="path42553-1"
2070+ inkscape:connector-curvature="0"
2071+ overflow="visible"
2072+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2073+ <path
2074+ d="m 1007.87,314.76 0.34,0.06 0.1,0.1 0,0.18 0.1,0 0.1,0.1 0,0.1 -0.3,0 0,-0.1 -0.12,0 -0.2,-0.44 z"
2075+ id="path42551-6"
2076+ inkscape:connector-curvature="0"
2077+ overflow="visible"
2078+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2079+ <path
2080+ d="m 1008.5,314.88 0.05,0.03 0.03,0 0.16,0.04 0,0.07 0.1,0 0,0.1 0.1,0.1 0,0.1 -0.1,0 -0.1,-0.1 -0.1,0 0,-0.1 -0.1,0 0,-0.1 -0.05,0 0,-0.12 z"
2081+ id="path42549-7"
2082+ inkscape:connector-curvature="0"
2083+ overflow="visible"
2084+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2085+ <path
2086+ d="m 1016.3,323.38 0.16,0 -0.16,0.28 -0.1,-0.1 0,-0.08 0.1,-0.1 z"
2087+ id="path42547-6"
2088+ inkscape:connector-curvature="0"
2089+ overflow="visible"
2090+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2091+ <path
2092+ d="m 1016.2,323.9 0.1,0 0.82,0.48 0.28,0.44 -0.2,-0.2 -0.18,0 0,-0.08 -0.1,0 0,-0.06 -0.18,0 -0.16,-0.1 -0.1,-0.1 -0.08,-0.1 -0.1,0 -0.1,-0.08 0,-0.2 z"
2093+ id="path42545-2"
2094+ inkscape:connector-curvature="0"
2095+ overflow="visible"
2096+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2097+ <path
2098+ d="m 1017.55,325 0.06,0.1 -0.05,0 z"
2099+ id="path42543-1"
2100+ inkscape:connector-curvature="0"
2101+ overflow="visible"
2102+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2103+ <path
2104+ d="m 1017.65,325.16 0.06,0.1 -0.05,0 z"
2105+ id="path42541-6"
2106+ inkscape:connector-curvature="0"
2107+ overflow="visible"
2108+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2109+ <path
2110+ d="m 1017.74,325.3 0.47,0.24 0,0.1 -0.46,-0.16 0,-0.2 z"
2111+ id="path42539-3"
2112+ inkscape:connector-curvature="0"
2113+ overflow="visible"
2114+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2115+ <path
2116+ d="m 1023.08,340 0.1,0.3 -0.03,0 -0.1,-0.07 0,-0.2 0.03,-0.02 z"
2117+ id="path42537-7"
2118+ inkscape:connector-curvature="0"
2119+ overflow="visible"
2120+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2121+ <path
2122+ d="m 1023.15,341.38 0.1,0.03 0.08,0.33 -0.1,0 -0.08,-0.07 -0.1,-0.1 0,-0.08 0.1,0 0,-0.1 z"
2123+ id="path42535-1"
2124+ inkscape:connector-curvature="0"
2125+ overflow="visible"
2126+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2127+ <path
2128+ d="m 1023.77,342.63 0.53,0.66 0.03,0.05 -0.03,0 -0.06,-0.1 -0.2,0 0,-0.06 -0.08,-0.1 -0.1,-0.1 -0.1,0 -0.08,-0.1 0,-0.17 0.1,0 0,-0.1 z"
2129+ id="path42533-2"
2130+ inkscape:connector-curvature="0"
2131+ overflow="visible"
2132+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2133+ <path
2134+ d="m 1024.4,343.5 0.06,0.13 -0.06,0 z"
2135+ id="path42531-4"
2136+ inkscape:connector-curvature="0"
2137+ overflow="visible"
2138+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2139+ <path
2140+ d="m 1025.05,345.1 0.16,0.1 c 0,0.1 0,0.2 -0.02,0.3 l -0.06,0 0,-0.06 -0.07,0 0,-0.34 z"
2141+ id="path42529-8"
2142+ inkscape:connector-curvature="0"
2143+ overflow="visible"
2144+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2145+ <path
2146+ d="m 1024.55,350.63 c 0.1,0.2 0.18,0.43 0.32,0.66 l -0.1,-0.1 -0.2,0 0,-0.3 -0.08,-0.08 0,-0.1 0.05,-0.1 z"
2147+ id="path42527-5"
2148+ inkscape:connector-curvature="0"
2149+ overflow="visible"
2150+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2151+ <path
2152+ d="m 983.68,350.8 c 0.17,0.03 0.3,0.05 0.44,0.05 -0.17,0 -0.3,-0.03 -0.44,-0.06 z"
2153+ id="path42525-1"
2154+ inkscape:connector-curvature="0"
2155+ overflow="visible"
2156+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2157+ <path
2158+ d="m 1027.46,354.54 0.37,0.25 0.32,0.18 -0.22,0 0,-0.1 -0.1,0 0,-0.1 -0.18,0 0,0.1 -0.1,0 0,-0.2 -0.12,0 0.03,-0.14 z"
2159+ id="path42523-9"
2160+ inkscape:connector-curvature="0"
2161+ overflow="visible"
2162+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2163+ <path
2164+ d="m 1028.18,354.98 0.28,0.18 0.44,0.57 0,0.4 -0.1,0 0,-0.1 -0.06,0 0,-0.03 -0.1,-0.2 0,-0.1 -0.1,0 -0.08,-0.08 -0.1,0.1 0,-0.3 -0.1,0 0,-0.08 0.1,-0.1 0,-0.06 -0.1,0.07 0,-0.07 -0.08,0 0,-0.1 -0.07,0 0.08,-0.08 z"
2165+ id="path42521-6"
2166+ inkscape:connector-curvature="0"
2167+ overflow="visible"
2168+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2169+ <path
2170+ d="m 1028.46,355.6 0.1,0 0,-0.2 -0.1,0 z"
2171+ id="path42519-6"
2172+ inkscape:connector-curvature="0"
2173+ overflow="visible"
2174+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2175+ <path
2176+ d="m 1026.5,355.16 0.05,0 0,0.25 0.1,0 0,0.1 -0.1,0 0,-0.1 -0.06,-0.08 0,-0.16 z"
2177+ id="path42517-5"
2178+ inkscape:connector-curvature="0"
2179+ overflow="visible"
2180+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2181+ <path
2182+ d="m 1029,355.88 0.02,0 0.16,0.2 0.5,0.43 -0.32,0 0,-0.1 -0.1,0 0,0.2 -0.08,0 0,-0.2 -0.1,0 0,-0.08 -0.1,0 0,-0.44 z"
2183+ id="path42515-9"
2184+ inkscape:connector-curvature="0"
2185+ overflow="visible"
2186+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2187+ <path
2188+ d="m 1029.7,356.54 0.07,0.06 -0.06,0 z"
2189+ id="path42513-6"
2190+ inkscape:connector-curvature="0"
2191+ overflow="visible"
2192+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2193+ <path
2194+ d="m 1029.8,356.63 0.28,0.25 -0.03,0.13 -0.06,-0.06 0,-0.1 -0.1,0 0,-0.08 -0.1,0 0,-0.13 z"
2195+ id="path42511-8"
2196+ inkscape:connector-curvature="0"
2197+ overflow="visible"
2198+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2199+ <path
2200+ d="m 1126.08,366.8 -0.53,0.14 -0.03,0 c -0.42,0.1 -0.95,0.3 -1.7,0.66 l -0.9,0.44 -0.87,-0.38 -0.65,-0.06 -0.16,0 c -2.8,0.32 -4,0.16 -6.7,0.97 l -1.33,1.2 -0.9,0.33 -0.62,0.47 -1.78,1.6 0.28,0.27 0.87,0.72 0.47,0.9 -0.1,0.35 0.63,1 -0.53,0.54 0.44,1 -0.44,0.54 -0.1,0.18 -0.1,0.2 -0.7,0.33 -1.63,1.8 -0.1,0.3 0.8,0.86 -0.18,0.47 -0.1,0.63 -0.06,0.37 -1.56,0.53 -0.87,0 -2.54,-0.53 -0.44,0.06 -0.1,0.1 0.2,0.9 0.15,0.18 0.2,0.35 0.9,0.65 0.25,0.88 0.2,0.18 -0.45,0.9 -0.9,0.54 -0.54,0.28 -1,0 -0.72,0.2 0,0.87 -0.18,0.1 -0.1,0.9 -0.87,1 -0.1,0.1 0.33,2.77 -0.34,0.25 -0.73,0.9 -0.9,0.48 -0.54,-0.2 -1,-0.52 -2.06,0 -0.28,0.35 -1.35,0.72 -0.9,0.1 1,0.9 0,0.1 -2.54,0.52 -0.62,0 -0.37,-0.1 -0.05,-0.34 -0.9,0.34 -0.48,0.2 -0.43,0.9 -0.9,0.43 -0.17,0.2 -0.37,1.05 -0.1,0.9 c 0.14,1.87 0.18,2.73 -0.12,3.2 -0.04,0.06 -0.1,0.1 -0.16,0.15 -0.47,0.42 -1.43,0.44 -3.3,0.97 l -2.45,0.66 -0.18,-0.1 -2.42,0 -0.28,0.1 -0.44,0.06 -0.9,0.66 -0.9,-0.3 -1.36,-0.17 -1.8,0.1 -3.6,0.28 -0.72,-0.2 -3.16,-1 -3.4,-1.05 1.72,1.88 0.62,0.9 0,0.3 0.8,1.34 0.07,0.1 0.38,0.9 1.1,1.06 0.9,0.47 1.5,0.34 0.92,0.92 0.18,0 0.72,0.44 -0.1,0.53 0.35,2.8 -0.06,0.25 -0.18,0.9 0.9,0.2 0.54,-0.1 0.9,0.1 0.16,0.34 0.1,0.05 0,0.03 -0.16,0 -0.18,0.2 -0.1,0.36 -0.44,1.97 -0.1,-0.08 -1.43,0 -0.9,0.28 -1.28,0.25 -0.34,0.9 -0.28,-0.1 -0.25,-0.08 -1,0.66 -0.63,0.87 -0.1,1.1 -0.52,0.53 -0.3,2.34 0,0.44 0.4,0 0.15,0.66 1.8,-0.72 0.9,0.16 0.92,-0.34 0.88,-0.1 0.9,0.2 1,-0.1 1.78,0.25 0.2,-0.77 0.9,-0.2 1,0.26 0.9,-0.54 0.88,0.8 0.9,0.1 1,-0.28 2.08,0 0.9,-0.34 1.25,0.25 1.82,-0.54 0.96,-0.1 0.92,0.2 -0.9,-0.45 0.8,-0.36 1.35,1.8 -0.16,1.07 0.1,0.58 1.8,0.53 0.7,1.8 0.48,1.6 0.72,0.17 0,0.2 -0.2,0.1 0.2,0.2 0,422.3 69.56,0 0,-389.8 -0.25,0.16 -0.8,0.9 c -0.02,0 -0.03,0.02 -0.03,0.03 l 0,0.09 0.34,0.84 -0.33,0.88 0,0.16 -0.7,0.4 -0.87,0.48 -0.18,0.1 0,-0.03 -0.54,0.2 -1.28,-0.1 -1.02,0 c 0,0 -0.03,0 -0.03,0.02 0,0 -0.02,0 -0.02,0.03 l -0.53,0.87 0,0.09 -0.3,0.9 0,0.03 -0.45,0.78 -0.4,-0.7 -0.1,-0.35 c -0.02,0 -0.02,-0.02 -0.04,-0.03 l -0.03,-0.03 -0.03,0 -0.03,0 -0.03,0 c 0,0 -0.02,0 -0.03,0.02 l -0.3,0.44 -0.38,0.18 -0.6,0.07 -0.02,0 -1,0.48 c 0,0 -0.02,0 -0.03,0.03 l -0.63,0.9 -0.43,0.92 -0.02,0 0,0.03 -0.2,0.88 -0.15,0.9 0,0.03 0.06,0.9 c 0,0.02 0,0.03 0.03,0.04 l 0.34,0.88 0,0.03 -0.1,0.3 0,0.05 0.03,0 0.16,0.38 -0.1,0.84 -0.1,0.9 0,0.04 0.3,0.88 0,0.03 0.18,0.9 0.2,0.74 -0.2,-0.1 -0.3,-0.28 0,-0.03 -0.04,0 -0.04,0 -0.02,0 c -0.02,0 -0.03,0.02 -0.03,0.03 l -0.02,0.03 -0.2,0.52 0,0.07 0.04,0 c 0,0.03 0.02,0.04 0.03,0.05 l 0.15,0 0.56,0.18 0.04,0 0.28,0.16 c -0.3,1.8 -0.33,2.74 -0.5,3.5 -0.15,0.6 -0.44,1.2 -1.1,2.15 l -0.47,0.46 -0.02,0.23 -0.06,0.1 0,0.06 c 0,0 0,0.1 -0.03,0.2 -0.03,0.1 -0.1,0.25 -0.13,0.38 -0.08,0.26 -0.18,0.52 -0.22,0.63 l 0,0.14 -0.06,0.15 c -0.03,0 -0.04,0 -0.04,0.02 l 0,1 -0.4,0.9 -0.04,0.04 0,0.08 0.03,0.03 0.78,0.7 0,2.37 0.1,0.93 -0.85,0.4 -0.7,-0.08 -0.02,0 -0.9,0.28 -0.04,0 0,0.03 c 0,0.02 -0.02,0.03 -0.03,0.04 l -0.35,0.9 0,0.34 -0.72,0.84 -0.62,1 -0.02,0.04 -0.1,0.9 0,0.03 c 0,0.02 0.02,0.03 0.03,0.03 l 0,0.04 0.04,0 0.85,0.53 -0.26,0 -0.9,0.1 -0.04,0 -0.88,0.27 c -0.9,0.1 -1.58,0.57 -2.03,1.2 -0.16,0.2 -0.26,0.43 -0.35,0.68 l -0.13,0.1 0,0.21 c -0.1,0.36 -0.14,0.74 -0.15,1.13 l -0.88,0.8 -0.04,0 -0.87,0.54 -0.7,0.33 -0.22,0.1 -0.78,-0.16 -0.06,-0.03 -0.84,-0.6 c -0.26,-0.22 -0.87,-0.87 -1.44,-1.53 -0.3,-0.3 -0.56,-0.64 -0.78,-0.92 -0.23,-0.3 -0.4,-0.53 -0.47,-0.66 l 0,-0.03 -0.02,0 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.03,0 c -0.48,-1.24 -0.98,-2.5 -1.07,-3.78 l 0.04,0.03 0.1,0.32 0,0.03 0.04,0 0,0.06 c 0,0.03 0.02,0.04 0.03,0.04 l 0.09,0 c 0,0 0.02,0 0.03,-0.03 0,0 0.02,0 0.02,-0.02 l 0,-0.97 -0.03,0 0,-0.02 -0.45,-0.4 0,-0.23 -0.03,0 -0.03,-0.03 -0.19,0 0,-0.72 c 0,0 0,-0.02 -0.02,-0.02 l -0.53,-1 -0.44,-0.88 0,-0.03 -0.34,-0.87 -0.28,-0.9 -0.37,-0.9 0,-0.02 -0.15,-0.87 -0.03,-0.02 -0.78,-0.88 -0.03,-0.03 -0.05,-0.22 0,-0.22 -0.03,0 -0.72,-0.9 -0.25,-0.4 0,-0.14 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.03,-0.03 -0.14,0 -0.15,-0.15 0,-0.13 c 0,0 0,-0.02 -0.02,-0.03 l -0.63,-0.87 0,-0.04 c -0.55,-0.96 -0.9,-1.66 -1.28,-2.7 l 0,-0.03 0.03,0 0,-0.13 -0.03,0 -0.06,-0.03 0,-0.02 -0.24,-0.87 0,-0.04 -0.2,-0.88 -0.27,-0.9 -0.07,-0.88 0.06,-0.13 0,-0.13 -0.04,0 -0.06,-0.06 0,-0.02 -0.25,-0.85 -0.03,-0.03 -0.53,-0.87 0,-0.04 -0.23,-0.82 0.2,0.06 0.07,0 0,-0.03 c 0,0.02 0.02,0.02 0.03,0 l 0,-0.11 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.6,-1.03 -0.43,-0.9 -0.03,-0.04 -0.45,-0.45 -0.16,-0.28 0,-0.13 c -0.02,0 -0.03,-0.02 -0.04,-0.03 0,0 -0.02,0 -0.03,-0.02 l -0.25,-0.18 -0.7,-0.82 0,-0.03 -0.08,-0.87 0,-0.03 -0.48,-0.94 0.1,-0.12 0,-0.03 0.03,-0.03 -0.03,-0.03 0,-0.04 -0.66,-0.8 0.03,-0.05 0,-0.02 0.02,-0.03 0,-0.03 c 0,0 0,-0.02 -0.03,-0.03 l 0,-0.04 c -0.46,-0.6 -0.72,-0.9 -0.88,-1.16 l -0.03,-0.06 c -0.1,-0.12 -0.14,-0.23 -0.17,-0.3 l -0.06,-0.23 c -0.02,-0.14 -0.03,-0.33 -0.1,-0.68 -0.05,-0.3 -0.15,-0.73 -0.34,-1.3 l -0.1,-0.64 -0.12,-0.6 c -0.1,-1 -0.22,-1.98 -0.64,-2.96 l 0.03,0 0.05,-0.9 0,-0.04 -0.35,-0.9 -0.43,-0.88 -0.2,-0.9 -0.18,-0.85 0,-0.06 0.18,-0.95 0,-0.06 -0.03,0 -0.5,-0.85 0.06,-0.3 0,-0.05 0.63,-0.87 c 0.02,0 0.03,-0.02 0.03,-0.03 l 0,-0.06 -0.1,-0.35 0,-0.04 -0.02,0 0,-0.03 -0.03,0 -0.02,0 -0.03,0 -0.28,0.06 c 0,0 -0.02,0 -0.03,0.02 l -0.22,0.22 -0.16,-0.7 0,-0.05 0.1,-0.54 0.12,0.06 0.44,0.16 0.03,0.03 0.22,0.17 0.03,0.03 0.06,0 c 0.02,0 0.02,-0.02 0.03,-0.03 0,0 0,-0.02 0.02,-0.03 l 0,-0.09 -0.03,-0.03 -0.17,-0.24 c 0,0 0,-0.02 -0.03,-0.03 l -0.56,-0.2 -0.2,-0.05 -0.08,-0.78 0.06,-0.06 0,-0.03 c 0,0 0.02,0 0.03,-0.02 l 0,-0.04 -0.03,-0.03 0,-0.02 c -0.15,-0.13 -0.27,-0.26 -0.37,-0.37 l -0.32,-1.18 0.06,-0.6 c 0.08,-0.34 0.15,-0.73 0.18,-1.2 0.62,-0.95 0.83,-1.52 0.8,-2.1 0,-0.32 -0.07,-0.6 -0.17,-0.98 l -0.34,-1.15 0,-0.04 -0.03,0 0,-0.03 -0.03,0 -0.03,0 -0.03,0 -0.03,0 -0.1,0.06 -0.07,-0.07 c 0,-0.02 -0.02,-0.03 -0.04,-0.04 l 0,-0.04 -0.6,-0.87 0.34,-0.82 1.22,-0.7 0.25,-0.05 0,-0.04 0.04,0 0.04,-0.07 0.02,-0.03 0.03,0 0.03,-0.03 0.47,-0.22 0.03,0 0,-0.03 c 0.02,0 0.03,-0.02 0.04,-0.03 l 0,-0.17 -0.04,-0.03 c 0,0 0,-0.02 -0.03,-0.03 l -0.03,0 -0.03,0 -0.03,0 -0.46,0.34 -0.1,0 0,0.04 -0.03,0 -0.87,0.16 -0.04,0 -0.9,-0.1 -0.13,-0.5 0.8,-0.84 0,-0.03 0.03,-0.03 0,-0.03 c 0,0 -0.02,-0.03 -0.04,-0.03 -0.02,-0.02 -0.02,-0.03 -0.04,-0.03 l -0.03,-0.03 -0.03,0 -0.03,0.04 -0.03,0 -0.03,0.04 -0.68,0.34 0,-0.78 0.82,-0.3 0.03,0 0.87,-0.2 0.03,0 0,-0.03 0.03,0 0,-0.37 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.03,-0.03 -0.03,0 -0.96,0.1 -0.9,0 -0.5,-0.5 0,-0.03 -0.03,0 -0.06,0 -1,0.43 0,0.03 -0.03,0 0,0.03 -0.02,0.02 c 0,0.02 0.02,0.03 0.03,0.04 l 0,0.03 c 0.02,0 0.03,0 0.04,0.02 l 0.16,0.06 0.03,0.03 0.38,0.76 -0.8,0.25 -0.04,0 c 0,0.02 -0.02,0.03 -0.03,0.04 l -0.53,0.9 c 0,0.02 -0.02,0.03 -0.03,0.04 l 0,0.03 c 0,0.02 0.02,0.04 0.03,0.04 0,0.02 0.02,0.03 0.03,0.03 l 0.88,0.35 0.32,0.8 -0.5,0.9 -0.2,0.33 0,0.03 -0.68,0.84 -0.12,0 -0.03,0 c -1.83,0.7 -3.45,2.12 -5.42,1.97 l -0.03,0 c -0.46,-0.2 -0.88,-0.42 -1.28,-0.66 -1.2,-0.72 -2.12,-1.65 -2.97,-2.9 l -0.43,-0.42 -0.04,-0.03 -0.02,-0.04 -0.03,0 -0.37,-0.34 -0.03,-0.03 c 0,-0.02 -0.02,-0.02 -0.03,0 l -0.09,0 -0.85,-0.9 -0.87,-0.8 -0.82,-0.88 -0.3,-0.84 0.38,-0.37 0.68,0.8 0,0.02 0.04,0 c 0,0 0,0.02 0.02,0.03 0.02,0 0.03,-0.02 0.04,-0.03 l 0.87,-0.25 0.03,0 0.88,-0.1 0.03,0 0.9,-0.37 0.88,-0.63 0.9,-0.15 0,-0.03 0.04,0 0,-0.04 0.55,-0.97 0,-0.04 0.46,-0.5 0.36,-0.38 0.06,-0.1 0.03,0 0,-0.09 -0.16,-0.44 -0.04,-0.13 0,-0.09 c 0,-0.02 0,-0.02 -0.03,-0.03 l -0.03,0 -0.03,0 -0.03,0 c 0,0.02 -0.02,0.02 -0.03,0.04 0,0 0,0.02 -0.02,0.03 l -0.3,0.8 c -1.55,-0.13 -2.17,0.28 -2.73,0.57 -0.28,0.15 -0.54,0.27 -0.94,0.28 -0.38,0.02 -0.93,-0.1 -1.7,-0.37 l -0.04,0 c -0.9,-0.56 -1.66,-0.94 -2.28,-1.44 l -0.25,-0.2 -1.06,-1.98 0.84,-0.6 0.76,-0.52 0.03,-0.03 0.02,0 0,-0.03 0.03,0 0,-0.05 c 0,-0.02 0,-0.03 -0.03,-0.03 l 0,-0.04 -0.07,0 -0.06,0 -0.6,0.08 c 0,0 0,0.02 -0.02,0.03 l -0.9,0.54 -0.88,0.62 -0.16,-0.75 0,-0.02 -0.03,0 0.66,-0.84 0.75,-0.1 0.98,0 0.1,-1.68 1.62,0.1 0.62,0.15 0.9,-0.15 0.92,0.16 0.34,0.38 1.44,0.1 0.28,-0.2 0.25,-0.52 0.8,-0.2 1.4,-0.36 0.24,0.9 2,-0.8 -0.4,-0.45 0.45,-0.9 c -0.8,-2.4 -2,-2.82 -2.06,-5.04 l -0.92,0.1 -0.9,-0.27 0,-0.1 -0.7,-1.25 0.26,-0.9 0.1,-1.07 -0.82,-0.9 -0.9,0 -1.45,-1 0.1,-1 0.28,-0.87 0.62,-0.65 1.35,-1.35 0.37,-0.9 0.52,-0.72 0.9,-0.7 0.98,0.18 0.2,0.28 0.36,0.9 0.53,0.25 1.9,-0.7 1.16,-0.1 0.9,-0.1 0.88,-0.34 0.28,-0.9 0.37,-0.53 0.9,-0.9 0.25,-0.92 1.2,-1.24 1.77,-0.9 0.9,-1.25 0.54,-1 0.46,-1.24 0.25,-0.9 0.72,-0.45 1.8,-0.8 0.16,-0.2 -0.06,-0.6 -0.1,-0.1 -0.37,-0.2 c 1.8,-1.3 1.6,-2.55 3.25,-3.24 l 0,-0.16 0.28,-0.1 0.16,0.1 0.2,-0.28 -0.73,-0.28 0.27,-1.25 0.15,-0.2 -0.15,-0.87 0,-0.1 -0.38,-0.56 0.7,-0.87 0.92,-0.66 0.62,-0.25 1.53,-0.54 0,-0.8 -1.53,-0.73 -0.62,-0.1 -0.9,-0.37 0,-0.1 -0.63,-0.9 -0.92,-0.35 0.1,-0.08 -0.2,-0.9 -0.87,-0.54 -0.36,-0.9 0.18,0 0.44,-0.9 -0.8,-0.98 -0.07,-0.28 0,-0.1 0.43,-0.62 0.9,-0.8 -0.9,-0.1 -0.82,-0.44 0.45,-0.72 -0.87,-0.53 0.06,-0.46 0.56,-0.9 0.06,-0.35 0.9,-0.1 0.9,-0.44 1.64,0.44 1.34,0.28 1.35,0.15 1.8,0.57 0.9,-0.38 0.9,-0.28 0.26,0.1 0.8,-0.44 0.92,-0.38 0.9,0.1 0.63,0.46 0.64,-0.72 0,-0.1 0.43,-1 -0.06,-0.52 0.82,-0.47 2.88,-1.6 -2.2,0 -2.5,-0.8 -0.18,0 -1.68,-1 -1.2,0 -0.9,-1 -0.15,-0.44 0.33,-0.9 0,-1.03 -0.47,-0.8 -0.78,-0.72 -0.9,-0.15 -0.57,-0.38 -0.05,-0.34 -1.9,-0.46 -0.72,-0.1 -0.72,-0.24 z m -14.84,121.77 11.7,0 0,21.66 -11.7,0 0,-21.66 z m 39.5,12.56 0.28,0 0.9,0.44 1.8,1.28 0.7,0.72 0.45,0.9 0.12,0.63 0.52,0.25 0.63,0.9 0.34,0.82 0,0.37 0.8,0.97 0.28,0.92 c 0.73,0.83 1.37,1.6 1.35,2.78 l 0.2,0.1 0,-0.1 0.08,0.1 0.3,0.7 -0.13,0.92 0,0.9 -0.25,0.82 -0.38,0.97 -0.06,0.1 -0.9,0.72 -0.9,0.72 -0.1,0 -1,0.37 -0.35,0 -0.9,0.36 -0.45,0.28 -0.8,0.2 -0.82,-0.1 -0.9,-0.38 -0.63,-0.88 -0.2,-0.72 -0.08,-0.28 -0.16,-0.72 -0.3,-0.62 -0.18,-0.9 0.1,-0.3 c -0.4,-1.86 -0.27,-3.27 -0.82,-5.55 l 0.28,0.9 0.35,0 c -0.4,-0.75 0.05,-2 0.37,-2.72 l 0.2,-0.9 -0.13,-0.26 0,-0.63 0.37,-0.2 0.44,-0.9 0.12,-0.1 -0.37,-0.9 0.1,-0.87 0.8,0.25 0.82,0.1 0,0.08 0.25,0 -0.25,-0.18 -0.1,0 -0.8,-0.54 -0.1,0.3 -0.9,-0.48 0,-0.63 z m -42.98,67.53 10.4,0 0,15.2 -10.4,0 0,-15.2 z"
2201+ id="path42509-9"
2202+ inkscape:connector-curvature="0"
2203+ overflow="visible"
2204+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2205+ <path
2206+ d="m 1095.12,433.82 0.06,0 0.75,0.75 -1.57,0.4 0,-1.03 0.07,-0.03 0.06,0 c 0,0.02 0,0.02 0.02,0 l 0.6,-0.08 z"
2207+ id="path42507-5"
2208+ inkscape:connector-curvature="0"
2209+ overflow="visible"
2210+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2211+ <path
2212+ d="m 1098.5,437.76 0.24,0.22 -0.22,-0.13 -0.03,-0.1 z"
2213+ id="path42505-2"
2214+ inkscape:connector-curvature="0"
2215+ overflow="visible"
2216+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2217+ <path
2218+ d="m 1104.62,438.76 -1.04,0.53 -0.25,0.02 0.2,-0.1 c 0.3,-0.16 0.63,-0.35 1.1,-0.46 z"
2219+ id="path42503-9"
2220+ inkscape:connector-curvature="0"
2221+ overflow="visible"
2222+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2223+ <path
2224+ d="m 1117.7,441.94 0.1,0 0,0.1 -0.43,0.1 0.34,-0.2 z"
2225+ id="path42501-6"
2226+ inkscape:connector-curvature="0"
2227+ overflow="visible"
2228+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2229+ <path
2230+ d="m 1099.93,442.57 0.72,0.78 0.9,0.8 c -0.97,-0.7 0,0 -0.9,-0.8 -0.46,-0.4 -0.65,-0.64 -0.72,-0.78 z"
2231+ id="path42499-1"
2232+ inkscape:connector-curvature="0"
2233+ overflow="visible"
2234+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2235+ <path
2236+ d="m 1114.58,443.1 -0.56,0.47 0.22,-0.38 0.03,0 0.3,-0.1 z"
2237+ id="path42497-8"
2238+ inkscape:connector-curvature="0"
2239+ overflow="visible"
2240+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2241+ <path
2242+ d="m 1116.37,444.82 1,0.1 0.03,-0.04 0.12,-0.03 -0.12,0.1 -1.03,-0.13 z"
2243+ id="path42495-5"
2244+ inkscape:connector-curvature="0"
2245+ overflow="visible"
2246+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2247+ <path
2248+ d="m 1113.37,447.5 0.12,0 -1.45,0.76 -1.97,0.87 -0.78,0.2 c 1.44,-0.38 2.73,-1.32 4.07,-1.82 z"
2249+ id="path42493-3"
2250+ inkscape:connector-curvature="0"
2251+ overflow="visible"
2252+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2253+ <path
2254+ d="m 1117.33,454.98 c 0.03,0.02 0.04,0.06 0.07,0.1 -0.02,0 -0.03,0 -0.03,0.02 l -0.04,-0.12 z"
2255+ id="path42491-1"
2256+ inkscape:connector-curvature="0"
2257+ overflow="visible"
2258+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2259+ <path
2260+ d="m 1117.43,456.07 0.03,0 0,0.06 -0.03,0 0,-0.06 z"
2261+ id="path42489-2"
2262+ inkscape:connector-curvature="0"
2263+ overflow="visible"
2264+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2265+ <path
2266+ d="m 1118.2,457.44 0.04,0.22 -0.47,0.1 0.25,-0.25 0.03,-0.02 0.16,-0.04 z"
2267+ id="path42425-1"
2268+ inkscape:connector-curvature="0"
2269+ overflow="visible"
2270+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2271+ <path
2272+ d="m 1156.83,470.38 0.5,0 -0.8,0.5 z"
2273+ id="path42423-7"
2274+ inkscape:connector-curvature="0"
2275+ overflow="visible"
2276+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2277+ <path
2278+ d="m 1153.46,472.7 -1.28,0.9 0.3,-0.44 z"
2279+ id="path42360-6"
2280+ inkscape:connector-curvature="0"
2281+ overflow="visible"
2282+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2283+ <path
2284+ d="m 1125.52,481.94 0.13,0.22 0,0.03 0.25,0.87 0.03,0.03 0.03,0.03 -0.03,0.13 -0.03,-0.2 -0.38,-1.12 z"
2285+ id="path42358-2"
2286+ inkscape:connector-curvature="0"
2287+ overflow="visible"
2288+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2289+ <path
2290+ d="m 1126.2,484.94 0.07,0.2 -0.03,0 -0.03,-0.2 z"
2291+ id="path42356-5"
2292+ inkscape:connector-curvature="0"
2293+ overflow="visible"
2294+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2295+ <path
2296+ d="m 1151.37,488.98 0,0.06 -0.1,0.1 0.1,-0.16 z"
2297+ id="path42352-9"
2298+ inkscape:connector-curvature="0"
2299+ overflow="visible"
2300+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2301+ <path
2302+ d="m 1128.08,489.94 0.6,0.85 0,0.08 -0.6,-0.94 z"
2303+ id="path42350-2"
2304+ inkscape:connector-curvature="0"
2305+ overflow="visible"
2306+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2307+ <path
2308+ d="m 1128.7,490.94 0.3,0.3 0.02,0 c 0,0 0.02,0 0.03,0.02 l 0,0.03 0.28,0.43 -0.62,-0.8 z"
2309+ id="path42348-6"
2310+ inkscape:connector-curvature="0"
2311+ overflow="visible"
2312+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2313+ <path
2314+ d="m 1133.33,500.32 0.04,0 0,0.1 z"
2315+ id="path42346-1"
2316+ inkscape:connector-curvature="0"
2317+ overflow="visible"
2318+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2319+ <path
2320+ d="m 1133.65,500.76 0.15,0.15 0,0.3 -0.15,-0.35 0,-0.09 z"
2321+ id="path42344-6"
2322+ inkscape:connector-curvature="0"
2323+ overflow="visible"
2324+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2325+ <path
2326+ d="m 1133.4,501.88 c 0.16,1.04 0.58,2.04 0.97,3 l -0.9,-1.44 -0.07,-1.56 z"
2327+ id="path42340-6"
2328+ inkscape:connector-curvature="0"
2329+ overflow="visible"
2330+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2331+ <path
2332+ d="m 1006.87,770.35 0,12 18.65,0 0,-12 z"
2333+ id="path12142-7"
2334+ inkscape:connector-curvature="0"
2335+ overflow="visible"
2336+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2337+ <path
2338+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2339+ d="m 983.68,350.8 c 0.17,0.03 0.3,0.05 0.44,0.05 -0.17,0 -0.3,-0.03 -0.44,-0.06 z m 111.44,83.02 0.06,0 0.75,0.75 -1.57,0.4 0,-1.03 0.07,-0.03 0.06,0 c 0,0.02 0,0.02 0.02,0 l 0.6,-0.08 z m 3.37,3.94 0.24,0.22 -0.22,-0.13 -0.03,-0.1 z m 6.12,1 -1.04,0.53 -0.25,0.02 0.2,-0.1 c 0.3,-0.16 0.63,-0.35 1.1,-0.46 z m 13.1,3.18 0.08,0 0,0.1 -0.43,0.1 0.34,-0.2 z m -17.8,0.63 0.73,0.78 0.9,0.8 c -0.97,-0.7 0,0 -0.9,-0.8 -0.46,-0.4 -0.65,-0.64 -0.72,-0.78 z m 14.66,0.53 -0.56,0.47 0.22,-0.38 0.03,0 0.3,-0.1 z m 1.8,1.72 1,0.1 c 0,0 0,-0.03 0.02,-0.04 l 0.12,-0.03 -0.12,0.1 -1.04,-0.13 z m -3,2.7 0.1,0 -1.43,0.74 -1.97,0.87 -0.78,0.2 c 1.44,-0.38 2.73,-1.32 4.07,-1.82 z m 3.95,7.46 c 0.03,0.02 0.03,0.06 0.07,0.1 -0.02,0 -0.03,0 -0.04,0.02 l -0.03,-0.12 z m 0.1,1.1 0.03,0 0,0.05 -0.03,0 0,-0.06 z m 0.78,1.36 0.04,0.22 -0.47,0.1 0.25,-0.25 0.03,-0.02 0.16,-0.04 z m 38.63,12.94 0.5,0 -0.8,0.5 z m -3.37,2.3 -1.28,0.92 0.3,-0.44 z m -27.94,9.26 0.13,0.22 0,0.03 0.25,0.87 0.03,0.03 0.03,0.03 -0.03,0.13 -0.03,-0.2 -0.38,-1.12 z m 0.7,3 0.05,0.2 -0.03,0 -0.03,-0.2 z m 25.15,4.04 0,0.06 -0.1,0.1 0.1,-0.16 z m -23.3,0.96 0.6,0.85 0,0.08 -0.6,-0.94 z m 0.64,1 0.3,0.3 0.02,0 c 0,0 0.02,0 0.03,0.02 l 0,0.03 0.28,0.43 -0.62,-0.8 z m 4.63,9.38 0.04,0 0,0.1 z m 0.32,0.44 0.15,0.15 0,0.3 -0.15,-0.35 0,-0.09 z m 17.1,0.37 0.27,0 0.9,0.44 1.8,1.28 0.7,0.72 0.45,0.9 0.12,0.63 0.52,0.25 0.63,0.9 0.34,0.82 0,0.37 0.8,0.97 0.28,0.92 c 0.73,0.83 1.37,1.6 1.35,2.78 l 0.2,0.1 0,-0.1 0.08,0.1 0.3,0.7 -0.13,0.92 0,0.9 -0.25,0.82 -0.38,0.97 -0.06,0.1 -0.9,0.72 -0.9,0.72 -0.1,0 -1,0.37 -0.35,0 -0.9,0.36 -0.45,0.28 -0.8,0.2 -0.82,-0.1 -0.9,-0.38 -0.63,-0.88 -0.2,-0.72 -0.08,-0.28 -0.16,-0.72 -0.3,-0.62 -0.18,-0.9 0.1,-0.3 c -0.4,-1.86 -0.27,-3.27 -0.82,-5.55 l 0.28,0.9 0.35,0 c -0.4,-0.75 0.05,-2 0.37,-2.72 l 0.2,-0.9 -0.13,-0.26 0,-0.63 0.37,-0.2 0.44,-0.9 0.12,-0.1 -0.37,-0.9 0.1,-0.87 0.8,0.25 0.82,0.1 0,0.08 0.25,0 -0.25,-0.18 -0.1,0 -0.8,-0.54 -0.1,0.3 -0.9,-0.48 0,-0.63 z m -17.35,0.75 c 0.16,1.04 0.58,2.04 0.97,3 l -0.9,-1.44 -0.07,-1.56 z m 14.15,1.7 0.35,0.43 -0.6,-0.34 -0.03,0 -0.03,-0.03 -0.22,0 0.53,-0.06 z m -0.43,0.27 0.12,0 0.28,0.16 z m -2.82,0.4 -1.1,0.66 -0.65,0.6 0.13,-0.2 c 0.37,-0.53 0.9,-0.9 1.62,-1.04 z"
2340+ id="path12142-8-5-7"
2341+ inkscape:connector-curvature="0"
2342+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2343+ overflow="visible" />
2344+ <path
2345+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2346+ d="m 1140.75,375.08 1.8,-0.8 1.1,-0.64 1.8,-0.72 0.7,-0.1 1,-0.08 0.1,-0.1 0.9,0 0.88,0.63 0.03,0 0,0.37 0.44,0.44 0.4,0.44 0.04,0 0.8,0.47 0.92,-0.2 0.3,0.1 0.07,0 0.06,0.05 0.06,0.04 0.03,0 0.33,0.24 0.03,0 -0.9,1.8 0,0.9 -0.44,0.92 -0.47,0.63 -0.25,0 -0.56,0.42 -0.25,0.63 -0.04,0 -0.25,0.2 -0.46,0 -0.35,0.08 0.18,0.72 -0.44,0.9 -0.03,0 -0.5,0.35 -0.02,0 -1.06,-0.1 -0.03,0 -0.9,0.9 0.2,0.4 0.16,0.14 0.03,0 0,0.1 -0.4,1 0,0.7 0.3,0.45 0.87,0.55 0.03,0 0.84,0.25 0.03,0 -0.1,0.9 0.48,0.82 0.25,0.9 -0.03,0 -0.06,0.1 -0.43,0.44 -0.72,0.28 -0.63,0.63 -0.46,0.1 -0.9,-0.38 -0.17,-0.9 -0.3,-0.08 -0.43,0.25 -1.1,0.18 0.4,0.63 0,0.9 0.8,0.9 0.44,0.82 -0.1,0.35 0,0.1 -0.15,0.27 0.7,0.9 -0.35,0.73 0.53,0.84 0.34,-0.32 0.9,-0.28 0.04,0 0.64,1 0.5,0.53 0.03,0 0,0.1 0.4,0.37 0.03,0 0.3,0.34 0.9,-0.2 0.9,0.58 0.25,0.06 0.34,0.37 0.02,0 0.63,0.82 -0.1,0.28 1.75,0.53 0.07,0 1.03,0.7 1,0.64 0.03,0 -0.03,0 -0.55,0.02 -2.74,2.08 0.06,1.06 -0.72,1.07 0.3,0.47 -0.8,1.3 -0.2,1.15 2,1.27 0,-0.76 2.66,1.75 0.64,0.22 3.17,2.32 0.84,-0.35 0.56,0.47 2.07,0.68 0.38,1.18 2.23,0.3 0.64,0.52 1.22,-0.7 1.25,0.7 0.35,-0.65 1.35,-0.2 1.56,0.7 0.33,1.54 1.2,0.25 1.25,0.62 0.8,0.6 1.46,-0.52 0.97,1.28 1.37,-0.1 1.3,0.25 1.5,0.78 1.35,-0.75 0.23,0.5 0.73,0.1 3.47,0.15 0.67,-2 -0.7,-1.52 0.77,-4 0.9,-0.53 0.88,-0.28 1,-0.17 0.53,0.82 0,0.87 -0.44,0.9 0.1,0.48 0.24,0.34 -0.03,-0.1 0.07,0.1 0.33,0.37 -0.72,0.8 0.53,0.9 0.56,0.15 0.16,0.03 0.9,0.53 0.63,-0.14 1.07,0.34 0.2,0.1 0.9,0.34 0.1,-0.06 0.18,-0.1 1,0 0.87,-0.62 0.9,0.06 1.26,0.37 0.9,-0.1 0.1,0 0.53,-0.2 0.92,0.3 0.9,-0.54 1.07,0.35 0.8,0 0.9,-0.24 0.2,-0.28 -0.47,-1.25 0.37,-0.82 -0.9,-0.6 -1.07,-0.2 -0.28,-0.47 0.2,-0.87 c 0.74,0.13 1.16,0.12 1.53,0.04 0.13,-0.03 0.27,-0.08 0.4,-0.13 0.25,-0.08 0.53,-0.18 0.88,-0.28 0.35,-0.1 0.78,-0.2 1.4,-0.3 l 0.48,-0.87 0.53,-0.65 0.72,-0.35 0.8,-0.53 0.2,-0.28 0.33,-0.9 0.8,-0.25 0.92,-0.1 0.87,-0.28 0.66,-0.35 0.16,-0.2 0.8,-0.7 0.38,-0.57 1.88,-1.16 0.9,0.72 0.82,0.2 0,-0.1 1.9,0.62 c 1.58,-1.6 1.18,-1.44 3.13,-2.16 l 0.47,0.53 0.62,0.57 0.2,0.15 -0.92,0.63 0.1,0.56 1.53,-0.47 0.2,0.9 0.24,0.48 -1.08,1.53 0.88,0.25 0.03,0 0.16,-0.1 0.52,0.1 1.47,0.53 0,-0.06 0.86,0.15 0.56,0.47 -0.08,0.06 0.13,0.53 -0.03,0.68 -0.75,0.52 -1.44,1.15 -0.3,0.5 1.3,2.22 -2.3,-1.17 -3.62,1.65 -1.53,1.46 -1.18,0.1 -0.9,0.86 0.38,1.93 -0.7,1.33 0.2,0.67 -1.48,1.13 -0.7,0.7 0.4,1.4 -0.32,1.6 -0.7,0.6 -1.62,4 -0.66,-0.6 -2.94,-0.4 0.45,1.34 -0.28,3.6 -1.23,-0.26 -0.1,1.5 0.27,2.33 -0.68,1.23 -1.17,-0.4 -0.46,0.54 -0.17,-1.97 -0.53,-2.44 -0.2,-0.2 -0.18,-0.9 0.1,-0.9 -0.1,-0.17 -0.43,-1.34 0,-0.67 -0.48,0 -0.53,0.38 -0.58,-0.18 0.1,0.9 -0.53,0.45 -0.2,0.28 0,0.9 -0.44,0.9 -0.62,0.07 -0.38,-0.97 -0.62,0.44 -0.53,-1.88 -0.37,-0.9 0.38,-0.92 0.3,-0.8 0.33,-0.45 0.9,0 0.35,-0.56 0.2,0.18 1,0 0.14,-0.9 0.2,0 0.8,-0.88 0.44,-1.38 0,-0.34 0.56,0.2 0.44,-0.1 -0.25,-0.63 0,-0.2 -0.9,-0.52 -0.9,-0.28 -1.53,0.28 -0.28,0.06 -1.8,-0.45 -1.43,0.28 -2.35,0 -0.8,-0.28 -0.2,0 -1,-0.34 -0.34,-0.08 -0.53,-0.38 0.1,-0.2 0,-0.24 0.1,-0.37 0,-0.1 0.05,-0.06 0,-0.1 -0.06,-0.46 -0.1,-0.18 0,-0.25 -0.1,-0.2 0.2,-0.42 0.06,-0.2 -0.16,0 -0.1,-0.08 0.2,-0.3 -0.47,-0.42 -0.28,-0.44 -0.26,0.54 -0.82,0.34 -0.53,0 -0.9,-0.62 -0.1,-0.97 -0.54,-0.2 -0.47,-0.18 0.46,0.75 0.1,0.15 -0.19,0 -0.17,-0.28 -0.64,-0.1 -0.1,0 -0.27,0.1 -0.08,-0.34 -0.9,-0.82 -0.1,-0.1 -0.43,-0.36 -0.05,0 -0.28,0.56 0.72,0.25 0.18,0.37 -0.72,0.34 -0.37,0.57 -0.55,0.35 -0.28,0.9 1.53,1.35 0,0.28 0.57,0.53 0.97,-0.08 1.1,1.2 -0.3,0.52 -0.9,0 -0.2,-0.1 -1.24,0 -0.18,0.9 0,0.2 -0.63,0.44 -0.35,-0.38 -0.47,0.9 0.1,1.3 c 1.3,0.6 0.57,-0.03 1.62,0.86 l 0.1,0 0.8,0.1 0.2,0 0.18,0.37 0,0.25 -0.13,0 0,0.9 0.13,0.2 -0.47,0.43 -0.33,0.92 0.25,0.47 0.72,0.43 0.1,0.1 -0.2,0.6 0.82,0.73 -0.25,0.82 0,0.1 0.07,0.43 0.18,1.44 0.1,0.1 -0.1,0.37 0.3,0.73 0.08,0.25 0.25,0.72 0,0.25 -0.03,0 -0.03,0.03 -0.03,0.03 -0.17,0.26 -0.3,0.47 -0.07,0.03 -0.03,0 c -0.02,0 -0.03,0.02 -0.04,0.03 -0.02,0 -0.03,0 -0.04,0.03 l 0,0.28 0.03,0 0,0.04 0.34,0.25 0.1,0.1 0.05,0.08 -0.07,0.12 -0.3,0.6 -0.26,-0.4 -0.03,0 0,-0.04 -0.03,0 -0.02,0 -0.03,0 c -0.02,0 -0.03,0.02 -0.04,0.03 l -0.02,0.02 0,0.03 -0.28,0.4 -0.34,-0.27 0.1,-0.66 0.18,-0.88 0.1,-0.37 0,-0.06 -0.04,-0.02 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.03,0 -0.03,0 -0.02,0.04 -0.03,0 -0.22,0.06 0.03,-0.35 0,-0.07 -0.03,-0.03 -0.03,0 -0.13,0 -0.03,0 -0.03,0.03 -0.27,0.47 -0.03,0.03 0,0.72 -0.06,0.9 0,0.26 -0.06,0.38 0,0.1 -0.1,0.15 0.06,-0.22 c 0.02,0 0.03,0 0.04,-0.02 l -0.04,-0.03 -0.1,-0.25 -0.08,-0.56 0,-0.03 0.03,0 0,0 -0.04,-0.04 -0.07,-0.25 -0.04,-0.04 -0.03,-0.03 -0.03,0 -0.03,0 -0.03,0 -0.03,0.03 0,0.03 -0.02,0 0,0.03 0.06,0.34 0,0.03 -0.03,0.03 c 0,0 0,0.02 -0.02,0.03 l -0.1,0.57 -0.06,-0.16 -0.03,-0.03 -0.04,0 -0.25,-0.1 -0.02,0 -0.03,0 -0.03,0 c -0.02,0 -0.02,0.02 -0.03,0.04 l -0.45,0.12 c -0.1,-0.3 -0.2,-0.55 -0.2,-0.72 0.02,-0.3 0.13,-0.46 0.2,-0.65 0.07,-0.2 0.12,-0.44 -0.07,-0.72 0,0 -0.05,0 -0.06,-0.02 l -0.28,-0.3 c -0.2,-0.23 -0.4,-0.47 -0.9,-0.9 l -0.04,0 -0.03,0 -0.03,0 -0.03,0 c 0,0.02 0,0.03 -0.02,0.04 l 0,0.13 0.03,0 0.9,0.9 -0.48,1.07 -0.32,0.45 c 0,0.02 -0.04,0.04 -0.06,0.06 -0.33,0.35 -0.63,0.6 -0.97,0.76 -0.17,0.1 -0.34,0.16 -0.53,0.22 l -0.28,0.06 -0.06,0.04 c -0.5,0.13 -1.1,0.25 -1.84,0.43 l -0.04,0.04 -0.9,0.9 c 0,0.02 -0.02,0.03 -0.03,0.04 l -0.45,0.9 c 0,0.02 -0.02,0.03 -0.03,0.04 l 0.03,0.03 0.25,0.84 0,0.06 -0.1,0.84 0,0.03 c 0.02,0 0.03,0.02 0.04,0.03 l 0.25,0.38 0.02,0 0,0.03 0.12,0.1 -0.12,0.1 -0.9,0.6 0,0.04 -0.04,0 0,0.04 -0.2,0.9 0,0.14 -0.8,0.34 -0.03,0 -0.03,0.03 -0.5,0.84 -0.97,-0.6 -0.03,0 -0.03,-0.03 -0.04,0 c -0.02,0 -0.02,0.02 -0.03,0.03 -0.02,0 -0.02,0.02 -0.03,0.03 l 0,0.08 c 0,0.02 0,0.03 0.03,0.04 l 0.56,0.56 -0.64,0.56 -0.43,0.16 -0.9,0.25 -0.92,0.27 -0.5,0.12 -0.55,-0.73 0,-0.03 -0.03,0 -0.07,0 -0.03,0 -0.9,0.72 c -0.02,0 -0.03,0.02 -0.04,0.03 l -0.42,0.96 -0.03,0.03 c 0,0 -0.02,0 -0.03,0.02 l 0,0.04 0.03,0.03 c 0,0 0.02,0 0.03,0.02 l 0.03,0.03 0.05,0 0.03,-0.03 0.03,0 -0.7,0.84 c -1.15,1.1 -2.06,2.4 -3.14,3.7 l -0.9,0.86 -0.7,0.57 0,-0.04 -0.9,0.46 -0.53,0.35 -0.03,0.03 -0.87,0.8 -0.03,0 -0.8,0.9 -0.02,0.02 -0.15,0.06 c -0.02,0 -0.02,0.02 -0.03,0.03 l 0,0.14 -1.75,1.18 -0.9,0.44 0,0.03 -0.67,0.37 -0.02,0 -0.25,0.16 -0.8,0.9 -0.03,0.03 0,0.09 0.34,0.84 -0.33,0.88 0,0.16 -0.7,0.4 -0.86,0.48 -0.18,0.1 0,-0.03 -0.53,0.2 -1.3,-0.1 -0.9,0 c 0,0 -0.02,0 -0.03,0.02 l -0.02,0.03 -0.53,0.87 0,0.09 -0.28,0.9 0,0.03 -0.47,0.78 -0.4,-0.7 -0.1,-0.35 -0.03,-0.03 -0.04,-0.03 -0.03,0 -0.03,0 -0.03,0 c 0,0 -0.02,0 -0.03,0.02 l -0.3,0.44 -0.38,0.18 -0.6,0.07 -0.02,0 -1,0.48 c 0,0 -0.02,0 -0.03,0.03 l -0.63,0.9 -0.44,0.92 -0.03,0 0,0.03 -0.18,0.88 -0.17,0.9 0,0.03 0.06,0.9 c 0,0.02 0,0.03 0.02,0.04 l 0.35,0.88 0,0.03 -0.1,0.3 0,0.05 0.03,0 0.16,0.38 -0.1,0.84 -0.1,0.9 0,0.04 0.3,0.88 0,0.03 0.18,0.9 0.2,0.74 -0.2,-0.1 -0.3,-0.28 0,-0.03 -0.04,0 -0.03,0 -0.04,0 -0.03,0.03 -0.03,0.03 -0.18,0.53 0,0.06 0.02,0.02 0.03,0.03 0.15,0 0.57,0.2 0.03,0 0.28,0.14 c -0.3,1.8 -0.32,2.74 -0.5,3.5 -0.15,0.6 -0.44,1.2 -1.1,2.15 l -0.46,0.47 -0.04,0.22 -0.06,0.1 0,0.05 c 0,0 0,0.1 -0.03,0.2 -0.03,0.12 -0.1,0.26 -0.13,0.4 -0.08,0.25 -0.18,0.5 -0.22,0.6 l 0,0.14 -0.06,0.15 c -0.03,0 -0.04,0 -0.05,0.02 l 0,1 -0.4,0.9 c 0,0.02 -0.02,0.03 -0.03,0.04 l 0,0.09 0.03,0.03 0.78,0.67 0,2.38 0.1,0.94 -0.85,0.4 -0.7,-0.1 -0.02,0 -0.9,0.28 -0.04,0 0,0.03 c 0,0.02 -0.02,0.03 -0.03,0.04 l -0.35,0.9 0,0.45 -0.72,0.85 -0.62,1 -0.03,0.03 -0.1,0.9 0,0.04 c 0.02,0 0.03,0.02 0.04,0.03 l 0,0.03 0.04,0 0.85,0.53 -0.26,0 -0.9,0.1 -0.04,0 -0.88,0.28 c -0.9,0.12 -1.58,0.57 -2.03,1.2 -0.16,0.2 -0.26,0.43 -0.35,0.68 l -0.13,0.1 0,0.2 c -0.1,0.36 -0.14,0.74 -0.15,1.13 l -0.88,0.8 -0.04,0 -0.87,0.54 -0.7,0.34 -0.22,0.1 -0.78,-0.17 -0.06,-0.03 -0.85,-0.6 c -0.26,-0.22 -0.87,-0.87 -1.44,-1.52 -0.3,-0.33 -0.56,-0.66 -0.8,-0.94 -0.2,-0.28 -0.4,-0.53 -0.45,-0.66 l 0,-0.03 -0.03,0 c 0,-0.02 0,-0.03 -0.03,-0.04 l -0.03,0 c -0.46,-1.24 -0.97,-2.5 -1.05,-3.78 l 0.03,0.03 0.13,0.32 0,0.04 0.04,0 0,0.05 0.03,0.03 0.09,0 0.03,-0.03 c 0,0 0,-0.02 0.02,-0.03 l 0,-0.98 -0.03,0 0,-0.03 -0.45,-0.42 0,-0.23 -0.03,0 -0.03,-0.03 -0.19,0 0,-0.72 -0.03,-0.02 -0.53,-1 -0.43,-0.87 0,-0.03 -0.34,-0.87 -0.28,-0.9 -0.37,-0.88 0,-0.03 -0.15,-0.9 c 0,0 -0.02,0 -0.03,-0.02 l -0.78,-0.87 -0.03,-0.03 -0.06,-0.2 0,-0.19 -0.03,0 -0.7,-0.9 -0.26,-0.42 0,-0.13 c 0,0 0,-0.02 -0.03,-0.03 0,0 0,-0.02 -0.02,-0.03 l -0.13,0 -0.16,-0.16 0,-0.13 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.62,-0.87 0,-0.03 c -0.55,-0.98 -0.9,-1.68 -1.3,-2.72 l 0,-0.03 0.05,0 0,-0.12 -0.04,0 -0.06,-0.03 0,-0.02 -0.25,-0.87 0,0 -0.2,-0.88 -0.27,-0.9 -0.06,-0.88 0.06,-0.13 0,-0.13 -0.03,0 -0.06,-0.06 0,-0.02 -0.26,-0.85 -0.03,-0.03 -0.52,-0.87 0,-0.04 -0.22,-0.82 0.2,0.06 0.09,0 0,-0.03 c 0,0.02 0.02,0.02 0.03,0 l 0,-0.11 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.6,-1.03 -0.43,-0.9 -0.02,-0.04 -0.44,-0.45 -0.16,-0.28 0,-0.13 -0.03,-0.03 c 0,0 -0.02,0 -0.03,-0.02 l -0.25,-0.18 -0.7,-0.82 0,-0.03 -0.08,-0.87 0,-0.03 -0.48,-0.94 0.1,-0.12 0,-0.03 c 0,0 0,-0.02 0.02,-0.03 l -0.03,-0.03 0,-0.04 -0.65,-0.8 0.03,-0.05 0,-0.02 c 0.02,0 0.02,-0.02 0.03,-0.03 l 0,-0.03 c 0,0 0,-0.02 -0.02,-0.03 l 0,-0.04 c -0.45,-0.6 -0.7,-0.9 -0.87,-1.16 0,0 0,-0.05 -0.02,-0.06 -0.08,-0.12 -0.13,-0.23 -0.16,-0.3 l -0.06,-0.23 c -0.02,-0.14 -0.03,-0.33 -0.1,-0.68 -0.05,-0.3 -0.15,-0.73 -0.34,-1.3 l -0.1,-0.64 -0.12,-0.6 c -0.1,-1 -0.23,-1.98 -0.65,-2.96 l 0.03,0 0.06,-0.9 0,-0.04 -0.34,-0.9 -0.44,-0.88 -0.2,-0.9 -0.18,-0.85 0,-0.06 0.2,-0.95 0,-0.06 -0.04,0 -0.5,-0.85 0.06,-0.32 0,-0.03 0.63,-0.87 0.03,-0.03 0,-0.07 -0.1,-0.34 0,-0.04 -0.03,0 0,-0.03 -0.03,0 -0.03,0 -0.03,0 -0.28,0.06 c 0,0 -0.02,0 -0.03,0.02 l -0.22,0.22 -0.15,-0.7 0,-0.05 0.1,-0.54 0.12,0.06 0.44,0.16 0.04,0.03 0.22,0.16 c 0,0.02 0.02,0.03 0.03,0.04 l 0.05,0 0.03,-0.04 c 0,0 0.02,0 0.03,-0.03 l 0,-0.09 -0.02,-0.03 -0.15,-0.24 -0.03,-0.03 -0.57,-0.2 -0.18,-0.05 -0.1,-0.78 0.06,-0.07 0,-0.03 c 0.03,0 0.03,-0.02 0.04,-0.03 l 0,-0.03 c 0,0 0,-0.02 -0.03,-0.03 l 0,0 -0.36,-0.38 -0.3,-1.18 0.05,-0.6 c 0.08,-0.34 0.15,-0.73 0.18,-1.22 0.6,-0.94 0.82,-1.5 0.8,-2.1 0,-0.3 -0.07,-0.6 -0.18,-0.96 l -0.34,-1.16 0,-0.03 -0.03,0 0,-0.03 -0.08,0 -0.03,0 -0.03,0 -0.12,0.06 -0.07,-0.06 c 0,0 0,-0.02 -0.02,-0.03 l 0,-0.04 -0.6,-0.88 0.35,-0.8 1.22,-0.7 0.25,-0.06 0,-0.03 0.03,0 0.03,-0.07 0.04,-0.03 0.03,0 0.03,-0.03 0.47,-0.22 0.03,0 0,-0.03 0.03,-0.04 0,-0.15 c -0.02,0 -0.03,-0.03 -0.04,-0.03 0,-0.02 -0.02,-0.03 -0.03,-0.03 l -0.03,0 -0.04,0 -0.03,0 -0.46,0.34 -0.1,0 0,0.04 -0.03,0 -0.87,0.15 -0.04,0 -0.9,-0.1 -0.13,-0.5 0.78,-0.84 0,-0.03 c 0.02,0 0.03,-0.02 0.04,-0.04 l 0,-0.04 -0.04,-0.03 c 0,0 0,-0.02 -0.03,-0.03 l -0.03,-0.03 -0.03,0 c -0.02,0 -0.03,0.02 -0.04,0.03 l -0.03,0 -0.03,0.03 -0.7,0.35 0,-0.8 0.82,-0.3 0.03,0 0.88,-0.2 c 0,0.02 0.02,0.02 0.03,0 l 0,-0.02 0.03,0 0,-0.37 -0.04,-0.04 -0.03,-0.03 -0.03,0 -0.97,0.1 -0.91,0 -0.5,-0.5 0,-0.04 -0.07,0 -0.03,0 -1,0.43 0,0.03 -0.03,0 0,0.03 c 0,0 -0.02,0 -0.03,0.02 l 0.03,0.03 0,0.03 c 0,0.02 0.02,0.03 0.03,0.03 l 0.16,0.08 0.02,0.03 0.37,0.76 -0.82,0.25 -0.03,0 c 0,0.02 -0.02,0.03 -0.03,0.04 l -0.53,0.9 c -0.03,0 -0.03,0.02 -0.04,0.04 l 0,0.03 c 0,0.02 0.02,0.03 0.03,0.04 0,0 0,0.02 0.02,0.03 l 0.87,0.34 0.3,0.83 -0.5,0.87 -0.18,0.34 0,0.04 -0.7,0.84 -0.11,0 c -1.82,0.7 -3.44,2.1 -5.4,1.97 0,-0.02 -0.02,0 -0.03,0 -0.46,-0.2 -0.9,-0.43 -1.28,-0.67 -1.2,-0.72 -2.13,-1.64 -2.97,-2.9 l -0.45,-0.4 -0.03,-0.04 c 0,-0.03 -0.02,-0.03 -0.03,-0.04 l -0.04,0 -0.38,-0.35 c 0,0 -0.02,0 -0.03,-0.02 l -0.12,0 -0.85,-0.87 -0.87,-0.8 -0.8,-0.88 -0.32,-0.84 0.38,-0.38 0.7,0.78 0,0.03 c 0,0.02 0,0.02 0.02,0 0,0.03 0.02,0.04 0.03,0.04 0.02,0 0.03,0 0.04,-0.03 l 0.87,-0.24 0.04,0 0.88,-0.1 0.03,0 0.9,-0.37 0.88,-0.63 0.9,-0.16 0,-0.02 0.04,0 0.03,-0.03 0.53,-0.97 0,-0.03 0.47,-0.5 0.34,-0.37 0.07,-0.1 0.04,0 0,-0.09 -0.16,-0.45 -0.03,-0.12 0,-0.1 -0.03,-0.03 -0.07,0 -0.03,0 c -0.02,0 -0.03,0.02 -0.04,0.03 -0.02,0 -0.03,0.02 -0.04,0.03 l -0.3,0.82 c -1.55,-0.15 -2.17,0.27 -2.73,0.56 -0.28,0.15 -0.54,0.27 -0.94,0.28 -0.4,0 -0.95,-0.1 -1.72,-0.37 l -0.03,0 c -0.9,-0.56 -1.67,-0.94 -2.3,-1.44 l -0.24,-0.2 -1.05,-1.98 0.85,-0.6 0.75,-0.52 0.03,-0.04 0.03,0 0,-0.03 0.04,0 0,-0.06 -0.03,-0.03 0,-0.07 -0.02,0 -0.03,0 -0.06,0 -0.6,0.07 c 0,0 0,0.02 -0.02,0.03 l -0.9,0.53 -0.88,0.63 -0.16,-0.75 0,-0.02 -0.03,0 0.64,-0.85 0.75,-0.1 0.96,0 0.1,-1.68 1.62,0.1 0.62,0.15 0.9,-0.16 0.92,0.16 0.34,0.38 1.44,0.1 0.28,-0.2 0.25,-0.53 0.8,-0.2 1.4,-0.36 0.24,0.9 2,-0.82 -0.38,-0.44 0.43,-0.9 c -0.8,-2.4 -2,-2.82 -2.06,-5.03 l -0.9,0.1 -0.92,-0.28 0,-0.1 -0.68,-1.24 0.25,-0.9 0.1,-1.07 -0.82,-0.9 -0.9,0 -1.45,-1 0.1,-1 0.28,-0.87 0.62,-0.66 1.35,-1.34 0.37,-0.9 0.53,-0.73 0.9,-0.72 0.98,0.2 0.2,0.27 0.36,0.9 0.53,0.26 1.9,-0.7 1.16,-0.1 0.9,-0.1 0.9,-0.34 0.27,-0.9 0.37,-0.54 0.9,-0.9 0.26,-0.9 1.2,-1.26 1.77,-0.9 0.9,-1.26 0.53,-1 0.47,-1.25 0.25,-0.9 0.72,-0.44 1.8,-0.8 0.17,-0.2 -0.06,-0.62 -0.1,-0.1 -0.37,-0.18 c 1.8,-1.3 1.6,-2.56 3.26,-3.25 l 0,-0.16 0.28,-0.1 0.16,0.1 0.18,-0.3 -0.7,-0.27 0.27,-1.25 0.15,-0.2 -0.15,-0.86 0,-0.1 -0.38,-0.56 0.72,-0.87 0.9,-0.67 0.62,-0.25 1.53,-0.53 0,-0.8 -1.53,-0.73 -0.62,-0.1 -0.9,-0.37 0,-0.1 -0.63,-0.9 -0.9,-0.34 0.08,-0.1 -0.18,-0.9 -0.88,-0.52 -0.38,-0.9 0.18,0 0.44,-0.92 -0.8,-0.96 -0.07,-0.3 0,-0.08 0.43,-0.62 0.9,-0.82 -0.9,-0.1 -0.8,-0.43 0.43,-0.72 -0.88,-0.53 0.07,-0.47 0.56,-0.9 0.06,-0.35 0.9,-0.1 0.9,-0.43 1.64,0.44 1.34,0.27 1.35,0.16 1.8,0.56 0.9,-0.4 0.92,-0.27 0.24,0.1 0.8,-0.44 0.92,-0.4 0.9,0.1 0.63,0.48 0.62,-0.72 0,-0.1 0.43,-1 -0.06,-0.53 0.8,-0.47 2.88,-1.6"
2347+ id="path2735-4-6-5"
2348+ inkscape:connector-curvature="0"
2349+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccscscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2350+ overflow="visible" />
2351+ <path
2352+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2353+ d="m 1111.24,488.57 11.7,0 0,21.66 -11.7,0 z"
2354+ id="path41529-5"
2355+ inkscape:connector-curvature="0"
2356+ sodipodi:nodetypes="ccccc"
2357+ overflow="visible" />
2358+ <path
2359+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2360+ d="m 1206.27,482.2 11.63,0 0,33.78 -11.63,0 z"
2361+ id="path41527-6"
2362+ inkscape:connector-curvature="0"
2363+ sodipodi:nodetypes="ccccc"
2364+ overflow="visible" />
2365+ <path
2366+ d="m 1147.55,503.57 0.35,0.44 -0.6,-0.34 -0.03,0 -0.03,-0.03 -0.22,0 0.53,-0.06 z"
2367+ id="path42338-1"
2368+ inkscape:connector-curvature="0"
2369+ overflow="visible"
2370+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2371+ <path
2372+ d="m 1147.12,503.85 0.12,0 0.28,0.16 z"
2373+ id="path42334-4"
2374+ inkscape:connector-curvature="0"
2375+ overflow="visible"
2376+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2377+ <path
2378+ d="m 1144.3,504.26 -1.1,0.65 -0.65,0.6 0.13,-0.2 c 0.37,-0.53 0.9,-0.9 1.62,-1.04 z"
2379+ id="path42332-2"
2380+ inkscape:connector-curvature="0"
2381+ overflow="visible"
2382+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2383+ <path
2384+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2385+ d="m 1155.5,402.42 c 0.16,0.2 0.28,0.56 0.4,0.82 l 0.78,-0.1 0.38,-0.44 0.25,-1.18 0.92,-0.2 0.9,0.3 1,0.08 0.97,1.35 0.9,0.47 1.87,1.53 2,0.53 0.2,0.53 0.27,0 0.44,0.73 0.9,0.9 0.88,-0.53 1,0.1 0.62,0.87 0.2,0.72 1.87,1.18 0.9,0.72 0.72,-0.2 1,-0.08 -0.44,1 0,0.34 0.88,0.28 1,0 1,-0.28 0.92,1.28 0.15,0.35 0,0.08 0.44,0.53 0.2,-0.96 1,0.44 0.9,0.28 0.1,-0.1 1.06,-0.62 c 2.63,1.94 1.48,1 4.3,1.35 l 0.92,-0.45 1.2,0.15 -0.77,4 0.7,1.54 -0.67,2 -3.47,-0.15 -0.73,-0.1 -0.24,-0.52 -1.37,0.75 -1.5,-0.78 -1.3,-0.26 -1.36,0.1 -0.96,-1.28 -1.44,0.5 -0.8,-0.58 -1.27,-0.62 -1.2,-0.25 -0.34,-1.54 -1.56,-0.7 -1.35,0.2 -0.36,0.66 -1.26,-0.72 -1.22,0.7 -0.64,-0.53 -2.23,-0.3 -0.38,-1.17 -2.07,-0.7 -0.56,-0.46 -0.83,0.35 -3.16,-2.32 -0.64,-0.22 -2.67,-1.75 0.02,0.76 -2.02,-1.27 0.2,-1.14 0.8,-1.3 -0.3,-0.48 0.73,-1.07 -0.05,-1.06 2.75,-2.08 z"
2386+ id="path2735-7-0-1"
2387+ inkscape:connector-curvature="0"
2388+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2389+ overflow="visible" />
2390+ <path
2391+ inkscape:connector-curvature="0"
2392+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2393+ d="m 1197.1,411.95 -1.8,0.82 -0.36,0.37 -0.1,0.1 -0.8,1.06 -0.98,1.25 -0.8,0.9 0,0.2 -0.1,0.18 -0.1,0.2 -0.72,0.77 0.53,0.9 0.57,0.16 0.15,0.03 0.9,0.52 0.62,-0.15 1.07,0.34 0.17,0.1 0.9,0.35 0.1,-0.06 0.2,-0.1 1,0 0.87,-0.63 0.9,0.06 1.25,0.37 0.9,-0.1 0.1,0 0.52,-0.18 0.9,0.28 0.92,-0.53 1.06,0.35 0.8,0 0.92,-0.25 0.2,-0.28 -0.48,-1.26 0.37,-0.82 -0.9,-0.62 -1.06,-0.2 -0.28,-0.46 0.2,-0.87 0.08,-0.9 -0.9,-0.3 -0.2,0 -1,-0.43 -0.87,0.53 -0.1,0 -0.27,-0.28 -1.8,-0.16 -0.45,0 -0.53,-0.1 -0.2,-0.9 -0.9,-0.3 -0.53,0 z"
2394+ id="path81144-4-5"
2395+ overflow="visible" />
2396+ <path
2397+ d="m 1189.55,420.4 -0.28,0.58 0.72,0.25 0.18,0.37 -0.72,0.34 -0.37,0.57 -0.55,0.35 -0.28,0.9 1.53,1.35 0,0.28 0.57,0.53 0.97,-0.08 1.1,1.2 -0.3,0.52 -0.9,0 -0.2,-0.1 -1.24,0 -0.18,0.9 0,0.2 -0.63,0.44 -0.35,-0.38 -0.47,0.9 0.1,1.3 c 1.3,0.6 0.57,-0.03 1.62,0.86 l 0.1,0 0.8,0.1 0.2,0 0.18,0.37 0,0.25 -0.12,0 0,0.9 0.12,0.2 -0.47,0.43 -0.33,0.92 0.25,0.47 0.72,0.43 0.1,0.1 -0.2,0.6 0.82,0.73 -0.25,0.82 0,0.1 0.07,0.43 0.18,1.44 0.1,0.1 -0.1,0.37 0.3,0.73 0.08,0.25 0.25,0.72 0,0.25 -0.03,0 -0.03,0.03 -0.03,0.03 -0.17,0.26 -0.3,0.47 -0.07,0.03 -0.03,0 -0.03,0.03 c -0.02,0 -0.03,0 -0.03,0.03 l 0,0.28 0.03,0 0,0.04 0.34,0.25 0.1,0.1 0.06,0.08 -0.07,0.12 -0.3,0.6 -0.26,-0.4 -0.03,0 0,-0.04 -0.03,0 -0.02,0 -0.03,0 -0.03,0.03 c 0,0 -0.02,0 -0.03,0.02 l 0,0.03 -0.3,0.4 -0.34,-0.27 0.1,-0.66 0.18,-0.88 0.1,-0.37 0,-0.06 -0.03,-0.02 c 0,-0.02 0,-0.03 -0.02,-0.04 l -0.03,0 -0.03,0 c -0.02,0 -0.03,0.02 -0.03,0.04 l -0.05,0 -0.2,0.06 0.02,-0.35 0,-0.07 -0.03,-0.03 -0.04,0 -0.13,0 -0.02,0 -0.03,0.03 -0.28,0.47 -0.03,0.03 0,0.72 -0.05,0.9 0,0.26 -0.07,0.38 0,0.1 -0.1,0.15 0.07,-0.22 c 0,0 0.03,0 0.03,-0.02 l -0.03,-0.03 -0.1,-0.25 -0.1,-0.56 0,-0.09 0.05,0 0,0 c 0,-0.02 -0.02,-0.03 -0.04,-0.04 l -0.06,-0.25 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.03,-0.03 -0.03,0 -0.02,0 -0.03,0 -0.03,0.03 0,0.03 -0.03,0 0,0.03 0.05,0.34 0,0.03 -0.03,0.03 -0.03,0.03 -0.1,0.57 -0.07,-0.16 -0.03,-0.03 -0.03,0 -0.25,-0.1 -0.07,0 -0.03,0 -0.03,0.04 -0.44,0.12 c -0.1,-0.3 -0.2,-0.55 -0.2,-0.72 0.02,-0.3 0.13,-0.46 0.2,-0.65 0.07,-0.2 0.12,-0.44 -0.06,-0.72 0,0 -0.06,0 -0.06,-0.02 l -0.3,-0.3 c -0.2,-0.23 -0.38,-0.47 -0.9,-0.9 l -0.02,0 -0.07,0 -0.03,0 -0.03,0.04 0,0.13 0.03,0 0.87,0.9 -0.47,1.07 -0.3,0.45 -0.07,0.06 c -0.33,0.35 -0.64,0.6 -0.97,0.76 -0.18,0.1 -0.35,0.16 -0.54,0.22 l -0.28,0.06 -0.07,0.04 c -0.5,0.13 -1.08,0.25 -1.83,0.43 0,0.02 -0.02,0.03 -0.03,0.04 l -0.9,0.9 -0.04,0.04 -0.43,0.9 -0.03,0.04 c 0,0 0,0.02 0.03,0.03 l 0.25,0.84 0,0.05 -0.1,0.85 0,0.03 0.03,0.03 0.25,0.38 0.03,0 0,0.03 0.13,0.1 -0.13,0.08 -0.9,0.63 0,0.03 -0.03,0 0,0.04 -0.2,0.9 0,0.14 -0.8,0.34 -0.04,0 -0.03,0.03 -0.5,0.84 -0.96,-0.6 -0.03,0 -0.03,-0.03 -0.03,0 -0.03,0.03 -0.03,0.03 0,0.08 0.04,0.03 0.57,0.57 -0.62,0.56 -0.44,0.15 -0.9,0.25 -0.9,0.3 -0.5,0.1 -0.57,-0.7 0,-0.04 -0.03,0 -0.03,0 -0.02,0 -0.04,0 -0.9,0.72 c -0.02,0 -0.02,0.02 -0.03,0.03 l -0.4,0.96 -0.03,0.03 c 0,0 -0.02,0 -0.03,0.02 l 0,0.03 c 0,0.02 0.02,0.03 0.03,0.03 0,0.02 0.02,0.03 0.03,0.04 l 0.03,0.03 0.03,0 c 0.02,0 0.03,-0.02 0.03,-0.03 l 0.02,0 -0.7,0.84 c -1.16,1.1 -2.07,2.4 -3.14,3.7 l -0.9,0.86 -0.7,0.56 0,-0.03 -0.9,0.47 -0.53,0.35 c 0,0 -0.02,0 -0.03,0.03 l -0.88,0.8 -0.03,0 -0.77,0.88 -0.03,0.04 -0.16,0.06 -0.02,0.03 0,0.13 -1.75,1.2 -0.9,0.43 0,0.03 -0.67,0.37 0,389.8 69.44,0 0,-249.18 -5.9,0 0,-6.37 5.9,0 0,-57.26 -4,-6 -3.96,-2.43 0.53,-0.87 5.98,2.8 1.8,-3.1 -2.37,-2.16 -2.15,-1.54 -3.17,-2.88 -2.03,-2.57 -2.22,-3.8 1.2,-1.1 4.6,3.26 3.05,-0.1 1.18,0.2 1.4,-0.4 0,-18.35 0.16,-0.1 2.07,-1.43 1,-0.1 0.83,-1.24 0.97,-0.94 -0.16,-0.85 0,-0.03 0.16,-0.88 0,-0.03 -0.16,-0.6 -0.1,-0.95 0.5,-0.6 0.04,0 0.62,-0.9 0,-0.03 0,-0.03 0.13,-0.67 0.06,-0.3 0,-0.99 -0.07,-0.56 0.3,-1.1 c 0.02,0 0.03,0 0.04,-0.03 l 0,-0.04 -0.03,-0.03 -0.03,-0.03 -0.02,0 -0.03,-0.03 c -0.02,0 -0.03,0.02 -0.03,0.03 l -0.07,0.03 -0.65,0.4 0.06,-0.7 0,-0.92 0.34,-0.46 0,-0.03 0,-0.02 0,-0.03 -0.18,-0.4 0.1,-0.16 0,-0.11 -0.04,0 -0.4,-0.44 0.24,-0.88 0,-0.03 0.2,-0.25 0,-0.11 -0.04,0 c 0,-0.02 -0.02,-0.03 -0.03,-0.03 l -0.15,0 -0.22,-0.82 -0.1,-0.9 0,-0.03 -0.44,-0.97 -0.28,-0.72 0,0.01 -0.53,-0.88 -0.28,-0.87 0,-0.04 -0.2,-0.88 0,-0.03 -0.08,-0.2 -0.03,-0.03 -0.03,0 -0.03,0 -0.03,0 -0.03,0.03 -0.1,0.2 0,0.05 0.08,0.78 0,0.03 -0.06,0.47 -0.2,-0.47 0,-0.06 -0.08,-0.87 -0.2,-0.9 -0.15,-0.54 -0.3,-0.86 0,-0.06 0.3,-0.84 0,-0.03 -0.04,-0.04 c 0,0 0,-0.02 -0.03,-0.03 l -0.93,-0.64 0.1,-0.5 0,-0.03 -0.1,-0.3 -0.2,-0.83 0,-0.03 0.1,-0.88 0,-0.04 -0.1,-0.9 -0.1,-0.44 -0.17,-0.9 0,-0.04 -0.35,-0.87 0,-0.02 0.1,-0.47 0,-0.59 0.34,-1.02 0.06,0 0,-0.03 0.03,0 0,-0.13 c 0,-0.02 0,-0.03 -0.02,-0.04 l -0.03,0 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.28,0 -0.06,0.03 -0.35,0.15 -0.15,0 -0.88,-0.3 -0.03,-0.04 -0.4,-0.84 0,-0.03 -0.25,-0.65 0,-0.9 -0.03,-0.07 -0.14,-0.12 -1.28,-1.34 -0.03,-0.06 -0.03,0 c 0,-0.02 -0.02,-0.03 -0.03,-0.03 l -0.04,0 -0.03,0 0,0.03 -0.03,0 0,0.03 -0.03,0 0,0.07 0.18,0.66 0,0.06 -0.25,0.74 -0.03,0.03 0,0.03 0.03,0 0,0.03 0.16,0.22 -0.34,0.88 0,0.56 -1.63,1.2 -0.73,-0.65 -0.06,-0.06 0.07,-0.67 0,-0.09 -0.03,0 -0.03,-0.03 -0.02,0 -0.03,0 -0.2,0.1 c 0,0 0,0.02 -0.02,0.03 l -0.06,0.06 -0.2,0.1 -0.02,0.02 0,0.09 0.1,0.2 0.18,0.53 0.07,0.22 0,0.06 -0.22,0.76 -0.85,-0.1 -0.03,0 c 0,0.02 -0.02,0.03 -0.03,0.04 l -0.03,0 -0.5,0.63 -0.03,0.03 -0.65,0.12 -0.03,0 -0.03,0.03 -0.04,0.04 0,0.04 -0.15,0.75 -0.15,0.43 -0.03,0.03 -0.8,0.84 -0.67,0 0.3,-0.85 0,-1.01 -0.02,0 0,-0.04 -0.03,0 -0.03,0 -0.03,0 -0.03,0 0,0.03 -0.18,0.15 -0.03,0.03 0,0.07 -0.26,0.47 -0.5,0.6 0.03,-0.37 0.28,-0.72 0,-0.02 0,-0.03 0,-0.03 0,-0.03 c 0,-0.02 -0.02,-0.04 -0.03,-0.04 l -0.1,0 -0.2,-0.1 -0.02,0 -0.02,0 -0.03,0 -0.03,0.03 c 0,0 -0.02,0 -0.03,0.03 l -0.26,0.8 -0.34,0.82 -0.44,-0.22 0.25,-0.8 0,-0.04 0,-0.04 -0.02,0 0,-0.03 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.07,-0.04 0.44,-0.78 0.03,-0.03 0,-0.1 c 0,-0.02 -0.02,-0.03 -0.03,-0.03 l -0.03,0 -0.04,-0.04 c 0,0 -0.02,0 -0.03,0.03 l -0.06,0.03 -0.6,0.3 0,0.04 -0.03,0 -0.1,0.1 c 0,-0.02 0,-0.03 -0.02,-0.04 l -0.07,0 -0.03,0 -0.04,0 -0.57,0.47 0.2,-0.62 0.1,-0.52 0.17,-0.9 0,-0.07 -0.03,-0.02 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.18,0 -0.03,-0.06 -0.03,0 c -0.02,0 -0.03,-0.02 -0.04,-0.03 l -0.03,0 -0.03,0 -0.03,0.03 -0.03,0.03 0,0.51 -0.5,0.64 -0.22,0.22 -0.5,0.84 -0.75,0.16 0.1,-0.75 0.1,-0.87 0,-0.03 0.33,-0.97 0.38,-0.9 0,-0.04 c 0.03,-1.4 0.57,-2.46 0.8,-3.85 l 0,-0.06 c -0.5,-0.83 -0.58,-1.45 -0.65,-2.07 -0.05,-0.46 -0.12,-0.95 -0.37,-1.5 -0.1,-0.2 -0.18,-0.36 -0.3,-0.56 l -0.05,0 c -0.13,-0.74 -0.3,-1.22 -0.5,-1.54 -0.17,-0.3 -0.35,-0.47 -0.5,-0.62 -0.12,-0.14 -0.2,-0.28 -0.24,-0.55 -0.02,-0.27 0.03,-0.68 0.2,-1.38 l 0,-0.09 c -0.02,0 -0.03,0 -0.04,-0.02 l -0.1,-0.1 c 0,0 0,-0.02 -0.02,-0.03 l -0.03,0 -0.03,0 c -0.02,0 -0.03,0.02 -0.04,0.03 l -0.12,-0.06 0,-0.1 -0.03,-0.03 -0.6,-0.57 0,-0.03 -0.06,-0.87 -0.04,0 0,-0.03 c 0,-0.02 -0.02,-0.03 -0.03,-0.03 l -0.03,0 -0.03,0 -0.47,0.06 -0.5,-0.85 -0.03,-0.03 -0.87,-0.62 -0.03,0 -0.07,-0.3 c 0,-0.03 -0.02,-0.04 -0.03,-0.05 l -0.03,-0.03 -0.15,-0.1 -0.04,0 -0.03,0 -0.04,0 0,0.04 -0.04,0 -0.56,0.15 -0.03,0 -0.03,0 0,0.03 -0.03,0 -0.12,0.22 -0.12,0 0.06,-0.82 c 0,0 0.02,0 0.03,-0.03 l 0,-0.06 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.03,-0.03 -0.04,0 -0.03,0 -0.4,0.06 0.43,-0.73 0,-0.11 -0.03,0 0,-0.03 -0.03,0 -0.06,0 -0.16,-0.4 0,-0.04 0.1,-0.25 0,-0.09 -0.04,0 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.02,0 -0.03,0 -0.03,0.04 c 0,0 -0.02,0 -0.03,0.03 l -0.1,0.28 -0.32,0.94 -0.25,0.45 -0.28,-0.3 0.22,-0.3 0,-0.11 -0.2,-0.35 0,-0.04 -0.6,-0.84 0,-0.03 -0.04,-0.05 -0.03,-0.03 -0.03,0 c -0.02,0 -0.03,0.02 -0.04,0.03 l -0.03,0 -0.03,0.04 0,0.05 0.1,0.5 0,0.03 -0.07,0.56 -0.37,-0.62 -0.03,0 -0.78,-0.88 -0.03,-0.03 -0.45,-0.86 0.03,0 -0.28,-0.85 0,-0.07 -0.03,-0.03 -0.03,-0.03 -0.03,0 -0.02,0 c -0.02,0 -0.03,0.02 -0.03,0.03 l -0.04,0 -0.24,-0.53 0,-0.2 0.2,-0.9 0.87,0.1 1.1,0.34 0,-0.15 -0.3,-0.9 0.1,-1.8 -0.1,-0.45 -0.15,-1.97 -0.53,-2.44 -0.2,-0.2 -0.17,-0.9 0.1,-0.9 -0.1,-0.16 -0.44,-1.35 0,-0.66 -0.47,0 -0.53,0.37 -0.56,-0.18 0.1,0.9 -0.54,0.45 -0.2,0.28 0,0.9 -0.43,0.9 -0.6,0.07 -0.4,-0.97 -0.6,0.44 -0.54,-1.88 -0.38,-0.9 0.38,-0.92 0.28,-0.8 0.34,-0.45 0.9,0 0.35,-0.56 0.2,0.18 1,0 0.15,-0.9 0.18,0 0.82,-0.88 0.43,-1.38 0,-0.34 0.58,0.2 0.43,-0.1 -0.24,-0.63 0,-0.2 -0.9,-0.52 -0.9,-0.28 -1.54,0.28 -0.28,0.06 -1.78,-0.45 -1.44,0.3 -2.34,0 -0.82,-0.3 -0.18,0 -1,-0.34 -0.35,-0.08 -0.53,-0.38 0.1,-0.2 0,-0.24 0.1,-0.37 0,-0.1 0.05,-0.06 0,-0.1 -0.06,-0.46 -0.1,-0.18 0,-0.25 -0.1,-0.18 0.2,-0.45 0.05,-0.2 -0.15,0 -0.1,-0.08 0.2,-0.28 -0.48,-0.45 -0.28,-0.44 -0.25,0.54 -0.82,0.35 -0.54,0 -0.9,-0.64 -0.1,-0.97 -0.53,-0.2 -0.46,-0.18 0.47,0.75 0.1,0.15 -0.27,0 -0.2,-0.28 -0.62,-0.1 -0.08,0 -0.28,0.1 -0.06,-0.34 -0.9,-0.8 -0.1,-0.1 -0.44,-0.38 -0.03,0 z m 16.72,61.8 11.63,0 0,33.78 -11.63,0 0,-33.8 z"
2398+ id="path80955-7"
2399+ inkscape:connector-curvature="0"
2400+ overflow="visible"
2401+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2402+ <path
2403+ d="m 1107.76,568.66 10.4,0 0,15.2 -10.4,0 z"
2404+ id="path42330-6-4"
2405+ inkscape:connector-curvature="0"
2406+ overflow="visible"
2407+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2408+ <path
2409+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2410+ d="m 1162.3,0.5 0,43.16 69.4,0 0,-43.16 z"
2411+ id="path82361-7"
2412+ inkscape:connector-curvature="0"
2413+ sodipodi:nodetypes="ccccc"
2414+ overflow="visible" />
2415+ <path
2416+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2417+ d="m 1107.8,260.02 -1.05,0 0.2,-0.86 0.86,-0.82 -0.86,-0.37 0.34,-0.9 0,-0.54 1,-0.44 0.28,-0.9 -0.37,-0.48 -0.1,-0.16 0.37,-0.9 -0.47,-0.9 0.9,-0.2 0.54,-0.43 -0.16,-1 0.97,0.18 1,-0.17 0.9,-0.72 0,-0.18 -0.52,-0.88 -0.9,-0.62 -1,-0.8 -0.2,-0.1 -0.44,-0.9 -0.9,0.17 -0.54,0.87 -0.38,-0.53 -0.72,-0.35 0.28,-0.9 0.54,-0.92 -0.25,0.1 -0.1,-0.63 -0.4,-0.62 -0.25,-0.38 0.1,-0.1 0,-0.15 -0.1,-0.56 0.56,-0.97 0.44,-1 0.43,-0.9 0.58,-1 0.9,-0.07 0.16,0.16 0.9,0.72 -0.28,0.9 0.13,1 0.86,0.25 0.28,0 0.9,-0.15 0.98,-0.1 0.9,0.44 1,0.2 1,0.08 0.97,0 0.9,-0.2 0,-0.33 0.9,-0.38 2.85,0 0,0.06 0.94,0 0.18,0.03 0.96,0 c 0.5,-0.3 0.96,-0.58 1.38,-0.86 l 0.7,-0.46 0.1,-0.1 c 0.17,-0.12 0.55,-0.4 0.73,-0.56 0.27,-0.22 0.5,-0.43 0.75,-0.66 l 0.56,-0.42 0.2,-0.3 0.08,-0.14 2.35,-2.43 -0.1,-0.9 1.34,-1.98 1.44,-0.82 0.9,0 0.9,-0.28 0.38,-1 0.07,-1.88 -0.16,-0.8 0.62,-0.92 -0.47,-0.62 0.46,-1 0.96,-0.72 -0.34,-0.87 0.44,0 0,-0.1 0.18,-0.9 0.35,0.08 0.36,0.1 0.63,0.1 0.8,-0.1 1.9,0.43 0.9,-0.27 0.9,0.2 0.36,0 0.88,-0.36 1,0.35 0.9,-0.35 0.9,0.1 0.26,0.15 0.47,1 0.9,-0.28 1.88,0.1 0.9,0.1 0.9,-0.64 1.9,-0.18 1,0.18 1,0.82 0.86,0.1 2,-0.2 0.98,0.63 0.9,0 0.63,-1 2.26,-1.6 0.9,-0.56 2.07,-0.26 1.47,1.06 0.88,0.47 1.1,-0.18 2.1,2.9 -0.83,3.14 3.64,0.56 5.77,-0.4 1.94,0.45 0.9,1.38 1.44,0.3 1.7,2.5 3.26,-0.18 1,1.82 -1.78,1 -1.93,2.32 0.06,1.9 0.5,1.14 3.62,1.08 1.96,0.03 0.35,2.07 -1.1,0.28 -1.87,2.14 -1.2,0.8 1.08,0.33 -0.14,0.85 -0.65,0.87 0.6,0.16 0.37,0.7 -1.12,0.58 0.38,1.1 1.93,0.97 1.93,2.72 -3.36,2.3 -1.33,1.83 1.35,2.56 -0.6,0.75 -0.14,1.24 -0.9,0.73 0.75,0.97 1.17,-0.77 1.15,0.58 0.74,-0.25 0.02,1.44 -1.07,0.28 1.38,1.42 -1.77,1.58 -0.5,1.6 0.76,0.07 0.68,0.7 -0.78,1.76 1.62,0.8 -1.13,0.7 0.53,0.64 -1.6,2.13 -2.02,0.73 -0.52,0.6 -0.72,-0.07 -0.84,1.53 1.1,0.3 -1.12,1.36 1.03,0.6 1.62,0.73 1.17,-1.44 -0.35,1.34 0.84,-0.68 0.88,0.25 -0.03,2.22 4.06,3.52 -1.4,-0.03 0.48,0.83 -1.42,0.47 1.17,2.35 -0.38,1.38 0.1,1.28 -2.23,1.2 -2.15,0.74 -1.1,0.15 -0.4,1 -2.4,0.38 0.14,-1.92 -2.93,0.4 -0.9,0.16 -1,0.66 c 1.4,2.84 -2.7,3.44 -4.6,3.7 l -0.8,2.05 0,0.2 -0.07,0.14 0.25,1.82 0,1 0.37,0.86 -0.62,1.28 -2.63,1.25 -0.9,0.43 -0.44,-0.88 -0.9,0.1 -0.9,-0.2 -0.92,0.2 -0.52,-0.1 -1.87,-0.37 -0.9,-0.53 -1,-0.47 -0.8,0.9 -0.17,1 -0.2,0.3 -0.33,0.8 -0.47,1.34 -0.9,1.78 -0.1,1 -0.25,0.9 -0.8,1.54 0,0.16 0.9,0.37 0.68,1 -0.15,0.44 0,0.2 -0.18,0.2 -1.78,-0.3 -0.9,0.35 -0.92,-0.78 -0.9,-0.2 -0.72,0.26 -2.78,0.9 -0.72,-0.1 -1.8,0.57 -1,0.1 -0.26,0.15 -0.2,0.1 0,1.1 0.3,0 0.9,-0.2 0.87,0.35 -0.33,0.75 0,2.6 0.8,2.05 0.82,1.82 -0.3,1 0.73,0.87 -0.9,0.18 -0.72,0.37 0.54,0.88 -0.07,0.1 -0.9,0.37 -0.53,0 -0.38,0.9 0.38,1.8 0.06,0.17 -0.16,0.63 0,-0.03 -0.1,0.9 -1,0 -0.9,0.72 -1.6,0.62 -0.9,0.2 -2,1 -1.78,0.86 -0.37,0.72 -0.1,0.1 -0.54,0.56 -0.9,0.7 -0.9,-0.17 -0.9,0.33 -0.9,0.1 -1.7,-0.2 -0.92,0 c -0.72,1.06 -1.08,1.75 -1.3,2.23 l 0,0.03 -0.26,0.52 0,0.03 c -0.06,0.12 -0.12,0.2 -0.2,0.28 -0.06,0.1 -0.13,0.14 -0.27,0.2 -0.1,0.03 -0.3,0.1 -0.52,0.14 -0.23,0.05 -0.52,0.1 -0.9,0.2 -0.43,0.08 -0.74,0.14 -1.48,0.33 l -0.9,-1.06 -0.88,-0.47 -0.18,0.1 -0.9,0.62 -1,-0.1 -0.73,-0.16 -0.08,0.25 0.37,0.62 -0.9,0.18 -0.92,0.72 -0.63,0.38 -0.9,0 -1,0.62 -0.53,1 0.37,0.88 -1.3,1.1 -3.48,0.48 -2.35,0.1 -0.75,1 -0.5,-0.28 -1.78,-0.36 -0.25,-0.94 -0.88,-0.07 -0.26,-0.6 -2.12,0.94 -4.13,-0.9 -3.85,0.16 0.1,-2.32 0.47,0.07 0.64,-1 1.96,-0.3 2.62,1.06 -0.08,0.42 2.34,-1.9 1.7,-0.04 1.27,0.6 1.63,-0.6 0.28,-0.4 0.73,-0.47 0.8,0.28 -0.08,-1.2 0.9,0.47 0.4,-0.06 1.86,-1.15 0.17,-0.55 -2.42,-0.17 -0.2,-0.46 -1.1,-0.38 -0.56,0.1 -0.24,-1 -0.9,-0.12 -0.93,-1.4 -0.66,-0.05 -0.1,0.78 -0.67,0 -0.16,1.07 -2.9,-0.67 -0.47,-1.12 -1.1,0.18 -1.02,-0.94 3.42,-3.54 0,0.03 -0.8,0.3 -0.54,0.9 -0.9,-0.38 -0.26,0.1 -0.8,0.9 -0.9,0.72 -1.9,0.72 -0.7,0.44 -0.48,0.47 -0.8,0.25 -0.45,0.9 -1.16,1 -0.47,0.53 -0.35,0.3 -0.37,0.52 0.1,0.18 0,0.1 0.27,0.97 -1,0 -0.8,-0.35 -0.2,-0.1 -1,-0.62 c 0.68,-0.45 0.68,-0.63 0.66,-1.34 l -1,-0.7 -0.1,0 -0.1,0.1 -0.9,-0.1 -2.3,0.24 -2,-0.1 -0.44,-0.96 -0.44,-1.9 -0.13,-0.98 -0.97,-0.8 -0.9,0 -0.53,-0.48 0.15,-1.87 0.2,-1 0,-0.9 0.08,-0.88 -0.96,0.06 -1,-0.88 -0.44,-0.9 -0.9,-0.9 -0.9,-0.63 -0.83,-0.9 -0.18,-0.1 -0.9,-0.1 -1,0.47 -1,0.24 -0.9,0 c -4.47,-0.57 -5.57,-0.37 -9.96,0.47 -1.15,-1.35 -2.8,-2.83 -4.07,-4.15 l -0.18,-0.43 -0.83,-1 -0.87,-0.53 -1.2,-0.64 -2.24,-1.34 c -1.15,-0.55 -2.15,-1.37 -3.3,-1.9 -0.6,-0.22 -2.72,-1.77 -3.26,-1.88 0.27,-0.5 -0.03,-0.54 0.22,-0.97 l 0,-0.28 0.18,-0.17 0.2,-0.2 0.18,-0.18 c 0.46,-0.54 0.63,-0.18 0.9,-0.18 l 0,-0.16 0.07,-0.08 0.1,0 0.1,0.1 0.27,0 c 0.5,-0.94 2.04,-2.63 2.75,-3.5 l 1,-1 0.9,-0.73 0.2,-0.2 0.96,-0.34 0.53,-0.9 0,-0.1 0.2,-1 0.9,0.28 0.9,0.1 0.9,-0.3 0.16,-0.33 0.38,-0.9 0.44,-0.9 0.47,-1 0.63,-0.16 0.9,-0.1 1,0 0.98,0.54 0.63,0.8 0.9,0.64 0.9,0.9 0.3,0.9 0.7,0.2 1.86,-1.32 3.77,-2.34 0.97,-0.72 -0.25,-0.2 -1.1,-1.33 -0.54,-1 -0.72,-0.9 -0.62,-0.25 -2.25,-1 -0.1,0 0.1,-0.9 -1.72,-0.44 -0.2,-0.08 -0.7,-0.63 -0.35,-0.9 -0.2,0 0.2,-1 -0.8,-0.9 0.7,-0.8 1.25,-1.9 0.9,-0.1 0.1,-0.25 -1.15,-1.8 -0.66,-0.73 -0.72,-1.82 -0.87,0 0.87,-0.87 0.2,0 -1,-0.72 -0.16,-1 -0.9,0.3 -0.4,-0.57 -1.82,0.86 -7.16,-3.78 -0.3,-0.83 2.88,-0.87 1.62,-1.06 -1.5,-2.1 1.6,-1.82 1.88,-0.3 2.3,0.43 0.7,-0.72 -3.85,-1.37 -0.06,-1.28 0.75,0.1 0.26,-0.57 -2.64,-0.62 0.75,0 0.74,-1 -0.98,-0.63 2,-1.08 0.6,0.35 3.6,0.05 0.7,0.8 0.6,-1.24 7.9,-1.74 3.94,0.2 0.06,-1.28 1.28,-0.8 3.08,0 5.54,-1.4 4.1,-0.72 1.74,-1.48 0.64,-0.93 4.55,0.03 2.15,1.12 1.13,-0.93 1.66,0.08 z"
2418+ id="path81089-4-0-4"
2419+ inkscape:connector-curvature="0"
2420+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2421+ overflow="visible" />
2422+ <path
2423+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2424+ d="m 1231.48,411.47 0.44,-0.48 0.45,-0.02 0.9,0.88 0.54,-0.06 0.98,0.97 0.03,0 0,0.9 0.45,1.1 0.1,0.34 1.4,0.2 0.03,0 0.56,0.9 0.16,0.97 0,0.9 0.28,1.45 0,1 -0.2,0.7 -0.52,1.64 0.34,1.44 -0.03,0 -0.84,0.18 -0.66,1.16 -0.03,0 -0.87,-0.28 -0.07,0.2 -0.1,0.9 -0.02,0 -0.16,0.1 -0.18,0.42 -0.04,0 -0.87,0.2 -0.63,1 0,0.24 -0.25,1 -0.03,0 -0.53,0.35 0,1 0.62,0.9 0.18,0.63 0.1,0.18 -0.63,0.9 0.2,0.73 0.87,-0.46 0.62,-0.44 0.28,-0.18 0.9,-0.25 0.9,0 0.83,0.25 0.72,-0.2 0.55,-0.2 -0.44,0.4 -0.46,0.46 0.06,0.63 0.63,0.88 -0.06,0.75 0.15,0.13 0.16,0.12 0.03,0 0.2,1.35 0.87,0.47 0.47,0 1.25,0.15 0.08,0 -0.53,1.28 -0.1,1.54 -0.62,0.8 -0.34,0.82 0.4,0.18 0.43,0.15 0.04,0 1,-0.1 0.9,0.2 0.25,0.2 0.6,-0.1 0.06,0 0,1.24 0.15,0.47 0.3,0.1 0.3,0.15 0.03,0 0.37,0.96 0.1,-0.06 1.06,-0.2 0.27,0.2 0.25,0 0.9,-0.53 0.54,-0.54 1.06,-0.46 0.03,0 0.1,1 0.1,0 0.28,0.8 0.85,0.95 -0.7,0.1 -0.05,-0.04 -0.03,-0.03 -0.2,-0.9 -0.2,-0.76 -0.07,0 -0.7,0.87 -0.9,0.43 c 0,0.02 -0.02,0.03 -0.03,0.03 l -0.3,-0.1 -0.45,1.26 -0.03,0 -0.3,0.3 0,0.47 0.36,-0.1 c 0.02,0 0.03,0.02 0.03,0.04 0.03,0 0.04,0.03 0.04,0.04 0,0.02 0,0.03 -0.03,0.03 l -0.02,0.03 -0.06,0.16 -0.03,0.03 -1.35,0.27 -0.66,0.85 -0.35,1.25 -0.04,0.03 c 0,0 0,0.02 -0.02,0.03 l -0.1,0 -0.02,-0.03 -0.35,-0.25 -0.52,-0.16 -1.06,0.5 -0.03,0.02 -0.45,-0.1 -0.28,0 0.16,0.95 -0.03,0.03 -0.03,0.03 -0.82,0.25 -0.9,-0.16 -0.38,0.47 -0.2,0.9 c 0,0 0,0.02 -0.02,0.03 l -0.25,0.15 c 0,0.02 0,0.03 -0.03,0.04 l -0.9,0.1 -0.6,0.24 c 0,0 0,0.03 -0.03,0.03 l -0.72,0.08 -0.9,0.1 c -0.02,0 -0.03,-0.02 -0.04,-0.03 l -0.87,-0.6 -0.15,0.22 -0.78,0.78 -0.25,1 0.18,0.82 -0.03,0.03 -0.44,0.84 0,1 0.2,1 -0.04,0.03 -1.32,0.5 0,0.62 0.5,0.2 0.34,0.92 0.03,0.03 0.2,0.9 c -0.02,0 -0.03,0.02 -0.04,0.03 l -0.06,0.03 -0.1,0.47 1.07,1.22 0.92,0.9 0.44,0.72 0.43,0.72 0.93,0.8 0.16,0.44 c 0,0 0,0.02 0.02,0.03 l -0.16,0.56 0.9,1.88 0.57,-0.8 0.03,-0.03 c 0,-0.02 0.02,-0.03 0.03,-0.03 0,0 0.02,0 0.02,0.03 0.02,0 0.03,0 0.04,0.03 l 0.28,1.1 -0.03,0.02 -1.5,0.88 0,1.87 0.1,0.9 c 0,0.02 -0.02,0.03 -0.03,0.04 l -0.78,0.5 -0.1,0.48 c -0.02,0 -0.02,0.02 -0.04,0.03 0,0.02 0,0.04 -0.03,0.04 l -0.84,0.16 0,1.03 0.27,0.9 0.5,0.7 1.25,1.68 0.9,0.67 0.72,0.7 0.72,1.36 c 0.02,0 0.03,0.02 0.03,0.03 l 0.18,1.87 0,0.57 -0.2,0.87 0.3,1 0.96,1.06 c 0.02,0 0.03,0.02 0.03,0.04 l 0,0.87 0.35,1.2 0.53,1.77 c 0,0.02 -0.02,0.04 -0.03,0.04 l -0.8,0.9 -0.36,0.9 -0.28,0.3 -0.34,0.96 -0.47,0.38 -0.63,0.9 -0.53,0.25 -0.4,0.85 0.1,0.28 0,0.03 -0.03,0.02 -0.28,0.66 c -0.02,0 -0.03,0.02 -0.04,0.03 l -0.03,0 c -0.02,0 -0.03,0 -0.03,-0.02 l -0.07,0.12 c -0.57,1.7 -1.04,3.3 -1.72,4.94 l -4,0.27 2.06,-1.42 1,-0.1 0.85,-1.25 0.98,-0.94 -0.16,-0.85 0,-0.03 0.16,-0.88 0,-0.03 -0.16,-0.6 -0.1,-0.95 0.5,-0.6 0.04,0 0.62,-0.9 0,-0.03 0,-0.03 0.13,-0.67 0.07,-0.3 0,-1 -0.06,-0.56 0.32,-1.1 c 0,0 0.02,0 0.03,-0.03 l 0,-0.04 -0.03,-0.03 -0.03,-0.03 -0.04,0 -0.03,-0.03 c -0.02,0 -0.03,0.02 -0.03,0.03 l -0.07,0.03 -0.65,0.4 0.06,-0.7 0,-0.92 0.34,-0.46 0,-0.03 0,-0.02 0,-0.03 -0.18,-0.4 0.1,-0.16 0,-0.1 -0.04,0 -0.4,-0.44 0.24,-0.88 0,-0.03 0.2,-0.25 0,-0.11 -0.04,0 c 0,-0.02 -0.02,-0.03 -0.03,-0.03 l -0.16,0 -0.22,-0.82 -0.1,-0.9 0,-0.03 -0.43,-0.97 -0.28,-0.72 0,0 -0.53,-0.88 -0.27,-0.87 0,-0.04 -0.2,-0.88 0,-0.03 -0.08,-0.2 -0.03,-0.03 -0.04,0 -0.03,0 -0.03,0 -0.03,0.03 -0.13,0.2 0,0.05 0.1,0.78 0,0.03 -0.07,0.47 -0.2,-0.47 0,-0.06 -0.08,-0.87 -0.2,-0.9 -0.15,-0.54 -0.28,-0.86 0,-0.06 0.27,-0.84 0,-0.03 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.03,-0.03 -0.93,-0.64 0.1,-0.5 0,-0.03 -0.1,-0.3 -0.2,-0.83 0,-0.03 0.1,-0.88 0,-0.04 -0.1,-0.9 -0.08,-0.44 -0.2,-0.9 0,-0.04 -0.34,-0.87 0,-0.02 0.1,-0.47 0,-0.59 0.34,-1.02 0.06,0 0,-0.03 0.03,0 0,-0.13 -0.04,-0.03 -0.03,0 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.28,0 -0.06,0.04 -0.35,0.15 -0.14,0 -0.88,-0.3 -0.03,-0.04 -0.4,-0.84 0,-0.03 -0.26,-0.65 0,-0.9 -0.04,-0.07 -0.12,-0.12 -1.28,-1.34 -0.04,-0.06 -0.03,0 -0.04,-0.03 -0.03,0 -0.03,0 0,0.03 -0.03,0 0,0.03 -0.03,0 0,0.07 0.2,0.66 0,0.06 -0.26,0.74 c -0.02,0 -0.03,0.02 -0.03,0.03 l 0,0.03 0.03,0 0,0.03 0.15,0.22 -0.34,0.88 0,0.56 -1.64,1.2 -0.72,-0.65 -0.06,-0.06 0.06,-0.67 0,-0.09 -0.03,0 c 0,0 0,-0.02 -0.02,-0.03 l -0.03,0 -0.03,0 -0.2,0.1 c 0,0 0,0.02 -0.02,0.03 l -0.06,0.07 -0.2,0.1 -0.02,0.02 0,0.09 0.1,0.2 0.18,0.53 0.07,0.22 0,0.06 -0.22,0.76 -0.85,-0.1 -0.03,0 c 0,0.02 -0.02,0.03 -0.03,0.04 l -0.03,0 -0.5,0.63 -0.02,0.03 -0.66,0.12 -0.03,0 c -0.02,0 -0.03,0.02 -0.04,0.03 0,0.02 -0.02,0.03 -0.03,0.04 l 0,0.04 -0.16,0.75 -0.15,0.43 -0.03,0.03 -0.83,0.84 -0.65,0 0.3,-0.85 0,-1.01 -0.02,0 0,-0.04 -0.03,0 -0.03,0 -0.03,0 -0.02,0 0,0.03 -0.2,0.15 c 0,0 0,0.02 -0.02,0.03 l 0,0.07 -0.25,0.47 -0.5,0.6 0.04,-0.37 0.28,-0.72 0,-0.02 0,-0.03 0,-0.03 0,-0.03 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.04,0 -0.06,0 -0.2,-0.1 -0.02,0 -0.03,0 -0.03,0 c -0.02,0 -0.03,0.02 -0.04,0.03 0,0 -0.02,0 -0.03,0.03 l -0.25,0.8 -0.34,0.82 -0.44,-0.22 0.25,-0.8 0,-0.04 0,-0.04 -0.03,0 0,-0.03 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.05,-0.04 0.44,-0.78 0.02,-0.03 0,-0.1 -0.03,-0.03 -0.05,0 c 0,-0.02 0,-0.03 -0.03,-0.03 0,0 -0.02,0 -0.03,0.03 l -0.07,0.03 -0.6,0.3 0,0.04 -0.02,0 -0.1,0.1 c 0,-0.02 0,-0.03 -0.02,-0.04 l -0.03,0 -0.03,0 -0.07,0 -0.57,0.47 0.18,-0.62 0.1,-0.52 0.18,-0.9 0,-0.07 -0.03,-0.02 c 0,-0.02 -0.02,-0.03 -0.03,-0.03 l -0.19,0 -0.02,-0.07 -0.03,0 -0.03,-0.03 -0.07,0 -0.03,0.03 c -0.02,0 -0.03,0.02 -0.03,0.03 l 0,0.51 -0.5,0.64 -0.22,0.22 -0.5,0.84 -0.75,0.16 0.1,-0.75 0.1,-0.87 0,-0.03 0.33,-0.97 0.37,-0.9 0,-0.03 c 0.04,-1.4 0.57,-2.46 0.82,-3.85 l 0,-0.06 c -0.5,-0.83 -0.6,-1.45 -0.66,-2.07 -0.06,-0.46 -0.13,-0.95 -0.38,-1.5 -0.1,-0.2 -0.18,-0.36 -0.32,-0.57 l -0.03,0 c -0.14,-0.73 -0.3,-1.2 -0.5,-1.53 -0.2,-0.32 -0.36,-0.47 -0.5,-0.62 -0.13,-0.14 -0.22,-0.28 -0.25,-0.55 -0.02,-0.27 0.03,-0.68 0.2,-1.38 l 0,-0.14 -0.04,-0.02 -0.1,-0.1 c 0,0 0,-0.02 -0.03,-0.03 l -0.03,0 -0.03,0 c -0.02,0 -0.03,0.02 -0.04,0.03 l -0.12,-0.06 0,-0.1 c 0,-0.02 -0.02,-0.03 -0.04,-0.03 l -0.6,-0.57 0,-0.03 -0.05,-0.87 -0.03,0 0,-0.03 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.04,0 -0.03,0 -0.47,0.07 -0.5,-0.85 -0.03,-0.03 -0.88,-0.62 -0.03,0 -0.06,-0.32 c 0,0 -0.02,0 -0.03,-0.02 l -0.03,-0.03 -0.16,-0.1 -0.03,0 -0.02,0 -0.03,0 0,0.04 -0.03,0 -0.57,0.15 -0.03,0 -0.03,0 0,0.03 -0.04,0 -0.13,0.22 -0.12,0 0.07,-0.82 0.03,-0.03 0,-0.06 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.03,-0.03 -0.03,0 -0.02,0 -0.4,0.06 0.43,-0.73 0,-0.11 -0.02,0 0,-0.03 -0.03,0 -0.06,0 -0.17,-0.4 0,-0.04 0.1,-0.25 0,-0.1 -0.04,0 c -0.02,0 -0.03,-0.02 -0.04,-0.03 l -0.03,0 -0.03,0 -0.03,0.03 c 0,0 -0.03,0.02 -0.03,0.04 l -0.1,0.28 -0.3,0.93 -0.26,0.47 -0.28,-0.3 0.22,-0.3 0,-0.12 -0.2,-0.34 0,-0.04 -0.6,-0.84 0,-0.04 c -0.02,0 -0.03,-0.02 -0.04,-0.03 l -0.04,-0.03 -0.03,0 c 0,0 0,0.02 -0.02,0.03 l -0.03,0 -0.03,0.03 0,0.07 0.1,0.5 0,0.03 -0.07,0.56 -0.37,-0.62 -0.03,0 -0.8,-0.88 -0.02,-0.03 -0.43,-0.87 0.03,0 -0.28,-0.84 0,-0.07 c 0,0 -0.02,-0.03 -0.04,-0.03 0,-0.02 0,-0.03 -0.02,-0.03 l -0.03,0 -0.03,0 c 0,0 -0.02,0 -0.03,0.03 l -0.04,0 -0.25,-0.53 0,-0.2 0.2,-0.9 0.87,0.1 1.1,0.34 0,-0.15 -0.3,-0.9 0.1,-1.82 -0.1,-0.43 0.48,-0.54 1.17,0.4 0.67,-1.23 -0.28,-2.34 0.1,-1.5 1.23,0.26 0.28,-3.6 -0.45,-1.33 2.94,0.4 0.66,0.6 1.62,-4 0.7,-0.6 0.33,-1.6 -0.4,-1.4 0.7,-0.7 1.47,-1.13 -0.2,-0.67 0.7,-1.34 -0.38,-1.94 0.9,-0.87 1.2,-0.1 1.53,-1.45 3.6,-1.65 2.3,1.17 -1.28,-2.23 0.3,-0.5 1.42,-1.14 0.74,-0.52 0.03,-0.67 -0.13,-0.52 0.07,-0.44 z"
2425+ id="path2735-3-6-7"
2426+ inkscape:connector-curvature="0"
2427+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2428+ overflow="visible" />
2429+ <path
2430+ d="m 1231.82,606.7 -5.9,0 0,-6.37 5.9,0 z m -20.02,-153.82 0.03,0 -0.06,0.38 -0.06,-0.35 0.04,0 c 0,0.02 0.02,0.02 0.03,0 0,0 0.02,0 0.03,-0.02 z m 0.97,0 0.4,0.28 -0.24,-0.1 0.43,0.92 -0.53,-0.9 -0.06,-0.2 z m 3.03,3.25 c -0.14,0.63 -0.24,1.06 -0.22,1.35 0.03,0.3 0.17,0.5 0.32,0.65 0.1,0.13 0.24,0.28 0.37,0.47 l -0.84,-0.94 0.3,-1.47 0.07,-0.07 z m 3.07,13.53 0.03,0 -0.04,0.25 z m 1.06,1.4 0,0.04 -0.28,0.13 0.28,-0.16 z m -1.5,0.63 -0.03,0.15 0,0.06 c 0,0.03 0.02,0.04 0.03,0.04 l -0.82,0.66 0.83,-0.9 z m 14.47,2.1 0.1,0.86 0,0.03 -0.1,0.87 0,-1.78 z m 0,1.8 0.15,0.9 0.03,0 0.1,0.23 0,0.06 -0.13,0.46 -0.15,-1.66 z m 3.4,22.22 0.03,0 0.16,0.6 -0.2,-0.6 z"
2431+ id="path12158-2-7"
2432+ inkscape:connector-curvature="0"
2433+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2434+ overflow="visible"
2435+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2436+ <path
2437+ d="m 1195.23,294.15 -1.18,-2.35 1.43,-0.47 -0.5,-0.82 1.43,0.04 -4.05,-3.52 0.03,-2.2 -0.88,-0.26 -0.83,0.68 0.35,-1.33 -1.17,1.45 -1.62,-0.73 -1.03,-0.6 1.12,-1.36 -1.1,-0.3 0.84,-1.53 0.72,0.07 0.53,-0.6 2.04,-0.73 1.6,-2.13 -0.53,-0.64 1.14,-0.7 -1.62,-0.8 0.78,-1.75 -0.68,-0.7 -0.75,-0.08 0.5,-1.6 1.76,-1.57 -1.38,-1.42 1.07,-0.3 0,-1.43 -0.75,0.26 -1.15,-0.57 -1.17,0.77 -0.75,-0.97 0.9,-0.74 0.16,-1.25 0.6,-0.74 -1.35,-2.55 1.34,-1.83 3.35,-2.3 -1.94,-2.7 -1.93,-0.97 -0.38,-1.1 1.12,-0.6 -0.37,-0.7 -0.6,-0.16 0.66,-0.88 0.15,-0.85 -1.07,-0.34 1.2,-0.8 1.87,-2.13 1.1,-0.28 -0.36,-2.07 -1.96,-0.03 -3.6,-1.08 -0.52,-1.13 -0.07,-1.9 1.92,-2.32 1.78,-1 -1,-1.83 -3.25,0.2 -1.7,-2.5 -1.44,-0.32 -0.9,-1.38 -1.93,-0.44 -5.78,0.4 -3.65,-0.56 0.82,-3.15 -2.1,-2.9 0,-0.03 1.78,-1 4.97,-2.16 0,-0.9 0.44,-0.15 0.47,-0.9 -1,0 -0.9,-0.3 -0.64,-0.52 -1,-0.1 -0.9,-0.62 -0.9,0 -0.9,-0.7 -0.18,-0.38 -0.1,-0.97 -0.34,-0.66 0.78,-0.98 0.9,-0.8 0.48,-0.9 0.87,-0.64 0,-0.37 0.76,-0.87 0.88,-0.56 0.47,-0.88 -0.1,-0.66 -0.27,-0.25 0.38,-1 -0.8,-0.92 -0.1,-0.62 -1,-0.35 -0.44,-0.46 0.9,-0.34 1.07,-1.8 0.9,-0.83 0.9,-0.25 0.54,-1 0.3,-0.9 -0.4,-0.53 -0.43,-0.92 0.28,-1 -0.28,-0.9 -0.9,-0.72 -1.82,0.46 -0.96,-0.37 -0.63,-0.88 -1.9,0.25 -1,0 0.46,-0.9 -0.38,-0.63 0.28,-0.44 0.9,-0.82 -0.28,-0.9 0,-0.9 -1.25,-0.63 -0.37,-0.9 -0.88,-0.72 -1.8,0.1 -0.2,-0.9 -1,-0.9 0.2,-0.9 0.8,-0.37 -0.7,-0.9 -0.98,-0.78 -0.38,-0.9 0.38,-0.72 0.06,-1 -0.72,-0.9 -1.06,-0.9 -1.35,-0.86 -1.62,-1.03 0.62,-0.8 -0.1,-0.9 0.35,-0.9 -1.15,-0.45 0,-0.9 -0.9,-0.44 -0.73,-0.9 0.28,-0.44 1.97,0 0.7,-0.9 0,-0.9 0.48,0 0.1,-0.1 0.87,-0.82 0,-1.06 -0.34,-0.9 0.97,-0.82 0.9,-0.28 -0.15,-0.16 -1.8,-1 -0.3,-0.9 -0.15,-0.16 -0.8,-0.75 0.62,-0.86 -2.83,-0.38 -0.15,-1.8 -0.38,-0.26 -0.53,0.97 -0.9,0.56 -0.1,-0.1 -0.05,-0.1 -1,0.2 -0.9,0.35 c -0.75,-0.4 -1.33,-0.66 -1.82,-0.82 -0.53,-0.17 -0.92,-0.24 -1.25,-0.25 l -1.52,0 c 0,0 -0.02,0.02 -0.03,0 l -0.06,-0.02 -0.67,-0.53 -0.4,-0.44 c -0.33,-0.36 -0.72,-0.84 -1.22,-1.52 l -0.43,0 -1,-0.28 -0.63,-0.87 -0.34,-0.82 0.87,-0.6 -0.18,-0.3 0.9,-0.7 0.37,-0.4 2.78,-1.58 0.44,-0.66 1,-0.43 0.9,-0.1 0.9,0.53 0.44,-0.15 -0.63,-0.9 0.45,-0.9 -0.72,-1 0.2,-0.16 -0.36,-0.9 -0.1,-0.9 -0.6,-0.92 -1.92,-0.25 -1.97,-1.28 -1.9,-0.82 0,-0.63 0.9,-0.53 0.1,-1 1.87,0.1 1,-0.2 0.56,-0.62 -0.36,-1.06 0.72,-0.9 -0.9,-0.48 -1,-0.43 -0.98,0 -1.8,-0.35 -0.92,-0.37 -0.25,0.1 -1,-0.62 -1,-1.72 -0.05,-0.2 0,-14.97 18.55,0 0,-74.44 69.4,0 0,-43.16 69.5,0 0,82.05 9.5,0 -0.05,27 -15.47,4.87 -2.63,1.58 5.9,2.12 0.26,0.78 -1,0.2 -2.05,1 -1.85,0.83 0.13,0.58 0.87,0.43 -2.78,2.26 -1.62,0 0.9,0.44 1,0.28 -0.56,0.9 1.72,0.73 0.53,1 -0.73,0.88 -0.25,0.9 -0.37,0.38 0.18,0.97 0.97,0.28 0.94,0.64 0.97,0.47 -0.34,0.44 -0.18,0.9 1,0.35 0.87,0 0.2,0.9 0.6,0.53 0.1,0.1 0.92,0.1 0.18,1.18 0.06,5.13 0.92,0.25 0.9,0.56 0.44,0.04 0.47,0.06 0.44,0.62 -0.53,0.88 -0.38,0.2 -1.5,0.7 -0.75,-0.1 -0.95,0.48 -1.9,0.53 c -0.38,0.27 -0.77,0.4 -1.17,0.5 -0.4,0.1 -0.8,0.13 -1.22,0.16 l -0.6,0.04 c -0.2,0.02 -0.4,0.06 -0.58,0.1 -0.14,0.02 -0.27,0.07 -0.4,0.12 -0.1,0.02 -0.18,0.03 -0.26,0.06 -0.1,0.04 -0.2,0.1 -0.28,0.16 -0.05,0.03 -0.1,0.05 -0.16,0.1 -0.04,0.02 -0.08,0.08 -0.12,0.1 -0.04,0.04 -0.1,0.04 -0.13,0.08 l -0.1,0.1 c -0.04,0.05 -0.1,0.08 -0.15,0.15 l -0.15,0.2 c -0.04,0.04 -0.06,0.1 -0.1,0.15 l -0.18,0.3 c -0.02,0.04 -0.02,0.08 -0.04,0.1 -0.06,0.15 -0.14,0.3 -0.2,0.48 l 0.62,0.9 -0.9,0.38 -0.54,0 -1.34,0.16 -0.53,0.28 -0.27,0.9 -1,0.17 0.37,0.9 0.38,0.58 0.25,0.34 -0.2,0.53 -0.15,0.47 -0.8,0.9 -1,0 -0.92,-0.56 -0.87,0.1 -1.92,-0.2 -1.8,1.45 -1.45,0.3 -1.87,0.43 -0.9,0.46 -0.9,0.18 -0.92,-0.28 -0.7,0.1 -1,0.9 0.36,0.88 2.43,3.06 0.53,1 0,2.44 -0.06,5.4 -0.37,4.03 -0.9,0.48 -0.98,0.06 -2,1.63 -1.8,0.28 0.9,0.63 1.34,0.37 -0.07,0.44 0.62,0.9 0.63,1.78 -0.9,0.8 0.37,1.82 0.78,0.34 0.47,0.9 0.1,2.54 0.9,0.35 0.25,0.56 0.9,0.14 -0.43,1 -0.9,-0.1 -1,0.73 0.08,0.47 -0.9,0.8 -0.97,0.64 0.25,0.8 -0.44,0.88 -0.8,0.57 -0.4,0.96 0.2,0.9 1,-0.1 0.9,0.82 0.9,-0.25 0.98,-0.1 0.38,-0.28 2.78,1.62 1,-0.1 -1,0.1 1,-0.08 1.8,0.7 0.6,-0.27 1.3,1 -0.92,0.8 -0.2,-0.1 -1.82,0 -0.48,0.92 -0.72,0.08 -0.9,-0.72 -0.97,0.25 -0.9,-0.33 -0.54,0 0.43,0.9 -0.63,0.88 0,0.9 -0.72,0.63 0,0.1 0.44,0.46 0.38,0.97 -0.9,-0.05 -0.38,1.44 -0.88,0.33 0,0.9 0.97,0.73 0.1,0.28 0.1,0.87 1,0.4 0.1,0.9 -0.67,0.8 -0.9,0.82 0.2,0.87 -0.08,0.62 -0.9,0.56 -1,0.9 -0.28,0.73 -0.44,0.88 -0.9,0.1 -1.54,1 -0.9,0.53 -0.92,0.3 0.28,1 -0.9,0.6 -0.82,0.98 -0.15,0.47 -0.48,0.97 0.37,0.9 0.18,1 0.34,0.9 1.82,0.82 0.96,0 0.9,0.1 -0.08,0.97 0.28,0.9 -0.1,0.92 -0.72,0.25 -0.9,-0.16 -0.53,0.26 -0.1,0.38 -0.9,0.44 0.37,0.9 0.53,0.8 1.1,0.2 -0.1,0.9 0.53,0.8 -0.62,0.9 -0.9,0.56 -0.9,0.72 0.36,0.87 -1.34,0.8 -0.63,0.1 -1,-0.9 0,-0.15 -0.9,-0.1 -0.72,-0.9 -0.8,-0.1 -0.92,-0.44 -0.9,-0.7 -0.34,-1 -0.9,-0.3 -0.9,0.2 -0.8,0.37 -0.74,0 -0.44,0.98 0.62,1.8 -0.18,0.26 -0.88,0.65 -0.75,0.87 -1.35,0.37 -0.9,0.3 -0.54,0.86 -0.96,0.47 -0.62,0.53 -0.38,0.9 -0.72,0.9 -0.8,-0.08 0.27,0.97 -0.2,0.9 0.53,0.9 -0.1,0.1 -0.08,0.1 -0.9,0.18 -0.98,-0.66 -0.72,-0.97 -0.37,-0.9 -0.82,-0.9 -0.15,-1 -0.27,0 -0.9,0.18 -0.73,-0.1 -0.72,0.9 -0.34,0.9 -1.28,0.2 -0.9,0.25 -0.98,-0.44 -2.25,-0.1 -0.9,-0.08 -0.9,0.53 -1.17,2.24 -0.1,0.2 -0.6,1.2 -0.55,1.04 0.36,0.18 0.1,0.2 0.1,0.08 0.08,0.07 0,0.9 1.16,0.2 0.72,1.88 -1,0.8 -0.35,1 -0.62,0.63 -0.1,0.1 0,0.2 -1.1,0 -0.9,0.43 -0.15,1 -0.63,0.44 -0.37,1 0.37,0.9 0.1,0.63 -0.3,0.9 -0.9,1.63 0.1,0.16 0.35,0.9 -0.54,0.9 -0.15,1 0.06,0.25 -1.17,-0.25 -0.34,0.16 -0.92,-0.07 -0.56,0.96 -0.97,0.1 -0.2,0.9 1.36,0.9 1.9,1.88 0.9,0.9 0.55,0.2 0.97,-0.63 0.9,0.64 1.1,0.25 0.63,0.6 0.28,0.3 0.87,0.46 0.72,0.07 0.9,0.7 1,0.2 0.35,0.8 1.8,-0.33 0.98,0 0.47,0.34 0.9,0.9 -1.8,0.64 0.28,0.28 0.1,0.97 -0.63,0.9 -0.3,-0.1 -0.08,0.2 -0.2,0.9 0.63,0.9 0.56,0.35 -0.55,1.78 -2.65,2.27 -0.4,1.46 -0.93,0.2 -0.9,2.52 0.76,2.26 1.07,1.02 -0.82,2.65 -2.72,0.9 -1.24,1.2 -1.2,0.6 0.93,0.9 1.38,0.08 2.3,1 c 0.66,-0.2 1.32,-0.1 1.97,0.03 l 1.03,0.6 1,-1.13 1.35,-0.16 0.55,1.67 -0.8,1.45 0.73,1.73 -1.5,0.72 -0.77,0.67 -2.1,0.5 c -0.04,0.8 0.37,1.68 -0.25,2.32 l 1.03,0.4 -1.27,2.25 -1.1,0.2 -1.05,2.82 0.08,1.8 2.74,2.36 0.75,2.03 0.02,2.2 -0.77,1.85 0,1.7 -1.38,1.93 c 0.23,1.3 0.1,3.67 0.1,3.67 l -0.8,2.28 0.25,2.62 -2.9,-0.2 -3.9,0.38 -0.12,-0.8 -2.14,-2.37 -1.87,-4.02 -0.7,-0.37 0.18,-1.14 -1.76,-0.15 -6.58,-3.86 -10.15,-0.95 -2.34,-0.3 -0.9,-1.82 1.53,-3.27 -0.2,-3.85 -2.42,-3.73 -0.62,-1.74 -1,-1.22 -1.86,-0.12 -0.92,-1 -1.92,0.06 -1.93,-1.1 -0.6,-1.22 -2.7,-0.98 0.52,-0.84 -1.4,-0.86 2.43,-0.38 0.4,-1 3.24,-0.9 2.23,-1.2 -0.1,-1.27 z"
2438+ id="path82811-1"
2439+ inkscape:connector-curvature="0"
2440+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2441+ overflow="visible"
2442+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2443+ <path
2444+ d="m 1268.08,436.44 -0.62,0.54 -0.9,0.34 -0.1,0.1 -0.35,0 -0.27,1 0.1,0.18 0,0.1 -0.9,0.43 -0.98,0.44 -0.47,0.28 -0.43,-0.28 0.1,-0.44 -0.76,0.2 -0.54,1.24 -0.1,0.1 -0.06,0.1 -0.9,-0.92 -0.53,-0.53 -0.66,0.97 -0.52,-0.9 -0.2,-0.08 -0.86,0.87 -0.38,0.56 -0.8,0 -1,-0.9 -1.07,-0.45 -0.57,0.98 -0.34,0.38 -0.63,0.43 -0.9,-0.2 -0.28,0.3 -0.16,-0.2 -0.3,-0.34 -0.08,0 -0.54,0.72 -0.06,0.06 0,0.03 -0.34,0.34 -0.06,0.2 0.28,0.9 0.72,0.98 0.1,0.9 0.18,0.28 -0.38,0.72 0.47,1 -0.3,0.25 -0.27,0.2 -0.2,-0.2 -0.2,-0.03 0,0.06 -1.07,-0.22 -0.72,0.1 -0.2,-0.9 -0.24,-0.82 -0.1,0 -0.7,0.9 -0.92,0.44 -0.34,-0.1 -0.47,1.3 -0.34,0.33 0,0.53 0.44,-0.1 -0.1,0.2 -1.34,0.27 -0.72,0.9 -0.33,1.26 -0.1,0 -0.37,-0.28 -0.53,-0.16 -1.1,0.53 -0.44,-0.1 -0.34,0 0.15,1 -0.82,0.26 -0.9,-0.15 -0.44,0.53 -0.2,0.9 -0.25,0.16 -0.9,0.1 -0.63,0.28 -0.72,0.1 -0.9,0.1 -0.9,-0.64 -0.2,0.25 -0.8,0.8 -0.26,1 0.2,0.83 -0.48,0.87 0,1 0.2,1 -1.36,0.53 0,0.57 0.53,0.25 0.35,0.9 0.2,0.9 -0.1,0.07 -0.1,0.47 1.1,1.25 0.9,0.9 0.43,0.72 0.45,0.7 0.94,0.83 0.15,0.43 -0.16,0.57 0.96,1.96 0.62,-0.9 0.28,1.08 -1.53,0.9 0,1.88 0.1,0.9 -0.82,0.54 -0.08,0.47 -0.9,0.16 0,1.1 0.28,0.9 0.53,0.7 1.25,1.7 0.9,0.66 0.72,0.7 0.72,1.35 0.2,1.88 0,0.56 -0.2,0.86 0.28,1 1,1.1 0,0.87 0.35,1.2 0.53,1.77 -0.82,0.9 -0.34,0.9 -0.28,0.3 -0.34,0.96 -0.47,0.38 -0.63,0.9 -0.53,0.25 -0.44,0.9 0.1,0.28 -0.28,0.66 -0.03,0 -0.04,-0.03 -0.03,0 c 0,0.02 -0.02,0.03 -0.03,0.04 l -0.03,0.03 -0.45,0.9 -0.34,0.7 -0.02,0.02 -0.97,0.93 -0.83,1.25 -1,0.1 -2.07,1.43 -0.15,0.1 0,18.38 -1.4,0.37 -1.18,-0.2 -3.05,0.1 -4.6,-3.26 -1.2,1.1 2.2,3.8 2.04,2.58 3.17,2.88 2.15,1.55 2.4,2.18 -1.82,3.1 -5.97,-2.8 -0.54,0.86 3.96,2.43 4,6 -0.17,3.3 0.15,0.2 0,309.28 69.57,0 -0.16,-267.25 10.95,0 -0.03,-1.03 -0.94,-1.28 -0.63,-0.67 -0.28,-1.3 1.63,-2.57 5.87,-0.28 2.1,-2.2 -1.63,-1.52 -3.34,-1.94 -7.85,-2.66 0.88,-2.03 0.62,-2.37 0.6,-3.4 0.2,-1.5 0.27,-1.23 0.12,0.06 0.72,-1.82 0.1,-0.72 1.24,-0.72 0.47,-0.9 0.1,-1.25 1.53,-0.54 0.53,-0.47 1,-1.8 0.34,-1 0.9,-0.8 0.1,-0.35 -0.72,-0.9 -0.7,-0.38 -0.83,-1.78 -0.28,-1.45 0.28,-1 -0.8,-0.1 -0.92,0.82 0.1,-0.72 0,-1.9 0.34,-0.88 -0.87,-0.56 -0.44,0 -1.9,0.57 -0.9,-0.28 -1.9,0.36 0.73,-0.9 -0.28,-0.9 0.9,-0.82 0.63,-0.9 0,-0.2 0.1,-0.25 -0.56,-0.2 -0.87,0.2 -1.1,0.8 -1.97,-0.62 -1,-0.28 -0.18,-0.62 -2.25,0.1 -0.25,0 -0.9,0.33 -0.2,0.48 -0.34,0.97 -0.9,0.2 -1,0.52 -0.9,0.28 -0.9,-0.37 -0.9,-0.07 -1.28,0.26 -0.97,0.53 -0.9,-0.07 -0.9,-0.72 -0.35,-0.55 -0.9,-0.53 -0.2,-0.44 -0.7,-0.47 -1.17,-1.86 0.45,-0.9 -0.13,-13.66 -21.62,0 0,16.96 -0.7,0.47 -3.5,0 -1.24,0.48 -1.22,0.03 -2.06,-0.74 -20.56,-17.18 -2.72,-4.44 9.12,-2.47 0.8,1.06 -0.45,-0.65 0.1,0 0.36,-1.35 0.54,0.25 0.28,0.56 0.15,0 0.9,0.35 0.54,-0.1 0.66,0.8 0.9,0.3 0.25,0.6 -0.1,0.92 -0.43,0.62 0.1,0.2 0.87,0.34 0.8,-0.72 0.57,-0.25 0.87,0.54 1,-0.38 0.38,-0.8 0.53,-0.98 0,-0.09 0.22,0.05 13.03,-0.06 34.8,-0.3 0.17,-40.62 -20.38,-9.94 0,-21.18 -0.57,-0.4 -0.9,-0.57 -0.3,0.08 -0.52,0.2 -0.52,0.08 -0.1,-0.37 -0.53,0.27 -0.12,-0.28 -0.7,-0.26 -0.74,-0.47 -0.45,-0.53 -0.1,-0.28 -0.96,0 -0.2,-1.07 -0.47,-0.9 0,-0.45 0.1,0 0,-0.1 0.62,-0.46 0.47,-0.9 -0.2,-0.17 -0.42,-0.38 -0.72,-0.25 -0.28,0.25 -0.9,0.1 -0.2,-0.44 -0.8,-0.18 -0.26,0.28 -0.44,0 -1.1,-0.56 -0.46,-0.25 -0.16,-0.4 -0.65,-0.52 -0.35,-0.44 z"
2445+ id="path81042-1"
2446+ inkscape:connector-curvature="0"
2447+ overflow="visible"
2448+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2449+ <path
2450+ d="m 1236.83,500.3 0.03,0 -0.06,0.24 -0.1,-0.13 c 0.02,0.02 0.03,0.02 0.04,0 l 0,-0.02 0.1,-0.06 0,-0.03 z"
2451+ id="path81040-8"
2452+ inkscape:connector-curvature="0"
2453+ overflow="visible"
2454+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2455+ <path
2456+ d="m 1255.2,519.57 0.92,0.9 0.9,0.54 z"
2457+ id="path81038-5"
2458+ inkscape:connector-curvature="0"
2459+ overflow="visible"
2460+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2461+ <path
2462+ d="m 1309.93,561.7 -0.28,0.65 0.1,-0.37 0.18,-0.3 z"
2463+ id="path2546-4"
2464+ inkscape:connector-curvature="0"
2465+ overflow="visible"
2466+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2467+ <path
2468+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2469+ d="m 1348.8,272.2 -2.54,-3.88 0.7,-2.7 2.4,0.22 -2.34,-2.26 1.2,-1.54 -0.16,-3.9 -2.5,0.5 0.1,-2.1 -2.88,-1.25 -2.27,1.14 -0.96,-1.12 1.72,-1.3 -0.63,-1.63 -3.17,0.25 0.28,-2.48 -1.33,-1.1 0.9,-1.3 -0.07,-2.55 -1.54,0.45 -1.02,-0.8 0.9,-2.74 -2.06,-4.54 -0.03,-1.63 -0.86,-1.05 0.82,-1.08 -3.17,-2 -0.65,0.96 -1.8,-1.1 -0.82,0.2 -0.8,0.9 -0.92,-0.47 -0.62,0.2 -0.87,-0.1 -0.9,-0.88 0.25,-0.56 0.1,-0.92 -0.53,-0.88 0.96,-0.28 -1.34,-0.37 -0.53,-0.88 -0.9,-0.62 -0.34,-0.47 -0.9,-0.28 -0.9,0 -1.8,-0.53 -0.37,-0.25 -0.98,-0.1 -0.9,0.16 -0.9,0.37 -0.64,0.9 -1.18,0.82 -0.88,0.35 -0.2,0.9 -1.27,1 -2.87,1.88 -1.5,2.62 -0.03,0 -3.5,0.88 0.18,0.8 -0.8,0.1 0.1,-1.62 0.33,-0.88 -0.72,0 -0.53,-0.37 -0.27,-0.9 -0.9,0.9 -0.54,0.53 -0.98,0.38 -1.8,-0.2 -0.64,0.54 -1.8,-0.53 -0.98,0.62 0.07,0.28 -0.88,0.63 -0.9,0.37 -0.92,-0.18 -0.53,0.1 -0.47,-0.2 -1.25,-1.8 -1.1,-0.17 0,-0.9 0.66,-0.9 0.24,-0.2 0.1,-0.9 0.72,-0.97 0.46,-0.9 -0.18,-0.54 -0.1,-0.2 0.44,-1 1,-1.78 0.47,-1 -0.2,-0.18 0.98,-0.44 0.1,-0.9 0.8,-0.9 0,-0.36 -0.43,-0.9 -0.9,0.1 -0.82,-0.92 -0.9,-0.18 0.18,-0.9 -0.1,-0.9 -0.52,-0.7 -0.44,-0.3 0,-1.33 0.06,0 0.9,-0.7 0.1,-0.2 0.1,-0.18 0.1,-0.25 0.52,-0.57 0,-0.87 -0.34,-0.9 -1.9,-0.1 -0.9,-0.38 0.27,-0.87 0.45,-1.1 0.65,-0.9 -0.75,-0.9 -0.06,-1.8 -0.82,-0.9 0,-0.18 -0.8,-0.9 -1.83,-0.45 -1,-0.1 -0.97,-0.6 0.63,-1 0.54,0.08 0.9,-0.2 0,-0.86 -0.7,-1 -0.1,-0.72 -0.54,-0.9 -0.9,0.37 0.27,1.14 -0.9,0.82 -0.2,-0.1 -1.77,0 -0.48,0.9 -0.72,0.1 -0.9,-0.72 -0.97,0.25 -0.9,-0.33 -0.54,0 0.43,0.9 -0.63,0.88 0,0.9 -0.72,0.63 0,0.1 0.44,0.47 0.38,0.96 -0.9,-0.05 -0.38,1.44 -0.88,0.33 0,0.9 0.97,0.73 0.1,0.28 0.1,0.87 1,0.4 0.1,0.9 -0.67,0.8 -0.9,0.82 0.2,0.88 -0.07,0.62 -0.9,0.56 -1,0.9 -0.3,0.73 -0.43,0.88 -0.9,0.1 -1.54,1 -0.9,0.53 -0.92,0.3 0.28,1 -0.9,0.6 -0.82,0.98 -0.15,0.47 -0.48,0.97 0.37,0.9 0.18,1 0.34,0.9 1.82,0.83 0.97,0 0.9,0.1 -0.08,0.96 0.28,0.9 -0.1,0.92 -0.72,0.25 -0.9,-0.16 -0.53,0.26 -0.1,0.38 -0.9,0.44 0.37,0.9 0.53,0.82 1.1,0.18 -0.1,0.9 0.53,0.8 -0.62,0.9 -0.9,0.56 -0.9,0.72 0.36,0.87 -1.34,0.82 -0.63,0.1 -1,-0.92 0,-0.15 -0.9,-0.1 -0.72,-0.9 -0.82,-0.1 -0.9,-0.43 -0.9,-0.72 -0.34,-1 -0.9,-0.28 -0.9,0.18 -0.8,0.38 -0.75,0 -0.42,0.98 0.62,1.8 -0.2,0.26 -0.86,0.66 -0.75,0.87 -1.35,0.38 -0.9,0.28 -0.54,0.87 -0.96,0.47 -0.63,0.53 -0.36,0.9 -0.72,0.9 -0.8,-0.08 0.27,0.97 -0.2,0.9 0.53,0.9 -0.1,0.1 -0.1,0.1 -0.9,0.18 -0.96,-0.66 -0.72,-0.97 -0.38,-0.9 -0.8,-0.9 -0.16,-1 -0.28,0 -0.9,0.18 -0.72,-0.1 -0.72,0.9 -0.34,0.92 -1.28,0.18 -0.9,0.25 -0.98,-0.43 -2.25,-0.1 -0.9,-0.1 -0.9,0.54 -1.17,2.24 -0.1,0.2 -0.62,1.2 -0.53,1.04 0.36,0.18 0.1,0.2 0.1,0.1 0.08,0.05 0,0.9 1.16,0.2 0.7,1.88 -1,0.8 -0.33,1 -0.62,0.63 -0.1,0.1 0,0.2 -1.1,0 -0.9,0.43 -0.15,1 -0.63,0.44 -0.37,1 0.37,0.9 0.1,0.63 -0.3,0.9 -0.9,1.63 0.1,0.16 0.35,0.9 -0.54,0.9 -0.15,1 0.06,0.25 -1.17,-0.25 -0.34,0.16 -0.92,-0.06 -0.56,0.96 -0.97,0.1 -0.2,0.9 1.36,0.9 1.9,1.9 0.9,0.9 0.55,0.18 0.97,-0.63 0.9,0.64 1.1,0.25 0.63,0.6 0.28,0.3 0.87,0.46 0.72,0.07 0.9,0.72 1,0.18 0.35,0.82 1.8,-0.35 0.98,0 0.47,0.35 0.9,0.9 -1.8,0.63 0.28,0.28 0.1,0.97 -0.64,0.9 -0.28,-0.1 -0.1,0.2 -0.18,0.9 0.63,0.9 0.56,0.35 -0.55,1.78 -2.65,2.27 -0.4,1.46 -0.93,0.2 -0.9,2.52 0.76,2.26 1.07,1.02 -0.82,2.65 -2.72,0.9 -1.24,1.2 -1.2,0.6 0.93,0.9 1.38,0.08 2.3,1 c 0.66,-0.2 1.32,-0.1 1.97,0.03 l 1.03,0.6 1,-1.13 1.35,-0.16 0.55,1.67 -0.8,1.45 0.73,1.73 -1.5,0.72 -0.77,0.67 -2.1,0.5 c -0.04,0.8 0.37,1.68 -0.25,2.32 l 1.03,0.4 -1.27,2.25 -1.1,0.2 -1.05,2.82 0.08,1.8 2.74,2.36 0.75,2.03 0.02,2.2 -0.77,1.85 0,1.7 -1.38,1.93 c 0.23,1.3 0.1,3.67 0.1,3.67 l -0.8,2.28 0.25,2.62 -2.9,-0.2 -3.9,0.38 -0.12,-0.8 -2.14,-2.37 -1.87,-4.02 -0.7,-0.37 0.18,-1.14 -1.76,-0.15 -6.58,-3.86 -10.15,-0.95 -2.34,-0.3 -0.9,-1.82 1.53,-3.27 -0.2,-3.85 -2.42,-3.73 -0.62,-1.74 -1,-1.22 -1.86,-0.12 -0.92,-1 -1.92,0.06 -1.93,-1.1 -0.6,-1.22 -2.7,-0.98 0.52,-0.84 -0.94,-2.66 -1,0.18 -0.9,0.44 -0.46,-0.1 -0.87,-0.24 -0.9,0.15 -1,0.67 c 0.16,0.34 0.25,0.66 0.27,0.94 l 0,0.04 c 0,0.27 -0.02,0.53 -0.12,0.75 0,0 -0.04,0 -0.04,0.02 -0.1,0.2 -0.27,0.42 -0.46,0.6 -0.1,0.08 -0.23,0.17 -0.35,0.24 -1.1,0.7 -2.85,0.96 -3.9,1.1 l -0.82,2.06 0,0.2 -0.06,0.14 0.24,1.82 0,1 0.38,0.87 -0.63,1.28 -2.63,1.25 -0.9,0.44 -0.45,-0.88 -0.9,0.1 -0.9,-0.2 -0.92,0.2 -0.53,-0.1 -1.87,-0.37 -0.9,-0.53 -1,-0.47 -0.82,0.9 -0.16,1 -0.2,0.3 -0.33,0.8 -0.48,1.34 -0.9,1.8 -0.1,1 -0.25,0.9 -0.8,1.53 0,0.16 0.9,0.36 0.68,1 -0.15,0.44 0,0.2 -0.2,0.18 -1.77,-0.3 -0.9,0.36 -0.9,-0.78 -0.92,-0.2 -0.7,0.26 -2.8,0.9 -0.7,-0.1 -1.82,0.57 -1,0.1 -0.25,0.14 -0.2,0.1 0,1.1 0.3,0 0.9,-0.2 0.87,0.35 -0.34,0.74 0,2.6 0.8,2.05 0.82,1.8 -0.28,1 0.72,0.88 -0.9,0.2 -0.72,0.36 0.53,0.88 -0.06,0.1 -0.9,0.37 -0.54,0 -0.38,0.9 0.38,1.78 0.06,0.18 -0.17,0.63 -0.1,0.9 -1,0 -0.9,0.7 -1.6,0.64 -0.9,0.2 -2,1 -1.78,0.86 -0.37,0.72 -0.1,0.1 -0.53,0.56 -0.9,0.7 -0.9,-0.17 -0.88,0.35 -0.9,0.1 -1.73,-0.2 -0.9,0 c -0.37,0.54 -0.64,1 -0.85,1.35 -0.22,0.37 -0.37,0.64 -0.48,0.88 l 0,0.03 c -0.1,0.23 -0.2,0.4 -0.25,0.54 l 0,0.03 c -0.06,0.12 -0.12,0.2 -0.2,0.28 -0.06,0.08 -0.14,0.14 -0.27,0.2 -0.37,0.13 -1.12,0.22 -2.9,0.68 l -0.9,-1.07 -0.88,-0.47 -0.2,0.1 -0.9,0.6 -1,-0.08 -0.72,-0.16 -0.1,0.25 0.38,0.64 -0.9,0.2 -0.9,0.7 -0.63,0.38 -0.9,0 -1,0.62 -0.54,1 0.38,0.88 -0.37,0.9 -0.9,0.2 -0.15,1.24 0.7,0.9 0.26,0.3 -0.42,0.87 0.37,0.9 0,0.1 0.63,0.62 0.43,0 0.92,-0.62 0.9,0.1 1.16,0.36 0.82,0.96 -0.3,0.47 0.1,0.97 0.48,0.9 0.06,1.26 0.28,1 0.53,0.9 -0.53,0.35 -0.34,0.3 -0.72,-0.3 -0.47,0.2 -0.82,0.9 0.37,0.34 0.53,-0.15 0.72,0.24 0.72,0.1 1.9,0.46 0.07,0.34 0.55,0.38 0.9,0.16 0.8,0.7 0.46,0.83 0,0.9 -0.34,0.92 0.16,0.44 0.9,1 1.2,0 1.68,1 0.2,0 2.5,0.8 2.24,0 1.8,-0.8 1.1,-0.63 1.8,-0.72 0.7,-0.08 1,-0.1 0.1,-0.1 0.9,0 0.88,0.64 0,0.37 0.9,0.88 0.82,0.48 0.9,-0.2 0.35,0.1 0.18,0.1 0.37,0.25 -0.9,1.8 0,0.9 -0.47,0.92 -0.44,0.63 -0.25,0 -0.57,0.43 -0.25,0.64 -0.28,0.2 -0.47,0 -0.35,0.08 0.2,0.72 -0.48,0.9 -0.53,0.35 -1.1,-0.1 -0.87,0.9 0.2,0.38 0.15,0.15 0,0.1 -0.35,1 0,0.7 0.25,0.45 0.9,0.56 0.9,0.25 -0.08,0.9 0.47,0.8 0.25,0.92 -0.1,0.1 -0.44,0.43 -0.72,0.28 -0.63,0.63 -0.45,0.1 -0.9,-0.38 -0.17,-0.88 -0.28,-0.1 -0.44,0.26 -1.1,0.18 0.4,0.63 0,0.9 0.77,0.9 0.47,0.82 -0.1,0.34 0,0.1 -0.2,0.27 0.73,0.92 -0.34,0.72 0.52,0.87 0.34,-0.33 0.94,-0.28 0.63,1 0.53,0.52 0,0.1 0.43,0.37 0.28,0.33 0.9,-0.2 0.9,0.58 0.26,0.07 0.37,0.37 0.64,0.82 -0.1,0.28 1.8,0.53 2.08,1.34 0.34,0.83 0.82,-0.1 0.37,-0.44 0.25,-1.2 0.9,-0.18 0.9,0.28 1,0.1 0.98,1.34 0.9,0.47 1.88,1.54 2,0.53 0.2,0.53 0.24,0 0.47,0.72 0.9,0.9 0.88,-0.53 1,0.1 0.63,0.86 0.18,0.72 1.88,1.2 0.9,0.7 0.72,-0.18 1,-0.1 -0.43,1 0,0.35 0.87,0.28 1,0 1,-0.28 0.88,1.28 0.18,0.35 0,0.1 0.44,0.52 0.2,-0.97 1,0.44 0.9,0.28 0.1,-0.1 1.05,-0.62 c 2.63,1.94 1.48,1 4.3,1.35 l 0.92,-0.44 1.2,0.15 0.9,-0.54 0.87,-0.28 1,-0.15 0.53,0.8 0,0.88 -0.44,0.92 0.1,0.47 0.25,0.33 0.37,0.38 0.2,-0.37 0,-0.2 0.8,-0.9 0.97,-1.24 0.8,-1.07 0.1,-0.1 0.38,-0.37 1.78,-0.82 0.53,0 0.92,0.3 0.2,0.9 0.52,0.1 0.44,0 1.8,0.14 0.3,0.28 0.08,0 0.88,-0.53 1,0.44 0.2,0 0.9,0.28 -0.1,0.9 c 0.75,0.13 1.16,0.12 1.53,0.04 l 0.4,-0.14 c 0.25,-0.08 0.53,-0.18 0.88,-0.28 0.36,-0.1 0.8,-0.2 1.4,-0.28 l 0.48,-0.87 0.53,-0.66 0.72,-0.34 0.8,-0.54 0.2,-0.3 0.34,-0.9 0.8,-0.24 0.92,-0.1 0.88,-0.28 0.65,-0.34 0.16,-0.2 0.8,-0.7 0.4,-0.57 1.86,-1.16 0.9,0.73 0.8,0.2 0,-0.1 1.92,0.62 c 1.58,-1.6 1.17,-1.43 3.12,-2.16 l 0.47,0.53 0.63,0.56 0.2,0.14 -0.9,0.63 0.08,0.56 1.54,-0.47 0.2,0.9 0.24,0.48 -1.06,1.53 0.87,0.25 0.18,-0.1 0.53,0.1 1.48,0.53 0,-0.06 0.87,0.14 0.57,0.47 0.53,-0.77 0.1,-0.12 0.62,-0.52 0.9,0.87 0.53,-0.06 1,0.96 0,0.9 0.44,1.1 0.1,0.34 1.43,0.2 0.53,0.9 0.2,0.96 0,0.9 0.27,1.45 0,1 -0.2,0.73 -0.52,1.62 0.35,1.44 -0.9,0.18 -0.63,1.15 -0.9,-0.28 -0.1,0.2 -0.07,0.9 -0.18,0.1 -0.2,0.43 -0.9,0.18 -0.62,1 0,0.25 -0.28,1 -0.54,0.36 0,1 0.63,0.9 0.2,0.63 0.1,0.18 -0.63,0.9 0.18,0.72 0.88,-0.47 0.62,-0.44 0.3,-0.2 0.9,-0.24 0.9,0 0.8,0.25 0.73,-0.18 0.62,-0.25 -1,0.9 0.1,0.63 0.62,0.88 -0.1,0.75 0.38,0.25 0.2,1.34 0.87,0.47 0.47,0 1.25,0.14 0.08,0 -0.53,1.3 -0.1,1.52 -0.62,0.8 -0.38,0.82 0.9,0.35 1,-0.1 0.92,0.2 0.25,0.18 0.62,-0.1 0,1.26 0.2,0.47 0.27,0.1 0.35,0.15 0.38,1 0.1,-0.1 1.06,-0.18 0.27,0.2 0.25,0 0.9,-0.54 0.53,-0.53 1.1,-0.47 0.1,1 0.1,0 0.27,0.8 0.15,0.92 0.72,-0.1 1.02,0.22 0.22,0.03 0.2,0.2 0.27,-0.2 0.3,-0.25 -0.48,-1 0.38,-0.72 -0.2,-0.28 -0.08,-0.9 -0.72,-0.97 -0.28,-0.9 0.06,-0.2 0.03,-0.08 0.32,-0.28 0.07,-0.06 0.52,-0.72 0.1,0 0.27,0.34 0.15,0.2 0.28,-0.3 0.9,0.2 0.63,-0.44 0.34,-0.38 0.57,-0.97 1.06,0.45 1,0.9 0.8,0 0.4,-0.56 0.86,-0.88 0.18,0.1 0.53,0.87 0.67,-0.98 0.53,0.53 0.9,0.9 0.07,-0.1 0.1,-0.08 0.52,-1.25 0.74,-0.2 -0.1,0.45 0.44,0.28 0.47,-0.28 0.97,-0.44 0.9,-0.44 0,-0.1 -0.1,-0.2 0.3,-1 0.34,0 0.1,-0.08 0.9,-0.34 0.62,-0.53 0.35,0.43 0.65,0.53 0.16,0.4 0.47,0.24 1.1,0.56 0.44,0 0.25,-0.28 0.8,0.2 0.2,0.43 0.9,-0.1 0.28,-0.25 0.72,0.25 0.43,0.38 0.2,0.18 -0.48,0.9 -0.62,0.46 0,0.1 -0.1,0 0,0.43 0.47,0.9 0.2,1.06 0.96,0 0.1,0.28 0.43,0.53 0.74,0.47 0.7,0.25 0.1,0.27 0.54,-0.28 0.1,0.36 0.53,-0.1 0.54,-0.18 0.28,-0.1 0.9,0.57 0.57,0.4 0,21.2 20.37,9.93 -0.16,40.63 -34.8,0.3 -13.03,0.05 -0.22,-0.06 0,0.08 -0.53,0.97 -0.38,0.8 -1,0.4 -0.87,-0.54 -0.57,0.26 -0.8,0.72 -0.88,-0.35 -0.1,-0.18 0.44,-0.63 0.1,-0.9 -0.26,-0.63 -0.9,-0.3 -0.66,-0.8 -0.53,0.1 -0.9,-0.36 -0.15,0 -0.28,-0.56 -0.54,-0.25 -0.37,1.35 -0.1,0 0.57,0.8 -0.9,-1.2 -9.13,2.46 2.7,4.44 20.58,17.18 2.06,0.75 1.22,-0.02 1.25,-0.47 3.5,0 0.7,-0.46 0,-16.96 21.62,0 0.13,13.65 -0.44,0.9 1.16,1.88 0.72,0.48 0.2,0.44 0.9,0.53 0.34,0.56 0.9,0.73 0.9,0.06 0.98,-0.54 1.28,-0.25 0.9,0.08 0.88,0.37 0.9,-0.28 1,-0.53 0.92,-0.2 0.34,-0.96 0.2,-0.47 0.9,-0.33 0.24,0 2.25,-0.1 0.2,0.63 1,0.28 1.97,0.63 1.1,-0.8 0.87,-0.2 0.56,0.2 -0.1,0.24 0,0.2 -0.62,0.9 -0.9,0.8 0.28,0.92 -0.72,0.9 1.87,-0.37 0.92,0.27 1.9,-0.56 0.44,0 0.88,0.57 -0.34,0.87 0,1.9 -0.1,0.73 0.9,-0.8 0.82,0.08 -0.28,1 0.28,1.44 0.8,1.77 0.73,0.37 0.72,0.9 -0.1,0.35 -0.9,0.8 -0.34,1 -1,1.8 -0.53,0.46 -1.54,0.53 -0.1,1.24 -0.46,0.9 -1.25,0.72 -0.1,0.72 -0.7,1.8 -0.14,-0.05 -0.27,1.22 -0.2,1.5 -0.58,3.4 -0.62,2.38 -0.88,2.03 7.84,2.66 3.34,1.94 1.62,1.53 -2.1,2.18 -5.87,0.28 -1.63,2.56 0.28,1.3 0.63,0.67 0.93,1.27 0.04,1.03 -10.93,0 0.16,267.25 69.5,0 0,-154.5 2.4,-0.62 4.6,-2.07 0,-82.43 -1.72,-0.44 -0.96,0.24 -0.1,0.9 -0.9,0 0.37,1.82 -0.8,-0.53 -0.2,0.34 0,0.1 -0.28,0.52 0.28,-0.63 0.1,-1.8 0.53,-1.36 -1.82,-1.42 -0.72,-0.9 -0.78,-0.64 0,-27.77 -10.1,1.3 -5.8,-31.1 15.9,-19.5 0,-97.23 -23.18,0 0,-19.67 7.62,0 0,-66.58 0.97,-0.88 0.1,-0.53 0.1,0 0,-0.08 0.08,-0.1 2.06,-1.7 0.45,-0.1 0.28,0 0.9,-0.82 0.63,-0.16 0.35,-0.1 0.9,-0.55 0.45,-0.64 0.9,-0.18 0.9,-0.63 0.73,-0.72 0.1,-0.1 1.1,-1.52 0,-0.05 0.24,-0.3 0.2,-0.9 0.33,-0.1 1,-0.6 c 0.98,1.2 1.7,1.75 2.8,1.96 0.16,0.03 0.32,0.06 0.48,0.07 0.08,0 0.14,0.03 0.22,0.03 l 0.76,0 0.48,-0.15 0.35,0 0.1,0.06 0.8,0.2 0.47,-0.9 -0.65,-0.8 0,-0.1 -0.35,-0.7 -0.1,-0.72 1.1,-0.28 0.7,0.1 0,0.08 1.9,-0.2 0.7,-0.36 0.92,-0.63 0.34,-0.97 0.1,-0.1 1.2,0 0.43,-0.18 0.47,-0.9 0,-0.57 0.53,-1.52 0.63,0 1.15,0.43 -0.05,0.64 0.06,0.28 0,0.1 0.58,0.52 0.72,0.3 0,0.17 0.34,0.64 0.1,-0.8 -0.44,-1.26 0.9,-0.2 0.53,-0.27 0.9,0.1 0.35,-0.9 0.53,-0.82 0.3,-0.87 0,-0.9 -0.44,-0.37 0.25,-2.7 0.1,-0.1 -0.18,-1.52 -0.16,-0.42 0,-0.1 -0.2,-0.9 -0.7,-1.72 0.52,-0.35 0.9,-0.08 0.92,-0.37 1.25,-1.25 0.1,-0.38 0.9,0.2 0.1,0.08 3.83,1 0.57,0.2 0.62,-0.48 0.16,-1.78 0.47,-0.56 0.9,-0.35 0.1,-0.18 0.34,-1.54 0.72,-0.52 0.8,-1.53 0.4,-0.8 -0.1,-1 0.18,-0.35 0.25,-0.2 0.18,-1.24 0.37,-1.1 0.35,-0.34 -0.1,-1.37 2.07,-1.25 0.46,-0.72 -0.18,-0.9 -0.1,-0.45 -0.37,-0.37 0.75,-1.88 -0.8,-0.53 -0.64,-0.1 -0.1,-0.1 -0.9,0.26 -0.73,0.1 -0.47,0.48 -0.97,0 -0.9,0.8 -0.28,0.26 -1.8,-0.2 -0.9,0.57 -1.15,0.92 -0.75,0.88 -0.72,-0.16 -0.9,0.25 -1.78,0.08 -1.25,-0.34 -0.9,0 -1,0.34 -0.2,0 -0.53,-0.28 -0.1,-0.87 -0.87,-0.9 0.06,-0.82 0.47,-1 -0.37,-0.9 -0.63,-0.44 -0.18,-1 0.18,-0.87 -1.97,0 -1.37,-1.1 -0.35,-0.63 -0.1,0 -0.34,-0.62 -0.9,-0.72 -0.28,-0.2 -0.97,0.3 -0.66,0.15 -0.97,-0.72 -0.82,-0.72 -0.55,0.1 -0.44,-0.1 -0.9,0.28 -0.9,0 -0.87,-0.37 -0.72,-0.16 -1.27,-1.4 -0.07,-0.86 0,-0.38 0.44,-0.9 -0.44,-0.22 -0.1,-0.03 -0.55,-0.27 -0.24,-0.9 0.25,-0.92 -0.7,-1.33 -0.73,-0.9 -0.62,-1.07 -0.2,-1.25 0.2,-0.28 -0.97,-1.8 -1.1,-1.8 -0.1,-0.1 0.45,-0.9 -0.88,-0.7 0.25,-0.1 -0.44,-1 -0.7,-0.88 -0.83,-0.4 0,-0.9 -1.34,-1.52 -2.26,-1.07 -0.9,-0.08 -1.16,0.34 -1.72,-0.62 -0.9,-0.8 -0.45,0.08 -0.9,-0.72 -0.9,-0.2 -0.8,-0.33 -0.92,0 -0.9,0.34 z"
2470+ id="path42686-5"
2471+ inkscape:connector-curvature="0"
2472+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2473+ overflow="visible" />
2474+ <path
2475+ d="m 1255.2,519.57 1.82,1.44 -0.9,-0.52 -0.9,-0.9 z"
2476+ id="path81448-1"
2477+ inkscape:connector-curvature="0"
2478+ overflow="visible"
2479+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2480+ <path
2481+ d="m 1309.93,561.7 -0.2,0.28 -0.08,0.37 0.28,-0.66 z"
2482+ id="path2737-6"
2483+ inkscape:connector-curvature="0"
2484+ overflow="visible"
2485+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2486+ <path
2487+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2488+ d="m 1301.2,0.5 0,82.04 69.7,0 0,-82.04 z"
2489+ id="path42596-3"
2490+ inkscape:connector-curvature="0"
2491+ sodipodi:nodetypes="ccccc"
2492+ overflow="visible" />
2493+ <path
2494+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2495+ d="m 1374.9,358.42 -1.78,-1.43 -0.8,-0.92 -2,-1 0.27,-0.88 0.27,-0.18 0.35,-0.9 -0.1,-0.92 0.9,-0.43 0.98,-0.82 1.9,-0.37 0.9,-0.53 0.73,-0.9 1.78,-0.82 0.3,-0.53 0.8,-0.9 1,-0.35 0.9,-0.56 -0.08,-0.9 0.25,-1.8 -0.53,-0.9 0.43,-0.98 0.63,-0.9 0.47,-0.38 0,-0.12 1.78,-1.48 0.9,-0.25 0.57,0 -0.47,-0.72 -0.34,-0.63 0,-0.18 -0.7,-0.3 -0.54,-0.52 -0.04,0 0,-0.1 -0.06,-0.27 0.06,-0.63 -1.15,-0.43 -0.63,0 -0.53,1.52 0,0.53 -0.46,0.9 -0.43,0.2 -1.18,0 -0.1,0.1 -0.34,0.95 -0.9,0.63 -0.72,0.37 -1.88,0.2 -0.03,0 0,-0.1 -0.7,-0.1 -1.08,0.3 0.1,0.7 0.34,0.72 0,0.1 0.66,0.78 -0.47,0.9 -0.82,-0.18 c -0.05,0 -0.17,-0.06 -0.22,-0.07 l -0.22,0 -0.46,0.16 c -0.27,0.02 -0.5,0.02 -0.72,0 l -0.1,0 c -0.08,0 -0.14,0 -0.22,-0.02 -0.16,0 -0.32,-0.04 -0.46,-0.06 -1.13,-0.2 -1.84,-0.77 -2.82,-1.97 l -1,0.62 -0.34,0.1 -0.2,0.9 -0.24,0.28 0,0.07 -1.1,1.53 -0.1,0.1 -0.7,0.7 -0.9,0.64 -0.92,0.17 -0.43,0.63 -0.9,0.56 -0.35,0.1 -0.63,0.15 -0.9,0.82 -0.3,0 -0.42,0.1 -2.07,1.72 -0.1,0.1 0,0.08 -0.1,0 0.45,0.44 -0.43,0.1 0.2,0.9 0.87,0.63 0.9,-0.1 1.2,0.7 0.96,0.3 0.9,-0.1 -0.34,0.72 0.16,0.9 -1.06,1.78 0.34,0.9 -0.06,0.3 0.87,-0.3 1,0.82 -1.17,-0.37 -0.88,0.1 -0.9,0.46 0,0.64 -0.38,0.18 -0.63,1.78 1.9,0.3 -0.9,0.6 1.44,0.73 0.9,-0.44 -0.37,0.87 1,-0.72 -0.17,-0.88 1.8,0.78 0.88,0.1 1,-0.16 0.92,0.52 0.47,-0.28 1.83,-2.95 4.9,0.03 z"
2496+ id="path42698-5-0"
2497+ inkscape:connector-curvature="0"
2498+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2499+ overflow="visible" />
2500+ <path
2501+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2502+ d="m 1348.8,272.2 -2.54,-3.88 0.7,-2.7 2.4,0.22 -2.34,-2.26 1.2,-1.54 -0.16,-3.9 -2.5,0.5 0.1,-2.1 -2.88,-1.25 -2.27,1.14 -0.96,-1.12 1.72,-1.3 -0.63,-1.63 -3.17,0.25 0.28,-2.48 -1.33,-1.1 0.9,-1.3 -0.07,-2.55 -1.54,0.45 -1.02,-0.8 0.9,-2.74 -2.06,-4.54 -0.03,-1.63 -0.86,-1.05 0.82,-1.08 -3.17,-2 -0.65,0.96 -1.82,-1.1 -0.8,0.18 -0.82,0.9 -0.34,-0.18 -0.56,-0.28 -0.63,0.2 -0.87,-0.1 -0.9,-0.88 0.24,-0.56 0.1,-0.9 -0.53,-0.9 0.97,-0.27 -1.34,-0.36 -0.53,-0.88 -0.9,-0.62 -0.35,-0.47 -0.9,-0.28 -0.9,0 -1.8,-0.54 -0.37,-0.25 -0.97,-0.1 -0.9,0.17 -0.9,0.37 -0.63,0.9 -1.18,0.82 -0.9,0.35 -0.18,0.9 -1.28,1 -2.87,1.9 -1.53,2.6 -3.5,0.9 0.18,0.8 -0.8,0.1 0.1,-1.63 0.33,-0.88 -0.72,0 -0.53,-0.38 -0.28,-0.9 -0.9,0.9 -0.54,0.53 -0.97,0.38 -1.8,-0.2 -0.63,0.54 -1.8,-0.53 -1,0.62 0.1,0.28 -0.9,0.63 -0.9,0.37 -0.9,-0.18 -0.53,0.1 -0.47,-0.2 -1.25,-1.8 -1.1,-0.17 0,-0.9 0.66,-0.92 0.25,-0.2 0.1,-0.9 0.7,-0.96 0.48,-0.9 -0.18,-0.54 -0.1,-0.2 0.45,-1 1,-1.77 0.47,-1 -0.2,-0.17 0.98,-0.44 0.1,-0.92 0.8,-0.9 0,-0.35 -0.43,-0.9 -0.92,0.1 -0.8,-0.92 -0.92,-0.17 0.2,-0.9 -0.1,-0.9 -0.54,-0.7 -0.43,-0.3 0,-1.33 0.05,0 0.9,-0.72 0.1,-0.2 0.1,-0.17 0.1,-0.24 0.52,-0.57 0,-0.88 -0.35,-0.9 -1.9,-0.1 -0.9,-0.38 0.27,-0.87 0.43,-1.1 0.66,-0.9 -0.76,-0.9 -0.06,-1.8 -0.82,-0.9 0,-0.18 -0.8,-0.92 -1.82,-0.44 -1,-0.1 -0.97,-0.6 0.62,-1 0.53,0.08 0.9,-0.2 0,-0.86 -0.72,-1 -0.08,-0.72 -0.53,-0.9 -0.92,0.37 -1,0.16 -0.62,0.28 -1.78,-0.7 -1,0.08 -2.8,-1.63 -0.36,0.28 -0.97,0.1 -0.9,0.24 -0.9,-0.8 -1,0.08 -0.2,-0.9 0.38,-0.97 0.8,-0.57 0.45,-0.87 -0.25,-0.82 0.96,-0.63 0.9,-0.8 -0.1,-0.48 1,-0.72 0.9,0.1 0.45,-1 -0.9,-0.16 -0.26,-0.57 -0.9,-0.35 -0.1,-2.53 -0.48,-0.9 -0.78,-0.35 -0.37,-1.8 0.9,-0.82 -0.62,-1.8 -0.63,-0.9 0.07,-0.43 -1.36,-0.37 -0.9,-0.63 1.8,-0.28 2,-1.63 0.98,-0.06 0.9,-0.47 0.38,-4.02 0.06,-5.4 0,-2.44 -0.53,-1 -2.44,-3.06 -0.35,-0.88 1,-0.9 0.7,-0.1 0.9,0.28 0.9,-0.2 0.9,-0.45 1.88,-0.44 1.44,-0.3 1.8,-1.43 1.92,0.2 0.86,-0.1 0.9,0.56 1,0 0.82,-0.9 0.16,-0.48 0.18,-0.53 -0.25,-0.34 -0.37,-0.57 -0.38,-0.9 1,-0.15 0.28,-0.9 0.54,-0.3 1.34,-0.14 0.53,0 0.92,-0.37 -0.63,-0.9 c 0.06,-0.18 0.14,-0.33 0.2,-0.47 0.03,-0.03 0.03,-0.07 0.04,-0.1 l 0.2,-0.3 0.08,-0.17 0.16,-0.2 0.16,-0.15 0.1,-0.1 c 0.03,-0.03 0.08,-0.03 0.12,-0.06 l 0.12,-0.13 0.16,-0.1 0.28,-0.15 c 0.08,-0.03 0.17,-0.04 0.25,-0.06 0.13,-0.05 0.26,-0.1 0.4,-0.13 l 0.6,-0.1 c 0.2,0 0.4,0 0.6,-0.02 0.4,-0.02 0.8,-0.06 1.2,-0.15 0.4,-0.1 0.8,-0.23 1.17,-0.5 l 1.9,-0.53 0.97,-0.47 0.76,0.1 1.5,-0.72 0.38,-0.2 0.53,-0.87 -0.44,-0.62 -0.47,-0.06 -0.44,-0.04 -0.9,-0.56 -0.9,-0.25 -0.07,-5.12 -0.2,-1.18 -0.9,-0.1 -0.1,-0.1 -0.6,-0.52 -0.2,-0.9 -0.88,0 -1,-0.35 0.2,-0.9 0.34,-0.44 -0.96,-0.46 -0.94,-0.63 -0.97,-0.27 -0.2,-0.97 0.4,-0.37 0.24,-0.92 0.72,-0.87 -0.54,-1 -1.72,-0.7 0.56,-0.92 -1,-0.28 -0.9,-0.44 1.62,0 2.78,-2.25 -0.88,-0.42 -0.12,-0.57 1.84,-0.83 2.07,-1 1,-0.2 -0.24,-0.77 -5.9,-2.12 2.6,-1.57 15.48,-4.86 0.07,-27 60.2,0 0,-82.06 69.5,0 0,82.04 41.5,0 0,42.94 -22.82,0 0,1.3 -68.72,0 0,17.73 0.47,0 0.15,-0.1 0.9,0.36 0.67,0.9 -0.38,1 0,0.9 0.2,0.92 -0.3,0.87 0.2,0.9 1.78,0 0.9,0.2 1.63,0.34 0.34,0.9 0,0.9 -0.87,0.8 0.87,0.64 0.13,0.9 0.87,0.44 0.2,0.72 -0.92,0.1 -0.97,0.7 -0.8,0.92 0,1.44 -1,0.47 -0.82,0.87 -0.9,0.63 -0.62,0.1 2.9,1 1.97,3.77 -0.02,3.43 -5.52,7.43 -8.93,4.37 -0.02,0 0.72,0.86 0.28,0.9 0.63,0.9 0.8,0.73 1.8,0.8 1.9,1.26 0.34,0.08 0.9,0.47 0.3,0.88 -0.1,0.46 -0.47,0.53 0.9,0.43 1.63,2.72 0.9,1.78 -0.18,1 0.72,0.63 1,-0.1 0.62,0.9 0.8,-0.46 -0.4,-0.92 2.15,-0.78 -1.37,-1.83 0.36,-1.92 1.66,-0.6 1.74,0.33 3,-1.6 0.48,0.47 1.26,-1.73 0.23,-0.8 0.88,-0.87 0.67,0.52 1.44,-0.6 0.55,-0.54 0.98,0.3 1.7,-2 3.56,-0.73 4.25,0.87 0.65,-0.12 0.75,0.5 1.63,-0.07 1.3,0.6 1.5,-0.47 1.87,-0.34 2,1.12 0.2,0.9 0.87,0.73 0.1,0.87 -0.54,0.47 0.72,0.9 -1.34,0.62 -0.18,0 -0.8,1 -1.07,1.78 -0.38,0.82 0.63,0.9 1.8,1.07 1,0.8 0.73,0.9 -1.53,1 0.62,0.9 1.88,0.9 0.18,1 -0.43,1 -0.2,0.86 0.38,0.9 -1.1,0.73 -0.9,0.17 -0.62,0.53 -0.9,0.47 -0.9,0.72 0.18,0.7 -0.37,0.92 0.48,1.53 0.62,0.87 0.9,0.2 0.54,0 0.47,0.9 0.8,0.46 -0.4,1.05 -0.03,1.63 -0.55,0.8 -0.02,0.02 -0.9,0.13 -0.14,0.44 -0.03,0.26 -1.14,1.4 -0.75,1.25 -1.95,0.42 -0.45,0.75 -1.3,0.06 -0.37,1.04 -1.75,0.55 0.38,0.54 -0.74,0.2 -0.12,0.6 0.4,0.98 0.93,0.4 -0.9,1.32 0.3,1.43 -0.52,0.56 0.37,1.43 -0.3,1.1 0.4,0.7 -0.65,0.78 -0.57,-0.46 -0.32,-0.6 -1.9,0.36 -0.42,1.4 -0.54,0.04 -0.67,1 -1.6,0.33 -0.9,0.04 -1.24,-0.38 -1.6,0.1 -1.18,-0.83 -0.82,0.5 -1.16,0.96 -0.54,1.23 c -0.46,0.18 -0.1,-0.54 -0.6,-0.36 -0.5,0.2 -1.1,0.12 -1.6,0.33 l -0.23,-0.65 -1.4,0.5 -1.3,-0.42 -2.5,-0.25 -0.8,-0.2 -2.52,1.08 -0.15,1.57 -1.36,-0.02 -0.02,0 0,0.9 -0.8,1.87 -0.92,-0.1 0,1 -0.8,1 0.46,0.88 -1,-0.1 -0.9,-0.52 -0.9,-0.1 0.9,1.64 1.52,1.8 -0.43,0.35 -0.9,0.37 -0.92,0.9 0.1,0.72 -0.35,0.43 -1.18,-0.44 -0.2,0.06 -0.52,0.47 0.9,0.53 1.88,1.97 0.37,0.56 -0.56,1.77 -0.53,-0.25 -0.9,0.72 -0.07,-0.38 -0.9,0.38 -0.2,0.9 -0.52,0.88 -0.2,0.28 -0.37,1.88 0.3,0.9 0.9,0.47 1.8,0 0.63,-0.28 0.88,0.28 1.9,-0.56 0.92,0.08 0.87,0.72 0.47,0.9 1,0.48 -1.34,0.15 -0.57,0.9 -0.9,0 0.28,0.82 -1.96,0.44 -0.47,1 -1,0.52 -0.87,0.28 -0.9,0.53 -0.35,0.9 -0.66,1.26 -0.92,0 -0.87,0.36 -0.9,1.25 0.1,1 0.62,0 0.9,0.36 1.8,0.28 0.7,0.2 0.57,1.77 0.24,1.73 0.9,-0.1 0.9,0.47 0.92,-0.47 0.88,-0.1 1.62,-0.1 0.9,0.2 0.9,-0.44 0.45,-0.3 0.82,-0.9 0.9,-0.1 0.1,-0.14 c 3.87,1.92 3.76,-2.47 6.32,0.53 l 0,0.9 -0.57,1.53 -0.62,0.96 -0.2,0.46 0.64,0.9 -0.55,0.73 -0.34,0.86 -1,-0.25 -3.24,-0.7 -1.25,-0.63 -0.6,0.44 0,0.9 0.7,0.92 0.2,0.34 -1,0.47 -0.9,0.16 -0.92,-0.17 -1.34,0.88 -0.54,0.9 -0.62,0.64 -1.9,0.28 -1.26,0.44 -0.9,0 0.18,0.9 0,0.1 0.2,0.37 -0.2,0.72 -0.9,0 -0.9,0.63 -0.98,2.25 -0.56,0.53 -0.25,0.9 0.9,-0.1 0.45,0.73 0.1,0.9 0.62,-0.3 0.72,0.4 0.18,0.43 0.72,0.9 -0.8,0.9 0.9,0.54 0,0.9 -0.66,0.26 0.65,1 0,0.7 -0.48,1.17 -0.87,-0.06 -0.75,0.87 -0.16,0.67 -0.1,0.06 -0.9,0.1 -0.62,0.37 -0.2,0.2 -1.96,0 -1.37,-1.1 -0.36,-0.63 -0.1,0 -0.34,-0.63 -0.9,-0.7 -0.28,-0.2 -0.97,0.28 -0.66,0.16 -0.98,-0.72 -0.8,-0.72 -0.57,0.1 -0.44,-0.1 -0.9,0.28 -0.9,0 -0.88,-0.38 -0.72,-0.15 -1.28,-1.4 -0.06,-0.86 0,-0.38 0.44,-0.9 -0.44,-0.22 -0.1,-0.03 -0.56,-0.27 -0.25,-0.9 0.25,-0.92 -0.7,-1.33 -0.73,-0.9 -0.63,-1.07 -0.2,-1.25 0.2,-0.28 -0.97,-1.8 -1.1,-1.8 -0.08,-0.1 0.42,-0.9 -0.87,-0.7 0.25,-0.1 -0.44,-1 -0.72,-0.88 -0.8,-0.4 0,-0.9 -1.35,-1.52 -2.26,-1.07 -0.9,-0.08 -1.17,0.34 -1.72,-0.62 -0.9,-0.8 -0.44,0.08 -0.9,-0.72 -0.9,-0.2 -0.8,-0.33 -0.92,0 -0.9,0.34 z"
2503+ id="path42686-1-8"
2504+ inkscape:connector-curvature="0"
2505+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2506+ overflow="visible" />
2507+ <path
2508+ inkscape:connector-curvature="0"
2509+ d="m 1432.87,317.3 0.02,0 -0.02,0 z"
2510+ id="path5722-1"
2511+ overflow="visible"
2512+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2513+ <path
2514+ inkscape:connector-curvature="0"
2515+ d="m 1432.9,317.3 -4.07,5.6 -14.06,15.05 -29.06,0.3 0.02,0.02 -0.56,0 -0.9,0.25 -1.8,1.47 0,0.14 -0.46,0.38 -0.62,0.9 -0.44,0.97 0.53,0.9 -0.25,1.8 0.1,0.9 -0.9,0.55 -1,0.34 -0.82,0.9 -0.28,0.53 -1.78,0.8 -0.72,0.92 -0.9,0.53 -1.92,0.38 -0.96,0.8 -0.9,0.45 0.08,0.9 -0.34,0.92 -0.28,0.2 -0.28,0.86 2,1 0.8,0.9 1.8,1.44 -1,1.3 -4.9,-0.03 -1.83,2.94 -0.48,0.28 -0.9,-0.53 -1,0.15 -0.88,-0.1 -1.8,-0.78 0.18,0.88 -1,0.72 0.37,-0.88 -0.9,0.43 -1.45,-0.72 0.9,-0.6 -1.9,-0.3 0.62,-1.78 0.38,-0.18 0,-0.63 0.9,-0.46 0.88,-0.1 1.2,0.38 -1,-0.8 -0.9,0.27 0.07,-0.3 -0.34,-0.9 1.06,-1.78 -0.15,-0.9 0.34,-0.72 -0.9,0.1 -0.97,-0.3 -1.18,-0.7 -0.9,0.1 -0.88,-0.64 -1.27,-0.04 0,66.6 -7.62,0 0,19.65 23.18,0 0,97.22 -15.9,19.5 5.8,31.1 10.1,-1.3 0,27.85 0.8,0.62 0.7,0.9 1.82,1.44 -0.53,1.36 -0.1,1.8 0.2,-0.33 0.8,0.53 -0.37,-1.8 0.9,0 0.1,-0.92 0.97,-0.25 1.7,0.43 0,0.28 0.7,0.76 0.03,0.03 c 0.02,0 0.04,0 0.06,0.02 l 0.1,0 0.03,-0.03 0.06,-0.07 0.03,-0.03 0.12,-0.75 0.7,0.12 0.77,0.9 0.57,0.38 0.06,0.06 c 0.03,0.03 0.06,0.04 0.1,0.05 l 0.05,0 c 0.03,0 0.05,-0.02 0.07,-0.04 0,0 0.02,0 0.03,-0.02 l 0.03,-0.03 0.03,-0.06 0,-0.07 -0.04,-0.07 -0.16,-0.3 -0.22,-0.76 0.72,-0.28 0.06,-0.03 c 0,-0.02 0.02,-0.03 0.03,-0.04 l 0.02,-0.1 0,-0.09 -0.03,-0.03 c -0.02,0 -0.03,-0.02 -0.04,-0.03 l -0.87,-0.8 -0.8,-0.82 0,-0.03 -0.03,-0.03 -0.2,-0.78 0.4,-0.8 0.15,-0.23 0.84,-0.24 0.03,0 0.02,-0.03 c 0.02,-0.02 0.03,-0.04 0.03,-0.07 0.02,0 0.03,0 0.03,-0.03 l 0.16,-0.9 0.16,-0.78 0.8,-0.44 c 0.03,0 0.05,0 0.07,-0.02 l 0.78,-0.66 0.03,0 0.63,-0.1 c 0.03,0 0.05,0 0.07,-0.02 l 0.03,-0.03 0.03,-0.04 0.03,-0.06 0,-0.04 0,0 -0.03,-0.03 c 0,-0.03 0,-0.05 -0.03,-0.07 l -0.94,-0.8 0,-0.7 0.4,-0.06 0.04,0 0.03,-0.03 0.06,-0.07 0.53,-0.85 0,-0.03 0.8,-0.37 c 0.02,0 0.03,-0.02 0.04,-0.03 l 0.03,-0.03 0.03,-0.04 0,-0.03 0.22,-0.75 0.75,0.16 0.09,0 c 0,0 0,-0.02 0.02,-0.03 l 0.03,-0.03 0.22,-0.22 0.06,-0.03 0.84,-0.3 0.04,-0.04 c 0.02,0 0.03,0 0.04,-0.03 l 0.03,-0.06 0,-0.08 -0.13,-0.66 c 2.4,0.47 3.54,0.54 6.06,0.06 l 0.17,0 c 0.03,0 0.05,0 0.07,-0.03 l 0.9,-0.54 0.02,-0.03 c 0.02,0 0.02,-0.02 0.03,-0.03 l 0.03,-0.06 0.25,-0.88 0,-0.03 0.13,-0.9 0,-0.04 c 0,-0.03 -0.02,-0.05 -0.03,-0.07 l 0,-0.03 -0.03,0 -0.63,-0.9 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.03,-0.03 -0.02,0 -0.87,-0.37 -0.05,0 -0.04,0 -0.02,0 -0.03,0 -0.78,0.3 -0.8,-0.7 -0.07,-0.04 -0.25,-0.1 0.47,-0.37 0.53,0.85 0.03,0.03 c 0.03,0 0.06,0.03 0.1,0.03 l 0.12,0 0.03,-0.03 0.03,-0.03 0.03,-0.04 0,-0.06 0,-0.78 0.64,-0.1 0.66,0.8 c 0.02,0 0.04,0.03 0.06,0.05 l 0.03,0 0.18,0.06 0.03,0 0.04,0.03 0.84,0.7 c 0,0 0.02,0 0.03,0.02 l 0.18,0 0.03,-0.03 0.75,-0.53 0.34,0.47 0,0.02 0.43,0.88 0.03,0.03 0.03,0.03 c 0,0 0,0.02 0.02,0.03 l 1.01,0 0.9,0.33 0.07,0.03 0.9,0 0.84,-0.1 0.84,0.7 0.03,0 0.7,0.37 0.03,0 0.88,0.44 c 0.03,0.02 0.07,0.03 0.1,0.03 l 0.03,0 0.06,-0.03 0.77,-0.4 0.82,0.65 0.9,0.66 c 0.02,0 0.06,0.03 0.1,0.03 l 0.05,0 0.88,-0.18 0.06,-0.03 0.86,-0.54 0.03,0 0.93,-0.25 c 0.02,0 0.04,0 0.06,-0.02 0,0 0,-0.02 0.02,-0.03 l 0.25,-0.32 -0.03,0.13 -0.44,0.87 0,0.16 0.04,0.02 c 0,0.03 0.03,0.05 0.06,0.06 0.03,0.02 0.06,0.03 0.1,0.03 l 0.02,0 c 0,0 0.02,0 0.03,-0.02 l 0.85,-0.37 0.34,0.76 0.03,0.03 c 0,0 0.02,0 0.03,0.02 l 0.53,0.44 0.03,0.03 0.13,0 0.9,-0.17 c 0.03,0 0.05,-0.02 0.07,-0.03 l 0.03,-0.03 0.03,-0.03 c 0.02,-0.02 0.03,-0.04 0.03,-0.07 l 0.16,-0.9 0.12,-0.8 0.54,-0.3 0.15,0.75 c 0,0.03 0.02,0.05 0.03,0.07 0,0 0.02,0 0.03,0.02 l 0.05,0.03 0.03,0 0.82,0.15 0.65,0.82 -0.74,0.6 0,0.02 -0.8,0.9 -0.54,0.54 c -0.02,0 -0.05,0.04 -0.06,0.06 l 0,0.09 0.2,0.85 0,0.06 -0.17,0.63 -0.7,-0.22 -0.02,0 -0.05,0 -0.03,0 -0.9,0.28 c -0.02,0 -0.03,0.02 -0.04,0.03 l -0.9,0.53 c 0,0 -0.02,0 -0.03,0.02 -0.02,0 -0.02,0.02 -0.03,0.03 l 0,0.07 -0.2,0.87 -0.02,0.05 0.12,0.9 0,0.06 0.03,0.03 0.07,0.07 0.12,0 0.53,-0.16 -0.22,0.53 0,0.02 -0.34,0.94 0,0.03 -0.6,0.83 -0.02,0.04 -0.72,0.87 0,0.03 -0.43,0.88 -0.03,0.03 -0.66,0.37 -0.03,0.03 c 0,0.02 0,0.04 -0.02,0.07 -0.02,0.02 -0.03,0.06 -0.03,0.1 0,0 0.02,0 0.03,0.02 l 0.25,0.9 c 0,0.02 0.02,0.03 0.03,0.04 0,0.02 0.02,0.03 0.03,0.04 0,0 0,0.02 0.02,0.03 l 1,0.63 0.88,0.53 0.03,0.03 0.87,0.6 0,0.02 0.88,0.53 0.03,0 0.38,0.83 0.03,0.03 0.08,0.06 0.87,0.53 0.03,0 0.4,0.16 0.07,0.04 0.84,0.78 c 0,0 0,0.02 0.02,0.03 l 0.03,0 0.04,0.03 c 0,0 0.03,0 0.05,-0.03 l 0.8,-0.15 0.85,0.5 0.9,0.62 c 0.02,0 0.03,0.02 0.04,0.03 l 0.84,0.25 0.07,0.03 0.9,0.66 0.03,0.02 0.78,0.88 0.07,0.06 0,-0.13 0.15,0.28 0,-0.33 0.9,0.9 1,0.26 1,0 0.88,0.47 0.9,0.15 0.63,0.9 0.28,0.9 0.43,0.36 0.92,0.3 0.9,0.6 0.35,0.1 1.1,0.73 1.8,-0.2 1.6,-0.7 0.72,-0.98 0.55,-1.8 0.88,-1.17 1.1,-2.97 -0.2,-0.9 0.38,-1.9 0.9,-2.25 -0.55,-1.78 -0.1,-0.9 0.3,-0.9 -0.1,-0.92 -0.45,-0.87 0.1,-1 0.34,-0.9 0.47,-0.54 -0.36,-1.9 0.9,-0.88 0.9,-0.2 -0.9,-0.7 -0.8,-0.3 0.8,-1.87 0.9,-0.3 -0.1,-1 0.64,-1.77 0.28,-1.9 0.88,-0.82 0.37,-0.6 0.54,0 -0.2,-3.7 -6.95,-2.1 -0.17,-11.87 -0.8,-1.5 0.74,-1.97 0.06,-17.84 7.12,-10.88 0,-25.78 -30.18,0 0,-53.64 30.18,0 0,-116.35 17.75,-14.65 -2.7,-5.15 -1.9,-1.3 0.4,-2 1.77,-6.48 -19.5,-3 -3.3,-1.27 z"
2516+ id="path5720-4"
2517+ overflow="visible"
2518+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2519+ <path
2520+ inkscape:connector-curvature="0"
2521+ d="m 1384.6,599.04 0.83,0.56 0.87,0.1 0.94,0 0.94,0.1 0.47,-0.64 0.8,0.75 -0.34,0.92 -1.67,1.06 -0.97,0 -0.78,-0.43 -0.78,-0.72 -0.35,-0.85 0.06,-0.84 z"
2522+ id="path5714-7"
2523+ overflow="visible"
2524+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2525+ <path
2526+ inkscape:connector-curvature="0"
2527+ d="m 1384.05,599.95 0.22,0.62 0.2,0.44 0.7,0.57 -0.62,0.25 -0.72,-0.3 -0.65,0.2 0.22,-0.84 0,-0.65 z"
2528+ id="path5712-8"
2529+ overflow="visible"
2530+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2531+ <path
2532+ inkscape:connector-curvature="0"
2533+ d="m 1412.7,611.13 0.85,0.16 0.94,-0.1 -0.73,0.93 0,0.53 0.94,0.57 -0.93,0.06 -1.66,-0.42 0.1,-1.03 0.5,-0.72 z"
2534+ id="path81509-3"
2535+ overflow="visible"
2536+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2537+ <path
2538+ d="m 1373.55,618.57 -0.28,0.62 0.28,-0.54 0,-0.1 z"
2539+ id="path81507-6"
2540+ inkscape:connector-curvature="0"
2541+ overflow="visible"
2542+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2543+ <path
2544+ d="m 1440.62,597.35 -0.22,0.34 0.25,0.06 -0.03,-0.4 z"
2545+ id="path81505-3"
2546+ inkscape:connector-curvature="0"
2547+ overflow="visible"
2548+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2549+ <path
2550+ d="m 1387.96,697.38 c -0.04,0 -0.07,0.02 -0.1,0.03 0,0.02 -0.02,0.03 -0.03,0.04 -0.86,0.63 -1.67,0.68 -2.56,0.63 -0.88,-0.05 -1.8,-0.2 -2.84,-0.03 -1.54,0.17 -3.1,0.13 -4.56,0.5 l 0,0.12 -4.6,2.07 -2.4,0.62 0,154.5 69.53,0 0,-122 -1.78,0 -0.9,-0.53 -1,-0.1 -0.92,0.72 -1.78,-1.43 -0.72,-0.37 0,-0.15 c -0.4,-0.04 -0.8,-0.02 -1.8,-0.3 l -0.04,0 -0.78,-0.54 0,-0.03 -0.44,-0.87 -0.03,-0.03 -0.62,-0.97 c 0,-0.03 -0.03,-0.05 -0.06,-0.07 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.57,-0.22 -0.63,-0.78 0.03,0 -0.53,-0.87 -0.06,-0.8 0.5,-0.84 0.03,-0.03 0.06,-0.28 0.04,-0.06 -0.1,-0.92 0,-0.03 -0.03,0 c -0.4,-1.1 -0.64,-1.55 -0.94,-2.1 0.02,0 0.03,0 0.03,-0.02 l 0.04,0 0.03,-0.03 0.03,-0.04 0,-0.03 0.03,-0.03 0,-0.06 -0.03,-0.06 -0.03,-0.03 -0.4,-0.88 c -0.02,0 -0.03,-0.02 -0.04,-0.03 l -0.9,-0.9 -0.04,-0.04 -0.87,-0.72 -0.28,-0.53 0.68,0.07 0.06,0 c 0.04,0 0.06,-0.02 0.08,-0.04 l 0.03,-0.03 0.04,-0.06 0.28,-0.92 0,-0.06 -0.03,-0.1 c -0.02,0 -0.03,0 -0.04,-0.02 -0.02,-0.02 -0.04,-0.03 -0.07,-0.03 l -0.72,-0.28 -0.07,0 c 0,-0.02 0,-0.02 -0.02,0 0,-0.02 -0.02,-0.02 -0.03,0 l -0.9,0.36 -0.04,0 c 0,0 0,0.02 -0.02,0.03 0,0 -0.02,0 -0.03,0.02 l -0.56,0.82 -0.82,0 -0.03,0 c -0.03,0 -0.05,0 -0.06,0.03 l -0.83,0.4 -0.97,0 -0.06,0.03 -0.1,0 0.2,-0.5 0.9,-0.8 0.03,-0.07 0.03,-0.06 0.06,-0.88 0,-0.04 0.2,-0.87 0,-0.08 -0.1,-0.97 0,-0.03 -0.2,-0.9 0,-0.03 c 0,-0.04 0,-0.06 -0.02,-0.08 l -0.78,-0.8 0,-0.04 -0.03,-0.03 -0.22,-0.84 c 0,0 0,-0.02 -0.02,-0.03 l -0.03,-0.03 -0.03,-0.03 c -0.02,0 -0.04,0 -0.07,-0.02 l -0.03,0 -0.87,-0.1 -0.06,0 -0.08,0.04 c -0.02,0 -0.04,0.04 -0.06,0.06 -0.48,0.76 -0.5,1.5 -0.62,2.22 -0.12,0.7 -0.35,1.43 -1.1,2.34 l -0.75,-0.25 -0.1,0 -0.03,0 -0.9,0.27 -0.88,0.3 -0.48,0.1 0.3,-0.58 0.42,-0.8 0.81,0 c 0,0 0.02,0 0.03,-0.03 l 0.03,0 0.9,-0.43 0.05,-0.03 0.03,-0.06 0.03,-0.06 0.17,-0.87 0,-0.06 -0.06,-0.9 c 0,0 0,-0.02 -0.03,-0.03 l 0,-0.05 -0.12,-0.2 0.22,-0.8 0.28,-0.97 0,-0.03 0.34,-0.85 0,-0.03 0.5,-0.8 0.96,-0.82 0.03,-0.04 0.02,-0.02 0,-0.03 c 0.02,0 0.02,-0.02 0.03,-0.03 0,-0.03 0,-0.06 -0.03,-0.1 l -0.34,-0.96 0,-0.03 -0.16,-0.72 0.8,-0.5 c 0.03,0 0.04,0 0.05,-0.02 l 0.03,-0.06 0,-0.13 -0.44,-0.85 -0.1,-0.9 c 0,-0.03 0,-0.05 -0.03,-0.07 l -0.43,-0.9 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.04,-0.03 c 0,0 -0.04,0 -0.06,-0.02 l -0.09,0 -0.06,0.03 c 0,0.02 -0.02,0.03 -0.03,0.04 l -0.36,0.35 c 0,0 -0.02,0 -0.03,0.02 0,0.02 0,0.04 -0.02,0.06 l 0,0.1 0.25,0.85 -0.3,0.78 -0.85,0.5 c -0.02,0 -0.03,0.02 -0.04,0.03 l 0,0.03 -0.65,0.9 c -0.03,0.03 -0.04,0.05 -0.04,0.07 l -0.16,0.84 -0.47,0.82 -0.87,0.55 -0.03,0 -1.78,0.87 c -0.02,0 -0.03,0.02 -0.03,0.03 l -0.88,0.63 c -0.02,0 -0.04,0 -0.06,0.03 l -0.53,0.63 c -0.02,0 -0.02,0.02 -0.03,0.03 l -0.54,0.88 0,0.03 -0.65,0.84 -0.03,0.05 -0.97,0.78 c -0.03,0 -0.05,0.03 -0.06,0.06 l 0,0.02 -0.28,0.9 c -0.02,0.02 -0.02,0.03 0,0.04 l 0,0.06 c 0,0 0,0.02 0.02,0.03 l 0,0.03 0.03,0.03 c 0.02,0.03 0.04,0.04 0.06,0.04 l -0.68,0.32 -0.53,-0.8 c -0.02,0 -0.03,0 -0.04,-0.02 l -0.84,-0.75 -0.28,-0.63 0.5,0.15 c 0,0.02 0.03,0.03 0.06,0.04 0.03,0 0.06,-0.02 0.1,-0.04 0,0 0,-0.02 0.02,-0.03 0.02,-0.02 0.03,-0.05 0.03,-0.07 0.02,-0.03 0.03,-0.06 0.03,-0.1 0,0 -0.02,0 -0.03,-0.02 l -0.18,-0.87 0,-0.06 -0.44,-0.9 -0.2,-0.85 0,-0.03 -0.08,-0.2 0,-0.03 -0.03,-0.03 -0.88,-0.88 -0.03,-0.03 -0.65,-0.78 0,-0.03 -0.1,-0.87 0,-0.04 -0.02,-0.02 -0.03,-0.03 -0.9,-0.9 c -0.02,0 -0.03,-0.03 -0.04,-0.04 l -0.9,-0.42 -0.04,-0.03 -0.84,-0.3 -0.78,-0.8 0.6,-0.7 0.15,0 c 0.03,0 0.07,0 0.1,-0.02 0.02,0 0.04,-0.03 0.06,-0.06 0.02,0 0.03,-0.02 0.03,-0.03 l 0,-0.03 0,-0.02 0,-0.03 -0.06,-0.9 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l 0,-0.02 -0.03,-0.03 c 0,0 0,-0.02 -0.02,-0.03 l -0.9,-0.53 -0.04,-0.05 -0.03,0 -0.77,0 -0.06,-0.75 0,-0.02 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.03,-0.03 -0.87,-0.9 -0.03,-0.02 -0.03,0 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.06,0 -0.03,0 -0.07,0.04 c -0.6,0.44 -1.07,0.6 -1.43,0.6 -0.37,-0.02 -0.65,-0.2 -0.97,-0.42 -0.64,-0.45 -1.34,-1.18 -2.53,-1.12 l -0.03,0 -0.03,0.03 -0.9,0.44 -0.02,0 -0.72,-0.1 -0.87,-0.77 -0.04,0 -1,-0.62 -0.03,-0.02 -0.88,-0.44 -0.9,-0.44 c -0.02,0 -0.03,-0.02 -0.04,-0.03 l -0.86,-0.34 -0.03,0 c 0,-0.02 0,-0.03 -0.02,-0.04 l 0,-0.02 z m 28.1,21.72 0.93,0 0.9,0.7 0.93,0.33 0.85,-0.3 0,0.86 -0.9,-0.26 -0.98,0.32 -0.87,0.75 -0.44,-0.34 -0.92,0.2 -0.87,0.12 -0.96,-0.1 -0.84,-0.72 0.47,-0.84 0.84,-0.28 0.98,-0.13 0.87,-0.3 z"
2551+ id="path81495-8"
2552+ inkscape:connector-curvature="0"
2553+ overflow="visible"
2554+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2555+ <path
2556+ d="m 1409.58,715.1 0.47,0.1 -0.1,0.34 -0.37,-0.44 z"
2557+ id="path81493-2"
2558+ inkscape:connector-curvature="0"
2559+ overflow="visible"
2560+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2561+ <path
2562+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2563+ d="m 1377.87,616.24 0.68,1.02 0.03,0.03 c 0.02,0 0.04,0 0.06,0.02 l 0.1,0 0.03,-0.03 0.06,-0.07 0.03,-0.04 0.13,-0.76 0.67,0.13 c 0,0 0.77,0.9 0.8,0.9 l 0.55,0.38 0.06,0.06 c 0.03,0.03 0.06,0.04 0.1,0.04 l 0.07,0 c 0.02,0 0.04,0 0.06,-0.03 0,0 0.02,0 0.03,-0.02 l 0.03,-0.03 0.03,-0.06 0,-0.07 -0.04,-0.07 -0.15,-0.3 -0.2,-0.76 0.7,-0.28 c 0.03,0 0.05,-0.02 0.07,-0.03 0,-0.02 0.02,-0.03 0.03,-0.04 0.02,-0.03 0.03,-0.06 0.03,-0.1 l 0,-0.09 -0.03,-0.03 -0.03,-0.03 -0.88,-0.8 -0.8,-0.82 0,-0.03 -0.02,-0.03 -0.22,-0.78 0.4,-0.8 0.16,-0.23 0.85,-0.24 0.03,0 0.03,-0.03 0.03,-0.07 0.03,-0.03 0.15,-0.9 0.15,-0.78 0.82,-0.44 c 0.02,0 0.04,0 0.06,-0.02 l 0.78,-0.66 0.03,0 0.62,-0.1 c 0.02,0 0.04,0 0.06,-0.02 l 0.03,-0.04 c 0.02,0 0.03,-0.02 0.04,-0.03 l 0.03,-0.06 0,-0.07 0,0 -0.03,-0.03 c 0,-0.03 -0.02,-0.05 -0.03,-0.07 l -0.93,-0.8 0,-0.7 0.4,-0.06 0.04,0 c 0.02,0 0.03,-0.02 0.04,-0.03 l 0.06,-0.07 0.54,-0.85 0,-0.03 0.8,-0.37 c 0.02,0 0.03,-0.02 0.04,-0.03 l 0.03,-0.04 c 0.02,0 0.03,0 0.04,-0.02 l 0,-0.03 0.22,-0.75 0.75,0.16 0.1,0 0.03,-0.03 c 0.02,0 0.03,-0.02 0.04,-0.03 l 0.2,-0.22 0.08,-0.03 0.84,-0.32 c 0,0 0,-0.02 0.02,-0.03 l 0.03,-0.03 0.03,-0.06 0,-0.11 -0.12,-0.64 c 2.4,0.46 3.54,0.54 6.06,0.06 l 0.13,0 c 0.03,0 0.05,-0.02 0.07,-0.03 l 0.9,-0.54 c 0.02,0 0.03,-0.02 0.04,-0.03 0.02,0 0.03,-0.02 0.03,-0.03 l 0.04,-0.07 0.26,-0.87 0,-0.03 0.12,-0.9 0,-0.04 c 0,-0.03 -0.02,-0.05 -0.03,-0.07 l 0,-0.03 -0.03,0 -0.63,-0.9 -0.04,-0.04 -0.03,-0.03 -0.03,0 -0.87,-0.38 -0.07,0 -0.03,0 -0.03,0 -0.03,0 -0.78,0.32 -0.82,-0.72 c -0.02,-0.02 -0.04,-0.03 -0.07,-0.03 l -0.24,-0.1 0.47,-0.37 0.53,0.84 c 0,0 0.02,0 0.03,0.02 0.02,0.02 0.05,0.03 0.1,0.03 l 0.11,0 c 0.02,0 0.03,-0.02 0.04,-0.03 0.02,0 0.03,-0.02 0.03,-0.03 l 0.04,-0.04 0,-0.06 0,-0.78 0.66,-0.1 0.66,0.78 c 0,0.03 0.03,0.05 0.06,0.07 l 0.03,0 0.2,0.06 0.03,0 0.03,0.03 0.84,0.7 0.04,0.02 0.15,0 c 0,0 0,-0.02 0.02,-0.03 l 0.75,-0.53 0.34,0.46 0,0.04 0.45,0.87 c 0,0 0.02,0 0.03,0.02 l 0.03,0.03 c 0.02,0 0.03,0.02 0.05,0.03 l 0.99,0 0.9,0.35 c 0.03,0 0.05,0.02 0.07,0.03 l 0.92,0 0.84,-0.1 0.85,0.7 0.04,0 0.7,0.37 0.02,0 0.87,0.44 0.1,0.03 0.03,0 0.06,-0.03 0.78,-0.4 0.8,0.65 0.92,0.65 c 0.03,0.02 0.06,0.03 0.1,0.03 l 0.06,0 0.87,-0.18 c 0.02,0 0.04,-0.02 0.06,-0.04 l 0.9,-0.53 0.02,0 0.94,-0.25 c 0.02,0 0.04,0 0.06,-0.03 l 0.03,-0.03 0.25,-0.3 -0.03,0.1 -0.44,0.9 0,0.13 c 0,0.02 0.02,0.03 0.03,0.04 l 0.06,0.06 c 0.03,0.02 0.06,0.03 0.1,0.03 l 0.03,0 c 0,0 0.02,0 0.03,-0.02 l 0.84,-0.38 0.35,0.75 0.03,0.03 c 0,0.02 0.02,0.03 0.03,0.04 l 0.53,0.43 0.03,0.03 0.02,0 0.92,-0.15 c 0.02,0 0.04,-0.02 0.06,-0.04 l 0.03,-0.04 0.03,-0.03 0.04,-0.06 0.15,-0.9 0.13,-0.82 0.53,-0.28 0.16,0.75 0.03,0.06 c 0,0 0,0.02 0.03,0.03 0,0.03 0.04,0.04 0.06,0.04 l 0.02,0 0.8,0.16 0.67,0.8 -0.76,0.6 0,0.04 -0.8,0.9 -0.54,0.54 c -0.03,0 -0.05,0.03 -0.07,0.06 l 0,0.09 0.2,0.85 0,0.06 -0.16,0.62 -0.7,-0.22 -0.03,0 -0.03,0 -0.9,0.3 c 0,0 -0.02,0 -0.03,0.02 l -0.9,0.53 c -0.02,0 -0.03,0 -0.04,0.02 l -0.03,0.03 0,0.06 -0.2,0.9 c 0,0 0,0.03 -0.02,0.05 l 0.13,0.9 0,0.06 0.03,0.03 c 0,0.03 0.02,0.05 0.05,0.06 0.04,0.03 0.08,0.03 0.12,0 l 0.53,-0.14 -0.2,0.53 0,0.02 -0.36,0.94 0,0.03 -0.6,0.83 -0.02,0.03 -0.72,0.88 0,0.03 -0.44,0.87 -0.03,0.04 -0.66,0.37 -0.03,0.03 -0.03,0.06 -0.02,0.1 0.03,0.03 0.26,0.9 c 0,0.02 0.02,0.03 0.03,0.04 0,0.02 0,0.03 0.02,0.04 l 0.03,0.03 1,0.62 0.88,0.53 0.03,0.03 0.87,0.6 0,0.02 0.88,0.53 0.04,0 0.37,0.83 c 0.02,0 0.03,0.02 0.05,0.03 0,0.02 0.03,0.04 0.06,0.06 l 0.88,0.53 0.03,0 0.42,0.16 0.06,0.04 0.85,0.78 0.03,0.03 0.03,0 c 0,0 0,0.02 0.02,0.03 l 0.06,-0.03 0.82,-0.16 0.84,0.5 0.9,0.62 c 0.02,0 0.03,0.02 0.04,0.03 l 0.84,0.25 0.06,0.03 0.9,0.66 0.04,0.02 0.78,0.87 0.06,0.06 0,-0.13 0.16,0.28 0,-0.33 -0.14,0.2 0.15,45.78 13.97,0 -0.2,40.5 0,21.6 0,-0.1 c -0.4,-0.04 -0.8,-0.02 -1.8,-0.3 l -0.04,0 -0.78,-0.54 0,-0.03 -0.44,-0.87 -0.03,-0.03 -0.62,-0.97 c 0,-0.03 -0.03,-0.05 -0.06,-0.06 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.57,-0.2 -0.63,-0.8 0.03,0 -0.53,-0.87 -0.06,-0.8 0.5,-0.84 0.03,-0.03 0.06,-0.28 0.04,-0.06 -0.1,-0.92 0,-0.03 -0.03,0 c -0.4,-1.1 -0.64,-1.55 -0.94,-2.1 0.02,0 0.03,0 0.03,-0.02 l 0.04,0 0.03,-0.03 0.03,-0.04 0,-0.03 0.03,-0.03 0,-0.06 -0.03,-0.06 -0.03,-0.03 -0.4,-0.88 c -0.02,0 -0.03,-0.02 -0.04,-0.03 l -0.9,-0.9 -0.04,-0.04 -0.87,-0.72 -0.28,-0.53 0.68,0.07 0.07,0 c 0.02,0 0.04,-0.02 0.06,-0.04 l 0.03,-0.03 0.04,-0.06 0.28,-0.92 0,-0.06 c 0,-0.03 0,-0.06 -0.03,-0.1 -0.02,0 -0.03,0 -0.04,-0.02 l -0.06,-0.03 -0.72,-0.3 -0.07,0 -0.02,0 -0.03,0 -0.9,0.4 -0.03,0 c -0.02,0 -0.03,0 -0.04,0.02 0,0 -0.02,0 -0.03,0.02 l -0.56,0.8 -0.82,0 -0.03,0 -0.06,0.05 -0.83,0.4 -0.97,0 -0.06,0.03 -0.1,0 0.2,-0.5 0.9,-0.8 0.03,-0.07 c 0.02,-0.02 0.03,-0.04 0.03,-0.07 l 0.07,-0.87 0,-0.04 0.18,-0.88 0,-0.06 -0.1,-0.97 0,-0.03 -0.18,-0.9 0,-0.04 -0.03,-0.06 -0.78,-0.8 0,-0.04 -0.03,-0.03 -0.22,-0.85 c 0,0 0,-0.02 -0.02,-0.03 l -0.03,-0.03 -0.03,-0.03 c -0.02,0 -0.04,0 -0.07,-0.02 l -0.03,0 -0.87,-0.1 -0.06,0 -0.08,0.04 c -0.02,0 -0.04,0.03 -0.06,0.06 -0.48,0.76 -0.5,1.5 -0.62,2.22 -0.12,0.7 -0.35,1.43 -1.1,2.34 l -0.75,-0.25 -0.1,0 -0.03,0 -0.9,0.27 -0.88,0.3 -0.48,0.1 0.3,-0.58 0.42,-0.8 0.81,0 c 0,0 0.02,0 0.03,-0.03 l 0.03,0 0.9,-0.43 0.05,-0.03 0.03,-0.06 0.03,-0.06 0.17,-0.87 0,-0.06 -0.07,-0.9 -0.03,-0.03 0,-0.06 -0.12,-0.18 0.22,-0.82 0.28,-0.96 0,-0.04 0.34,-0.84 0,-0.03 0.5,-0.8 0.96,-0.83 0.03,-0.03 0.02,-0.02 0,-0.03 0.03,-0.03 c 0,-0.03 0,-0.07 -0.03,-0.1 l -0.34,-0.96 0,-0.03 -0.16,-0.72 0.78,-0.5 0.04,0 c 0,0 0.02,0 0.03,-0.02 l 0.03,-0.06 0,-0.13 -0.44,-0.85 -0.1,-0.9 c 0,-0.03 0,-0.05 -0.03,-0.07 l -0.43,-0.9 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.03,-0.03 c -0.02,0 -0.04,0 -0.07,-0.02 l -0.09,0 -0.06,0.03 c 0,0.02 -0.02,0.03 -0.03,0.04 l -0.36,0.35 c 0,0 -0.02,0 -0.03,0.02 0,0.02 0,0.04 -0.02,0.06 l 0,0.1 0.25,0.85 -0.3,0.78 -0.86,0.5 -0.03,0.03 0,0.03 -0.65,0.9 c -0.03,0.02 -0.04,0.04 -0.04,0.07 l -0.16,0.84 -0.47,0.8 -0.87,0.58 -0.04,0 -1.78,0.87 -0.03,0.03 -0.86,0.63 c -0.03,0 -0.05,0 -0.07,0.03 l -0.53,0.63 -0.03,0.03 -0.52,0.88 0,0.03 -0.66,0.84 -0.03,0.04 -0.97,0.8 c -0.03,0 -0.05,0.02 -0.07,0.05 l 0,0.02 -0.28,0.9 0,0.1 0.03,0.03 0,0.03 c 0.02,0 0.03,0.02 0.04,0.03 0.02,0.03 0.04,0.04 0.07,0.04 l -0.68,0.3 -0.53,-0.77 c -0.02,0 -0.03,-0.02 -0.04,-0.03 l -0.85,-0.75 -0.27,-0.63 0.5,0.15 0.06,0.03 c 0.03,0 0.06,0 0.1,-0.03 0,0 0,-0.02 0.02,-0.03 0,-0.03 0.02,-0.05 0.03,-0.07 0.02,-0.03 0.03,-0.06 0.03,-0.1 l -0.03,-0.02 -0.2,-0.87 0,-0.06 -0.43,-0.9 -0.18,-0.85 0,-0.03 -0.1,-0.2 0,-0.03 -0.03,-0.03 -0.86,-0.88 -0.03,-0.03 -0.65,-0.78 0,-0.03 -0.1,-0.88 0,-0.03 -0.03,-0.02 -0.03,-0.03 -0.9,-0.9 -0.04,-0.04 -0.9,-0.42 -0.04,-0.03 -0.84,-0.3 -0.8,-0.8 0.6,-0.7 0.16,0 c 0.04,0 0.07,0 0.1,-0.02 0.02,0 0.04,-0.03 0.06,-0.06 l 0.03,-0.03 0,-0.03 0,-0.02 0,-0.03 -0.06,-0.9 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l 0,-0.02 -0.03,-0.03 c 0,0 0,-0.03 -0.02,-0.03 l -0.9,-0.54 c -0.02,0 -0.03,-0.02 -0.04,-0.03 l -0.03,0 -0.77,0 -0.07,-0.75 0,-0.03 -0.03,-0.03 -0.03,-0.03 -0.87,-0.9 -0.03,-0.03 -0.03,0 -0.04,-0.03 -0.06,0 -0.03,0 -0.06,0.03 c -0.6,0.44 -1.08,0.6 -1.44,0.6 -0.36,0 -0.65,-0.2 -0.97,-0.4 -0.64,-0.46 -1.33,-1.2 -2.53,-1.13 l -0.03,0 c 0,0 0,0.02 -0.02,0.03 l -0.88,0.43 -0.03,0 -0.72,-0.1 -0.87,-0.77 -0.03,0 -1,-0.63 -0.03,-0.03 -0.88,-0.43 -0.9,-0.44 -0.03,-0.03 -0.87,-0.35 -0.03,0 -0.03,-0.03 0,-0.02 c -0.05,0 -0.08,0.02 -0.1,0.03 l -0.04,0.04 c -0.87,0.63 -1.68,0.68 -2.56,0.63 -0.88,-0.05 -1.8,-0.2 -2.84,-0.03 -1.54,0.17 -3.1,0.13 -4.57,0.5 z m 6.75,-17.2 0.8,0.56 0.88,0.1 0.94,0 0.94,0.1 0.47,-0.64 0.8,0.75 -0.33,0.92 -1.7,1.06 -0.96,0 -0.78,-0.44 -0.78,-0.7 -0.35,-0.86 0.06,-0.84 z m -0.57,0.9 0.22,0.63 0.2,0.44 0.7,0.57 -0.62,0.25 -0.72,-0.3 -0.65,0.2 0.22,-0.84 0,-0.65 z m 28.66,11.2 0.85,0.15 0.94,-0.1 -0.73,0.93 0,0.53 0.94,0.57 -0.93,0.06 -1.65,-0.42 0.1,-1.03 0.5,-0.72 z m -3.12,103.96 0.47,0.1 -0.1,0.34 -0.37,-0.44 z m 6.47,4 0.94,0 0.9,0.7 0.93,0.33 0.85,-0.3 0,0.86 -0.9,-0.26 -0.98,0.32 -0.87,0.75 -0.44,-0.34 -0.92,0.2 -0.87,0.12 -0.96,-0.1 -0.84,-0.72 0.47,-0.84 0.84,-0.28 0.98,-0.13 0.87,-0.3 z"
2564+ id="path2742-4-7-6"
2565+ inkscape:connector-curvature="0"
2566+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2567+ overflow="visible" />
2568+ <path
2569+ d="m 1509.88,144.44 -7.86,-0.42 -15.16,2.5 -2.77,-1.5 -2.22,-3.08 -1.88,-0.52 -2,-1.03 c -1.54,-1.64 -3.1,-3.26 -3.68,-5.22 -2.65,-2.2 -16.4,-2.93 -24.1,-0.63 l -1.06,-0.47 -0.1,0 -0.8,0.1 -0.1,0.15 -0.1,0.47 -1,0.2 -0.96,-0.2 -1.82,1.72 -0.62,0.53 -1.25,1.78 -1,0.47 -0.52,0.9 -0.82,1.88 0.44,0.9 0.2,0.44 -0.4,0.9 -0.86,0.82 -1.9,0.53 -1.16,2.16 -1.82,1.8 -1.15,1 -0.9,0.98 0.38,1.82 0.97,0.2 0.9,-0.1 1.8,0.9 0.9,-0.28 0.6,0 1,0.28 -0.24,0.88 -0.6,1 1.5,0.53 1,0.9 0.08,0.9 -0.62,0.92 -1,-0.2 -0.97,0.3 -1.82,-0.1 -1,0.34 0.43,1 1.4,1.87 0.24,0.9 -0.06,0.72 -0.9,0.27 -0.3,1 -1,0.35 -0.96,-0.1 -1,0.82 0.53,0.9 -0.06,2.6 0.87,0.7 c -1,0.14 -2.13,0.08 -3.25,0.08 -1.7,0 -3.4,0.18 -4.82,1.4 -0.16,0.14 -0.32,0.28 -0.47,0.44 l -1.9,0 -0.72,0.2 -0.1,0.9 0.4,0.96 -0.92,0.63 1.35,0.8 0.9,0.3 0.9,0.9 0.73,1.44 1.87,0.17 0.28,0.88 1.83,0.62 0.62,0.9 -0.72,0.82 -1,-0.26 -0.72,0.16 -0.52,0.37 -0.8,0.9 -0.68,0.22 -1.87,0.33 -1.5,0.46 -1.3,-0.6 -1.63,0.1 -0.74,-0.52 -0.66,0.12 -4.25,-0.87 -3.57,0.72 -1.7,2.02 -0.97,-0.3 -0.53,0.54 -1.45,0.6 -0.67,-0.53 -0.87,0.86 -0.24,0.8 -1.25,1.74 -0.48,-0.47 -3,1.6 -1.75,-0.32 -1.67,0.6 -0.37,1.93 1.36,1.84 -2.15,0.78 0.4,0.92 -0.8,0.47 -0.6,-0.9 -1,0.1 -0.73,-0.63 0.18,-1 -0.9,-1.78 -1.63,-2.73 -0.9,-0.43 0.47,-0.54 0.1,-0.46 -0.3,-0.88 -0.9,-0.47 -0.34,-0.1 -1.9,-1.25 -1.54,-0.7 -0.25,-0.1 -0.05,-0.08 c -0.03,0 -0.04,-0.04 -0.06,-0.06 l -0.7,-0.58 -0.63,-0.9 -0.18,-0.6 -0.1,-0.32 -0.16,-0.18 -0.57,-0.7 8.94,-4.36 5.54,-7.43 0,-3.43 -1.95,-3.77 -2.9,-1 0.62,-0.1 0.9,-0.62 0.82,-0.86 1,-0.47 0,-1.44 0.8,-0.9 0.98,-0.73 0.9,-0.1 -0.18,-0.7 -0.88,-0.45 -0.12,-0.9 -0.88,-0.63 0.88,-0.8 0,-0.92 -0.34,-0.9 -1.63,-0.35 -0.9,-0.18 -1.8,0 -0.17,-0.9 0.28,-0.88 -0.2,-0.92 0,-0.9 0.38,-1 -0.65,-0.9 -0.9,-0.36 -0.15,0.1 -0.48,0 0,-17.73 68.72,0 0,-1.32 22.8,0 0,-42.89 -41.5,0 0,-82.04 69.48,0 z"
2570+ id="path120964-9-9-4"
2571+ inkscape:connector-curvature="0"
2572+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2573+ overflow="visible"
2574+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2575+ <path
2576+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2577+ d="m 1385.53,300.1 0.63,-0.36 0.9,-0.1 0.1,-0.06 0.16,-0.66 0.75,-0.87 0.87,0.06 0.47,-1.15 0,-0.7 -0.65,-1 0.66,-0.26 0,-0.92 -0.9,-0.53 0.82,-0.9 -0.72,-0.9 -0.2,-0.45 -0.7,-0.38 -0.63,0.28 -0.1,-0.9 -0.47,-0.72 -0.87,0.1 0.25,-0.9 0.56,-0.54 0.97,-2.25 0.92,-0.64 0.9,0 0.2,-0.72 -0.2,-0.37 0,-0.1 -0.2,-0.9 0.92,0 1.25,-0.44 1.9,-0.28 0.62,-0.63 0.53,-0.9 1.35,-0.88 0.9,0.16 0.9,-0.16 1,-0.47 -0.18,-0.34 -0.72,-0.9 0,-0.9 0.63,-0.45 1.25,0.62 3.25,0.72 1,0.25 0.34,-0.87 0.53,-0.72 -0.62,-0.9 0.2,-0.48 0.6,-0.96 0.57,-1.54 0,-0.9 c -0.24,-0.3 -0.48,-0.5 -0.68,-0.66 0.16,0.14 0.34,0.32 0.53,0.53 l -0.97,-0.8 -0.1,-0.07 -0.8,0 c -0.97,0.34 -1.8,1.7 -4.3,0.47 l -0.08,0.15 -0.9,0.1 -0.82,0.9 -0.44,0.28 -0.92,0.44 -0.9,-0.2 -1.63,0.1 -0.87,0.1 -0.9,0.47 -0.92,-0.46 -0.9,0.1 -0.25,-1.72 -0.55,-1.78 -0.72,-0.2 -1.78,-0.27 -0.9,-0.35 -0.64,0 -0.08,-1 0.9,-1.25 0.88,-0.37 0.9,0 0.66,-1.25 0.35,-0.9 0.9,-0.54 0.9,-0.27 1,-0.53 0.46,-1 1.97,-0.44 -0.28,-0.8 0.9,0 0.56,-0.92 1.36,-0.15 -1,-0.48 -0.47,-0.9 -0.9,-0.73 -0.9,-0.1 -1.9,0.56 -0.87,-0.28 -0.63,0.28 -1.8,0 -0.92,-0.47 -0.28,-0.9 0.38,-1.9 0.18,-0.27 0.54,-0.88 0.18,-0.9 0.9,-0.38 0.07,0.38 0.9,-0.72 0.54,0.25 0.55,-1.78 -0.37,-0.56 -1.88,-1.97 -0.9,-0.53 0.53,-0.47 0.2,-0.07 1.17,0.44 0.35,-0.44 -0.1,-0.7 0.9,-0.92 0.92,-0.38 0.43,-0.34 -1.53,-1.8 -0.9,-1.64 0.9,0.1 0.9,0.53 1,0.1 -0.46,-0.88 0.82,-1 0,-1 0.9,0.1 0.82,-1.88 0,-0.92 1.36,0.02 0.16,-1.57 2.53,-1.07 0.78,0.2 2.48,0.24 1.3,0.42 1.4,-0.5 0.25,0.65 c 0.52,-0.2 1.12,-0.14 1.62,-0.33 0.48,-0.18 0.13,0.54 0.6,0.35 l 0.53,-1.24 1.16,-0.95 0.83,-0.5 1.18,0.8 1.6,-0.08 1.25,0.4 0.9,-0.05 1.6,-0.34 0.68,-1 0.54,-0.04 0.43,-1.4 1.9,-0.36 0.3,0.6 0.58,0.47 0.65,-0.78 -0.4,-0.68 0.3,-1.1 -0.38,-1.45 0.5,-0.57 -0.27,-1.43 0.9,-1.3 -0.94,-0.42 -0.4,-0.98 0.13,-0.6 0.75,-0.2 -0.38,-0.53 1.75,-0.55 0.37,-1.04 1.3,-0.06 0.43,-0.75 1.96,-0.42 0.74,-1.25 1.14,-1.4 0.02,-0.26 0.14,-0.43 0.9,-0.12 0.03,-0.03 0.54,-0.8 0.05,-1.62 0.4,-1.05 -0.8,-0.46 -0.47,-0.9 -0.53,0 -0.9,-0.2 -0.64,-0.87 -0.46,-1.53 0.37,-0.9 -0.2,-0.73 0.9,-0.73 0.92,-0.47 0.62,-0.53 0.9,-0.18 1.1,-0.73 -0.37,-0.9 0.18,-0.88 0.44,-1 -0.2,-1 -1.87,-0.9 -0.63,-0.9 1.53,-1 -0.7,-0.9 -1,-0.8 -1.83,-1.08 -0.62,-0.9 0.37,-0.82 1.07,-1.78 0.8,-1 0.2,0 1.34,-0.62 -0.72,-0.9 0.53,-0.48 -0.1,-0.87 1.3,1.9 0.9,-0.14 1.67,-0.57 0.97,0.76 2.46,0.73 1.56,-0.08 0.04,0.57 4.73,0.57 -0.18,0.7 2.56,0.2 0.75,1.08 1.15,0.34 1.07,0.1 1.48,0.73 0.64,0.7 -0.68,0.94 0.8,0.6 0.86,0 c 0.42,-0.17 0.84,-0.07 1.25,0.23 l 0.67,0.66 3.1,0.07 2.72,0.5 2.28,2.1 c 1.07,0.23 2.14,-0.8 3.2,2.03 l 1.96,-2.1 1.28,2.87 1.7,-0.57 -0.27,-2.14 2.08,-0.56 -2.88,-0.8 1.7,-1.44 2.6,2.12 3.83,-0.67 0.33,-2.48 1.95,0.53 -0.53,3.3 1.5,1.08 1.82,0.18 -1.04,-3.3 4.2,1.04 0.68,-2.45 2.12,0.13 0.45,2.62 1.43,0.08 0.16,-2.6 1.86,-0.54 -1.76,-2.18 2.34,-0.5 -1.55,-1.64 5.4,-0.44 -1.63,-1.32 1.17,-1.53 -1.68,-2.28 2.86,0.3 1.36,1.97 2.03,-1 -2.34,-2.15 2.12,-1.98 1.64,1.68 2.3,-0.1 5,1.3 0.3,-2.73 1.52,2.44 3.26,1.84 -0.94,-2.35 5.46,-0.14 1.35,-3.64 3.38,1.16 -2.35,4.95 7.48,0.63 -1.85,5.28 7.16,-0.67 4.28,2.54 4.77,2.3 -5.35,2.72 0.8,6.23 -3.62,0.58 6.42,2.1 -0.97,3.93 -4.43,2.37 -0.1,5.13 -44.56,31.73 6.88,29.9 11.5,11.7 -51.58,42.78 -2.7,-5.15 -1.9,-1.3 0.4,-2 1.77,-6.48 -19.5,-3 -3.3,-1.28 -4.07,5.6 -14.06,15.04 -29.06,0.32 0.02,0 0.35,-0.9 -0.25,-0.9 -0.92,-0.97 0.9,-0.2 0.54,-0.28 0.9,0.1 0.35,-0.92 0.52,-0.8 0.28,-0.88 0,-0.9 -0.44,-0.38 0.25,-2.7 0.1,-0.08 -0.18,-1.54 -0.16,-0.43 0,-0.1 -0.18,-0.9 -0.72,-1.73 0.53,-0.35 0.9,-0.1 0.9,-0.36 1.25,-1.25 0.1,-0.37 0.9,0.2 0.1,0.08 3.84,1 0.55,0.2 0.63,-0.47 0.15,-1.78 0.47,-0.56 0.9,-0.36 0.1,-0.18 0.35,-1.54 0.72,-0.53 0.8,-1.54 0.38,-0.8 -0.1,-1 0.2,-0.35 0.25,-0.18 0.18,-1.25 0.38,-1.1 0.34,-0.34 -0.1,-1.37 2.07,-1.25 0.47,-0.7 -0.2,-0.92 -0.08,-0.44 -0.38,-0.37 0.75,-1.88 -0.8,-0.54 -0.64,-0.1 -0.1,-0.1 -0.9,0.26 -0.72,0.1 -0.47,0.47 -0.96,0 -0.9,0.8 -0.3,0.25 -1.77,-0.2 -0.9,0.57 -1.16,0.9 -0.74,0.9 -0.72,-0.17 -0.9,0.25 -1.8,0.1 -1.24,-0.35 -0.9,0 -1,0.34 -0.2,0 -0.52,-0.3 -0.1,-0.86 -0.87,-0.9 0.07,-0.82 0.47,-1 -0.38,-0.9 -0.62,-0.45 -0.2,-1 0.2,-0.87 z"
2578+ id="path42973-0-7"
2579+ inkscape:connector-curvature="0"
2580+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2581+ overflow="visible" />
2582+ <path
2583+ d="m 1493.15,546.73 0,-46.43 16.72,0 -0.16,-206.48 -51.55,42.72 0,-0.03 -17.75,14.66 0,116.33 -30.2,0 0,53.66 30.2,0 0,25.78 -7.13,10.88 -0.06,17.84 -0.74,1.97 0.8,1.5 0.17,11.88 6.97,2.1 0.2,3.7 -0.55,0 -0.37,0.6 -0.88,0.83 -0.28,1.9 -0.62,1.78 0.1,1 -0.9,0.3 -0.83,1.87 0.82,0.28 0.9,0.72 -0.9,0.2 -0.92,0.86 0.37,1.9 -0.46,0.54 -0.36,0.9 -0.1,1 0.45,0.88 0.08,0.9 -0.28,0.9 0.1,0.92 0.55,1.78 -0.9,2.25 -0.38,1.9 0.2,0.9 -1.1,2.98 -0.88,1.16 -0.57,1.8 -0.72,0.98 -1.58,0.72 -1.82,0.2 -1.1,-0.73 -0.33,-0.1 -0.9,-0.6 -0.92,-0.3 -0.43,-0.34 -0.28,-0.9 -0.63,-0.9 -0.9,-0.17 -0.87,-0.47 -1,0 -1,-0.25 -0.9,-0.9 0,0.33 -0.16,-0.27 0,45.84 0.15,0 0,0.04 12.7,0 1.27,0.2 0,40.5 -0.2,-0.2 0,21.6 0.72,0.37 1.78,1.44 0.9,-0.7 1,0.08 0.92,0.53 1.78,0 0,122 69.47,0.03 -0.15,-256 -16.57,-17.3 z"
2584+ id="path120756-8"
2585+ inkscape:connector-curvature="0"
2586+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2587+ overflow="visible"
2588+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2589+ <path
2590+ d="m 1440.6,597.35 0.05,0.4 -0.25,-0.06 0.2,-0.35 z"
2591+ id="path2577-1"
2592+ inkscape:connector-curvature="0"
2593+ overflow="visible"
2594+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2595+ <path
2596+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2597+ d="m 1519.5,695.05 -5.06,0 0,5.03 5.06,0 z"
2598+ id="path41505-6"
2599+ inkscape:connector-curvature="0"
2600+ sodipodi:nodetypes="ccccc"
2601+ overflow="visible" />
2602+ <path
2603+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2604+ d="m 1448.16,134.33 0.1,-0.16 0.8,-0.1 0.1,0 1.06,0.48 c 7.7,-2.3 21.45,-1.57 24.1,0.63 0.57,1.96 2.14,3.58 3.7,5.2 l 1.98,1.04 1.88,0.52 2.2,3.1 2.78,1.48 15.16,-2.5 7.86,0.42 0,-143.92 69.56,0 -0.03,135.93 0.2,16.7 -9.2,-1.08 -3.2,-0.83 -3.15,2.77 -4.2,-0.93 -1.5,0.68 -3.4,3 -8.57,-0.18 -6.3,-1.5 -4.35,0.7 2,4.57 -0.3,3 -1.03,3.65 -1.07,0 -1.48,-1.65 -3.1,2.12 -3.23,-0.77 -5.6,2.13 c -1.57,0.85 -3.12,0.1 -4.68,-0.12 l 0.16,2.43 -2.44,-0.37 -0.1,4.74 7.35,2.77 -1.9,2.9 -1.34,3.64 -5.46,0.15 0.94,2.35 -3.26,-1.84 -1.52,-2.44 -0.3,2.73 -5,-1.3 -2.3,0.1 -1.64,-1.68 -2.1,1.98 2.33,2.16 -2.03,1 -1.36,-1.98 -2.87,-0.3 1.67,2.27 -1.17,1.52 1.63,1.32 -5.4,0.44 1.55,1.64 -2.34,0.5 1.76,2.17 -1.86,0.54 -0.16,2.6 -1.43,-0.1 -0.45,-2.6 -2.12,-0.15 -0.67,2.44 -4.2,-1.03 1.04,3.3 -1.83,-0.17 -1.48,-1.07 0.53,-3.3 -1.94,-0.54 -0.32,2.5 -3.83,0.66 -2.6,-2.12 -1.7,1.43 2.88,0.8 -2.08,0.56 0.28,2.14 -1.7,0.57 -1.3,-2.87 -1.94,2.1 c -1.08,-2.82 -2.15,-1.8 -3.22,-2.03 l -2.3,-2.1 -2.7,-0.5 -0.8,-0.12 -2.3,0.04 -0.67,-0.67 c -0.4,-0.3 -0.82,-0.4 -1.24,-0.23 l -0.86,0 -0.8,-0.6 0.67,-0.95 -0.64,-0.7 -1.48,-0.73 -1.07,-0.1 -1.15,-0.34 -0.75,-1.07 -2.56,-0.2 0.17,-0.7 -4.74,-0.58 -0.04,-0.57 -1.56,0.08 -2.45,-0.74 -0.96,-0.77 -1.68,0.58 -0.88,0.15 -1.02,0.35 -0.7,-0.9 0.52,-0.48 -0.1,-0.87 -0.87,-0.72 -0.18,-0.9 -0.9,-0.48 -0.44,-0.87 0.8,-0.9 0.54,-0.38 0.72,-0.16 1,0.25 0.72,-0.82 -0.63,-0.9 -1.8,-0.63 -0.3,-0.88 -1.86,-0.18 -0.72,-1.45 -0.9,-0.9 -0.92,-0.3 -1.34,-0.8 0.9,-0.63 -0.38,-0.97 0.1,-0.9 0.7,-0.2 1.92,0 c 2.4,-2.6 5.86,-1.55 8.53,-1.9 l -0.87,-0.7 0.06,-2.6 -0.53,-0.9 1,-0.83 0.97,0.1 1,-0.35 0.28,-1 0.9,-0.28 0.07,-0.73 -0.25,-0.9 -1.38,-1.88 -0.44,-1 1,-0.35 1.82,0.1 0.96,-0.3 1,0.2 0.63,-0.9 -0.1,-0.9 -1,-0.92 -1.5,-0.53 0.62,-1 0.25,-0.88 -1,-0.28 -0.62,0 -0.88,0.28 -1.8,-0.9 -0.92,0.1 -0.97,-0.2 -0.37,-1.8 0.9,-0.98 1.17,-1 1.8,-1.8 1.17,-2.17 1.9,-0.53 0.88,-0.8 0.38,-0.92 -0.2,-0.43 -0.43,-0.92 0.8,-1.88 0.54,-0.9 1,-0.47 1.26,-1.78 0.63,-0.53 1.8,-1.72 0.78,0.15 0.2,0.04 1,-0.2 z"
2605+ id="path42648-4"
2606+ inkscape:connector-curvature="0"
2607+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2608+ overflow="visible" />
2609+ <path
2610+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2611+ d="m 1493.16,582.58 16.56,17.3 0,8.64 0.16,0 0,247.34 69.56,0 0,-37.36 -34.7,0 0,-76 34.67,-52.83 0,-136.12 -37.41,0 0,-49.02 -20.5,0 0,-51.8 57.9,0 0,-170.4 -12.3,-7.53 -20.22,18.62 -37.16,0.4 0.16,206.48 -16.72,0 0,46.44 z m 21.28,112.44 5.06,0 0,5.06 -5.06,0 0,-5.06 z"
2612+ id="path42837-0"
2613+ inkscape:connector-curvature="0"
2614+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccc"
2615+ overflow="visible" />
2616+ <path
2617+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2618+ d="m 1509.72,293.42 37.15,0 20.66,-18 97.72,-86.84 0,-19.56 -16.53,-20.22 0.47,-148.28 -69.77,0 -0.02,135.93 0.2,16.7 -9.2,-1.08 -3.2,-0.83 -3.15,2.77 -4.2,-0.93 -1.5,0.68 -3.4,3 -8.57,-0.18 -6.3,-1.5 -4.35,0.7 2,4.57 -0.28,3 -1.05,3.65 -1.07,0 -1.48,-1.65 -3.1,2.12 -3.23,-0.77 -5.6,2.13 c -1.57,0.85 -3.12,0.1 -4.68,-0.12 l 0.16,2.43 -2.44,-0.37 -0.1,4.74 7.35,2.77 -1.9,2.9 3.38,1.15 -2.35,4.95 7.48,0.63 -1.85,5.28 7.16,-0.67 4.28,2.54 4.77,2.3 -5.35,2.72 0.8,6.24 -3.62,0.58 6.42,2.1 -0.97,3.93 -4.43,2.37 -0.1,5.13 -44.56,31.73 6.88,29.9 11.5,11.7 z"
2619+ id="path43408-9-2"
2620+ inkscape:connector-curvature="0"
2621+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2622+ overflow="visible" />
2623+ <path
2624+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2625+ d="m 1579.53,282.42 -0.12,0.1 0,170.22 -57.9,0 0,51.8 20.5,0 0,49 37.4,0 0,136.13 -34.65,52.82 0,76 34.7,0 0,37.36 69.54,0 0,-185.71 -35.7,0 12.33,-26.77 0,-26.35 13.42,0 0,-12.47 -17,-22.22 0,-23.7 27.46,0.03 0,-129.03 -35.3,0 0,-51.13 34.76,0 0,-73.23 -34.77,0.25 -34.67,-23.1 z m 45.97,477.38 11.6,0 0,10.1 -11.6,0 0,-10.1 z"
2626+ id="path41415-1"
2627+ inkscape:connector-curvature="0"
2628+ overflow="visible" />
2629+ <path
2630+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2631+ d="m 1637.1,759.8 0,10.1 -11.6,0 0,-10.1 z"
2632+ id="path41495-7"
2633+ inkscape:connector-curvature="0"
2634+ sodipodi:nodetypes="ccccc"
2635+ overflow="visible" />
2636+ <path
2637+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2638+ d="m 1670.6,574.06 -7.13,0 -4.24,10.7 -2.9,5.82 -1.8,7.8 1.58,13.63 -1.1,2.7 -6,2.32 0,53.12 -35.7,0 12.33,-26.77 0,-26.35 13.43,0 0,-12.47 -17.02,-22.22 0,-23.7 48.55,0.02 z"
2639+ id="path41422-4"
2640+ inkscape:connector-curvature="0"
2641+ sodipodi:nodetypes="cccccccccccccccccc"
2642+ overflow="visible" />
2643+ <path
2644+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2645+ d="m 44.1,558.33 0,15.56 -43.6,0 0,-15.57 z"
2646+ id="path41765-4"
2647+ inkscape:connector-curvature="0"
2648+ sodipodi:nodetypes="ccccc"
2649+ overflow="visible" />
2650+ <path
2651+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2652+ d="m 83.72,601.3 0,-7.75 -25.47,-70 -23.8,0 0,16.2 9.65,8.45 0.24,25.7 11.34,-0.1 6.93,27.5 z"
2653+ id="path41402-7"
2654+ inkscape:connector-curvature="0"
2655+ sodipodi:nodetypes="cccccccccc"
2656+ overflow="visible" />
2657+ <path
2658+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2659+ d="m 1670.6,855.86 -21.6,0 0,-238.84 6,-2.33 1.1,-2.7 -1.56,-13.6 1.8,-7.82 2.9,-5.8 4.23,-10.72 7.12,0 z"
2660+ id="path41404-9"
2661+ inkscape:connector-curvature="0"
2662+ sodipodi:nodetypes="ccccccccccc"
2663+ overflow="visible" />
2664+ <path
2665+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2666+ d="m 1670.55,558.65 -20.7,0 0,-81.93 20.74,0 z"
2667+ id="path41406-8"
2668+ inkscape:connector-curvature="0"
2669+ sodipodi:nodetypes="ccccc"
2670+ overflow="visible" />
2671+ <path
2672+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2673+ d="m 1669.73,403.94 -39.73,0 0,12.06 -10.28,0 0,-12.06 -5.53,0 0,-25.44 34.76,0 0,-73.23 21.63,0 z"
2674+ id="path41408-5"
2675+ inkscape:connector-curvature="0"
2676+ sodipodi:nodetypes="ccccccccccc"
2677+ overflow="visible" />
2678+ <path
2679+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2680+ d="m 1670.6,166.16 -5.35,2.86 -16.53,-20.22 0.47,-148.28 21.4,0 z"
2681+ id="path41410-3"
2682+ inkscape:connector-curvature="0"
2683+ sodipodi:nodetypes="cccccc"
2684+ overflow="visible" />
2685+ <path
2686+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2687+ d="m 49.97,855.9 -49.47,0 0,-248.2 5.47,0 0,42.94 18.5,0 0,15.23 25.5,0 z"
2688+ id="path41759-7"
2689+ inkscape:connector-curvature="0"
2690+ sodipodi:nodetypes="ccccccccc"
2691+ overflow="visible" />
2692+ <path
2693+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2694+ d="m 0.5,558.33 43.6,0 0.24,-10.13 -9.88,-8.46 0,-16.2 15.5,0 0,-47.02 -49.46,0 z"
2695+ id="path41761-8"
2696+ inkscape:connector-curvature="0"
2697+ sodipodi:nodetypes="ccccccccc"
2698+ overflow="visible" />
2699+ <path
2700+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2701+ d="m 0.5,403.24 49.47,0.28 0,-98.28 -49.47,0 z"
2702+ id="path41763-3"
2703+ inkscape:connector-curvature="0"
2704+ sodipodi:nodetypes="ccccc"
2705+ overflow="visible" />
2706+ <path
2707+ d="m 49.97,0.52 0,144.72 -1.38,0.8 -0.88,0.35 -4.7,0.55 -0.9,0.07 -0.9,-0.16 0.9,-0.8 -1.87,0.52 -1.8,1.25 0,0.28 0.7,0.73 1.9,0.44 -1.8,0.18 -0.2,1 0.1,0.9 -0.7,-0.9 -0.64,0.3 0.64,-0.92 0,-0.38 -1,0 1,-0.34 0,-0.6 -0.8,-0.1 -3.7,2.6 -1.35,0.17 -1.44,0.2 -1,0.43 -0.9,0 0.9,-0.28 0.18,-0.44 -1,-0.2 -0.9,0.92 -0.88,0.62 -0.72,1.2 -1.9,1.43 -0.2,0.9 -0.52,0.44 -0.34,0.34 0.15,0.9 -0.53,0.9 -1.63,1.9 -1.78,1.17 -0.9,0.4 -1.3,0.24 -5.65,0.53 -1.8,-0.16 -0.9,0.17 0.17,0.9 -1.14,-1.63 -8.08,5.23 0,-166.77 z"
2708+ id="path41752-9-7"
2709+ inkscape:connector-curvature="0"
2710+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2711+ overflow="visible"
2712+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2713+ <path
2714+ d="m 49.97,0.52 0,144.72 1.44,-0.9 0.82,-1 0.87,-0.8 1.8,-0.9 -0.43,0.9 3.7,0.8 0.86,0.8 -0.87,0.9 -0.9,0.2 -1,0.43 0.9,0.57 -0.1,0.25 1.8,-0.1 0.36,-0.88 1.44,-1.47 0.9,0.72 0.9,-0.53 0.9,0.62 -0.27,0.9 0.9,0.73 1.88,0.08 1,-0.63 1.8,0 0.98,-0.28 1.9,0.57 0.88,0.06 0.9,-0.16 1,0.25 -0.72,0.9 -0.1,0.9 0.92,0.3 -1.8,0.14 1.9,0.2 0.9,-0.2 0.87,0.1 -0.7,0.9 1.9,0.1 1.78,0.53 0.2,-0.53 2.77,-0.54 c 0.3,0.32 0.58,0.5 0.8,0.57 0.26,0.08 0.5,0.07 0.73,0 0.3,-0.1 0.64,-0.27 1.06,-0.4 0.32,-0.12 0.7,-0.2 1.16,-0.23 0.3,0 0.64,0.03 1.03,0.1 0.2,0.03 0.4,0.06 0.63,0.12 l 0.9,-0.1 1,0.57 1.16,0.2 0.72,0.14 0.9,0.63 0.82,-0.35 0.53,0.3 0.8,0.05 0.53,0.47 0.9,0.43 2.8,0.38 0.9,-0.2 1.9,0 2.78,0.4 0.92,0.6 0.87,0.17 0.46,0.37 1.44,0.2 1.88,-0.1 1.1,-0.47 1,-0.06 0.33,0.42 1,-0.72 2.8,-0.18 1.8,0.37 0.97,0.34 0.63,0.37 0,-153.03 -69.53,0 z m -8.84,264.73 -40.63,10.9 0,29.1 49.47,0 0,98.27 -49.4,-0.28 0,73.28 49.4,0 -0.28,47.03 8.55,0 25.47,70 0,7.75 -21.1,0 -6.94,-27.4 -55.17,0 0,33.8 5.47,0 0,42.94 18.5,0 0,15.23 25.5,0 0,190.03 69.53,0 -0.03,-171.37 12.6,0 0,-9.1 31.8,0 0,-25.1 -18.9,-43 -25.5,0 0.03,-214.78 0,-164.15 -16.63,5.95 -21.48,12 -22.03,12.47 z m 1600.2,-55.93 -73.64,65.45 46.5,30.75 56.4,-0.25 0,-25.6 -7.22,1.06 0,-11.13 -22.04,-40.84 z m -11.33,194.62 0,12.06 -10.28,0 0,-12.06 -5.53,0 0,25.7 35.3,0 0,47.22 21.06,0 0,-72.92 z"
2715+ id="path4961-9"
2716+ inkscape:connector-curvature="0"
2717+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2718+ overflow="visible"
2719+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2720+ <path
2721+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2722+ d="m 144.97,607.33 0,-28.06 -25.47,0 0,28.06 z"
2723+ id="path41412-9"
2724+ inkscape:connector-curvature="0"
2725+ sodipodi:nodetypes="ccccc"
2726+ overflow="visible" />
2727+ <path
2728+ d="m 163.87,670.07 0,5.35 -31.8,0 0,9.1 -12.57,0 0,171.38 69.56,0 0,-185.84 z"
2729+ id="path41628-6"
2730+ inkscape:connector-curvature="0"
2731+ sodipodi:nodetypes="ccccccccc"
2732+ overflow="visible"
2733+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2734+ <path
2735+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2736+ d="m 1670.6,166.16 -5.35,2.86 0,19.56 -23.9,20.74 0,19.44 22.03,40.85 0,11.13 7.2,-1.06 z"
2737+ id="path41860-7"
2738+ inkscape:connector-curvature="0"
2739+ sodipodi:nodetypes="ccccccccc"
2740+ overflow="visible" />
2741+ <path
2742+ d="m 119.5,228.4 0,350.87 25.47,0 0,28.06 18.9,43 25.2,0 0,-354.07 -19.16,-14.25 -11.68,-14.94 4.65,-1.53 4.72,0.56 5,-2.27 1.8,0.72 2.63,-1.25 0.44,-0.8 0.2,-0.04 0.42,-0.57 -0.2,-0.48 0.72,-0.9 0.47,-1 -0.63,-0.9 -0.2,1.8 -0.46,1 -0.33,0.35 0,-1.63 -0.53,-2.78 0.53,-1 -0.1,0.1 -0.1,-0.97 -1,-0.3 -0.86,-0.62 -0.9,-0.56 -1,-0.63 -0.9,-0.16 -0.98,-0.57 -0.9,-0.43 -1,-0.38 -0.72,-0.34 -0.2,-0.9 -0.96,-0.38 0.2,-0.97 -1,-0.47 0.08,-0.88 -0.53,-1 -0.82,-0.9 -1.28,-1.78 -0.53,-0.9 -0.8,-0.92 -0.45,-1 -0.9,-0.8 -0.1,-0.82 -1,-0.88 -0.16,-0.18 -0.8,-1.1 -1,-0.43 -1,-0.43 -0.64,-0.9 -0.34,-0.9 -0.9,-0.4 -1,-0.6 -0.82,-0.92 0.2,-0.97 -0.45,-0.53 -1,-0.66 -0.9,-0.54 -1,0.44 -1.06,0.47 -0.9,0.1 -0.9,0.34 0.18,0.9 -0.72,0.92 -0.34,1 -1,0.15 -0.9,0.38 -1,0.53 -0.9,0.53 -0.8,-0.96 -0.28,-0.9 -1,-0.82 -0.8,-0.62 -0.17,-0.1 -0.9,-0.7 -1,-0.83 -0.9,-0.62 -0.34,-1 -0.9,-0.34 -0.73,-0.28 -0.53,-1 0.34,-0.87 -0.97,-0.56 -0.9,0.08 -1,0.1 -1,0.7 -0.35,0.2 -1.96,-0.72 c -0.23,0.1 -0.44,0.2 -0.63,0.25 -0.14,0.05 -0.25,0.1 -0.37,0.1 l -0.16,0.04 -0.06,0 c -0.74,0.06 -1.1,-0.36 -1.32,-1 l 0,-0.06 c -0.04,-0.16 -0.1,-0.3 -0.12,-0.47 -0.03,-0.16 -0.05,-0.34 -0.06,-0.52 -0.05,-0.76 -0.02,-1.6 0,-2.25 l 0,-66.74 2.78,0.54 1.9,-0.16 0.9,0.1 2.9,0.7 0.9,0.83 0.96,0.54 0.8,0.9 0.73,0.1 1.92,0.87 2.78,0.92 0.9,0.53 0.9,-0.06 0.9,0.43 1,0.18 0.9,-0.17 0.1,0 1.24,0.1 1.34,0.33 0.9,0.63 1.9,0.65 0.17,0.15 0.37,0 -0.9,-0.53 -0.44,-1 0.88,-0.62 0.9,0.37 0.9,-0.37 0.9,0.56 0.73,0.98 1,0.53 0.24,-0.05 -1.78,-2.44 0.53,-1 0.9,-0.34 0.8,-0.9 0.98,-0.2 0.9,-0.33 0.9,-0.66 1.98,-0.16 1.1,-1.9 1.87,0.2 -0.1,-0.9 1,-0.2 -0.9,0.28 0.9,0.28 0.9,-0.18 0.92,-0.38 0.87,-0.62 1.9,-0.82 0.35,0.9 0.72,-0.9 0.18,-0.43 0.9,-0.82 0.9,-0.27 0.98,0 0.9,0.38 0.9,0 1.83,-1.1 0.6,0.92 -0.36,0.9 -3.88,1.63 -0.87,0.8 -0.92,0.26 -1,0.64 -0.9,-0.16 -0.88,0.35 -1.9,0.1 -0.9,0.27 -0.45,0.9 -1,0.8 -0.8,0.9 -0.9,-0.44 -0.9,1 -0.1,0.87 -1,-0.25 -0.6,0.9 -0.92,0.54 0.1,0.9 1.8,0.73 -1,-0.57 1,-0.53 1.88,0.1 0.92,-0.2 -0.9,-0.43 -0.98,-0.2 -0.18,-0.9 1.87,-1.06 1.8,-0.62 0.92,-0.66 0,-0.97 1.78,-0.17 -0.1,0.9 0.63,-0.9 0.2,0.9 0.8,-0.9 -0.44,-1 0.63,1 -0.2,-1 0.64,0.9 -0.26,1 0.53,-1 -0.28,0.9 0.17,0.92 0.9,-0.82 0.64,-1 1.54,-1.8 3.34,-1.17 1.88,-0.18 0.9,-0.72 -0.72,0.9 0,0.9 1.07,0.26 c 1.75,-2.6 3.5,-1.3 2.72,-3.6 l 0.88,-0.43 2.8,-0.48 -1.8,-0.44 0.1,-0.9 -0.9,0.1 -0.2,-0.9 0.9,-0.83 2.16,1.38 0,-149.48 -69.54,0 0,153.07 -0.62,-0.36 -0.97,-0.35 -1.8,-0.38 -2.8,0.2 -1,0.7 -0.33,-0.43 c -0.8,-0.08 -1.4,0.2 -2.1,0.52 l -1.87,0.1 -1.44,-0.2 -0.47,-0.37 -0.88,-0.16 -0.9,-0.63 -2.8,-0.38 -1.9,0 -0.9,0.18 -2.78,-0.38 -0.9,-0.43 -0.54,-0.47 -0.8,-0.06 -0.54,-0.28 -0.82,0.34 -0.9,-0.63 -0.72,-0.15 -1.16,-0.2 -1,-0.55 -0.9,0.1 c -3.54,-0.95 -3.7,1.56 -5.4,-0.16 l -2.8,0.54 -0.18,0.53 -1.78,-0.53 -1.9,-0.1 0.7,-0.9 -0.86,-0.1 -0.9,0.2 -1.9,-0.2 1.8,-0.15 -0.9,-0.3 0.1,-0.9 0.7,-0.9 -1,-0.26 -0.9,0.16 -0.88,-0.06 -1.9,-0.57 -0.97,0.3 -1.82,0 -1,0.6 -1.88,-0.08 -0.9,-0.73 0.28,-0.9 -0.9,-0.63 -0.92,0.53 -0.9,-0.72 -1.44,1.47 -0.34,0.87 -1.82,0.1 0.1,-0.26 -0.9,-0.57 1,-0.43 0.9,-0.2 0.87,-0.9 -0.87,-0.8 -3.7,-0.8 0.45,-0.9 -1.8,0.9 -0.88,0.8 -0.8,1 -1.45,0.9 -1.38,0.8 -0.88,0.35 -4.7,0.56 -0.9,0.06 -0.9,-0.16 0.9,-0.8 -1.87,0.52 -1.8,1.25 0,0.28 0.7,0.73 1.9,0.44 -1.8,0.2 -0.2,1 0.1,0.9 -0.7,-0.9 -0.64,0.27 0.64,-0.9 0,-0.38 -1,0 1,-0.35 0,-0.6 -0.82,-0.1 -3.68,2.6 -1.35,0.17 -1.44,0.2 -1,0.43 -0.9,0 0.9,-0.28 0.18,-0.44 -1,-0.2 -0.9,0.92 -0.88,0.62 -0.72,1.2 -1.9,1.43 -0.2,0.9 -0.52,0.44 -0.35,0.34 0.16,0.9 -0.53,0.9 -1.63,1.9 -1.78,1.17 -0.9,0.4 -1.3,0.24 -5.65,0.53 -1.8,-0.16 -0.9,0.17 -9.05,4.5 0,108.9 40.63,-10.92 18.24,-6.43 22.02,-12.47 21.47,-12 z"
2743+ id="path41626-2"
2744+ inkscape:connector-curvature="0"
2745+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2746+ overflow="visible"
2747+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2748+ <path
2749+ d="m 189.05,0.5 0,149.4 11.25,-34.36 9.53,-18.78 19.9,-11.47 28.8,-11.54 0,-73.25 -69.48,0 z m -62.62,155.7 0,66.7 c 0,0.3 -0.03,0.62 -0.03,0.95 l 0,0.16 c 0,0.4 0,0.8 0.03,1.16 0,0.18 0.03,0.37 0.06,0.53 0.02,0.16 0.07,0.3 0.12,0.46 l 0,0.07 c 0.04,0.14 0.1,0.28 0.18,0.4 l 0.03,0.06 c 0.07,0.1 0.16,0.2 0.25,0.28 0.08,0.06 0.16,0.1 0.25,0.15 0.06,0.03 0.12,0.05 0.2,0.06 0.1,0.02 0.25,0.04 0.4,0.02 l 0.1,0 0.12,-0.03 c 0.12,-0.03 0.23,-0.05 0.37,-0.1 0.2,-0.06 0.4,-0.14 0.63,-0.25 l 1.97,0.72 0.34,-0.2 1,-0.7 1,-0.1 0.9,-0.1 0.97,0.57 -0.34,0.87 0.52,1 0.72,0.3 0.9,0.34 0.35,1 0.9,0.62 1,0.8 0.9,0.73 0.16,0.1 0.8,0.6 1,0.82 0.3,0.9 0.8,0.98 0.88,-0.53 1,-0.53 0.9,-0.38 1,-0.15 0.35,-1 0.7,-0.9 -0.18,-0.9 0.9,-0.35 0.9,-0.1 1.08,-0.46 1,-0.45 0.9,0.53 1,0.66 0.44,0.53 -0.2,0.97 0.83,0.9 1,0.63 0.9,0.37 0.35,0.9 0.62,0.92 1,0.43 1,0.43 0.8,1.1 0.17,0.18 1,0.9 0.1,0.8 0.9,0.8 0.45,1 0.8,0.92 0.54,0.9 1.27,1.8 0.8,0.9 0.54,1 -0.08,0.87 1,0.46 -0.2,0.96 0.98,0.38 0.2,0.9 0.7,0.35 1,0.37 0.92,0.44 0.96,0.56 0.9,0.16 1,0.63 0.92,0.57 0.87,0.62 1,0.27 0.1,0.94 0.1,-0.05 -0.54,1 0.53,2.78 0,1.67 0.34,-0.35 0.47,-1 0.2,-1.8 0.6,0.9 -0.46,1 -0.7,0.9 0.18,0.48 -0.43,0.56 -0.2,0.03 -0.43,0.82 -2.62,1.24 -1.82,-0.72 -5,2.28 -4.72,-0.56 -4.65,1.53 11.71,14.92 18.68,13.9 0.47,0.2 0,354.22 -25.18,0 0,19.75 25.18,0 0,185.8 69.47,0 0,-422.4 -20.87,-0.1 0,-22.3 9,0 4.06,2.5 7.82,-0.03 0,-8.19 -0.25,-0.3 -0.8,-1.54 -0.1,-1 -1.54,-2.68 0.2,-1.9 -0.1,-0.45 -0.9,-0.46 -0.9,-0.1 -0.83,-0.33 -0.25,-0.9 -1,-0.45 -0.9,0.63 -0.9,-0.38 -2.98,-1.68 -0.15,-1.4 0,-0.05 -0.3,-0.47 0.1,-0.28 0.2,-0.44 0.15,-0.34 0.1,-0.1 0.37,0 0.1,-0.1 0.43,-1 0,-0.08 0.47,-0.1 0.34,0 0.38,-0.8 -0.2,-0.64 -0.9,-0.43 0.1,-0.2 -0.2,-1 0.64,-0.87 0.18,-0.56 0.28,-0.62 -0.1,-0.9 0,-0.35 0.92,-0.9 0.8,-0.92 -1.08,-1.15 -0.44,-0.9 -0.1,-0.1 0,-0.1 -0.37,-0.34 -0.26,-0.9 0,-0.1 0.16,-1.78 -0.25,-0.47 0,-1 -0.47,-2.05 0,-0.37 0.9,-0.46 1,0.18 0.9,0.44 0.45,-0.87 0,-31.42 -13.78,0 0,-2.8 -5.13,0 -0.34,-0.98 -0.1,-2.53 0,-5.75 0.72,-1.2 0.9,-0.43 1.26,0 1.15,0.7 0.67,0 0,-0.36 0.25,-0.97 0.38,-0.82 0.8,-0.9 0.16,-0.9 0.1,-0.26 0.62,-0.82 0.2,-1 0.52,-0.9 0.47,-0.63 -0.62,-0.9 -0.9,-0.45 0.9,-0.9 0.62,0.18 0.72,0.9 0.08,0.9 -0.1,0.64 0.35,0.88 1.38,-0.25 0.88,0 1,0.34 1.44,-1.07 0.9,0.34 1.35,0.63 0.38,-0.53 0.43,-0.35 0.2,-1 0.52,-0.9 -0.1,-0.2 -0.24,-0.87 0.16,-1.37 0.46,-1.88 -0.8,-0.1 -0.2,0 -0.9,-0.43 -0.9,-0.9 0,-0.3 -0.35,-0.24 -0.9,-1 -0.54,-0.7 -1,-0.48 -0.92,-0.72 0.38,-0.16 -0.2,-0.9 -1.33,-1.63 -0.38,-1 0,-5.37 0.47,-1.38 0,-0.17 0.2,-1.1 -0.67,-1.15 -1.68,-2.25 c -1.35,-10.82 -9.23,-9.24 -12.7,-16.93 l 0.98,-0.2 1.1,0.1 0.43,-0.53 0,-0.2 -0.44,-1.05 -0.62,-0.8 -0.9,0.24 -2.26,-1.44 -1.16,-0.53 -0.65,-0.92 0.56,-0.7 -0.9,-0.64 -0.53,-2.34 -0.9,-0.97 -3.44,-2 -0.63,-0.35 -1.43,-1.28 -1.16,-1.43 -1.62,-2.4 -2.06,-0.1 -0.1,-0.1 -0.18,-0.47 0.38,-1.87 -0.2,-1.63 0,-0.18 -0.46,-6.38 0.28,-0.47 1.1,-0.62 3.4,-0.44 1.34,0 4.97,0.1 1.25,-0.37 0,-17.68 -17.72,0 -0.9,-0.27 0.2,-0.25 -1.1,-1.8 -0.1,-0.92 -1.06,-0.72 -0.72,-0.9 0.43,-0.97 -1,-0.82 -0.9,0.72 -0.88,0 -1.37,0.44 -1.78,-0.52 -0.9,0.44 -0.54,-0.44 -0.9,0.62 -0.9,-0.25 -0.98,0.44 -0.8,-0.2 -0.2,-0.9 -0.63,-0.88 -0.1,-0.47 0.26,-0.9 -0.15,-0.88 -0.72,-1 -1.28,-0.2 -0.53,-0.08 -1.78,-1.45 -0.2,-0.53 -0.9,-0.53 -0.7,-0.92 -1,-0.8 -1.07,0.43 -1.82,-1.15 -0.28,-0.28 0.28,-1.78 -1,-0.57 -1.06,-1.35 -0.3,-0.96 0.48,-1.3 -1,-0.17 -0.72,-0.88 0,-0.8 0.34,-0.3 0.38,-0.9 -0.72,-0.87 -0.63,-0.57 -0.9,0 0.2,-0.9 -1.3,-0.78 -1.78,-1.53 0,-0.57 -0.37,-0.97 -0.88,-0.65 -0.9,-0.16 -0.9,0.63 -0.92,-0.47 0.38,-0.88 -0.9,-0.28 -0.38,-0.44 -0.97,-0.65 -1.8,-0.63 0.43,-0.87 0,-0.28 0.57,-0.9 -0.9,-0.82 -0.92,0 1.2,-1.25 0.87,-0.63 0.56,-0.9 0,-0.72 -1.52,-1.8 0.97,-0.55 -2.7,-0.28 -0.7,-0.15 -1.82,0.53 -0.97,-0.8 -0.2,0 0.73,-0.92 -0.3,-1 -0.96,-0.05 0.72,-1 -0.2,-1.25 -0.6,-1 0,-0.9 -0.2,-0.3 -0.1,-0.87 -4.93,-0.1 -5.6,0.1 -0.18,-0.46 0.28,-1.25 0.2,-1.25 -0.55,-1.9 -0.9,-0.45 0,-9.8 -0.1,0 -0.9,0.18 -1,-0.2 -0.88,-0.43 -0.9,0.06 -0.9,-0.53 -2.8,-0.9 -1.9,-0.88 -0.72,-0.1 -0.8,-0.9 -0.98,-0.53 -0.9,-0.82 -2.88,-0.72 -0.9,-0.1 -1.9,0.16 -2.8,-0.53 z"
2750+ id="path5247-2-3"
2751+ inkscape:connector-curvature="0"
2752+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2753+ overflow="visible"
2754+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2755+ <path
2756+ d="m 258.52,0.5 0,73.26 -28.78,11.54 -19.9,11.46 -9.54,18.78 -11.25,34.37 -2.15,-1.36 -0.9,0.8 0.18,0.92 0.9,-0.1 -0.1,0.9 1.82,0.45 -2.8,0.48 -0.88,0.43 c 0.77,2.3 -0.98,1.02 -2.72,3.6 l -1.07,-0.24 0,-0.9 0.72,-0.9 -0.9,0.7 -1.88,0.2 -3.34,1.15 -1.53,1.82 -0.63,1 -0.9,0.8 -0.2,-0.9 0.3,-0.9 -0.54,1 0.25,-1 -0.63,-0.9 0.2,1 -0.63,-1 0.43,1 -0.8,0.9 -0.2,-0.9 -0.62,0.9 0.1,-0.9 -1.8,0.18 0,0.97 -0.9,0.66 -1.8,0.62 -1.88,1.06 0.18,0.92 0.97,0.2 0.9,0.43 -0.9,0.18 -1.87,-0.1 -1,0.54 1,0.56 -1.8,-0.72 -0.1,-0.9 0.9,-0.52 0.62,-0.9 1,0.24 0.1,-0.88 0.9,-1 0.88,0.44 0.8,-0.9 1,-0.8 0.45,-0.9 0.9,-0.27 1.9,-0.1 0.9,-0.33 0.9,0.15 1,-0.62 0.9,-0.25 0.87,-0.8 3.88,-1.64 0.37,-0.9 -0.62,-0.9 -1.8,1.1 -0.92,0 -0.9,-0.38 -0.98,0 -0.9,0.28 -0.9,0.8 -0.2,0.45 -0.7,0.9 -0.36,-0.9 -1.9,0.8 -0.88,0.64 -0.9,0.36 -0.9,0.2 -0.92,-0.3 0.9,-0.27 -1,0.17 0.1,0.9 -1.87,-0.18 -1.1,1.9 -1.97,0.16 -0.9,0.65 -0.9,0.36 -0.98,0.18 -0.8,0.9 -0.92,0.35 -0.53,1 1.78,2.43 -0.25,0.06 -1,-0.54 -0.7,-0.97 -0.92,-0.57 -0.9,0.38 -0.9,-0.37 -0.9,0.63 0.45,1 0.92,0.53 -0.38,0 -0.16,-0.17 -1.9,-0.66 -0.9,-0.62 -1.35,-0.34 -1.25,-0.1 0,9.82 0.9,0.44 0.54,1.9 -0.2,1.26 -0.27,1.25 0.18,0.47 5.6,-0.1 4.94,0.1 0.1,0.87 0.18,0.3 0,0.9 0.62,1 0.2,1.25 -0.73,1 0.97,0.06 0.3,1 -0.73,0.92 0.2,0 0.96,0.8 1.8,-0.52 0.73,0.16 2.7,0.28 -0.98,0.53 1.53,1.8 0,0.73 -0.55,0.9 -0.88,0.63 -1.2,1.25 0.92,0 0.9,0.8 -0.57,0.92 0,0.28 -0.43,0.88 1.8,0.62 0.98,0.66 0.37,0.43 0.9,0.3 -0.37,0.86 0.9,0.47 0.92,-0.63 0.9,0.16 0.88,0.66 0.37,0.96 0,0.56 1.78,1.53 1.3,0.78 -0.2,0.9 0.9,0 0.63,0.57 0.72,0.87 -0.38,0.9 -0.34,0.3 0,0.8 0.72,0.88 1,0.2 -0.47,1.27 0.3,0.97 1.05,1.33 1,0.56 -0.28,1.77 0.28,0.3 1.82,1.14 1.06,-0.43 1,0.82 0.72,0.9 0.9,0.52 0.2,0.54 1.77,1.43 0.53,0.1 1.28,0.17 0.72,1 0.16,0.88 -0.24,0.9 0.1,0.47 0.62,0.88 0.2,0.9 0.8,0.2 0.97,-0.44 0.9,0.25 0.9,-0.62 0.54,0.44 0.9,-0.44 1.78,0.53 1.37,-0.43 0.88,0 0.9,-0.7 1,0.8 -0.43,0.97 0.72,0.9 1.06,0.72 0.1,0.9 1.1,1.82 -0.2,0.25 0.9,0.28 17.72,0 0,17.73 -1.25,0.38 -4.97,-0.1 -1.34,0 -3.4,0.45 -1.1,0.62 -0.28,0.47 0.47,6.38 0,0.2 0.2,1.6 -0.4,1.9 0.2,0.45 0.1,0.1 2.05,0.1 1.63,2.4 1.16,1.44 1.44,1.3 0.63,0.33 3.43,2 0.9,0.97 0.54,2.34 0.9,0.63 -0.55,0.72 0.65,0.9 1.16,0.52 2.25,1.44 0.9,-0.25 0.64,0.82 0.44,1.07 0,0.17 -0.44,0.54 -1.1,-0.1 -0.96,0.2 c 0.86,1.92 2,3.27 3.25,4.37 0.3,0.28 0.6,0.54 0.93,0.8 l 0.04,0 c 0.3,0.23 0.6,0.47 0.93,0.7 l 1.97,1.4 0.94,0.76 c 0.94,0.78 1.82,1.65 2.56,2.78 0.25,0.4 0.48,0.77 0.7,1.2 0.06,0.13 0.08,0.3 0.15,0.44 0.54,1.22 1,2.68 1.2,4.5 l 1.7,2.25 0.66,1.14 -0.18,1.1 0,0.15 -0.47,1.37 0,5.37 0.38,1 1.34,1.63 0.2,0.9 -0.4,0.16 0.92,0.72 1,0.47 0.52,0.72 0.9,1 0.35,0.25 0,0.27 0.9,0.9 0.9,0.44 0.2,0 0.8,0.1 -0.46,1.88 -0.14,1.38 0.25,0.87 0.1,0.2 -0.53,0.9 -0.2,1 -0.42,0.34 -0.38,0.53 -1.34,-0.63 -0.9,-0.34 -1.45,1.06 -1,-0.35 -0.87,0 -1.37,0.25 -0.34,-0.88 0.08,-0.65 -0.1,-0.88 -0.7,-0.9 -0.63,-0.2 -0.9,0.9 0.9,0.44 0.62,0.9 -0.47,0.63 -0.53,0.9 -0.2,1 -0.6,0.82 -0.1,0.24 -0.16,0.9 -0.8,0.92 -0.38,0.8 -0.25,0.98 0,0.37 -0.66,0 -1.14,-0.7 -1.25,0 -0.9,0.43 -0.72,1.2 0,5.74 0.1,2.53 0.34,0.97 5.13,0 0,2.8 13.78,0 0,31.42 -0.44,0.86 -0.92,-0.44 -1,-0.18 -0.9,0.47 0,0.35 0.47,2.06 0,1 0.25,0.48 -0.16,1.78 0,0.1 0.25,0.9 0.36,0.35 0,0.1 0.1,0.1 0.44,0.9 1.1,1.16 -0.82,0.9 -0.9,0.9 0,0.35 0.08,0.92 -0.28,0.62 -0.18,0.57 -0.63,0.88 0.2,1 -0.1,0.2 0.9,0.43 0.2,0.63 -0.4,0.8 -0.33,0 -0.47,0.1 0,0.1 -0.44,1 -0.1,0.1 -0.37,0 -0.1,0.1 -0.15,0.33 -0.17,0.44 -0.1,0.28 0.28,0.47 0,0.06 0.17,1.4 2.97,1.68 0.9,0.37 0.9,-0.62 1,0.43 0.26,0.9 0.8,0.35 0.92,0.1 0.9,0.48 0.1,0.43 -0.2,1.92 1.54,2.7 0.1,1 0.8,1.52 0.26,0.3 0,8.2 -7.8,0.03 -4.07,-2.5 -9,0 0,22.3 20.87,0.1 0,422.4 69.56,0 -0.15,-171 0.15,-19.8 0,-192.8 -1.15,-0.1 -1.53,-1 -2.25,-0.7 -0.72,-0.92 -4.94,-1.16 -1,-0.72 -4.9,-1.7 -2.77,-2.17 -1,-1 -0.87,-0.26 -0.56,0.25 -2.88,-0.73 -0.97,-0.53 -2,-0.53 c -4.87,-7.04 -5.88,-0.47 -10.34,-10 l 1.82,-0.9 0.16,-0.44 -0.1,-0.18 0,-0.1 0.1,-0.1 0.18,-0.24 0.9,-0.63 0.92,-0.46 0.87,0.47 0.38,0 0.1,0.07 0.18,0.3 0.88,0.6 0,-0.33 0.38,-0.9 0,-0.38 -0.1,-0.63 0.72,-0.1 0.63,-0.87 -1.05,-0.56 0.15,-0.97 0.2,-0.37 -0.92,-1.07 -0.53,-0.38 0.38,-1 0.1,-0.25 -0.1,-0.56 -0.63,0.1 -0.1,0 -0.8,-0.97 -1.1,0.06 -0.53,0.27 0.44,-1.06 -0.43,-0.9 -0.9,-0.37 -0.9,0 0,-0.62 -0.98,-0.28 -0.1,-0.15 -0.38,-0.56 -0.25,-0.87 -0.28,-0.1 -0.4,-1.18 -0.24,-1.44 -0.18,-0.52 -0.9,-0.9 -0.98,0.46 -0.9,-0.47 -0.54,-1.15 -0.18,-0.47 -0.9,-0.8 -0.54,-0.54 -0.28,-1 0.1,-0.62 0.27,-0.97 0.53,-0.64 0.62,-0.36 -0.17,-1.27 1.17,-0.65 -0.07,-0.64 0.32,-0.15 -0.1,-0.66 0.62,-0.44 0.4,-0.37 0.38,0.76 0.58,0.57 0.57,-0.5 0.46,0.8 1.18,0.6 1.06,-0.76 0.25,0.76 c 0.66,-0.13 1.3,-0.6 1.95,0.04 l 0.47,0.7 1.6,-2.44 c 0.36,-0.06 0.67,-0.43 1.16,0.04 l 1.44,0.67 -1.48,-6.7 3,-5.3 -5.4,-3.3 -0.88,-3.76 0,-2.55 c 0.07,-0.3 0.1,-0.58 0.15,-0.88 0.14,-0.85 0.2,-1.76 0.2,-2.65 0,-1.2 -0.06,-2.42 0,-3.6 l 8.2,0 0.27,-0.25 0,-4.4 0,-2.22 c 0,-0.74 0.05,-1.5 0.1,-2.22 l 0,-14.12 0.18,-0.44 0,-2.63 4.56,0 0,-4.03 2.45,0 -0.1,-1 0,-0.1 -0.1,-2.53 0.17,-0.8 0,-0.07 0.22,-0.66 0.1,-1.06 0,-0.44 0.43,-0.8 0,-1.3 -0.8,-1.15 -2.36,0 0,-2.26 3.45,0 0,-0.8 -0.1,-1.54 0,-1 0.45,-0.97 -0.1,-1.8 0,-1.54 -0.72,-1 0,-0.9 2.1,-0.08 0.62,-1.28 0,-0.44 0.2,-1.25 -0.1,-0.9 -0.38,-1.26 0.2,-0.66 -0.3,-0.88 0,-0.37 -2.6,0 0,-4.67 0.96,0 0,-1.08 0.8,-0.1 1.94,0 1.35,-1.82 -0.1,-0.16 -0.1,-0.37 -0.7,-0.1 -0.92,-1.87 0.28,-0.2 1,0 0.16,-1 0.46,-0.24 0.2,-0.9 0,-1.1 -0.92,-0.98 0.63,-1.28 -0.63,-0.9 -5.05,0 0,-1.23 0.66,-0.56 0.5,-0.34 0.86,-0.52 0.63,-0.08 0.7,0.24 0.6,-0.53 0.62,-0.46 -0.87,-0.97 -0.2,-0.47 -1.24,-0.2 0,-0.24 -0.56,-0.72 1.28,0 0,-0.72 -0.38,-1 -1.62,-0.37 -0.13,-0.78 c 0,-0.04 -0.02,-0.06 -0.03,-0.1 -0.1,-0.27 -0.27,-0.36 -0.47,-0.37 l -0.03,0 c -0.3,0 -0.72,0.14 -1.25,0.2 l -0.92,0 -0.07,-0.04 -1.13,-0.44 -1.06,0.47 -1.1,-0.1 -0.87,-0.38 -1.8,-0.06 -0.73,0 -0.9,0.62 -0.72,-0.9 0,-0.2 -0.9,-0.8 -0.35,0 c 0,-2.32 0.02,-4.6 -0.1,-6.9 l -27.62,0 0,-22.5 1.46,0 0.2,-0.7 0.3,-0.42 0.35,-0.28 0.38,-0.48 0.5,-0.03 0.27,0.65 0.34,0.53 0.43,-0.33 0.2,-0.46 0.24,-0.24 -0.08,-0.33 -0.33,-0.2 -0.35,-0.35 -0.2,-0.43 -0.3,-0.28 -0.36,-0.38 -0.47,-0.3 -0.2,-0.57 -0.4,-0.1 -0.4,-0.2 -0.28,-0.42 -0.32,-0.26 -0.47,-0.18 -0.5,-0.12 0,-42.3 36.84,0 c 0.36,-3.23 0.35,-6.8 0.28,-10.4 -0.07,-3.83 -0.16,-7.2 -0.1,-10.67 l 0,-30.32 59.2,0 0,-18.17 -21.83,-22.66 -8.34,-0.06 -4.1,-5.74 -18.63,-5.16 -4.37,0.73 -2.4,-1.5 0,-75.71 21.35,0 0,-48.7 -69.56,0 z m 7,664.57 29.23,0 0,19.8 -29.23,0 0,-19.8 z"
2757+ id="path79787-3"
2758+ inkscape:connector-curvature="0"
2759+ overflow="visible"
2760+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2761+ <path
2762+ d="m 397.74,502 -0.44,0.3 -0.2,0.27 -0.8,-0.44 -0.44,0.16 0.16,0.27 -0.44,1 0,1.06 0.9,0.57 0.1,0.15 -0.56,0.28 -0.34,0.38 0.34,1.07 0,0.38 -0.25,0.15 -0.2,0.1 -0.17,0.62 0.1,0 0.27,1.2 0.2,0.08 1.77,1.44 0,6.25 -0.2,338.58 -69.44,0 -0.15,-171 0.15,-19.8 0,-192.81 -1.15,-0.1 -1.53,-1 -2.25,-0.7 -0.72,-0.92 -4.94,-1.16 -1,-0.7 -4.9,-1.73 -2.77,-2.16 -1,-1 -0.87,-0.26 -0.56,0.25 -2.88,-0.73 -0.97,-0.53 -2,-0.53 c -4.87,-7.04 -5.88,-0.47 -10.34,-10 l 1.82,-0.9 0.16,-0.43 -0.1,-0.2 0,-0.1 0.1,-0.08 0.18,-0.26 0.9,-0.62 0.92,-0.47 0.87,0.47 0.38,0 0.1,0.06 0.18,0.28 0.88,0.62 0,-0.34 0.38,-0.9 0,-0.38 -0.1,-0.63 0.72,-0.1 0.63,-0.87 -1.05,-0.56 0.15,-0.97 0.2,-0.37 -0.92,-1.06 -0.53,-0.38 0.38,-1 0.1,-0.25 -0.1,-0.56 -0.63,0.1 -0.1,0 -0.8,-0.97 -1.1,0.07 -0.53,0.28 0.44,-1.07 -0.43,-0.9 -0.9,-0.37 -0.9,0 0,-0.62 -0.98,-0.27 -0.1,-0.16 -0.38,-0.56 -0.25,-0.87 -0.28,-0.1 -0.4,-1.18 -0.24,-1.44 -0.18,-0.52 -0.9,-0.9 -0.98,0.47 -0.9,-0.47 -0.54,-1.16 -0.18,-0.47 -0.9,-0.8 -0.54,-0.54 -0.28,-1 0.1,-0.62 0.27,-0.97 0.53,-0.64 0.63,-0.36 -0.2,-1.27 1.17,-0.65 -0.07,-0.64 0.32,-0.15 -0.1,-0.66 0.62,-0.44 0.4,-0.37 0.38,0.76 0.58,0.57 0.57,-0.5 0.46,0.8 1.18,0.6 1.06,-0.76 0.26,0.76 c 0.64,-0.13 1.3,-0.6 1.93,0.04 l 0.47,0.7 1.58,-2.44 c 0.38,-0.06 0.7,-0.43 1.18,0.04 l 1.44,0.67 -1.48,-6.7 3,-5.3 -5.4,-3.3 -0.88,-3.76 0,-2.55 c 0.56,-2.25 0.2,-4.78 0.34,-7.12 l 8.2,0 0.27,-0.25 0,-6.22 0.1,-2.63 0,-13.98 0.18,-0.44 0,-2.63 4.56,0 0,-4.03 2.45,0 -0.1,-1 0,-0.1 -0.1,-2.87 0.4,-1.18 0.08,-1.07 0,-0.43 0.44,-0.82 0,-1.28 -0.8,-1.15 -2.36,0 0,-2.25 3.45,0 0,-0.82 -0.1,-1.53 0,-1 0.45,-0.97 -0.1,-1.8 0,-1.54 -0.72,-1 0,-0.9 2.1,-0.08 0.62,-1.28 0,-0.44 0.2,-1.25 -0.1,-0.9 -0.38,-1.25 0.2,-0.66 -0.3,-0.88 0,-0.37 -2.6,0 0,-4.67 0.96,0 0,-1.08 0.8,-0.1 1.94,0 1.34,-1.82 -0.1,-0.15 -0.08,-0.38 -0.72,-0.1 -0.9,-1.87 0.27,-0.2 1,0 0.16,-1 0.46,-0.24 0.2,-0.9 0,-1.1 -0.92,-0.97 0.63,-1.3 -0.63,-0.9 -5.05,0 0,-1.22 0.66,-0.56 0.5,-0.34 0.86,-0.52 0.63,-0.08 0.7,0.24 0.6,-0.53 0.62,-0.46 -0.87,-0.97 -0.2,-0.47 -1.24,-0.2 0,-0.24 -0.56,-0.72 1.28,0 0,-0.7 -0.38,-1 -1.62,-0.4 c -0.26,-2.66 -1.3,0 -3.88,-1.52 l -1.06,0.47 -1.1,-0.1 -0.87,-0.38 -1.8,-0.06 -0.73,0 -0.9,0.62 -0.72,-0.9 0,-0.2 -0.9,-0.8 -0.35,0 c 0,-2.3 0.02,-4.6 -0.1,-6.9 l -27.62,0 0,-22.5 1.46,0 0.2,-0.7 0.3,-0.42 0.35,-0.28 0.38,-0.5 0.5,0 0.27,0.64 0.34,0.53 0.43,-0.33 0.2,-0.46 0.24,-0.24 -0.1,-0.33 -0.3,-0.2 -0.35,-0.35 -0.2,-0.43 -0.3,-0.28 -0.36,-0.38 -0.47,-0.3 -0.2,-0.57 -0.4,-0.1 -0.4,-0.2 -0.28,-0.42 -0.32,-0.26 -0.47,-0.18 -0.5,-0.12 0,-42.3 36.8,0 c 0.7,-6.45 -0.03,-14.3 0.2,-21.07 l 0,-30.32 59.2,0 0,-18.19 -21.85,-22.66 -8.33,-0.06 -4.1,-5.74 -18.64,-5.16 -4.37,0.8 -2.4,-1.57 0,-75.71 21.35,0 0,-48.7 69.6,0 0.06,32.48 -12,0.15 0,149.07 -5,4.3 -14,25.32 0,38.16 -3.9,4.5 0,14.06 3.9,0 2.26,2.3 0,1.84 -2.25,2.3 0,1.7 -4.4,0 0,4.85 -2.27,1.24 -1.38,1.63 0,1.4 1.24,1.55 2.2,1.6 0,7.8 -4.4,1.42 -0.16,4.07 4.7,1.7 0.56,1.4 0,-0.02 1.62,0.1 0.34,0.1 -1.87,4.1 0.62,3.05 0.88,1.46 1.28,0.07 1.04,0.87 1.1,-0.4 3.56,0 0.34,0.93 0.97,-0.03 0.98,0.63 0.28,0.84 0.94,0.4 0.3,1.35 1,1.4 1.26,0.03 2.5,1.18 -0.9,1.42 -3.3,8.34 -0.14,9.94 1.87,0.13 1.43,0 0,0.28 0.2,0.63 -0.92,1.07 -0.62,0.7 -0.53,0.3 -0.18,1.62 -0.63,0.97 -1.97,0 c -0.3,2.6 0.54,6.96 -0.37,8.55 -0.08,1.9 1.34,2.23 -0.63,4.06 l 1,-0.36 1.06,-0.2 1,0.57 0.25,1.17 1,0.28 -0.1,0.97 0.92,0.72 0.53,-0.8 0,-0.17 1.1,0.8 0.24,1.08 0.66,0.9 0.87,0.44 1,0.08 1,0.38 0.44,0.72 0.53,-0.1 0.9,-0.1 0,0.3 0.38,0.33 0.63,0.83 0.8,0 0.35,1 -0.8,0.9 0.65,1.25 -1,0.53 0.1,1 0.8,0.92 -1.1,0.72 -0.52,0.62 -1.9,2.88 0.1,0.1 -0.2,0.34 -0.34,0.18 -0.54,0 c 0.6,2.63 1.1,5.04 1.54,7.66 0.25,1.18 0.27,2.14 0.53,3.25 l 0,0.16 0.8,1.72 0,0.1 0.1,0 0,0.08 0.1,0.35 0,0.1 0.25,0.9 c -0.9,0.68 -1.32,2.15 -0.72,3.15 l 0.1,0.2 -0.3,1.6 0.3,0.7 0.1,0.3 0.17,0.27 0,0.15 -0.1,0 0.1,0.1 0.1,0.37 0.25,0.63 0.18,0.37 0,0.06 -0.18,0.38 -0.35,0.53 -0.1,0.46 -0.62,1.78 0.25,0.38 0.2,0.1 0,1.05 -0.2,0.2 -0.43,0.18 1,-0.1 2.25,-0.9 0.06,-0.44 0.37,0 0.9,-0.55 0.92,0.1 1.6,1 1.18,1.77 0.9,0.72 0.25,0.47 1.82,1.17 0.53,0.9 0,1.8 -0.63,1.9 -0.1,0.9 -0.27,0.53 0.56,1 0.62,-1 -0.38,-0.82 0.66,0.9 0.15,0.92 -0.25,0.34 -0.18,0.9 0.43,1.1 0,17.97 -16.8,0 0,9.36 -5.46,0 -0.04,1.1 -0.57,0.6 -1.06,0.16 -0.45,0.54 -0.4,0.9 -7.73,7.74 0,8.4 1.07,-0.14 1,-0.12 1.5,-2.6 1.43,0.16 1.14,1.68 26.54,0 z"
2763+ id="path5774-2"
2764+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2765+ inkscape:connector-curvature="0"
2766+ overflow="visible"
2767+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2768+ <path
2769+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2770+ d="m 265.52,665.07 29.23,0 0,19.8 -29.23,0 z"
2771+ id="rect42659-7"
2772+ inkscape:connector-curvature="0"
2773+ sodipodi:nodetypes="ccccc"
2774+ overflow="visible" />
2775+ <path
2776+ id="path6028-1"
2777+ d="m 453.12,664.5 c -0.17,-0.95 -0.16,-1.93 -0.07,-2.9 0.06,-0.63 0.15,-1.24 0.25,-1.87 l 0.32,-2 -0.9,-0.28 0,-0.9 1.36,-1.54 c -0.15,-3.62 2.02,-7.07 0.54,-10.6 l 0,-1.9 0.34,-1.8 -0.44,-2.88 -0.44,-1.87 -0.18,-1.82 0.18,-0.9 -0.46,-0.35 0.37,-0.28 1.05,0 0.47,-0.15 0.8,-1 0.1,-0.82 -0.18,-1 1.25,-0.62 0.37,-0.27 0,-0.53 -0.72,-0.54 1.25,-1.34 0.8,-0.9 0.92,-0.72 0.06,-0.1 -0.16,-0.28 0,-0.1 0.8,0.1 -0.36,-0.62 0.1,-0.1 0.7,-0.1 0.54,-0.96 -0.97,0.1 -0.1,-0.38 0.26,-1 -0.88,-0.35 -0.72,-0.9 -0.9,-0.7 0.08,-0.2 0.63,-0.87 -0.08,-0.75 -0.63,-0.72 0,-0.88 0.62,-1.1 0.9,-0.7 0.1,-0.82 0.53,-0.9 -0.47,-0.82 -0.35,-0.88 0.54,-0.9 0,-2.25 0.1,-0.9 0.9,-0.8 0.28,-0.82 -1.47,-2.88 -1.97,-3.16 -0.7,-1.25 0.9,-0.1 1,0.2 0.78,0.18 1,-0.1 0.18,0.1 0.72,0.43 0.9,-0.42 0.92,-0.82 0.96,-0.8 0.9,0.08 0.4,0.1 0.14,-0.38 0.8,-0.65 0,-8.2 c -4.27,-6.7 -8.28,-13.63 -12.5,-20.4 l 0.73,-0.08 0.2,0 0.15,-0.1 0,-0.34 0.1,-0.1 0,-0.1 0.65,-3.05 0.53,-3.06 0,-0.2 0.53,-3.02 0.52,-2.97 0.1,-0.56 0.28,-0.53 -0.3,-1 0,-0.26 -0.33,-0.47 -0.37,-1.06 -0.1,-0.9 -1.78,-1.25 -0.28,-1.1 0,-0.1 0.28,-2.58 1.97,-0.47 0.8,-0.1 0.9,0.38 0.2,-0.53 -0.1,-0.72 -0.9,-0.72 -2.16,-0.08 0,-2.97 1.25,-0.28 0.9,0.2 4.4,0 0.9,-0.3 -0.18,-0.25 0.9,-0.1 0.9,0.54 0.9,-0.72 0.8,-0.9 0.1,0 0,-2.53 -0.72,-0.7 -0.9,0 c 0.1,-0.3 0.25,-0.53 0.4,-0.73 0.15,-0.2 0.3,-0.36 0.47,-0.5 0.25,-0.2 0.5,-0.36 0.75,-0.5 l 0,-2.5 -0.63,-0.63 -0.35,-0.9 -0.1,-0.2 -0.37,-0.8 0,-0.88 -0.35,-0.47 0.25,-0.9 0,-0.9 0.1,-0.36 0.1,-0.28 -0.1,-0.54 0,-0.9 0.9,-0.72 -0.1,-1.16 0.64,-0.62 0,-1.35 -0.25,-0.18 -0.9,-0.3 -0.92,0.38 -0.72,0 -0.9,0.25 -0.9,-0.1 -0.54,0.2 -1.82,-0.26 -1.06,0.54 -0.9,-0.1 -0.45,-0.52 -2,-2.53 -0.25,-0.28 -0.56,-0.72 -1.06,0.1 -1,-0.54 -0.9,-0.08 -1.7,0.44 -0.1,0.1 -2.7,-0.26 -0.88,0.1 -0.63,-0.2 -0.48,-0.9 -0.2,-0.63 -0.86,-0.1 -0.2,-0.08 -0.18,-0.92 0.1,-0.87 0,-0.7 0.2,-0.2 0.24,-0.9 -0.25,-0.9 -0.1,0 -1.1,-1.17 -0.62,-2.06 0.2,-0.1 -0.92,-0.46 -0.18,-0.34 -0.9,0.44 -0.88,0 1.06,-1.72 0.72,-1.16 0.1,-1 0.37,-1.78 -0.1,-0.18 0.63,-0.9 0.53,-1.17 0.62,-0.9 1.1,-0.48 1.3,-2.06 1.76,-0.7 1.6,-0.46 2.56,-0.13 -1,-2 -3.7,-26.84 -0.02,-1.34 -0.82,-1.14 0.63,-1.03 0.3,-0.8 -0.57,-0.5 0.72,-0.54 -0.2,-0.98 0.13,-1.35 -1.1,-2.47 -2.77,-11.3 23.57,0 -0.15,-116.26 0.9,-0.37 0.9,-0.1 0.45,-0.9 -0.44,-1.16 -0.47,-0.52 -0.25,-0.1 -0.46,0.26 -0.34,-0.54 0.18,-1.78 -0.1,-0.18 -0.36,-0.07 -0.54,-0.12 -0.9,-0.8 0.28,-0.45 -0.1,-1.8 -0.1,-1.36 0,-3.97 -0.7,-0.53 0,-0.1 -1.44,-1.05 -2.97,0.95 -0.72,-0.62 c 1.13,-0.3 1.8,-0.56 2.25,-0.8 0.14,-0.1 0.28,-0.18 0.37,-0.26 0.66,-0.58 0.35,-1.25 0.78,-2.63 l 0.9,-0.28 0.45,-0.16 1.8,0 0.64,0.44 0.28,0.2 1.53,-0.2 0.9,-0.34 0.07,0 0.28,-0.1 1.65,-0.43 1.9,0.18 3.14,0.85 2.6,-0.88 2.5,-0.8 3.2,-1.07 1.16,-0.72 0.73,-0.27 4.28,9.74 3.9,-0.25 2.22,-6.02 -3.77,-12.94 -0.33,-0.8 -0.1,-0.65 -0.24,-0.56 0.22,-1.9 0.27,-0.48 -0.38,-0.48 0.35,-0.54 0.47,-0.5 -0.75,-0.56 -0.2,-0.4 -0.16,-0.52 -0.22,-0.5 -0.28,-1.03 -0.15,-0.7 -0.5,-0.5 -0.16,-0.6 0,-0.38 -0.4,-0.38 -6.65,-0.15 0.43,-0.3 -0.53,-1.78 -1,-0.18 -0.25,-0.9 0.9,-0.73 1.78,-0.18 -0.62,-0.8 0.3,-0.88 -0.48,-0.9 -0.9,-0.3 -0.44,0.82 -0.9,0.63 -0.26,1.7 0.25,1.82 0,0.87 -0.2,0.18 -0.6,1 -0.26,0.9 0.35,0.63 -1.43,1.07 -0.54,-0.87 0.2,-0.9 -0.82,-0.48 -0.63,-0.87 -0.9,-0.72 -1,-0.2 -0.8,0.98 -0.64,-0.24 -1,0.25 -0.73,-0.86 -0.72,-0.38 -0.53,0.72 -0.62,-0.9 0.34,-0.88 -0.16,-0.72 0.16,-1.8 0.47,-0.4 -0.9,-0.86 -0.8,0.97 0,0.45 -0.92,0.44 -0.9,0.27 -0.16,-0.1 0.1,-1.24 0.43,-0.9 -0.1,-1 0.38,-0.9 -0.18,-0.17 -0.82,-0.9 -0.9,-0.3 -0.8,-0.42 0.27,-0.9 -0.28,-0.23 -0.44,-0.3 -0.63,-0.9 0.25,-0.9 0.82,-0.48 0.1,-0.07 -0.1,-0.15 -0.44,-0.75 -0.1,-0.9 0.54,-0.16 1.28,-0.4 0.87,-0.18 -0.87,-0.72 -0.66,-0.9 -0.34,-0.8 0.8,0 1.17,0.8 1,0.72 0.9,-0.16 -0.56,-0.9 0.3,-0.3 0,-0.17 -0.38,-0.36 0.28,-0.9 -0.53,-0.9 0.8,0.46 1.7,1.7 1.28,0.45 0.62,0.35 0.63,0.9 1.8,0 0.45,0.2 0.9,0 1,-0.3 c 0.43,0.1 0.73,0.13 0.97,0.17 l 0.8,-0.16 c 0.06,0 0.18,0.03 0.42,0.1 l 1.66,0.63 0.8,0.28 1,-0.8 0.63,-1.8 -0.34,-0.9 1.68,-1 0.28,-0.08 -0.28,-1 -0.88,-0.63 -0.56,-0.73 -0.9,-0.9 0,-0.88 1.1,-0.57 -1,0 -0.9,-0.25 -0.8,-0.56 -0.72,-1.78 0.44,0 0.9,-0.1 -1.1,-1.8 0.2,-0.35 0.9,-0.73 0,-0.9 0.44,-0.63 0.38,-2 -0.2,-0.88 0.1,-0.47 -0.8,-0.9 0,-0.26 -0.9,-0.3 -0.45,-0.9 -0.72,-0.7 -0.37,-0.26 0.9,-0.8 0.64,-0.92 1.25,-0.62 -0.97,-0.47 -0.1,-0.88 1.07,-0.38 0.9,0 0.2,-1 -0.92,-0.16 -0.72,0.34 -0.9,0.54 -0.72,-0.88 -0.88,-0.1 -0.75,-0.27 -0.96,0.08 0.34,-0.9 0.92,0.18 0.53,0.28 -0.25,-2.53 0.8,-0.9 -0.9,-0.1 -1,0.2 -0.18,-1 0.1,-1.78 0.55,-0.2 -0.9,-0.43 0,-0.3 2.66,-4.06 -1.92,-1.64 0.22,-2.2 1.8,-3.3 -2.1,-3.14 2.7,-3.06 -0.33,-3.62 1.83,-3.23 -2.4,-5.05 -1.63,-0.8 1,-4.2 4.16,0.4 1.53,-0.6 1.03,-1.57 0.8,-2.23 2.98,-1.8 1.23,-1.9 1.26,-0.88 0.06,-1.8 1.98,-1.03 0.96,-2.62 -5.36,-5.44 -4.9,-1.44 -1.65,-2.1 -2.7,-1.1 -0.3,-1.14 -2.6,-1.23 -2.58,0.1 -5.62,-3.36 -2.23,-0.37 -0.6,-1.96 1.3,-0.94 2.36,-0.37 -0.23,-1.64 -0.78,-1.2 -1.23,-0.8 0.52,-1.75 -0.66,-2.16 -0.98,-1.68 -1.9,-1.4 0.04,-1.93 0,-48.57 -3.22,-0.63 -0.82,0 -0.37,-0.7 -1,-0.1 -1.87,-1.07 -1.96,-0.66 0.15,-0.97 2,-0.47 0.97,-0.7 0.9,-0.26 0.9,0.15 1,0 1.07,-0.25 -0.72,-1 -1.78,0.44 -1.1,0 -1.97,-0.15 -3.78,-0.8 0,-0.92 0.97,-0.9 0.9,-0.35 -0.9,0 -2.6,1.8 -1,0 -0.97,-0.26 -0.9,-0.72 0.9,-0.28 -0.9,-0.3 -1,0 -0.9,-0.6 0.8,-1 1,-0.26 0.9,-0.47 2.8,-0.45 2.33,0.1 5.75,0.62 1,0 1.88,-0.34 1.54,0.25 0,-0.2 -1.54,-0.24 -0.96,0 -0.9,0.2 -2.9,-0.3 -1,-0.43 2.9,-0.9 3.96,-0.18 0.44,0.03 0,-1.5 -0.1,0.03 -3.94,0.34 -0.37,-0.87 -1,0 -0.52,0.87 -1.88,0.47 -2.87,-0.82 -0.9,-0.1 -1,-0.43 1.96,-0.57 1,-0.87 -1,0.35 -1.88,0.28 -1,0 -0.97,-0.46 1.97,-1.07 0.9,0 0,-0.18 -1.8,-0.2 -1.8,0.82 -2.18,0.2 -0.87,-0.45 0.96,-0.76 -0.87,0.1 -1,-0.54 -0.9,0.28 -0.9,-0.18 -0.98,-0.53 -0.8,-0.9 -1,-0.2 -1.9,-1 0.98,-0.44 1,-0.9 -1,-0.35 0.62,-1 0.9,-0.9 2.9,-0.35 1,-0.56 0.9,-0.15 2.96,0.15 0.9,-0.87 2.88,-0.47 0,-0.35 0.35,-0.1 2.96,-0.27 0.9,-0.43 1,-0.2 -0.9,-0.9 2.88,-0.8 1.54,-0.25 0.44,0 0.5,0.12 1.94,-0.9 0,-18.51 0.62,-0.37 0.9,-0.2 1.9,-0.7 0.98,-0.54 0.9,-0.8 1,-0.54 c 2.58,-0.8 5.6,-0.84 7.66,-2.88 l -0.18,-0.9 c -4.67,-0.14 -9.2,1.48 -13.78,2.06 l 0,-0.82 4.06,-1 -2,-0.53 -2.06,0.1 0,-0.53 0.1,0 4.77,-0.3 0.96,0.1 0.9,-0.34 0.9,0.25 2.07,-0.53 -2.96,-0.1 2,-0.27 1.78,-0.44 3.97,0.27 2.78,-1 1,-0.53 1.87,-0.37 4.88,-1.72 1.97,-1.25 1,-0.2 0.9,-0.33 0.78,-1 -0.15,-1 -0.9,-0.63 -1.35,-0.53 -3.16,0 -1,-0.43 -1.06,0.1 -1.9,0.78 -1.07,0.1 1.07,-0.26 0.47,-1 -1.1,-0.63 -0.9,-0.82 -0.97,-0.53 0.97,-0.28 0.1,-0.9 -1,-0.2 -1.07,0 -0.9,0.1 -1.07,0.47 -1,0.1 -1.8,-1 1,-0.1 -1,-0.33 -0.98,0.15 -0.8,1 -0.92,0.2 -1,-0.64 -1.87,0.35 -2,0.62 -0.88,0.57 -2,0.15 -0.9,0.38 -0.53,0 0,-1 2.43,-0.53 1.97,-0.72 0.72,-0.63 -0.97,-0.28 -1.9,-0.2 -1.16,0.2 -1.08,-0.2 0,-26.98 -69.44,0 0.06,32.35 -0.16,0.13 -10,0.12 -1.53,-0.1 0,0.13 -0.3,0 0,149.07 -5,4.3 -14,25.32 0,38.16 -3.92,4.5 0,14.06 3.9,0 2.27,2.3 0,1.84 -2.25,2.3 0,1.7 -4.4,0 0,4.85 -2.27,1.24 -1.38,1.63 0,1.4 1.24,1.55 2.2,1.6 0,7.8 -4.4,1.42 -0.17,1.2 0,2.87 4.7,1.68 0.56,1.4 1.63,0.1 0.34,0.1 -1.87,4.1 0.62,3.04 0.88,1.47 1.28,0.06 1.04,0.87 1.1,-0.4 3.56,0 0.34,0.93 0.97,-0.03 0.98,0.63 0.28,0.84 0.94,0.4 0.3,1.35 1,1.4 1.26,0.03 2.5,1.18 -0.9,1.42 -3.3,8.34 -0.14,9.94 1.87,0.13 1.43,0 0,0.28 0.2,0.63 -0.92,1.06 -0.62,0.7 -0.53,0.3 -0.18,1.62 -0.63,0.97 -1.97,0 c -0.08,0.64 -0.08,1.4 -0.06,2.2 0.05,1.6 0.2,3.35 0.1,4.7 -0.04,0.5 -0.12,0.95 -0.25,1.3 -0.04,0.13 -0.1,0.25 -0.15,0.35 -0.05,1.2 0.47,1.76 0.4,2.47 0,0.14 -0.05,0.28 -0.12,0.44 -0.14,0.32 -0.4,0.68 -0.9,1.15 l 1,-0.36 1.05,-0.2 1,0.57 0.25,1.17 1,0.28 -0.1,0.97 0.92,0.72 0.53,-0.8 0,-0.17 1.1,0.8 0.24,1.07 0.66,0.9 0.87,0.45 1,0.08 1,0.38 0.44,0.72 0.53,-0.1 0.9,-0.1 0,0.3 0.38,0.33 0.63,0.83 0.8,0 0.35,1 -0.8,0.9 0.65,1.25 -1,0.53 0.1,1 0.8,0.92 -1.1,0.72 -0.52,0.62 -1.9,2.88 0.1,0.1 -0.2,0.34 -0.34,0.18 -0.54,0 c 0.6,2.63 1.1,5.04 1.54,7.66 0.17,0.8 0.23,1.5 0.34,2.22 0.05,0.34 0.1,0.67 0.2,1.03 l 0,0.16 0.8,1.7 0,0.1 0.1,0 0,0.1 0.1,0.35 0,0.1 0.24,0.9 c -0.34,0.25 -0.6,0.62 -0.8,1.03 l -0.1,0.4 0,0.05 c -0.02,0.02 0,0.04 0,0.06 -0.13,0.57 -0.1,1.15 0.18,1.63 l 0.1,0.2 -0.3,1.58 0.3,0.73 0.08,0.28 0.2,0.3 0,0.15 -0.1,0 0.1,0.1 0.1,0.37 0.24,0.63 0.18,0.37 0,0.06 -0.18,0.38 -0.35,0.53 -0.1,0.46 -0.62,1.78 0.25,0.37 0.2,0.1 0,1.07 -0.2,0.2 -0.43,0.17 1,-0.1 2.25,-0.9 0.06,-0.43 0.37,0 0.9,-0.56 0.92,0.1 1.6,1 1.18,1.78 0.9,0.72 0.25,0.47 1.82,1.16 0.53,0.9 0,1.82 -0.63,1.88 -0.1,0.9 -0.27,0.53 0.56,1 0.6,-1 -0.36,-0.82 0.66,0.9 0.15,0.9 -0.25,0.36 -0.2,0.9 0.45,1.1 0,17.97 -16.8,0 0,9.36 -5.46,0 -0.04,1.1 -0.57,0.6 -1.06,0.16 -0.45,0.54 -0.4,0.9 -7.73,7.74 0,8.4 1.07,-0.14 1,-0.12 1.5,-2.6 1.43,0.16 1.14,1.68 25.13,0 0,37.05 0.97,1.96 -0.2,0.27 -0.8,-0.44 -0.44,0.16 0.16,0.27 -0.44,1 0,1.06 0.9,0.56 0.1,0.15 -0.56,0.28 -0.34,0.38 0.34,1.07 0,0.37 -0.25,0.16 -0.2,0.1 -0.17,0.62 0.1,0 0.27,1.2 0.2,0.08 1.77,1.44 0,6.25 -0.2,338.58 69.57,0 0,-16.4 -0.9,-0.83 -5.35,-2.2 -4.12,0.14 -1.3,-1.24 -6.12,-2.47 -1.27,0.32 -2.94,-1.4 -0.48,-0.75 -1.74,-1.22 -0.5,-0.86 -1.24,-0.86 -0.96,-0.82 -1.07,1 -0.85,-1 -0.57,-3.05 -1.58,0.2 -1.56,-1.95 -0.33,-1.45 -1.73,-2 -0.04,-2.6 c -1.1,-1.16 -1.46,-1.95 -1.93,-2.8 l -0.66,-1.75 0.5,-2.54 -0.65,-2.6 -1,-0.7 0.66,-1.54 -0.33,-2 c -0.73,-2.3 -1.02,-4.64 -0.92,-6.97 l 0.38,-3.1 -0.7,-10.33 4.34,-17.77 1.83,-1.85 0.6,-1.47 0.22,-1.2 0.12,-3.07 0.68,-1.77 1.02,-2.05 -0.93,-3.37 1.47,-5.05 0.18,-1.12 0.7,-0.04 -0.03,-1.2 1.4,-0.8 -0.86,-0.85 -0.57,-4.13 0.13,-2.94 -0.8,-1.27 -0.08,-1.9 -35.8,0 0,-62.7 51.24,0 0.8,-0.86 0,-0.9 z m -7.94,-578.4 3.84,0.63 -0.97,0.7 -1.9,0.2 -1.97,-0.72 z m 4.56,0 2,0 2.97,0.44 -0.9,0.28 -2.78,0.2 -1,-0.58 z m 6.7,8.38 1.05,0.53 -1,0.1 -0.98,-0.2 0,-0.24 0.9,-0.18 z"
2778+ inkscape:connector-curvature="0"
2779+ sodipodi:nodetypes="ccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2780+ overflow="visible"
2781+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2782+ <path
2783+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2784+ d="m 459.38,488.86 c -0.3,0.03 -0.58,0.24 -0.66,0.53 -0.08,0.3 0.03,0.62 0.28,0.8 l 1,0.82 c 0.07,0.05 0.16,0.1 0.25,0.12 l 0.9,0.28 c 0.36,0.12 0.74,-0.04 0.9,-0.37 0.18,-0.33 0.1,-0.72 -0.2,-0.94 l -0.9,-0.7 c -0.08,-0.05 -0.15,-0.08 -0.23,-0.1 l -0.78,-0.28 -0.22,-0.1 c -0.1,-0.04 -0.23,-0.07 -0.35,-0.06 z m -3.97,0.38 c -0.06,0 -0.12,0.03 -0.18,0.06 l -1,0.44 c -0.2,0.1 -0.35,0.26 -0.4,0.46 l -0.2,0.66 c -0.03,0.1 -0.04,0.2 -0.03,0.3 l 0.1,0.9 c 0,0.1 0.04,0.23 0.1,0.33 l -0.02,0.27 c -0.02,0.2 0.03,0.4 0.16,0.57 l -0.8,0.3 -0.05,0 -0.07,0.04 -1.72,0.34 -0.17,0.1 -2.5,1.34 c -0.04,0 -0.07,0.02 -0.1,0.03 0,-0.22 -0.1,-0.43 -0.25,-0.57 l -0.78,-0.7 -0.2,-0.5 0.17,-0.7 c 0.07,-0.3 -0.04,-0.6 -0.28,-0.8 -0.26,-0.17 -0.6,-0.18 -0.86,-0.02 l -0.43,0.26 c -0.1,0.07 -0.2,0.16 -0.28,0.28 l -0.43,0.75 c -0.04,0.06 -0.07,0.14 -0.08,0.2 0,0.03 -0.02,0.05 -0.03,0.07 l -0.66,0.53 -0.03,0.07 -0.06,0.03 c -0.8,0.7 -1.15,1 -1.46,1.44 -0.32,0.44 -0.54,0.9 -1.25,2.1 -0.1,0.16 -0.12,0.36 -0.07,0.55 l 0,0.05 -0.15,0.72 -0.15,0.85 -0.03,0.15 0,0.27 -0.13,0.7 c 0,-0.03 0,-0.05 0.02,-0.07 l 0,0.06 -0.03,0 -0.04,0.1 0,0.03 -0.03,0.03 -0.44,0.65 0,0.04 -0.63,0.86 -0.03,0.06 -0.3,0.53 c -0.17,0.26 -0.15,0.57 0.02,0.82 0.17,0.24 0.46,0.36 0.75,0.3 l 0.4,-0.05 0.23,0.06 c 0.1,0.03 0.2,0.04 0.3,0.03 l 0.08,0 c 0.1,0.07 0.2,0.1 0.3,0.14 l 0.02,0 0.44,0.1 0.28,0.86 0,0.04 0.22,0.87 c 0.03,0.14 0.1,0.26 0.18,0.35 l 0.22,0.22 0.03,0.03 0.68,0.8 c 0.03,0 0.06,0.03 0.1,0.05 l 0,0.03 0.12,0.56 0,0.03 -0.16,0.75 0,0.19 -0.15,0.7 c -0.03,0.05 -0.04,0.1 -0.04,0.15 l 0,0.09 -0.1,0.7 0,0.11 c 0,0.1 0.03,0.2 0.06,0.28 l 0.3,0.72 c 0.05,0.16 0.18,0.3 0.33,0.37 l 0.12,0.07 0.04,0 c 0.02,0 0.03,0.02 0.04,0.03 l 0.03,0 0.25,0.22 0.06,0.03 0.03,0.03 0.04,0.04 0.07,0.06 0.22,0.2 0.04,0.02 0.34,0.66 c 0.08,0.17 0.23,0.3 0.4,0.37 l 0.48,0.16 c 0.08,0.04 0.16,0.05 0.25,0.04 l 0.13,0 0.68,-0.1 0.87,0.1 0.98,0 0.78,0.16 0.16,0.03 0.03,0 0.16,-0.03 0.7,-0.16 0.1,0 c 0.06,0 0.14,-0.03 0.2,-0.06 l 0.72,-0.28 0.66,0.12 0.1,0.03 0.74,0.38 c 0.12,0.05 0.25,0.07 0.38,0.06 l 0.72,-0.07 0.37,0.5 c 0,0.03 0.03,0.06 0.06,0.1 l 0.2,0.18 0.05,0.07 0.07,0.07 0.03,0 0.03,0.03 0.28,0.37 0.04,0 0.03,0.03 0,0.03 0.04,0 c 0.02,0 0.03,0.03 0.04,0.04 l 0.47,0.65 0,0.02 c 0.03,0.08 0.08,0.16 0.13,0.22 l 0.8,1 c 0.02,0 0.03,0.02 0.04,0.03 l 0.4,0.44 c 0.13,0.15 0.3,0.24 0.48,0.26 l 0.7,0.1 c 0.15,0 0.3,-0.02 0.46,-0.1 l 0.72,-0.44 0.72,0.1 0.03,0 0.72,0.22 c 0.14,0.04 0.3,0.04 0.43,0 l 0.66,-0.22 0.9,0 0.9,-0.1 c 0.08,0 0.15,-0.03 0.22,-0.06 l 0.8,-0.3 0.7,0 0.34,0.14 0,0.04 -0.03,0.15 0,0.62 -0.5,0.8 c -0.1,0.16 -0.15,0.33 -0.13,0.5 l 0.06,0.54 -0.6,0.47 c -0.17,0.14 -0.28,0.36 -0.27,0.6 l 0,0.87 0.1,0.4 0,0.07 -0.04,0.03 c -0.03,0.07 -0.05,0.14 -0.06,0.22 l 0,0.06 -0.04,0.12 c 0,0.06 -0.02,0.1 -0.03,0.16 l 0,0.1 -0.04,0.12 -0.06,0.9 0,0.2 0.16,0.74 0,0.9 c 0,0.1 0.02,0.2 0.06,0.3 l 0.28,0.68 0,0.03 0.03,0.12 0.03,0.04 0.03,0.1 0.1,0.14 0,0.03 0.02,0.03 0,0.03 0.25,0.87 c 0.04,0.17 0.14,0.3 0.28,0.4 l 0.78,0.54 0.4,0.63 -0.18,0.47 -0.4,0.28 c -0.04,0.02 -0.07,0.06 -0.1,0.1 l -0.03,0.02 -0.94,0.85 -0.1,0.1 -0.24,0.35 c -0.14,0.2 -0.17,0.46 -0.1,0.7 0.08,0.22 0.24,0.4 0.47,0.46 l 0.64,0.2 0.72,0.84 0.03,0.03 0.02,0.03 0.06,0.07 0.7,0.53 0,0.6 c 0,0.1 0,0.2 0.05,0.3 l 0.34,0.7 0,0.02 c 0,0.14 0.03,0.28 0.1,0.4 l 0.28,0.54 0.03,0.13 0.25,0.74 0,0.06 0.03,0.06 0,0.03 0.2,0.83 0,0.04 0.2,0.8 c 0.05,0.17 0.15,0.32 0.3,0.4 0.75,0.58 1.27,1.06 1.65,1.42 0.42,0.38 0.67,0.67 1.1,0.87 0.17,0.07 0.44,0.15 0.7,0.12 0.24,-0.04 0.43,-0.12 0.64,-0.23 0.38,-0.18 0.94,-0.52 1.57,-0.94 l 0.47,0.3 0,0.02 c 0.07,0.3 0.33,0.5 0.63,0.56 0.3,0.06 0.6,-0.07 0.75,-0.33 l 0.06,-0.1 0.8,-0.47 0.15,-0.12 0.06,-0.06 c 0.02,0 0.03,-0.02 0.04,-0.04 l 0.7,-0.78 0.15,-0.06 0.08,-0.03 0.03,0 0.76,-0.24 0.03,0 0.1,-0.03 c 0.1,-0.03 0.2,-0.08 0.3,-0.16 l 0.66,-0.6 0.56,0.07 c 0.2,0.03 0.4,-0.03 0.56,-0.15 l 0.75,-0.6 c 0.13,-0.1 0.2,-0.26 0.25,-0.4 l 0.16,-0.67 0.03,-0.06 0.03,-0.03 0.3,-0.66 0.54,-0.03 c 0.13,-0.02 0.24,-0.06 0.35,-0.13 l 0.83,-0.6 0.1,-0.05 0.12,-0.1 0.5,-0.28 c 0.3,-0.18 0.43,-0.53 0.34,-0.85 l -0.16,-0.56 c -0.08,-0.32 -0.34,-0.55 -0.66,-0.58 l -0.7,-0.06 -0.14,0 -0.8,0.1 -0.42,-0.22 0.12,-0.38 c 0.05,-0.16 0.04,-0.34 -0.03,-0.5 l -0.36,-0.87 -0.1,-0.17 -0.03,-0.06 c 0,0 0,-0.02 -0.02,-0.03 l -0.03,-0.04 -0.44,-0.65 0,-0.73 0,-0.03 0.1,-0.72 c 0.02,-0.15 0,-0.3 -0.1,-0.44 l -0.4,-0.78 c -0.05,-0.1 -0.14,-0.2 -0.24,-0.28 l -0.72,-0.44 -0.06,-0.06 -0.47,-0.53 0.26,0 0.68,-0.1 0.04,0 0.6,0.2 0.02,0.02 0.75,0.7 c 0.16,0.14 0.38,0.2 0.6,0.18 l 0.65,-0.1 0.06,0 0.63,0.3 c 0.18,0.07 0.4,0.07 0.58,0 l 0.6,-0.3 0.65,0.6 0.63,0.78 c 0.18,0.23 0.5,0.33 0.78,0.25 l 0.56,-0.16 c 0.33,-0.08 0.56,-0.38 0.56,-0.72 l 0,-1.12 0.35,0 c 0.18,0 0.34,-0.05 0.48,-0.16 l 0.6,-0.47 0.64,0.22 c 0.16,0.05 0.32,0.05 0.47,0 l 0.8,-0.25 c 0.05,0 0.1,-0.03 0.13,-0.06 l 0.63,-0.34 0.77,0 c 0.17,0 0.34,-0.08 0.47,-0.2 l 0.85,-0.68 0.03,-0.06 0.03,0.03 0.7,-0.27 0.06,0 0.1,-0.03 0.53,-0.06 c 0.2,-0.03 0.4,-0.16 0.52,-0.35 l 0.44,-0.7 0.68,-0.34 c 0.14,-0.07 0.25,-0.18 0.32,-0.3 l 0.34,-0.7 c 0.12,-0.24 0.1,-0.52 -0.03,-0.75 l -0.5,-0.74 c -0.03,-0.04 -0.06,-0.1 -0.1,-0.12 l -0.03,-0.04 -0.84,-0.8 -0.03,-0.07 -0.06,-0.06 -0.68,-0.88 c 0,-0.02 -0.02,-0.03 -0.03,-0.04 l -0.82,-0.84 -0.04,-0.03 c 0,-0.03 0,-0.06 -0.03,-0.08 l -0.2,-0.3 0.18,-0.23 0.03,-0.07 c 0.05,-0.04 0.08,-0.08 0.1,-0.13 l 0.66,-0.62 c 0.18,-0.18 0.25,-0.44 0.2,-0.7 l -0.17,-0.74 -0.1,-0.6 0.47,-0.05 0.09,0 0.1,-0.05 0.87,-0.18 0.13,-0.03 0.84,-0.35 0.75,-0.32 c 0.16,-0.07 0.3,-0.2 0.38,-0.34 l 0.3,-0.63 c 0.13,-0.23 0.13,-0.5 -0.02,-0.74 -0.14,-0.23 -0.4,-0.36 -0.68,-0.34 l -0.44,0.03 -0.12,-0.44 -0.07,-0.1 -0.04,-0.08 -0.06,-0.1 -0.37,-0.5 0.4,-0.52 0.03,-0.03 0.72,-0.4 0.06,-0.04 0.04,-0.03 0.06,-0.03 0.03,-0.03 0.06,-0.04 c 0.07,-0.03 0.13,-0.07 0.2,-0.12 l 0.2,-0.25 0.07,-0.06 0.03,0 0.8,-0.5 c 0.06,-0.03 0.1,-0.06 0.14,-0.1 l 0.2,-0.18 0.02,-0.05 0.08,-0.12 0.16,-0.28 0.03,-0.03 0.06,-0.07 0.3,-0.2 c 0.17,-0.14 0.27,-0.3 0.3,-0.5 0.02,-0.2 -0.04,-0.42 -0.16,-0.58 l -0.44,-0.5 -0.06,-0.1 -0.03,0 0,-0.05 c 0,-0.35 -0.23,-0.67 -0.57,-0.75 l -0.9,-0.25 c -0.1,-0.04 -0.2,-0.05 -0.3,-0.03 l -0.92,0.14 c -0.13,0.02 -0.24,0.08 -0.34,0.16 l -0.56,-0.2 c -0.1,-0.02 -0.18,-0.03 -0.28,-0.02 l -0.9,0.06 c -0.1,0 -0.17,0.03 -0.25,0.06 l -0.18,0.1 0.47,-1.63 0.96,-1.06 c 0.13,-0.14 0.2,-0.32 0.18,-0.52 0,-0.2 -0.1,-0.4 -0.25,-0.53 l -0.9,-0.8 c -0.15,-0.14 -0.33,-0.2 -0.5,-0.2 l -0.7,0 -1.53,-0.94 c -0.12,-0.07 -0.26,-0.1 -0.4,-0.1 l -0.98,0 -0.16,-0.2 c -0.05,-0.05 -0.1,-0.1 -0.16,-0.13 l -0.9,-0.56 c -0.13,-0.07 -0.27,-0.1 -0.4,-0.1 l -0.4,0 c -0.2,0 -0.38,0.06 -0.52,0.2 l -0.78,-0.87 c -0.08,-0.1 -0.2,-0.17 -0.3,-0.22 l -0.07,-0.08 0.94,0.03 c 0.15,0 0.3,-0.03 0.4,-0.1 l 0.8,-0.46 0.12,-0.08 0.75,-0.25 0.13,-0.03 c 0.4,-0.1 0.64,-0.5 0.53,-0.9 -0.1,-0.4 -0.5,-0.67 -0.9,-0.57 l -0.13,0.03 -0.72,0.13 -0.05,0 -2.6,-0.25 -0.2,0 -0.86,0.2 -0.76,-0.1 c -0.08,0 -0.17,0 -0.25,0.02 l -1.57,0.38 -0.9,-0.16 -0.13,0 c 0.2,-0.13 0.3,-0.35 0.3,-0.6 l 0,-0.9 c 0.02,-0.3 -0.13,-0.56 -0.4,-0.68 -0.25,-0.13 -0.58,-0.1 -0.8,0.1 l -0.76,0.58 -0.8,0.16 c -0.33,0.05 -0.58,0.3 -0.63,0.62 -0.04,0.32 0.13,0.64 0.4,0.8 l 0.8,0.4 -0.2,0.05 c -0.25,0.1 -0.44,0.35 -0.46,0.63 l -0.4,0.2 c -0.04,0 -0.07,0 -0.1,0.02 l -1.8,1.06 c -0.1,0.06 -0.18,0.13 -0.23,0.22 l -0.02,0.06 -1.39,0 -1.87,-0.53 c -0.05,0 -0.1,0 -0.13,-0.02 l -0.62,-0.03 -1.04,-0.9 -0.1,-0.32 c -0.06,-0.27 -0.28,-0.47 -0.55,-0.53 l -0.92,-0.2 -2.53,0 -4.06,0.64 -1.45,0 -0.5,-0.3 0.2,-0.5 c 0.06,-0.2 0.03,-0.45 -0.1,-0.64 l -1,-1.53 c -0.06,-0.1 -0.14,-0.16 -0.22,-0.22 l -1.8,-1.2 c -0.1,-0.06 -0.2,-0.1 -0.33,-0.1 l -3.1,-0.26 -0.52,-0.33 -0.2,-0.53 -0.1,-0.8 c 0,-0.17 -0.07,-0.33 -0.17,-0.45 l -0.8,-0.9 c -0.18,-0.2 -0.44,-0.3 -0.7,-0.26 z"
2785+ id="path11648-5-8"
2786+ inkscape:connector-curvature="0"
2787+ overflow="visible" />
2788+ <path
2789+ d="m 536.6,704.9 -0.54,1.15 -0.72,0.9 -2.78,2.35 -0.47,0.62 -0.26,0.9 -0.8,0.92 -0.3,0.97 -0.9,0.47 -0.8,0.88 -3.07,1.37 -0.88,0.07 c -0.33,-0.1 -0.6,-0.15 -0.85,-0.23 -0.6,-0.2 -0.98,-0.4 -1.34,-0.5 l -0.24,-0.06 -0.25,-0.03 -0.24,0 c -0.18,0 -0.37,0.04 -0.6,0.1 -0.14,0.03 -0.33,0.1 -0.5,0.15 l -0.4,0.16 c -0.28,0.1 -0.6,0.24 -0.97,0.4 l -1,-0.7 -1.9,-0.45 -1.79,-1.34 -2.16,0 -0.9,0.24 -0.35,-0.63 -1.73,-1.68 -0.62,-0.9 -0.1,-0.53 0.2,-1.83 0.53,-1.62 -0.63,0.1 -0.1,0.9 -0.43,0.9 -0.1,0.88 0.44,1.28 0,0.64 0.28,1 -0.1,0.15 -0.7,0.27 c 1.76,4.1 3.8,1.46 6.65,5.85 l -1.1,1.8 -0.1,0.73 0.28,0.9 0.72,0.97 0.9,0.54 1,-0.16 0.07,0.1 0.37,1.34 -0.1,1.78 -0.7,0.9 -1.07,1.82 -1.63,1.87 -0.56,0.92 -0.06,0.9 -0.9,0.72 c -4.36,2.54 -10.76,3.53 -15.76,4.03 l -0.9,-0.06 -0.9,0.17 -0.92,-0.25 -0.96,0 -0.9,-0.72 -0.92,0.53 -0.1,0.9 0.48,0.97 0.87,0.72 -0.86,-0.34 0.87,0.9 -0.42,1.8 -0.63,0 -0.62,2.14 -0.1,0.9 0.9,0.92 0,0.9 -0.55,0.9 -2.8,1.26 -1.86,0.28 -1.8,0 -0.92,-0.66 -2.7,-0.97 -0.9,-0.53 -0.9,0 -0.9,0.44 -0.16,0.9 0.1,0.9 0.7,1.8 -0.36,2.78 1,1 1.78,0.43 -0.16,0.9 1.88,0 0.1,-0.96 -1,-0.18 1,-0.18 0.9,-0.44 0.9,0.34 0.44,0.9 c 0,2.14 0,3.33 -2.63,2.88 l -0.26,-0.9 -0.7,-0.9 -0.92,-0.07 -1.88,0.87 0.72,0.9 1.78,1.3 -1.87,0.62 -0.9,0.7 -0.38,0.83 -0.82,0.87 -0.16,0.9 0.44,1.82 -0.2,1 -0.24,0.88 -0.63,0.9 -0.9,0.63 -0.2,0.9 0.44,0.9 -0.16,0.2 -1.9,-0.28 -0.9,0.08 -1.07,0.8 -0.9,0.36 -0.9,0.1 -0.9,0.9 -1.36,1.8 -0.4,0.54 -0.06,0.12 -0.07,0.1 c 0,0.02 -0.03,0.04 -0.05,0.06 l -0.12,0.22 0,3.4 c 0.2,0.26 0.42,0.5 0.68,0.77 0.27,0.26 0.56,0.52 0.86,0.78 0.58,0.5 1.2,1.03 1.72,1.62 l 2.68,0.57 0.9,-0.2 1,0.63 0.35,0.9 -0.33,1.8 -0.9,0.7 -0.9,0.48 -0.92,0.2 0.2,0.14 1.8,-0.63 0.8,0.9 -0.8,1 -1,0.53 -0.72,0.9 -0.9,0.35 -2.8,1.63 -0.52,0.9 -0.9,0.63 -0.28,0.28 -0.54,0.62 -0.28,1 0.1,0.88 -0.53,2.72 -0.72,0.87 -0.72,0.56 -1,0.25 -0.9,-0.8 -0.73,-1.35 -0.43,-0.25 0.34,0.25 0.2,0.47 -0.25,0.72 -0.9,0.1 1.52,0.05 0.25,1.38 -1.78,0.72 -0.72,0.9 -0.37,0.88 -0.44,1.9 -0.52,0.53 0.62,-0.34 0.82,2.7 0,0.9 -0.9,0.18 -1,-0.1 -0.92,0.35 1.1,-0.25 0.9,0.63 0.97,-0.38 1,1.9 1.35,1.8 0.28,0.9 -1,1.72 1.28,1.42 0.44,0.97 -0.9,0.27 -0.45,0.9 0.9,0.54 0.88,0 0.82,1.82 2.15,2.16 0.1,0.1 0.82,0.63 1.9,1.1 0.88,0.35 0.9,1 2.72,1.25 0.88,0.28 1,0 0.9,-0.2 0.9,0.1 -1,1.8 -2.77,-0.17 -0.9,0.54 -0.9,0 -0.92,0.35 -0.9,-0.55 0,0.96 0.3,1.26 0.3,1.35 0.1,2.76 -1.96,2.18 -2.25,0.75 0,15.68 69.47,0 0,-151 z m -77.92,101.4 -0.28,0.17 -0.1,0.2 0.38,-0.38 z m 2.06,-6.4 -0.62,0.17 0.34,0 0.28,-0.16 z m 33.67,5.5 18.75,0 0,10.97 -18.74,0.17 0,-11.14 z"
2790+ id="path3074-6-4-4"
2791+ inkscape:connector-curvature="0"
2792+ overflow="visible"
2793+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2794+ <path
2795+ d="m 467.13,0.52 0,27 1.1,0.18 1.14,-0.18 1.9,0.18 0.98,0.3 -0.72,0.6 -1.97,0.73 -2.44,0.53 0,1 0.54,0 0.9,-0.37 2,-0.17 0.88,-0.56 2,-0.63 1.87,-0.34 1,0.62 0.92,-0.18 0.8,-1 0.98,-0.16 1,0.34 -1,0.1 1.8,1 1,-0.1 1.07,-0.47 0.9,-0.1 1.07,0 1,0.2 -0.1,0.9 -0.96,0.3 0.97,0.52 0.9,0.8 1.1,0.63 -0.47,1 -1.06,0.25 1.06,-0.1 1.9,-0.77 1.07,-0.1 1,0.44 3.16,0 1.35,0.53 0.9,0.63 0.16,1 -0.77,1 -0.9,0.34 -1,0.2 -1.97,1.24 -4.88,1.72 -1.87,0.37 -1,0.54 -2.77,1 -3.97,-0.3 -1.78,0.44 -2,0.28 2.96,0.1 -2.06,0.53 -0.9,-0.25 -0.9,0.34 -0.98,-0.1 -4.78,0.3 -0.1,0 0,0.52 2.07,-0.1 2,0.54 -4.07,1 0,0.8 c 4.6,-0.57 9.1,-2.2 13.78,-2.05 l 0.2,0.9 c -2.06,2.04 -5.1,2.1 -7.66,2.88 l -1,0.53 -0.9,0.8 -0.98,0.54 -1.9,0.72 -0.9,0.2 -0.63,0.37 0,18.55 -1.94,0.9 0.5,0.13 0.9,-0.53 0.53,-0.1 1.28,-0.25 0.98,0.25 1,0 0.9,-0.34 0.88,0 1.1,0.35 1.08,-0.18 0.97,-0.72 0.92,-0.97 1.87,-1 1.46,-1.8 -0.8,-0.9 0.08,-1 -0.18,-1.8 -0.28,-0.88 0.9,-0.37 2.16,-0.34 0.9,-0.67 1.97,-0.16 -0.96,-0.1 -0.9,-0.37 -0.9,0.63 -1.1,0.37 -1.78,0.3 -1,-0.2 -2.97,0.8 -1,-0.08 -0.98,-0.72 -0.9,-0.1 -1.98,0.35 -1.9,-1.06 -0.72,-0.92 0,-0.9 2.87,-1.35 0.37,-1 2.97,-0.72 0.97,-0.6 1.9,0.08 -0.9,-0.34 0.9,-0.47 1.98,-0.53 0.28,-0.9 1,-0.35 0.25,-0.92 1,-0.1 2.98,-0.8 1,-0.82 0.88,0.28 0.9,1.78 0.9,0.82 0.73,0.9 0.9,0.38 -1.82,-1.82 -0.53,-1 -0.38,-0.9 0.47,-0.88 0.97,-0.37 0.92,-0.1 1.1,0.3 1.87,0.08 2.96,1.34 1,-0.43 0.9,-0.1 0.9,-0.47 -0.8,-0.87 -0.47,-0.9 0.7,-1 1,-0.45 -0.27,-0.9 -1.88,-1.53 -0.53,-0.9 0.87,-0.63 2.8,-1 2.7,-0.45 1.8,0.44 3.13,0.27 1,0.43 0.2,1 0.7,0.9 0.9,0.35 1.9,0.47 1,0.1 1.96,0.87 0.8,0.9 2.97,0.62 -0.9,-0.43 -0.98,-0.2 -1.1,-0.72 -0.9,-0.8 -1.98,-0.98 -1,-0.1 -1.06,-0.65 -1.53,-1.88 -2.78,-0.8 -1,-0.63 2.88,-0.72 0.9,-0.38 2.88,-0.44 2.98,-0.28 2.96,-0.53 1,0 0.97,0.52 0.58,-0.87 0.96,-0.2 1.9,0.35 0.92,0.57 0.97,0.15 -0.54,-0.87 -0.9,-0.38 -0.92,0 c 5.4,-0.9 5.93,-1.87 9.47,1.97 l -0.28,0.9 0.53,1 -0.16,0.9 -1.37,1.9 0.2,0.9 0.46,1 0.87,0.06 -0.1,-1.78 1,-0.82 0.9,-0.43 0.83,-0.9 -0.1,-0.92 0.28,-1 1.8,0.47 0,-0.47 -2.8,-0.7 -0.9,-0.83 -0.1,-0.87 1,-0.8 1,0 0.9,0.24 0.7,0.9 0.2,0.1 0,-35.4 -69.47,0 z"
2796+ id="path81284-1"
2797+ inkscape:connector-curvature="0"
2798+ overflow="visible"
2799+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2800+ <path
2801+ d="m 456.25,629.64 1.25,-0.62 0.38,-0.28 0,-0.54 -0.72,-0.53 1.25,-1.34 0.82,-0.9 0.9,-0.73 0.07,-0.1 -0.17,-0.27 0,-0.1 0.8,0.1 -0.36,-0.63 0.1,-0.1 0.7,-0.08 0.54,-0.97 -0.96,0.1 -0.1,-0.38 0.26,-1 -0.87,-0.35 -0.72,-0.9 -0.9,-0.72 0.1,-0.2 0.62,-0.86 -0.1,-0.75 -0.62,-0.73 0,-0.88 0.63,-1.1 0.9,-0.72 0.1,-0.8 0.53,-0.92 -0.47,-0.8 -0.36,-0.9 0.54,-0.9 0,-2.24 0.1,-0.9 0.9,-0.82 0.28,-0.8 -1.47,-2.9 -1.98,-3.15 -0.72,-1.25 0.9,-0.1 1,0.2 0.8,0.2 1,-0.1 0.18,0.1 0.7,0.42 0.92,-0.43 0.9,-0.83 0.98,-0.8 0.9,0.08 0.38,0.1 0.15,-0.38 0.83,-0.65 0,-8.22 c -2.12,-3.3 -4.16,-6.64 -6.2,-10 -0.02,-0.05 -0.05,-0.1 -0.1,-0.16 -1,-1.68 -2.03,-3.38 -3.05,-5.06 l -0.03,-0.06 -3.12,-5.1 0.7,-0.1 0.2,0 0.16,-0.08 0,-0.35 0.08,-0.1 0,-0.1 0.66,-3.06 0.53,-3.06 0,-0.2 0.53,-3.02 0.53,-2.97 0.1,-0.57 0.28,-0.53 -0.27,-1 0,-0.25 -0.35,-0.47 -0.37,-1.06 -0.1,-0.9 -1.77,-1.26 -0.28,-1.1 0,-0.1 0.28,-2.58 1.97,-0.47 0.8,-0.08 0.92,0.37 0.2,-0.54 -0.1,-0.72 -0.9,-0.72 -2.17,-0.1 0,-2.96 1.25,-0.28 0.9,0.2 4.4,0 0.92,-0.3 -0.2,-0.24 0.92,-0.1 0.9,0.53 0.88,-0.72 0.8,-0.9 0.1,0 0,-1.6 0.6,0.47 0,0.47 c 0,0.14 0.03,0.3 0.1,0.43 l 0.3,0.66 c 0,0.14 0.03,0.3 0.1,0.42 l 0.3,0.6 0,0.03 0.26,0.78 0.03,0.1 0,0.02 0.2,0.85 0,0.03 0.22,0.8 c 0.05,0.24 0.2,0.44 0.37,0.57 0.75,0.57 1.28,1.02 1.65,1.38 0.42,0.4 0.65,0.68 1.16,0.9 0.2,0.1 0.52,0.17 0.82,0.13 0.3,-0.02 0.52,-0.1 0.75,-0.2 0.36,-0.18 0.87,-0.53 1.4,-0.88 l 0.35,0.22 c 0.14,0.33 0.48,0.56 0.84,0.6 0.37,0.02 0.7,-0.14 0.9,-0.45 l 0.04,-0.04 0.72,-0.44 c 0.08,-0.04 0.15,-0.1 0.22,-0.15 l 0.06,-0.07 0.03,-0.06 0.63,-0.72 0.06,-0.03 0.12,-0.04 0.07,-0.03 0.07,-0.03 0.62,-0.2 0.1,-0.02 c 0.17,-0.03 0.34,-0.1 0.5,-0.22 l 0.55,-0.53 0.44,0.06 c 0.26,0.02 0.53,-0.06 0.74,-0.23 l 0.75,-0.6 c 0.16,-0.13 0.28,-0.3 0.33,-0.52 l 0.16,-0.66 c 0,-0.02 0,-0.03 0.02,-0.04 l 0.25,-0.53 0.37,-0.03 c 0.18,-0.02 0.36,-0.08 0.5,-0.2 l 0.85,-0.58 0.02,0 0.15,-0.1 0,-0.03 0.54,-0.32 c 0.4,-0.24 0.57,-0.7 0.44,-1.13 l -0.15,-0.56 c -0.13,-0.4 -0.48,-0.7 -0.9,-0.73 l -0.68,-0.06 -0.21,0 -0.7,0.07 -0.17,-0.06 0.06,-0.18 c 0.06,-0.23 0.03,-0.47 -0.07,-0.68 l -0.37,-0.88 -0.13,-0.2 -0.03,-0.05 -0.03,-0.05 -0.03,-0.03 -0.38,-0.53 0,-0.55 0,-0.03 0.1,-0.72 c 0.02,-0.2 -0.03,-0.4 -0.13,-0.58 l -0.4,-0.78 c -0.1,-0.16 -0.2,-0.3 -0.35,-0.38 l -0.72,-0.44 -0.12,-0.15 0.37,-0.03 0.54,0.15 0.72,0.65 c 0.22,0.2 0.52,0.3 0.82,0.25 l 0.65,-0.1 0.56,0.25 c 0.24,0.1 0.53,0.1 0.78,0 l 0.43,-0.2 0.48,0.42 0.1,0.1 0.6,0.72 c 0.24,0.3 0.66,0.44 1.05,0.33 l 0.56,-0.16 c 0.42,-0.12 0.72,-0.52 0.7,-0.97 l 0,-0.87 0.1,0 c 0.23,0 0.45,-0.08 0.63,-0.22 l 0.5,-0.4 0.53,0.2 c 0.2,0.06 0.4,0.07 0.6,0.02 l 0.8,-0.25 c 0.07,-0.02 0.14,-0.05 0.2,-0.1 l 0.56,-0.3 0.73,0 c 0.2,0 0.44,-0.08 0.6,-0.22 l 0.86,-0.72 0.76,-0.28 0.03,0 0.52,-0.06 c 0.3,-0.05 0.56,-0.23 0.72,-0.48 l 0.37,-0.6 0.64,-0.3 c 0.2,-0.1 0.37,-0.27 0.47,-0.48 l 0.35,-0.7 c 0.16,-0.3 0.14,-0.7 -0.06,-1 l -0.5,-0.74 -0.14,-0.15 -0.03,-0.03 -0.87,-0.88 -0.1,-0.06 -0.06,-0.06 -0.6,-0.78 c 0,-0.03 -0.03,-0.05 -0.06,-0.07 l -0.75,-0.8 -0.07,-0.07 -0.03,-0.06 -0.03,0 0,-0.04 -0.06,-0.1 0.04,-0.02 0.03,-0.03 c 0.05,-0.05 0.1,-0.1 0.12,-0.16 l 0.65,-0.63 c 0.24,-0.25 0.33,-0.6 0.25,-0.94 l -0.16,-0.75 -0.06,-0.3 0.2,-0.04 0.08,0 c 0.06,0 0.1,-0.02 0.16,-0.04 l 0.87,-0.18 0.15,-0.03 0.84,-0.36 0.74,-0.3 c 0.24,-0.1 0.43,-0.28 0.54,-0.5 l 0.3,-0.64 c 0.17,-0.32 0.15,-0.7 -0.05,-1 -0.2,-0.3 -0.55,-0.46 -0.9,-0.43 l -0.26,0.03 -0.06,-0.25 c 0,-0.06 -0.03,-0.1 -0.06,-0.16 l -0.03,-0.07 c 0,-0.06 -0.05,-0.1 -0.08,-0.16 l -0.28,-0.37 0.28,-0.3 0.66,-0.42 0.1,-0.03 c 0,0 0,-0.02 0.02,-0.03 l 0.06,-0.03 0.03,0 0.03,-0.05 0.06,-0.03 c 0.07,-0.04 0.14,-0.1 0.2,-0.15 l 0.3,-0.28 0.02,-0.05 0.06,-0.06 0.7,-0.4 0.18,-0.14 0.18,-0.2 0.04,-0.02 c 0.04,-0.06 0.1,-0.12 0.12,-0.2 l 0.16,-0.27 0.34,-0.25 c 0.43,-0.34 0.5,-0.97 0.16,-1.4 l -0.44,-0.53 -0.03,-0.05 0,-0.03 c -0.04,-0.42 -0.32,-0.78 -0.73,-0.9 l -0.9,-0.25 c -0.15,-0.05 -0.3,-0.06 -0.45,-0.03 l -0.9,0.15 c -0.12,0 -0.24,0.05 -0.35,0.12 l -0.43,-0.16 c -0.12,-0.03 -0.25,-0.04 -0.38,-0.03 l -0.9,0.06 -0.07,0 0.3,-1.07 0.94,-1.03 c 0.2,-0.2 0.27,-0.48 0.25,-0.75 -0.02,-0.27 -0.14,-0.5 -0.35,-0.7 l -0.9,-0.8 c -0.2,-0.16 -0.42,-0.25 -0.66,-0.25 l -0.64,0 -1.47,-0.9 c -0.17,-0.1 -0.35,-0.16 -0.54,-0.16 l -0.84,0 -0.1,-0.1 -0.2,-0.2 -0.92,-0.55 c -0.16,-0.1 -0.34,-0.16 -0.53,-0.16 l -0.38,0 c -0.18,0 -0.35,0.04 -0.5,0.12 l -0.54,-0.56 0.28,0 c 0.2,0 0.37,-0.04 0.53,-0.13 l 0.9,-0.53 0.6,-0.22 0.07,0 0.15,-0.06 c 0.5,-0.16 0.77,-0.68 0.65,-1.2 -0.12,-0.5 -0.6,-0.82 -1.13,-0.74 l -0.8,0.16 -2.63,-0.25 c -0.1,0 -0.2,0 -0.3,0.03 l -0.7,0.16 -0.83,-0.1 c -0.1,0 -0.23,0 -0.34,0.03 l -1.6,0.4 -0.46,-0.08 c 0.06,-0.14 0.1,-0.3 0.1,-0.44 l 0,-0.9 c 0,-0.4 -0.22,-0.75 -0.57,-0.9 -0.35,-0.18 -0.76,-0.13 -1.06,0.1 l -0.72,0.6 -0.75,0.13 c -0.4,0.1 -0.72,0.4 -0.78,0.8 -0.07,0.42 0.13,0.84 0.5,1.04 l 0.33,0.2 c -0.16,0.13 -0.27,0.32 -0.3,0.52 l -0.32,0.13 -0.1,0.03 -1.8,1.06 c -0.1,0.07 -0.2,0.15 -0.28,0.25 l -1.13,0 -1.88,-0.54 c -0.07,-0.02 -0.15,-0.03 -0.22,-0.03 l -0.53,-0.03 -0.9,-0.78 -0.07,-0.25 c -0.1,-0.36 -0.4,-0.63 -0.78,-0.7 l -0.9,-0.18 c -0.07,-0.02 -0.13,-0.04 -0.2,-0.04 l -2.4,0 -4.06,0.63 -1.35,0 -0.24,-0.17 0.1,-0.3 c 0.1,-0.3 0.06,-0.6 -0.1,-0.86 l -1,-1.53 c -0.07,-0.12 -0.16,-0.23 -0.28,-0.3 l -1.78,-1.2 c -0.15,-0.1 -0.32,-0.15 -0.5,-0.15 l -3,-0.23 -0.4,-0.25 -0.2,-0.47 -0.06,-0.75 c -0.02,-0.2 -0.1,-0.4 -0.25,-0.56 l -0.82,-0.9 c -0.22,-0.27 -0.56,-0.4 -0.9,-0.35 -0.1,0 -0.18,0.04 -0.26,0.08 l -1,0.44 c -0.27,0.1 -0.47,0.34 -0.56,0.62 l -0.2,0.66 c -0.02,0.12 -0.03,0.25 -0.02,0.37 l 0.1,0.88 c 0,0.14 0.05,0.28 0.12,0.4 l -0.03,0.2 c -0.02,0.15 0,0.3 0.06,0.46 l -0.66,0.26 -1.66,0.34 c -0.1,0.02 -0.2,0.05 -0.28,0.1 l -2.28,1.22 c -0.06,-0.15 -0.16,-0.28 -0.28,-0.38 l -0.72,-0.62 -0.16,-0.44 0.13,-0.63 c 0.04,-0.24 0,-0.5 -0.14,-0.7 l 0.4,-0.17 1.35,-0.4 0.26,-0.07 2.57,-0.1 -1,-2 -3.7,-26.86 0,-0.3 -0.02,-0.73 0,-0.3 -0.8,-1.13 0.62,-1.03 0.25,-0.7 0,-0.02 0.03,-0.1 -0.03,-0.02 -0.28,-0.22 -0.23,-0.22 -0.03,-0.03 0.03,-0.03 0.47,-0.35 0.22,-0.15 -0.2,-0.97 0.04,-0.3 0.1,-0.92 0,0.03 -0.07,-0.12 -1.03,-2.34 -2.8,-11.32 23.58,0 -0.16,-116.25 0.9,-0.37 0.92,-0.1 0.43,-0.9 -0.43,-1.16 -0.47,-0.53 -0.25,-0.1 -0.47,0.25 -0.34,-0.53 0.2,-1.78 -0.1,-0.2 -0.38,-0.05 -0.53,-0.14 -0.9,-0.8 0.27,-0.45 -0.1,-1.8 -0.1,-1.35 0,-3.96 -0.7,-0.55 0,-0.1 -1.44,-1.05 -2.97,0.97 -0.72,-0.63 c 0.5,-0.13 0.9,-0.26 1.25,-0.37 0.43,-0.15 0.74,-0.3 1,-0.44 l 0.05,-0.03 c 0.12,-0.07 0.23,-0.15 0.3,-0.22 0.67,-0.58 0.36,-1.25 0.8,-2.63 l 0.9,-0.28 0.44,-0.15 1.8,0 0.63,0.43 0.28,0.2 1.54,-0.2 0.9,-0.34 0.07,0 0.3,-0.08 1.64,-0.44 1.9,0.2 3.14,0.83 2.6,-0.86 2.5,-0.82 3.2,-1.06 1.16,-0.72 0.72,-0.28 4.28,9.74 3.9,-0.25 2.22,-6.02 -3.77,-12.94 -0.32,-0.8 -0.1,-0.65 -0.25,-0.56 0.22,-1.9 0.28,-0.48 -0.4,-0.48 0.36,-0.54 0.47,-0.5 -0.75,-0.56 -0.2,-0.4 -0.16,-0.52 -0.22,-0.5 -0.28,-1.03 -0.15,-0.7 -0.5,-0.5 -0.16,-0.6 0,-0.38 -0.4,-0.38 -6.64,-0.14 0.44,-0.28 -0.53,-1.78 -1,-0.2 -0.24,-0.9 0.9,-0.72 1.78,-0.18 -0.62,-0.82 0.28,-0.87 -0.47,-0.9 -0.9,-0.3 -0.44,0.82 -0.92,0.63 -0.25,1.72 0.25,1.8 0,0.88 -0.2,0.2 -0.6,1 -0.26,0.9 0.34,0.62 -1.43,1.07 -0.54,-0.9 0.18,-0.9 -0.8,-0.46 -0.64,-0.88 -0.9,-0.72 -1,-0.2 -0.8,0.98 -0.64,-0.25 -1,0.25 -0.72,-0.87 -0.72,-0.38 -0.53,0.72 -0.62,-0.9 0.35,-0.9 -0.16,-0.7 0.15,-1.82 0.47,-0.38 -0.9,-0.87 -0.82,0.97 0,0.47 -0.9,0.43 -0.9,0.3 -0.17,-0.1 0.1,-1.26 0.43,-0.9 -0.1,-1 0.38,-0.9 -0.18,-0.17 -0.82,-0.9 -0.9,-0.28 -0.82,-0.45 0.3,-0.9 -0.3,-0.23 -0.43,-0.3 -0.64,-0.92 0.25,-0.9 0.82,-0.47 0.1,-0.06 -0.1,-0.16 -0.43,-0.74 -0.1,-0.9 0.52,-0.16 1.3,-0.38 0.86,-0.18 -0.87,-0.72 -0.65,-0.9 -0.34,-0.82 0.82,0 1.15,0.8 1,0.73 0.9,-0.16 -0.55,-0.9 0.28,-0.28 0,-0.2 -0.38,-0.35 0.3,-0.9 -0.55,-0.9 0.82,0.46 1.67,1.7 1.3,0.47 0.6,0.34 0.64,0.92 1.82,0 0.44,0.18 0.9,0 1,-0.28 c 0.43,0.1 0.73,0.12 0.97,0.16 l 0.8,-0.16 c 0.06,0 0.18,0.02 0.42,0.1 l 1.66,0.62 0.82,0.28 1,-0.8 0.62,-1.82 -0.34,-0.88 1.7,-1 0.27,-0.1 -0.28,-1 -0.9,-0.62 -0.55,-0.7 -0.9,-0.92 0,-0.88 1.1,-0.56 -1,0 -0.9,-0.25 -0.8,-0.57 -0.72,-1.78 0.44,0 0.9,-0.1 -1.1,-1.8 0.2,-0.35 0.9,-0.72 0,-0.9 0.44,-0.63 0.4,-2 -0.2,-0.88 0.1,-0.47 -0.82,-0.9 0,-0.25 -0.9,-0.28 -0.44,-0.9 -0.72,-0.73 -0.38,-0.25 0.9,-0.82 0.63,-0.9 1.25,-0.63 -0.96,-0.47 -0.1,-0.88 1.06,-0.37 0.9,0 0.2,-1 -0.9,-0.16 -0.73,0.35 -0.9,0.53 -0.73,-0.88 -0.88,-0.1 -0.76,-0.27 -0.97,0.1 0.35,-0.9 0.9,0.17 0.54,0.28 -0.25,-2.53 0.82,-0.9 -0.9,-0.1 -1,0.2 -0.2,-1 0.1,-1.8 0.56,-0.18 -0.9,-0.44 0,-0.28 -1.2,0 0.33,-1.83 3.53,-2.26 -1.92,-1.64 0.22,-2.2 1.8,-3.3 -2.1,-3.14 2.7,-3.05 -0.33,-3.62 1.83,-3.23 -2.4,-5.05 -1.63,-0.8 1,-4.2 4.16,0.4 1.53,-0.6 1.03,-1.56 0.8,-2.24 2.98,-1.8 1.23,-1.9 1.26,-0.88 0.06,-1.8 1.98,-1.03 0.96,-2.62 -5.36,-5.44 -4.9,-1.44 -1.65,-2.1 -2.7,-1.08 -0.3,-1.16 -2.6,-1.23 -2.58,0.1 -5.62,-3.36 -2.23,-0.37 -0.6,-1.96 1.3,-0.94 2.36,-0.37 -0.23,-1.64 -0.78,-1.2 -1.22,-0.8 0.52,-1.75 -0.66,-2.16 -0.98,-1.68 -1.9,-1.4 0.05,-1.92 0,-48.56 -3.22,-0.62 -0.8,0 -0.38,-0.72 -1,-0.1 -1.88,-1.06 -1.96,-0.65 0.15,-0.98 2,-0.47 0.97,-0.72 0.9,-0.25 0.9,0.16 1,0 1.08,-0.25 -0.72,-1 -1.78,0.42 -1.1,0 -1.97,-0.15 -3.77,-0.82 0,-0.9 0.97,-0.9 0.9,-0.35 -0.9,0 -2.6,1.78 -1,0 -0.96,-0.25 -0.9,-0.72 0.9,-0.27 -0.9,-0.28 -1,0 -0.9,-0.63 0.8,-1 1,-0.25 0.9,-0.47 2.8,-0.43 2.33,0.1 5.75,0.62 1,0 1.87,-0.36 1.52,0.25 0,-0.2 -1.53,-0.25 -0.98,0 -0.9,0.2 -2.88,-0.3 -1,-0.43 2.88,-0.9 3.97,-0.2 0.42,0.04 0,-1.5 -0.1,0.03 -3.93,0.34 -0.38,-0.88 -1,0 -0.53,0.88 -1.9,0.46 -2.86,-0.8 -0.9,-0.1 -1,-0.44 1.96,-0.56 1,-0.88 -1,0.35 -1.87,0.28 -1,0 -0.97,-0.47 1.97,-1.06 0.9,0 0,-0.2 -1.8,-0.18 -1.8,0.8 -2.18,0.2 -0.87,-0.44 0.96,-0.75 -0.87,0.1 -1,-0.53 -0.9,0.28 -0.9,-0.2 -0.98,-0.52 -0.82,-0.9 -1,-0.2 -1.88,-1 0.97,-0.43 1,-0.9 -1,-0.35 0.62,-1 0.9,-0.9 2.88,-0.35 1,-0.56 0.9,-0.17 2.97,0.16 0.9,-0.9 2.88,-0.46 0,-0.34 0.35,-0.1 2.96,-0.28 0.9,-0.43 1,-0.2 -0.9,-0.9 2.88,-0.82 1.53,-0.25 0.28,0.44 7.56,12.06 9.24,14.12 0.47,0.82 0.17,-0.38 0.72,1.9 1,0 0.9,-0.53 0.9,-0.9 0.97,-0.63 2,0.53 0.97,0.53 0.9,0 1,-0.25 0.9,0.53 1.88,0.44 1,0.18 0.9,-0.18 1.9,0.56 0.17,0.87 2.87,0 0.9,0.57 0,0.34 0.97,-0.25 0.9,0.45 -0.9,0.72 0.9,0.18 1,-0.46 0.92,0 -0.38,0.9 1,0.18 0.97,0.44 0.9,-0.25 1,0.1 1.07,1.77 -0.16,0.9 -2,0.63 1.9,-0.28 -0.8,0.9 0.9,0.8 0.9,0.2 -0.27,0.9 3.4,1.54 1,0.15 1,0.65 -0.9,0.44 0.52,1 0.9,0.08 1,0.34 0.97,0.9 0.9,-0.08 -0.9,0.8 -1.88,0.2 1,0.34 1.87,0 -0.9,0.47 -0.98,0.06 0.87,0.4 -1.88,1 -1.8,0.42 1,0.2 1,-0.1 0.86,-0.28 1.9,-0.97 -0.62,1.78 0.97,0.37 0.66,0.9 0.86,0.45 -0.62,0.9 1,0.63 -0.9,-0.2 -1,0.73 2,0.72 0.52,0.9 1.88,0.82 0.18,0.34 -0.96,-0.15 -0.72,0.88 0.97,0.28 -1.87,1 1.78,0.82 1,-0.18 0.92,0.34 0.62,0.9 0.2,0.9 -0.92,0.2 1,0.25 -0.56,0.9 -0.97,0.72 0.96,0.57 0.9,0.25 0.9,-0.2 -0.9,0.3 -3.68,-0.3 -0.9,0.3 1.8,0.9 0.9,-0.47 0.98,0.56 -0.53,0.9 -0.9,0.54 -1.7,1.97 0.98,0.37 2,-0.28 0.88,-0.62 0.63,-0.9 -0.34,1 -0.9,0.6 -0.9,0.45 -0.98,0 -0.9,0.18 0.43,0.9 -0.96,-0.28 -1.9,1.1 1,0.44 0.43,1 0.9,0.9 0.92,-0.56 1,0.28 0.86,0.63 1,0 0.9,-0.1 1.8,-0.54 0.65,-0.9 -0.46,-0.97 0.9,0.05 -0.18,-0.88 0.9,-0.1 0.9,-0.7 -1,-1.92 -0.9,-0.7 -0.1,-1.33 0.38,0.78 0.72,0.9 0.9,0.73 0.1,0.9 0.88,0.82 0.9,-0.2 -0.25,0.45 -0.9,0.72 0.96,0.18 1.8,0 0.63,0.32 0,0.84 -0.07,0 c -0.15,0.04 -0.28,0.1 -0.44,0.16 -0.15,0.05 -0.3,0.1 -0.44,0.18 l -0.22,0.13 c -0.03,0 -0.07,0 -0.1,0.03 l -0.22,0.13 -0.1,0.05 c 0,0 0,0.02 -0.02,0.03 -0.2,0.13 -0.36,0.28 -0.56,0.47 l 2.15,0.2 0,0.4 -0.2,-0.07 -1.87,-0.34 -0.9,0.34 0,0.8 0.9,0.92 0.9,-0.2 1.16,-0.7 0,4.62 -0.82,-0.32 -1.87,-0.25 -1.9,0.07 -0.87,-0.25 -1.9,-0.28 -1,0.27 -0.9,0.43 0.08,1 2.9,2.07 2.8,0.28 0.9,0.25 1.97,0.72 0.62,0.62 0,2.2 -0.72,-0.2 -0.9,-0.72 -0.82,-1 -1.78,-0.9 -3.8,-0.72 -1,0 -0.9,0.37 -0.87,0.82 0.1,0.9 0.8,0.52 1.8,0.72 -1.87,-0.44 -0.9,0.16 -0.4,0.9 1,0.48 0.92,0.62 -0.9,-0.37 -0.9,0.7 0.9,0.63 0.9,0.2 1.88,0.08 1.9,0.73 0.97,-0.72 0.56,0.92 -1,0 -0.9,0.18 -1,-0.18 -0.88,0.72 0.88,0.25 1,0.55 1.25,0.1 4.7,-1.38 0,5.68 -0.26,0 -1.8,0.54 0.9,0.17 1.15,-0.12 0,0.97 -0.35,0.15 0.34,-0.03 0,0.25 -1.35,0.74 -1.87,0.56 0.96,0.07 0.9,-0.25 0.92,0 -0.9,0.43 1,-0.1 0.33,0.32 0,0.6 -0.35,-0.2 -0.9,0.3 1.24,0.5 0,0.05 -3.22,-0.84 -0.9,0.2 0.9,0.17 1.87,1.25 1.34,0.2 0,0.24 -0.35,0.03 -1,-0.37 -0.9,-0.53 -0.9,0.1 0.9,0.33 -0.9,0.2 -0.45,0.9 -0.9,-0.2 0.9,0.45 -0.9,0.2 -0.9,-0.1 0.55,0.9 -0.9,0.72 0.9,0.62 0.97,-0.45 1.8,-1.43 1.82,-0.28 0.25,-0.13 0,0.48 -1.35,0.12 0.9,0 -1.8,0.35 -1.88,1.44 -0.9,0.27 -1,0.53 -0.16,0.9 0.88,0.54 1.8,-0.72 1,0.28 2.5,-0.66 0,0.47 -0.95,0.1 -0.9,0.25 -2.73,0.2 -1.78,0.7 0.9,0.48 0.88,0 -0.87,0.16 0.87,0.45 0.9,0.1 -1.77,0.1 0.87,0.62 1.9,-0.2 1.88,0.2 0.8,-0.5 0,0.94 -0.8,-0.1 -0.9,0.3 0.9,0 -0.9,0.62 -0.58,0 0.87,0.2 0.9,-0.1 -0.9,0.43 -1.87,-0.1 -0.9,0.66 0.9,0.36 0.9,0.1 0.9,-0.2 1.8,0.2 0,0.02 -0.82,0.16 -0.9,-0.2 -1.88,0.4 -0.9,-0.1 -0.9,0.87 0.08,0.9 0.9,0.2 0.9,-0.2 -0.9,0.3 -0.9,0.8 1.1,0.26 1.78,-0.63 1.9,-1.43 0.53,-0.3 0,0.2 -0.54,0.38 -0.9,0.9 -2.8,1.25 0.92,0.28 -0.9,0.26 0.9,0.38 0.88,-0.47 -0.88,0.56 0.88,0.35 1.8,-0.72 0.63,0.34 0,0.35 -0.82,-0.4 -1.87,0.96 0.9,0 -0.9,0.57 0.9,0.44 0.9,-0.9 -0.26,1.8 0.9,-0.17 -0.18,0.9 0.43,0.1 0,90.22 -11.44,0 -3.2,2.1 0.9,-7.56 -2.45,-3.16 -2.9,-1.73 -2.16,0.5 -0.5,1.42 -1.52,1.47 0,1.76 1.53,1.63 0,10.27 -10.7,7.15 0,20.7 12.82,0 0,0.1 3.44,0 0,-0.1 16.2,0 0,209.14 -2.07,-1.96 -0.28,0.1 -2.25,-0.54 -0.88,-0.66 -0.9,-0.15 -0.9,1.53 -0.38,0.25 0.56,-0.9 0.25,-0.88 -0.97,-0.63 -3.7,-0.56 0,0.62 -0.64,0.2 -0.97,-0.63 -1.8,-0.1 -0.92,0.47 0.2,0.16 -0.1,0.8 -0.9,-0.8 -1.8,-0.44 -2.34,-0.28 -0.08,0.2 -0.25,0 -0.28,1.24 -0.54,0.9 -0.1,0.2 0.16,0.9 0.1,0.15 -0.35,0.9 c -4.1,0.16 -1.82,1.8 -3.6,4.07 l 0.25,0.9 1.35,1.8 0.37,1 1.44,0 0.53,1.52 0,0.9 0.57,0.44 0.97,1.9 0.9,1.45 1,0.33 -0.74,0.32 -3.7,-0.2 -1,1.16 -4.8,1.33 0.04,0.66 -1.4,0.42 -0.76,-0.55 0.52,7.97 0.65,0.2 0.14,1.16 0.6,0.3 0.67,0.5 0.04,0.83 0.62,0.35 0.52,0.53 0.7,0.6 0.68,0.3 0.8,0.55 0.53,0.28 0.7,0.3 0.84,0.1 0.4,0.5 0.53,0.1 0.15,0.7 0.65,0.24 0.8,0.2 0.06,0.62 1.05,-0.12 0.83,0.43 -0.5,0.55 -9.07,19.55 -0.58,0.44 0.23,0.67 0.34,0.8 0.7,0.45 0.3,1.28 0.55,0.46 0.4,0.85 0.4,0.85 0.02,0.7 0.36,0.68 0.5,0.25 -0.03,0.75 -0.1,0.56 0.14,0.7 0.5,0.72 1.04,0.45 0.12,0.44 1.07,0.5 0.12,0.83 0.5,0 0.84,0.5 0.56,0 1.04,0.24 29.27,1.8 -0.26,0.73 -0.87,2.16 -0.56,0.9 0,1.97 -0.53,1.35 0.1,1.37 -0.1,0.44 0.2,0.52 0,0.03 c 0,0.13 0,0.25 0.02,0.38 l 0,0.34 -0.04,0.34 0.1,0.33 0.12,1.53 -0.03,0.5 0.16,0.97 0.57,0.18 -0.47,2.08 -0.9,1.8 -0.26,0.2 0,1.78 -0.37,0.28 -0.25,0.8 0,0.92 -0.38,1.34 -0.18,0.53 -0.63,0.44 -0.9,0 -0.54,0.47 -0.54,0.9 -0.8,1.97 0,0.2 -0.92,0.63 -0.97,0.1 -0.1,0 0,0.08 -0.27,0.45 -0.9,0.75 -0.73,0.6 0,1.34 -0.7,0.9 -1.08,0.9 -0.48,0.92 -0.18,1 -0.16,0.44 -0.1,1 0.9,1.78 0,0.9 0.26,0.9 1,0.35 -0.53,0.9 0.17,0.2 1.44,0.1 0.38,0 3.7,1.96 1.08,0.18 0.88,0.53 1,0.38 0.37,0.63 -0.27,0.9 0,1.6 0.1,0.48 -0.72,1 -1,0.43 -0.8,0.92 -0.35,0.97 0,0.36 -0.38,0.44 -0.8,1.2 0.1,0.6 -0.64,0.92 -0.44,0.34 -0.3,0.9 0,0.1 -1.08,1.54 -0.1,0.18 -0.53,0.32 -1.35,0.84 -0.9,0.72 -0.73,0.9 -1.96,0.82 -0.3,0.62 -0.24,1.1 0,0.06 -0.1,0.2 -0.36,0.36 -0.63,0.25 c -0.78,1.46 0.02,2.2 -1.62,3.25 l -0.1,0.9 0.2,0.54 -0.9,3.15 -0.2,1.17 -0.53,0.9 0,0.82 -0.18,0.36 0.17,0.72 -0.25,2.16 -0.28,1.06 -0.37,1 -0.88,0.63 -1,0.9 -0.2,-0.1 -0.9,0.3 -0.72,0.96 -0.44,0.9 -0.43,0.28 -0.8,-0.57 -0.9,0 -0.83,1.1 -0.9,-0.43 -0.53,0 -1.9,0.06 -1.17,-0.15 -2.68,-0.72 -2.92,0 -0.44,0.1 -0.28,-0.66 1.44,-1.44 0.8,-1.44 0,-0.72 0.1,-0.8 0.57,-0.9 0.25,-0.17 0.37,-0.28 0.43,-0.9 0.53,-0.9 0.66,-0.9 -0.56,-0.9 -0.2,-0.1 -0.05,-0.18 -1,-0.8 -0.9,-0.36 -1,-0.08 -0.34,-0.44 -1.82,-0.65 -1.06,-0.72 -1,-0.43 -1.72,-1.34 -1.7,-1.1 -1.42,-0.1 -0.1,0 -2.06,-0.7 -1,-0.26 -0.62,-1.1 -0.9,-0.62 -1.92,-1.1 -0.87,-0.87 -0.47,-0.8 -0.8,-0.9 -0.26,-1 -0.38,-0.2 -0.25,-0.06 -0.9,-0.66 -0.28,-0.44 -0.7,-1.15 -4.14,0.15 -0.1,0.1 -0.46,-0.2 -0.97,0.73 -0.47,0.9 -0.2,0.47 -0.24,0.35 -0.53,1.8 -0.36,-0.8 -0.2,-0.9 -0.96,-1.73 -1.53,-0.44 -0.8,0.1 -0.1,0 -1.9,-0.1 0,0.1 -0.9,-0.1 -0.9,-0.8 -1.1,-0.63 -0.6,1.62 -1.83,0.52 -0.06,0.63 -1.72,1.72 -0.28,0.53 0.8,0.8 -2.03,1.07 -3.2,-0.13 0.07,-1.27 -1.6,-6.25 -1.46,-1.54 0.2,-1.4 -1.28,-1.3 -0.1,-1.58 0.96,-0.72 -0.56,-0.76 c 0.25,-0.5 0.77,-1.13 1.25,-1.5 l -2.56,-2.2 -0.43,-4.37 -1.24,-0.42 -0.92,-2.2 z"
2802+ id="path81282-2"
2803+ inkscape:connector-curvature="0"
2804+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2805+ overflow="visible"
2806+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2807+ <path
2808+ d="m 445.2,86.1 -1,0.82 1.96,0.72 1.9,-0.2 0.97,-0.7 z"
2809+ id="path81280-3"
2810+ inkscape:connector-curvature="0"
2811+ overflow="visible"
2812+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2813+ <path
2814+ d="m 449.75,86.1 0.28,0.35 1,0.57 2.78,-0.2 0.92,-0.27 -2.97,-0.44 z"
2815+ id="path81278-5"
2816+ inkscape:connector-curvature="0"
2817+ overflow="visible"
2818+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2819+ <path
2820+ d="m 456.44,94.5 -0.9,0.17 0,0.25 0.96,0.2 1,-0.1 z"
2821+ id="path81276-2"
2822+ inkscape:connector-curvature="0"
2823+ overflow="visible"
2824+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2825+ <path
2826+ d="m 517.06,113.64 0.9,0.28 -1,0.44 -2.87,0 0.1,-0.25 1.9,-0.18 0.96,-0.28 z"
2827+ id="path81274-5"
2828+ inkscape:connector-curvature="0"
2829+ overflow="visible"
2830+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2831+ <path
2832+ d="m 517.97,119.67 1.9,0.28 -0.9,0.82 -1.9,-0.82 z"
2833+ id="path81272-9"
2834+ inkscape:connector-curvature="0"
2835+ overflow="visible"
2836+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2837+ <path
2838+ d="m 520.7,122.64 0.42,0.44 1,0.28 0.16,0.9 -0.87,-0.62 z"
2839+ id="path81270-2"
2840+ inkscape:connector-curvature="0"
2841+ overflow="visible"
2842+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2843+ <path
2844+ d="m 524.2,129.1 1,0.4 -2,1.7 -0.92,-0.1 -0.97,-0.36 0.98,-0.9 1.9,-0.73 z"
2845+ id="path81268-9"
2846+ inkscape:connector-curvature="0"
2847+ overflow="visible"
2848+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2849+ <path
2850+ d="m 521.47,129.67 0.56,0.1 -1.9,1.06 0.37,-0.9 0.97,-0.26 z"
2851+ id="path81266-5"
2852+ inkscape:connector-curvature="0"
2853+ overflow="visible"
2854+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2855+ <path
2856+ d="m 525,133.17 -1.28,1.63 -0.88,0.44 -1,-0.35 0.35,-1 0.9,0.1 1.9,-0.83 z"
2857+ id="path81264-9"
2858+ inkscape:connector-curvature="0"
2859+ overflow="visible"
2860+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2861+ <path
2862+ d="m 522.66,137.05 -0.1,1 -1,-0.28 1.1,-0.72 z"
2863+ id="path81262-1"
2864+ inkscape:connector-curvature="0"
2865+ overflow="visible"
2866+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2867+ <path
2868+ d="m 533.1,139.3 1.87,0.2 -1.7,1.05 -0.9,-0.2 -0.28,-0.96 1,-0.1 z"
2869+ id="path81260-4"
2870+ inkscape:connector-curvature="0"
2871+ overflow="visible"
2872+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2873+ <path
2874+ d="m 531.66,142.45 0.62,0.97 0.2,0.9 -1,0.45 -0.92,-0.25 -0.62,-0.9 z"
2875+ id="path81258-4"
2876+ inkscape:connector-curvature="0"
2877+ overflow="visible"
2878+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2879+ <path
2880+ d="m 525.2,149.36 0.96,0.38 -0.97,0.43 z"
2881+ id="path81256-4"
2882+ inkscape:connector-curvature="0"
2883+ overflow="visible"
2884+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2885+ <path
2886+ d="m 534.25,165.67 0.1,0.07 0.27,0.9 -0.9,-0.1 0.53,-0.87 z"
2887+ id="path81254-3"
2888+ inkscape:connector-curvature="0"
2889+ overflow="visible"
2890+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2891+ <path
2892+ d="m 534.34,187.9 -0.18,0.9 -0.72,-0.28 z"
2893+ id="path81252-4"
2894+ inkscape:connector-curvature="0"
2895+ overflow="visible"
2896+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2897+ <path
2898+ d="m 459.38,488.86 c 0.1,0 0.23,0.02 0.34,0.06 l 0.22,0.1 0.78,0.28 c 0.08,0.02 0.15,0.05 0.22,0.1 l 0.9,0.7 c 0.3,0.23 0.4,0.62 0.22,0.95 -0.17,0.33 -0.55,0.5 -0.9,0.37 l -0.9,-0.28 c -0.1,-0.02 -0.2,-0.07 -0.26,-0.12 l -1,-0.82 c -0.25,-0.18 -0.36,-0.5 -0.28,-0.8 0.08,-0.3 0.35,-0.5 0.65,-0.54 z"
2899+ id="path81250-9"
2900+ inkscape:connector-curvature="0"
2901+ overflow="visible"
2902+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2903+ <path
2904+ d="m 510.22,702.64 -0.06,0.53 0.34,1.88 -0.34,0.8 0.62,-0.33 z"
2905+ id="path81248-0"
2906+ inkscape:connector-curvature="0"
2907+ overflow="visible"
2908+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2909+ <path
2910+ d="m 510.16,705.86 -0.3,0.2 0.3,-0.1 0,-0.1 z"
2911+ id="path81246-4"
2912+ inkscape:connector-curvature="0"
2913+ overflow="visible"
2914+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2915+ <path
2916+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2917+ d="m 536.6,314.2 0,-34.56 -11.44,0 -3.2,2.1 0.9,-7.56 -2.45,-3.14 -2.9,-1.73 -2.16,0.5 -0.48,1.42 -1.54,1.47 0,1.76 1.54,1.63 0,10.26 -10.7,7.16 0,20.68 12.8,0 0,0.12 0,-3.79 0.56,-0.63 1.88,0 1,0.64 0,3.77 0,-0.12 z"
2918+ id="path41397-1"
2919+ inkscape:connector-curvature="0"
2920+ sodipodi:nodetypes="ccccccccccccccccccccccccccc"
2921+ overflow="visible" />
2922+ <path
2923+ id="path3074-6-7"
2924+ d="m 608.68,25.16 -0.9,0.28 -1.63,0.07 0,-0.3 0.37,0.06 2.16,-0.1 z m -2.53,1.53 0.53,0.1 -0.53,-0.04 z m 28.12,9.4 1.1,0 -1.88,0.06 c 0.2,-0.02 0.46,-0.05 0.77,-0.06 z m 50.53,0.3 -1,0.73 0.72,0.9 1.9,1.54 1.07,0.28 1,-0.47 -0.92,-0.97 -0.9,-0.6 -0.8,-0.92 z m 7.38,4.17 -1,0.53 2.87,1.25 0.9,-0.53 -1.87,-1.25 z m -3.16,16.94 c -0.9,0.08 -1.52,0.65 -1.15,2.04 l 3.87,-0.97 c -0.65,-0.7 -1.82,-1.14 -2.72,-1.06 z m -171.97,56.13 -0.97,0.28 -1.9,0.2 -0.1,0.25 2.88,0 1,-0.44 -0.9,-0.27 z m 0.9,6.03 -0.9,0.28 1.9,0.82 0.92,-0.82 z m 2.73,2.97 0.72,1 0.87,0.63 -0.15,-0.9 -1,-0.3 z m 3.5,6.47 -1.9,0.72 -0.98,0.9 0.97,0.38 0.9,0.1 2,-1.72 -1,-0.38 z m -2.72,0.56 -0.97,0.25 -0.38,0.92 1.9,-1.06 -0.56,-0.1 z m 3.53,3.5 -1.92,0.82 -0.9,-0.1 -0.35,1 1,0.35 0.88,-0.44 1.3,-1.64 z m -2.35,3.88 -1.1,0.72 1,0.28 0.1,-1 z m 10.43,2.25 -1,0.08 0.3,0.97 0.9,0.2 1.68,-1.07 -1.88,-0.2 z m -1.43,3.14 -1.72,1.16 0.62,0.9 0.9,0.26 1,-0.44 -0.18,-0.9 z m -6.47,6.9 0,0.82 0.97,-0.43 z m 9.06,16.32 -0.53,0.88 0.92,0.1 -0.3,-0.9 -0.08,-0.08 z m 106.72,2.16 -0.06,0.1 0,0.34 0.97,0.1 -0.9,-0.54 z m -34.44,14.94 0.88,0.15 -0.88,0.58 -0.37,0.4 0,-1.06 0.37,-0.06 z m 4.03,2.78 -0.9,0.44 0.18,0.9 0.54,-0.34 z m -2.78,1.97 0.63,0.9 0.28,-0.7 z m -73.44,0.38 -0.9,0.63 0.72,0.3 z m -16.8,122.03 -0.57,0.64 0,3.77 3.44,0 0,-3.79 -1,-0.63 z m -51.32,529.59 3.17,-0.04 1.96,-2.18 -0.1,-2.75 -0.3,-1.34 -0.3,-1.25 0,-0.96 0.9,0.54 0.9,-0.35 0.9,0 0.9,-0.53 2.8,0.16 1,-1.78 -0.9,-0.1 -0.92,0.2 -1,0 -0.87,-0.3 -2.7,-1.24 -0.92,-1 -0.87,-0.35 -1.9,-1.1 -0.8,-0.62 -0.1,-0.1 -2.16,-2.15 -0.82,-1.82 -0.87,0 -0.9,-0.52 0.43,-0.9 0.92,-0.3 -0.44,-0.95 -1.28,-1.44 1,-1.73 -0.28,-0.9 -1.35,-1.8 -1,-1.9 -0.97,0.38 -0.9,-0.63 -1.1,0.25 0.9,-0.34 1,0.1 0.92,-0.2 0,-0.9 -0.82,-2.7 -0.62,0.36 -0.38,0.36 0.1,-0.2 0.28,-0.17 0.53,-0.55 0.45,-1.9 0.37,-0.88 0.72,-0.9 1.78,-0.72 -0.25,-1.38 -1.53,-0.06 -0.28,0.17 -0.34,0 0.62,-0.16 0.9,-0.08 0.26,-0.72 -0.2,-0.47 -0.33,-0.25 0.43,0.25 0.72,1.34 0.9,0.8 1,-0.24 0.73,-0.56 0.72,-0.87 0.53,-2.72 -0.1,-0.88 0.28,-1 0.54,-0.62 0.28,-0.28 0.9,-0.63 0.53,-0.9 2.8,-1.63 0.9,-0.34 0.7,-0.9 1,-0.54 0.82,-1 -0.8,-0.9 -1.82,0.62 -0.2,-0.16 0.92,-0.2 0.9,-0.45 0.9,-0.72 0.35,-1.78 -0.34,-0.9 -1,-0.64 -0.9,0.2 -2.7,-0.57 c -0.52,-0.6 -1.13,-1.1 -1.7,-1.63 -0.3,-0.25 -0.6,-0.52 -0.86,-0.78 -0.26,-0.25 -0.5,-0.5 -0.68,-0.78 -0.1,-0.12 -0.16,-0.25 -0.22,-0.37 -0.06,-0.1 -0.12,-0.23 -0.16,-0.35 l -0.06,-0.15 0,-0.1 c -0.03,-0.1 -0.05,-0.18 -0.06,-0.28 l -0.04,-0.25 0,-0.37 0,-0.03 c 0,-0.05 0.03,-0.1 0.04,-0.16 0,-0.1 0.03,-0.2 0.06,-0.3 0.04,-0.16 0.1,-0.3 0.2,-0.47 0.06,-0.17 0.13,-0.35 0.24,-0.53 l 0,-0.03 0.12,-0.22 c 0.03,-0.06 0.1,-0.1 0.13,-0.16 0.14,-0.22 0.28,-0.44 0.46,-0.67 l 1.35,-1.8 0.9,-0.9 0.9,-0.1 0.92,-0.35 1.06,-0.8 0.9,-0.1 1.9,0.27 0.17,-0.18 -0.44,-0.9 0.18,-0.92 0.9,-0.62 0.63,-0.9 0.26,-0.88 0.2,-1 -0.45,-1.82 0.17,-0.9 0.8,-0.88 0.38,-0.8 0.9,-0.73 1.88,-0.62 -1.78,-1.28 -0.72,-0.9 1.88,-0.9 0.92,0.08 0.7,0.9 0.26,0.9 c 2.64,0.46 2.64,-0.73 2.63,-2.87 l -0.43,-0.9 -0.9,-0.35 -0.9,0.44 -1,0.2 1,0.18 -0.1,0.97 -1.94,0 0.15,-0.9 -1.78,-0.45 -1,-1 0.37,-2.78 -0.72,-1.78 -0.1,-0.9 0.16,-0.9 0.9,-0.45 0.92,0 0.9,0.54 2.7,0.97 0.9,0.67 1.8,0 1.88,-0.3 2.8,-1.24 0.55,-0.9 0,-0.9 -0.9,-0.9 0.1,-0.92 0.6,-2.15 0.64,0 0.43,-1.78 -0.87,-0.9 0.87,0.34 -0.87,-0.7 -0.47,-0.98 0.1,-0.9 0.9,-0.54 0.9,0.72 0.97,0 0.9,0.25 0.92,-0.15 0.9,0.06 c 5,-0.5 11.4,-1.5 15.75,-4.03 l 0.9,-0.72 0.07,-0.9 0.56,-0.9 1.63,-1.88 1.06,-1.8 0.72,-0.92 0.1,-1.78 -0.38,-1.34 -0.06,-0.1 -1,0.16 -0.9,-0.53 -0.73,-0.96 -0.28,-0.9 0.08,-0.72 1.1,-1.82 c -2.84,-4.38 -4.9,-1.73 -6.66,-5.84 l 0.72,-0.28 0.1,-0.16 -0.3,-1 0,-0.62 -0.42,-1.28 0.1,-0.88 0.43,-0.9 0.1,-0.9 0.62,-0.1 0.28,-0.2 0.34,-0.8 -0.35,-1.88 0.06,-0.53 0.57,2.87 -0.62,0.35 0,0.1 -0.28,0.08 -0.54,1.63 -0.18,1.8 0.1,0.54 0.62,0.9 1.7,1.7 0.36,0.62 0.9,-0.25 2.18,0 1.8,1.35 1.88,0.43 1,0.72 c 2.88,-1.33 2.87,-0.77 4.56,-0.22 0.24,0.08 0.52,0.15 0.84,0.22 l 0.88,-0.06 3.06,-1.37 0.8,-0.87 0.92,-0.47 0.28,-0.98 0.8,-0.9 0.26,-0.9 0.47,-0.64 2.78,-2.34 0.72,-0.9 0.53,-1.16 0,151 69.57,0 0,-25.47 -26.4,0 0,-13 26.4,0 0,-216.3 0.37,-0.73 -0.28,-0.1 0.44,-0.87 0.9,-0.56 -0.43,-0.87 0.97,-0.2 -0.25,-1.1 0.9,0.4 1.78,-1.35 0.63,-0.2 0.56,-0.9 2.06,-2.34 0,-0.35 0.53,-0.37 0.1,0.1 1.62,-1.9 1,-1.7 0.63,-1.8 0,-0.54 0.62,-1.54 0.25,-1 -0.25,-0.43 0.2,-1 -0.3,-0.1 0.45,-0.43 0,-0.9 -0.16,-0.9 -0.38,0.36 0.28,-1 -0.47,-1.06 0,-0.8 -0.72,-1.92 -0.52,-2.44 -0.44,-0.97 -0.66,-0.9 -0.96,-0.4 -0.9,-0.05 -3.8,0.06 -0.9,-0.6 -1.15,-0.17 -1.44,-1.28 -0.28,-0.1 0,-380.73 0.28,-0.96 -0.28,-0.2 0,-0.08 c 0.24,0.2 0.5,0.47 1.43,0.62 l 0.72,-1.78 -0.1,0.87 1.82,-0.43 0.8,-0.9 0.92,0.7 0.88,0.48 1,-0.66 0,-0.87 0.9,0.08 0.63,-0.9 -0.9,-0.9 0.9,0.52 1,0 0.9,0.37 -0.37,-0.9 0.9,0.34 1.8,-0.52 0.55,-0.9 0.44,-1.88 0.18,0.9 0.9,-0.28 0.63,-0.9 0.54,-1.7 1.8,-1 0,-0.9 0.88,-0.18 -0.78,-0.88 0.97,-0.47 -0.2,-0.9 0.9,-0.17 0.73,-0.9 0.9,-0.38 0.9,-0.72 0.92,-0.44 0.87,0.1 0.9,-0.58 -0.43,-0.87 0.08,-0.9 -0.9,-0.63 0.9,-0.1 -0.62,-0.9 -0.9,-0.28 -0.48,-0.88 0.9,-0.37 0.3,0.9 0.9,0.43 0.87,0.9 0.9,0.38 0.38,0.9 0.9,-0.17 1.8,0.63 0.9,-0.2 1,0.1 0.87,-0.2 -0.72,-1 -0.87,-0.33 1.8,0.28 0.8,0.9 0.9,-0.36 -0.7,-0.9 0.9,0.18 0,-1.1 0.8,-0.18 0.73,0.9 0.97,0.3 1.8,-0.92 0.98,0.38 0.9,-0.38 1.82,-1.06 1,0.25 1.87,-0.52 0.9,0 0.98,-0.53 0.9,0.16 0.47,-0.53 0.88,-0.34 1.9,0.16 0.82,-0.98 0.9,0 0.97,-0.56 0.62,-0.88 0.9,0 -0.53,-1 0.9,0.34 0.9,-0.53 0.72,-0.9 -1,-0.07 1,-0.47 0.88,0.28 0.9,-0.1 -0.18,-0.9 0.9,-0.1 1.8,-0.72 -0.9,-0.8 1.9,0.46 0.9,-0.28 0.08,-0.9 -0.9,-0.63 1,0.1 0.9,-0.3 1.88,0 -0.97,-0.8 1.88,-0.16 1.63,-1 0.92,0 0.9,-0.9 c -2.4,-0.27 -4.98,0.85 -7.4,-0.24 l -0.88,0 -3.78,-1.3 -0.9,-0.08 -0.9,-0.34 -1,0.62 0.36,-1 -1,0 -0.9,0.28 -2.8,1.16 -0.9,0.1 -0.87,-0.35 -0.9,-0.1 -1,0.54 -0.72,0.9 -0.35,0.7 -0.9,0.3 -0.47,-0.73 -1.87,0.35 -0.9,-0.53 -1,0.17 -0.88,-0.37 -0.47,0.1 -3.5,0.7 c -0.3,-10.58 2.65,-28.32 11.07,-35.36 3.42,-2.6 8,-4.82 12.43,-3.7 l 8.25,1.54 0.47,0.1 1.88,-0.1 0.9,-0.34 0.2,-1 -1,-0.9 1,0.46 0.9,0.62 1.87,-0.28 1.97,0.28 1.8,0 0.83,0.88 1,0.75 1.62,0.25 0.97,-0.1 0.9,-0.43 0.63,-0.9 0.38,-0.9 -1,-0.83 -0.63,-0.87 -0.9,0.53 -0.9,0.25 -0.98,-0.25 -0.9,-0.47 -3.8,0.28 0.92,-0.18 0.97,-0.62 -0.72,-0.9 0.57,-1.88 -2,-0.53 -1.87,0.96 -1,0.28 -0.9,-0.28 -0.73,-0.88 -0.97,-0.47 0.88,0.2 1.9,1.06 c 1.82,-0.56 1.87,-1.78 4.7,-1.15 l 0,-0.9 -1,-0.34 -0.9,-0.63 -1,-0.37 -0.9,-0.72 -1.9,-0.28 -1,0 -1.78,-0.44 1.88,0.34 1,0 1.87,0.28 -0.87,-0.8 -2,-0.82 -0.88,-0.2 0.97,-0.05 2.88,1.06 0.9,0.53 0.9,1 1.88,0.72 1.9,-0.44 1,0.35 0,1.08 0.98,0.35 0.92,0.1 0.9,-0.92 0.25,-1.77 -0.06,-0.9 -0.7,-1 -0.1,-0.25 c -6.17,-0.5 -14.12,0.8 -15.85,-6.94 -0.53,-3.83 0.3,-11.27 4.7,-12.97 l 0,-0.53 0.87,-0.9 0.7,-0.98 -0.86,0.44 0.34,-1 1,-0.53 -0.9,-0.72 1,0.1 0.9,-0.82 -0.37,-1 1,-1.87 0.8,-0.9 -1.08,-0.54 -1,-0.1 1.9,-0.37 -0.47,-0.9 0.9,-0.72 1,-0.35 0.92,-0.1 1.87,0.2 0.47,-0.2 0.44,-0.9 -0.44,-0.62 0,-0.63 1.34,-0.28 0.9,-0.62 0.8,-1 1,0.46 -0.1,-0.9 -1.97,0 -0.9,0.9 0.63,-0.9 0.2,-0.92 -0.55,-0.9 0.82,-0.97 -0.2,-0.9 1,-0.8 0.98,-0.45 3.78,0.53 0.9,-0.2 1,-0.6 1.8,-1.73 0.36,-1.16 c -3.07,-1.58 -5.24,0.74 -7.84,-0.1 l -0.9,0.1 -0.98,0.53 -2.06,0.53 -0.66,0.9 -0.25,0.9 0.9,-0.18 0,0.2 -0.9,0.36 -1.9,-0.8 0.28,-1 0.3,-0.54 -0.3,-0.37 0.3,-0.72 0.96,-0.24 1.9,-1.47 0.97,-0.17 5.88,0.8 1.88,-0.27 3.88,0.1 0.9,-0.2 1.88,-0.8 -0.44,-0.9 0.9,0.27 0.98,-0.72 0.62,-0.9 -0.87,-0.18 -3.06,-0.16 -1.9,-0.72 -1.98,0.63 -2.98,0.25 -2.06,-0.44 -2,-0.1 -0.97,-0.34 -1.92,-0.18 -1,0.18 -0.87,0.63 -1,0.2 -0.9,0.6 -1.06,-0.6 -1,-0.3 c 4.6,0.72 2.97,-1.83 7.75,-0.9 l 1.05,0.28 3.07,0.16 1,-0.15 0.87,-0.56 1,-0.17 0.08,-0.9 1,0 0.9,0.53 1.98,-0.1 2.97,0.47 2.78,-0.37 0.92,-1 4.84,-0.63 0.2,-0.87 -1.08,-0.66 0,-0.87 0.97,-0.2 2.88,0 0.9,-0.18 1.1,-0.62 0.9,-0.9 1.88,-0.35 0.63,-0.9 2.88,-1 0.92,-0.54 0,-0.9 -0.9,-0.2 -1.98,-1.15 -0.9,-0.3 -0.97,-0.24 -3.88,-0.57 -2.88,-0.82 -2,-0.15 -2.97,0.25 -1.78,-0.25 -1.9,0.15 -1,-0.25 -1.07,0.9 -1,-0.1 -0.9,0.26 -0.98,-0.16 0.63,1.78 -1.1,-0.34 -0.97,0.06 -0.18,1 1,0.37 -0.9,0.45 -1,0.1 0.37,0.9 -1.82,0.2 -1,-0.57 -1.06,0.18 -0.92,-0.72 -1.87,-0.18 -2,0.62 -0.96,0.66 -1,0.34 0.2,-1.97 0.96,-0.55 c -4.1,-0.43 -6.4,3.58 -9.72,4.88 l -1.06,0.53 -0.9,0.53 -1,0.64 -0.9,0.82 -1.9,0.78 -1,0 0.1,1 -0.9,0.47 -0.44,0.88 -2.97,1.53 0.54,-0.96 0.9,-0.46 -1,-0.1 1.1,-0.34 0.9,-0.63 0.2,-0.9 0.7,-0.9 3.6,-2.7 0.63,-0.9 1,-0.46 0.44,-0.44 1.35,-1.34 0.47,-0.9 0.53,-1.88 -0.28,-2.72 -0.72,-0.97 -1,-0.3 -0.87,0 -1,0.2 -3.78,0.15 -1.88,0.8 -0.56,2.83 -0.88,0.15 -1,-0.1 -1.96,0.38 -0.9,0.54 -6.95,1.82 -0.9,0.53 -1.88,0.46 -1.1,0 1,-0.1 -1,-0.72 1.1,-0.8 1.96,-0.38 3.97,-1.16 2.97,-1.1 0.53,-0.9 -0.2,-0.87 -0.86,-0.82 -2.9,-0.17 -5.85,-0.1 -7.82,0.38 -2,0.44 -0.87,0.9 -0.9,-0.7 -4.07,0.7 -1.06,0 -3.97,0.64 -2.97,1 -1,0.53 -0.9,0.1 -0.35,-0.9 -0.08,-0.9 c 4.6,-1.7 9.54,-1.37 14.2,-2.98 l -1,-0.63 -1.95,-0.38 -0.82,-0.06 -0.37,-0.07 c 2.1,0.1 4.4,0.36 5.25,0.68 l 1.97,0 2.06,-0.37 4.06,-0.24 8.2,0.53 4.93,-0.1 1.97,-0.38 2,-0.72 1.96,-0.44 2.97,0 2.88,-0.43 0.28,-0.1 0.73,-0.28 0.53,-0.9 3.87,-1.35 -0.34,-0.9 -2,-0.82 -0.92,-0.15 -1.87,-0.72 -0.27,-0.1 -0.97,0.26 -1.8,-0.34 -1,-0.63 -0.98,0.15 -1,0.72 -1,0.2 0.2,-0.92 -0.92,-0.62 -2.06,-0.1 -1.97,0.9 -3.16,0.63 2.06,-0.87 1.9,-1.4 -0.18,-0.86 0.1,-0.9 -1.1,-0.54 -4.93,0.63 -2.16,0.53 -2,0.1 -3.7,-0.3 -1.77,0.2 -1,-0.38 -1.07,-0.15 -2.97,-0.3 -3.06,0.1 -2.1,0.54 -1.78,0.1 -2.97,0.8 -1.1,0.82 -0.96,-0.73 -7.13,0.44 -1,0.3 -0.1,0.9 -0.97,0.7 0.35,-0.9 -0.88,-0.43 -3.15,-0.1 -2,0.44 -1.8,1.45 0.36,-0.9 -0.63,-0.88 7.13,-0.38 3.06,-0.72 3.94,-0.38 -0.9,-0.72 -0.88,-0.25 -1.2,0 -0.96,-0.2 1.97,0 2.07,0.4 1.97,0.52 2,0 1.78,-0.53 2,-0.1 0.97,-0.46 3.15,-0.25 2.8,-0.1 7.82,0.54 3.06,-0.1 2.88,-0.6 1,-0.1 1.98,-0.73 -1,-0.9 -1.16,-0.43 -3.7,-0.72 -3.95,-0.47 -2.07,0.2 -1,0.52 -0.97,-0.16 -0.9,-0.46 1,-0.1 -1,-0.34 -1.1,0.34 -0.96,-0.72 -1,-0.15 -1,-0.27 -2.97,-0.3 -1.16,0.1 -1,0.3 -1.97,0 -2,-0.4 -1.87,0.3 -1.1,-0.44 -3.12,-0.1 -3.88,0.34 -0.18,0.9 0.9,0.38 -0.9,0.25 -0.9,-0.53 -0.92,-1 -0.97,0.62 -1,-0.72 -1.87,0.72 -4.25,-0.15 -2.05,0.1 -0.9,0.16 0.55,1 0.88,0.9 -1.06,-0.1 -0.9,-0.62 -1.9,-0.28 -0.9,-0.34 -0.27,0 0,-20.85 -69.57,0 0,35.46 -0.18,-0.1 -0.72,-0.9 -0.88,-0.25 -1,0 -1,0.8 0.1,0.88 0.9,0.83 2.78,0.7 0,0.48 -1.78,-0.46 -0.28,1 0.1,0.9 -0.82,0.92 -0.9,0.43 -1,0.8 0.1,1.8 -0.88,-0.07 -0.47,-1 -0.2,-0.9 1.38,-1.9 0.16,-0.9 -0.54,-1 0.28,-0.9 c -3.54,-3.84 -4.08,-2.88 -9.47,-1.97 l 0.9,0 0.9,0.38 0.55,0.87 -0.97,-0.14 -0.9,-0.57 -1.92,-0.35 -0.96,0.2 -0.57,0.86 -0.97,-0.52 -1,0 -2.96,0.53 -2.97,0.3 -2.88,0.43 -0.9,0.38 -2.88,0.73 1,0.62 2.78,0.8 1.53,1.9 1.07,0.64 1,0.1 1.96,0.96 0.9,0.8 1.1,0.73 0.97,0.18 0.9,0.43 -2.96,-0.6 -0.82,-0.92 -1.97,-0.87 -1,-0.1 -1.87,-0.46 -0.9,-0.34 -0.72,-0.9 -0.18,-1 -1,-0.44 -3.12,-0.28 -1.82,-0.44 -2.68,0.44 -2.82,1 -0.87,0.62 0.54,0.9 1.88,1.54 0.28,0.9 -1,0.44 -0.72,1 0.47,0.9 0.8,0.88 -0.9,0.47 -0.9,0.1 -1,0.43 -2.97,-1.34 -1.88,-0.1 -1.1,-0.28 -0.9,0.1 -0.97,0.37 -0.46,0.9 0.37,0.9 0.53,1 1.8,1.8 -0.9,-0.37 -0.7,-0.9 -0.92,-0.82 -0.9,-1.77 -0.88,-0.28 -1,0.8 -2.97,0.83 -1,0.1 -0.25,0.9 -1,0.34 -0.28,0.9 -1.97,0.54 -0.9,0.47 0.9,0.34 -1.9,-0.1 -0.97,0.63 -2.97,0.72 -0.38,1 -2.87,1.34 0,0.9 0.73,0.92 1.9,1.06 1.97,-0.35 0.9,0.1 0.98,0.7 1,0.1 2.97,-0.8 1,0.18 1.78,-0.3 1.1,-0.36 0.9,-0.63 0.9,0.37 0.97,0.1 -1.97,0.15 -0.9,0.66 -2.16,0.34 -0.9,0.37 0.28,0.87 0.18,1.8 -0.1,1 0.82,0.9 -1.47,1.8 -1.87,1 -0.9,0.97 -0.97,0.72 -1.1,0.18 -1.08,-0.34 -0.88,0 -0.9,0.34 -1,0 -0.97,-0.25 -1.28,0.24 -0.54,0.1 -0.9,0.53 -0.5,-0.13 -0.5,-0.12 -0.44,0 0.28,0.44 7.56,12.06 9.25,14.12 0.47,0.82 0.16,-0.38 0.72,1.9 1,0 0.9,-0.52 0.9,-0.9 0.98,-0.63 2,0.53 0.97,0.53 0.9,0 1,-0.26 0.9,0.53 1.9,0.44 1,0.2 0.9,-0.2 1.87,0.57 0.18,0.87 2.88,0 0.9,0.57 0,0.35 0.97,-0.25 0.9,0.44 -0.9,0.72 0.9,0.18 1,-0.46 0.92,0 -0.38,0.9 1,0.2 0.97,0.43 0.9,-0.24 1,0.1 1.07,1.77 -0.15,0.9 -2,0.63 1.9,-0.28 -0.8,0.9 0.9,0.82 0.9,0.2 -0.27,0.9 3.4,1.53 1,0.15 1,0.66 -0.9,0.44 0.53,1 0.92,0.1 1,0.33 0.96,0.92 0.9,-0.1 -0.9,0.82 -1.87,0.2 1,0.33 1.88,0 -0.9,0.47 -0.97,0.06 0.88,0.38 -1.87,1 -1.8,0.43 1,0.2 1,-0.1 0.87,-0.27 1.9,-0.97 -0.62,1.78 0.97,0.37 0.66,0.92 0.87,0.44 -0.62,0.9 1,0.63 -0.9,-0.2 -1,0.72 2,0.72 0.52,0.9 1.88,0.82 0.2,0.34 -0.98,-0.16 -0.72,0.88 0.97,0.28 -1.88,1 1.78,0.8 1,-0.17 0.9,0.34 0.63,0.9 0.2,0.9 -0.9,0.2 1,0.25 -0.58,0.9 -0.97,0.72 0.97,0.57 0.9,0.26 0.92,-0.2 -0.9,0.3 -3.7,-0.3 -0.9,0.3 1.8,0.9 0.9,-0.47 0.98,0.55 -0.53,0.9 -0.9,0.54 -1.7,1.96 0.98,0.37 2,-0.28 0.87,-0.62 0.63,-0.9 -0.35,1 -0.9,0.6 -0.9,0.45 -0.98,0 -0.9,0.2 0.43,0.9 -0.97,-0.3 -1.9,1.1 1,0.45 0.44,1 0.9,0.9 0.9,-0.56 1,0.28 0.88,0.63 1,0 0.9,-0.1 1.8,-0.53 0.65,-0.9 -0.47,-0.97 0.9,0.06 -0.18,-0.88 0.9,-0.1 0.9,-0.7 -1,-1.92 -0.9,-0.72 -0.1,-1.3 0.38,0.77 0.72,0.9 0.9,0.72 0.1,0.9 0.88,0.82 0.9,-0.2 -0.25,0.45 -0.9,0.7 0.97,0.2 1.8,0 0.63,0.3 0,0.85 -0.06,0 c -0.15,0.03 -0.28,0.1 -0.44,0.16 -0.14,0.06 -0.3,0.12 -0.43,0.2 l -0.32,0.15 c -0.07,0.04 -0.14,0.07 -0.2,0.12 -0.24,0.16 -0.46,0.34 -0.7,0.57 l 2.15,0.18 0,0.4 -0.18,-0.05 -1.88,-0.35 -0.9,0.35 0,0.8 0.9,0.92 0.9,-0.2 1.16,-0.72 0,4.63 -0.8,-0.3 -1.88,-0.26 -1.9,0.07 -0.88,-0.24 -1.9,-0.3 -1,0.3 -0.9,0.43 0.08,1 2.9,2.06 2.78,0.28 0.9,0.25 1.98,0.7 0.62,0.63 0,2.2 -0.7,-0.2 -0.92,-0.72 -0.8,-1 -1.8,-0.9 -3.78,-0.7 -1,0 -0.9,0.36 -0.88,0.8 0.1,0.92 0.78,0.53 1.8,0.73 -1.86,-0.44 -0.9,0.15 -0.4,0.9 1,0.47 0.92,0.63 -0.9,-0.38 -0.9,0.72 0.9,0.62 0.9,0.2 1.88,0.08 1.9,0.72 0.97,-0.72 0.55,0.9 -1,0 -0.9,0.2 -1,-0.2 -0.88,0.72 0.88,0.25 1,0.57 1.25,0.1 4.68,-1.38 0,5.68 -0.25,0 -1.8,0.53 0.9,0.2 1.15,-0.13 0,0.97 -0.34,0.16 0.34,-0.03 0,0.25 -1.34,0.75 -1.87,0.56 0.96,0.06 0.9,-0.25 0.92,0 -0.9,0.44 1,-0.1 0.33,0.32 0,0.6 -0.34,-0.2 -0.9,0.3 1.24,0.5 0,0.05 -3.2,-0.83 -0.92,0.2 0.9,0.17 1.88,1.25 1.34,0.18 0,0.25 -0.34,0.03 -1,-0.37 -0.9,-0.55 -0.9,0.1 0.9,0.34 -0.9,0.18 -0.45,0.9 -0.92,-0.18 0.9,0.44 -0.9,0.18 -0.9,-0.1 0.56,0.92 -0.9,0.7 0.9,0.64 0.97,-0.44 1.82,-1.44 1.8,-0.28 0.26,-0.12 0,0.47 -1.34,0.12 0.9,0 -1.8,0.34 -1.88,1.43 -0.9,0.28 -1,0.54 -0.16,0.9 0.87,0.52 1.8,-0.72 1,0.3 2.5,-0.67 0,0.47 -0.95,0.1 -0.9,0.24 -2.73,0.2 -1.8,0.7 0.92,0.48 0.87,0 -0.88,0.15 0.87,0.47 0.9,0.1 -1.78,0.1 0.87,0.62 1.9,-0.2 1.87,0.2 0.8,-0.5 0,0.93 -0.8,-0.1 -0.9,0.28 0.9,0 -0.9,0.63 -0.98,0 0.87,0.2 0.9,-0.1 -0.9,0.44 -1.88,-0.1 -0.92,0.66 0.9,0.34 0.92,0.1 0.9,-0.2 1.78,0.2 0,0.03 -0.8,0.15 -0.9,-0.18 -1.9,0.37 -0.9,-0.08 -0.9,0.87 0.1,0.9 0.9,0.2 0.9,-0.2 -0.9,0.28 -0.9,0.8 1.1,0.26 1.77,-0.62 1.9,-1.44 0.53,-0.28 0,0.2 -0.53,0.36 -0.9,0.9 -2.78,1.26 0.9,0.28 -0.9,0.25 0.9,0.37 0.88,-0.47 -0.88,0.57 0.88,0.34 1.8,-0.72 0.63,0.35 0,0.33 -0.8,-0.4 -1.88,0.96 0.9,0 -0.9,0.55 0.9,0.44 0.88,-0.9 -0.25,1.8 0.9,-0.2 -0.18,0.92 0.43,0.1 0,333.93 -2.06,-1.97 -0.28,0.1 -2.25,-0.54 -0.88,-0.65 -0.9,-0.17 -0.92,1.53 -0.37,0.25 0.56,-0.9 0.24,-0.87 -0.97,-0.62 -3.7,-0.56 0,0.63 -0.64,0.2 -0.97,-0.64 -1.8,-0.1 -0.92,0.48 0.2,0.16 -0.1,0.8 -0.9,-0.8 -1.8,-0.44 -2.34,-0.28 -0.1,0.2 -0.24,0 -0.28,1.24 -0.53,0.9 -0.1,0.2 0.16,0.9 0.1,0.16 -0.34,0.9 c -4.1,0.15 -1.82,1.8 -3.6,4.07 l 0.26,0.9 1.34,1.8 0.37,1 1.44,0 0.53,1.52 0,0.9 0.57,0.45 0.96,1.9 0.9,1.44 1,0.36 -0.73,0.32 -3.7,-0.2 -1,1.16 -4.8,1.33 0.04,0.65 -1.4,0.43 -0.76,-0.55 0.52,7.97 0.65,0.2 0.14,1.16 0.6,0.3 0.67,0.5 0.05,0.83 0.6,0.35 0.53,0.53 0.7,0.6 0.67,0.35 0.8,0.5 0.53,0.28 0.7,0.28 0.84,0.1 0.4,0.5 0.53,0.1 0.15,0.7 0.65,0.25 0.8,0.2 0.06,0.6 1.05,-0.1 0.83,0.43 -0.5,0.54 -9.07,19.55 -0.58,0.45 0.23,0.66 0.34,0.8 0.7,0.45 0.32,1.3 0.53,0.45 0.4,0.86 0.4,0.84 0.02,0.7 0.37,0.7 0.5,0.24 -0.04,0.75 -0.1,0.56 0.14,0.7 0.5,0.72 1.04,0.45 0.12,0.43 1.07,0.5 0.12,0.83 0.5,0 0.84,0.5 0.57,0 1.04,0.23 29.28,1.8 -0.3,0.73 -0.86,2.14 -0.56,0.9 0,1.98 -0.54,1.34 0.1,1.38 -0.1,0.43 0.2,0.57 c 0,0.23 0,0.48 0.02,0.7 l -0.03,0.36 0.1,0.3 c 0.03,0.52 0.08,1.03 0.12,1.54 l -0.03,0.5 0.16,0.97 0.56,0.2 -0.47,2.06 -0.92,1.8 -0.25,0.2 0,1.78 -0.37,0.28 -0.25,0.82 0,0.9 -0.37,1.35 -0.18,0.52 -0.63,0.43 -0.9,0 -0.54,0.47 -0.53,0.9 -0.8,1.98 0,0.2 -0.92,0.6 -0.97,0.1 -0.1,0 0,0.1 -0.27,0.44 -0.92,0.75 -0.72,0.58 0,1.34 -0.7,0.9 -1.08,0.92 -0.47,0.9 -0.17,1 -0.16,0.44 -0.1,1 0.9,1.78 0,0.9 0.26,0.9 1,0.36 -0.53,0.9 0.16,0.2 1.44,0.1 0.38,0 3.68,1.95 1.1,0.2 0.87,0.52 1,0.37 0.37,0.62 -0.28,0.9 0,1.6 0.1,0.46 -0.72,1 -1,0.44 -0.82,0.9 -0.34,0.97 0,0.38 -0.38,0.44 -0.8,1.17 0.1,0.63 -0.64,0.9 -0.44,0.35 -0.28,0.9 0,0.1 -1.1,1.53 -0.1,0.2 -0.52,0.3 -1.34,0.84 -0.9,0.72 -0.73,0.9 -1.95,0.82 -0.3,0.63 -0.24,1.08 0,0.06 -0.08,0.2 -0.37,0.37 -0.63,0.26 c -0.78,1.45 0.02,2.2 -1.62,3.25 l -0.1,0.9 0.2,0.54 -0.92,3.16 -0.18,1.16 -0.54,0.9 0,0.8 -0.18,0.4 0.18,0.7 -0.25,2.16 -0.27,1.07 -0.37,1 -0.88,0.6 -1,0.92 -0.18,-0.1 -0.9,0.28 -0.73,0.97 -0.44,0.9 -0.43,0.3 -0.82,-0.57 -0.9,0 -0.82,1.1 -0.9,-0.45 -0.53,0 -1.9,0.07 -1.17,-0.16 -2.68,-0.72 -2.9,0 -0.45,0.1 -0.28,-0.66 1.44,-1.44 0.8,-1.44 0,-0.7 0.1,-0.83 0.56,-0.87 0.25,-0.2 0.38,-0.27 0.44,-0.9 0.53,-0.88 0.66,-0.9 -0.55,-0.9 -0.2,-0.1 -0.05,-0.2 -1,-0.8 -0.9,-0.35 -1,-0.1 -0.35,-0.43 -1.82,-0.66 -1.06,-0.7 -1,-0.45 -1.72,-1.34 -1.7,-1.08 -1.42,-0.1 -0.1,0 -2.06,-0.72 -1,-0.25 -0.62,-1.1 -0.9,-0.6 -1.92,-1.1 -0.87,-0.88 -0.47,-0.82 -0.82,-0.9 -0.25,-1 -0.38,-0.2 -0.25,-0.05 -0.9,-0.66 -0.28,-0.43 -0.72,-1.15 -4.13,0.16 -0.1,0.1 -0.46,-0.2 -0.96,0.73 -0.47,0.9 -0.2,0.48 -0.24,0.35 -0.53,1.8 -0.37,-0.8 -0.2,-0.9 -0.96,-1.73 -1.53,-0.43 -0.8,0.08 -0.1,0 -1.9,-0.1 0,0.1 -0.9,-0.1 -0.9,-0.8 -1.1,-0.63 -0.6,1.62 -1.82,0.54 -0.07,0.63 -1.72,1.72 -0.28,0.53 0.82,0.8 -1.15,2.13 -0.9,-1.03 -3.18,-0.13 0.06,-1.27 -1.6,-6.25 -1.46,-1.54 0.2,-1.4 -1.28,-1.3 -0.1,-1.58 0.96,-0.72 -0.56,-0.76 c 0.25,-0.5 0.77,-1.13 1.25,-1.5 l -2.56,-2.2 -0.43,-4.37 -1.24,-0.42 -0.92,-2.2 -0.1,0.82 -0.8,1 -0.48,0.16 -1.07,0 -0.37,0.3 0.46,0.34 -0.2,0.9 0.2,1.8 0.43,1.9 0.44,2.86 -0.34,1.82 0,1.9 c 0.55,1.32 0.6,2.63 0.43,3.94 -0.15,1.3 -0.5,2.64 -0.75,3.97 -0.07,0.44 -0.13,0.86 -0.17,1.3 -0.05,0.47 -0.06,0.92 -0.04,1.4 l -1.38,1.52 0,0.9 0.9,0.3 c -0.08,0.54 -0.18,1.1 -0.28,1.67 0,0.1 0,0.2 -0.03,0.32 -0.1,0.62 -0.18,1.24 -0.24,1.87 l 0,0.07 -0.03,0.13 c -0.02,0.32 -0.03,0.64 -0.03,0.97 l 0,0.03 c 0,0.3 0,0.6 0.03,0.87 l 0,0.16 c 0.02,0.23 0.06,0.46 0.1,0.7 0.07,0.43 0.18,0.86 0.34,1.3 l 0,0.9 -0.8,0.88 -51.27,0 0,62.66 35.82,0 0.08,1.9 0.8,1.27 -0.13,2.94 0.57,4.14 0.85,0.86 -1.4,0.8 0.02,1.2 -0.7,0.05 -0.18,1.13 -1.47,5.05 0.93,3.37 -1.02,2.06 -0.7,1.78 -0.1,3.06 -0.24,1.2 -0.6,1.48 -1.82,1.85 -4.35,17.77 0.7,10.34 -0.36,3.1 c -0.1,2.32 0.2,4.65 0.93,6.97 l 0.33,2 -0.65,1.53 1,0.7 0.63,2.6 -0.5,2.54 0.67,1.75 c 0.47,0.85 0.82,1.64 1.93,2.8 l 0.04,2.6 1.74,2 0.34,1.45 1.56,1.96 1.58,-0.2 0.57,3.03 0.86,1.02 1.08,-1 0.96,0.82 1.24,0.85 0.5,0.85 1.74,1.22 0.47,0.76 2.93,1.4 1.28,-0.34 6.13,2.46 1.3,1.23 4.12,-0.15 3.5,2.2 z"
2925+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccssssssssssssssccsscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsssssccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2926+ inkscape:connector-curvature="0"
2927+ overflow="visible"
2928+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2929+ <path
2930+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2931+ d="m 481.88,829.42 -0.88,0.28 -0.8,0.9 1.68,-0.8 0.9,0.25 0.9,-0.63 -1.8,0 z"
2932+ id="path9711-8-3"
2933+ inkscape:connector-curvature="0"
2934+ overflow="visible" />
2935+ <path
2936+ inkscape:connector-curvature="0"
2937+ d="m 436,768.32 0.9,0 -0.57,0.9 -0.53,0.26 -0.72,-0.9 z"
2938+ id="path136006-3"
2939+ overflow="visible"
2940+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2941+ <path
2942+ inkscape:connector-curvature="0"
2943+ d="m 437.33,770.57 0.38,0 0.63,0.9 -0.9,0.54 -0.9,-0.62 z"
2944+ id="path135998-2"
2945+ overflow="visible"
2946+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2947+ <path
2948+ inkscape:connector-curvature="0"
2949+ d="m 438.58,752.76 0.57,0 0.1,0.87 0.33,0.9 -0.7,0.9 -0.1,0.45 0.8,0.66 0,0.25 -0.8,-0.92 -0.2,0.56 -0.43,0.9 0.9,0.64 -0.47,0.87 0.57,0.75 -0.38,0.25 -0.34,0.9 -0.9,0.73 -1.9,-0.44 -0.17,-0.9 0.72,-1.9 0.15,-0.9 -0.34,-0.9 0.7,-2.7 0.1,-0.9 0.9,0.17 0.88,-0.24 z"
2950+ id="path135843-8"
2951+ overflow="visible"
2952+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2953+ <path
2954+ style="color:#000000;overflow:visible;isolation:auto;mix-blend-mode:normal;solid-color:#000000;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25"
2955+ d="m 513.15,805.4 0,10.97 -18.74,0.17 0,-11.14 z"
2956+ id="path41472-8"
2957+ inkscape:connector-curvature="0"
2958+ sodipodi:nodetypes="ccccc"
2959+ overflow="visible" />
2960+ <path
2961+ d="m 606.15,0.5 0,20.82 0.28,0 0.9,0.34 1.88,0.28 0.92,0.63 1.06,0.1 -0.88,-0.9 -0.56,-1 0.9,-0.17 2.07,-0.1 4.26,0.16 1.87,-0.72 1,0.72 0.97,-0.62 0.9,1 0.92,0.53 0.9,-0.25 -0.9,-0.38 0.18,-0.9 3.88,-0.35 3.12,0.1 1.1,0.43 1.87,-0.3 2,0.4 1.97,0 1,-0.3 1.16,-0.1 2.97,0.3 1,0.28 1,0.16 0.96,0.72 1.1,-0.34 1,0.34 -1,0.1 0.9,0.46 0.97,0.16 1,-0.53 2.07,-0.2 3.96,0.48 3.7,0.72 1.15,0.44 1,0.9 -1.97,0.73 -1,0.1 -2.87,0.62 -3.06,0.1 -7.8,-0.54 -2.82,0.1 -3.16,0.26 -0.98,0.47 -2,0.1 -1.78,0.52 -2,0 -1.97,-0.53 -2.06,-0.38 -1.96,0 0.97,0.2 1.2,0 0.87,0.24 0.9,0.72 -3.93,0.38 -3.06,0.7 -7.13,0.4 0.63,0.86 -0.35,0.9 1.8,-1.43 2,-0.42 3.14,0.1 0.88,0.43 -0.35,0.9 0.97,-0.7 0.1,-0.9 1,-0.3 7.12,-0.43 0.96,0.72 1.1,-0.82 2.96,-0.82 1.78,-0.1 2.1,-0.52 3.06,-0.1 2.97,0.3 1.06,0.14 1,0.38 1.77,-0.2 3.7,0.3 2,-0.1 2.15,-0.53 4.93,-0.63 1.1,0.53 -0.1,0.9 0.2,0.88 -1.92,1.4 -2.06,0.86 3.16,-0.62 1.97,-0.9 2.06,0.1 0.9,0.6 -0.18,0.92 1,-0.2 1,-0.7 0.97,-0.17 1,0.62 1.8,0.34 0.98,-0.25 0.28,0.1 0,-29.04 -69.55,0 z m 2.53,24.66 -2.16,0.1 -0.37,-0.07 0,0.3 1.62,-0.06 0.9,-0.28 z m -2.53,1.53 0,0.06 0.53,0.03 -0.53,-0.1 z m 69.56,7.93 -0.27,0.1 -2.88,0.43 -2.97,0 -1.96,0.44 -2,0.72 -1.97,0.37 -4.94,0.1 -8.18,-0.54 -4.06,0.25 -2.06,0.38 -1.97,0 c -0.85,-0.32 -3.15,-0.57 -5.25,-0.7 l 0.37,0.08 0.82,0.06 1.96,0.37 1,0.62 c -4.67,1.6 -9.6,1.3 -14.2,2.97 l 0.08,0.9 0.35,0.9 0.9,-0.1 1,-0.52 2.98,-1 3.97,-0.63 1.06,0 4.06,-0.72 0.9,0.72 0.88,-0.9 2,-0.44 7.82,-0.37 5.84,0.1 2.9,0.18 0.88,0.83 0.2,0.87 -0.54,0.9 -2.97,1.1 -3.97,1.16 -1.97,0.37 -1.1,0.8 1,0.73 -1,0.1 1.1,0 1.87,-0.47 0.9,-0.54 6.94,-1.82 0.92,-0.53 1.96,-0.36 1,0.1 0.88,-0.16 0.56,-2.82 1.88,-0.8 3.78,-0.17 1,-0.2 0.53,0 0,-2.87 z m -41.43,1.47 c -0.3,0 -0.58,0.04 -0.78,0.06 l 1.87,-0.06 -1.1,0 z m 41.44,9.5 -0.43,0.44 -1,0.47 -0.62,0.9 -3.6,2.7 -0.72,0.9 -0.18,0.9 -0.9,0.64 -1.1,0.34 1,0.1 -0.9,0.46 -0.54,0.97 2.98,-1.52 0.44,-0.87 0.9,-0.46 -0.1,-1 1,0 1.9,-0.78 0.9,-0.82 1,-0.65 0,-2.7 z m 0,107.8 -1.62,1 -1.87,0.17 0.98,0.8 -1.88,0 -0.9,0.3 -1,-0.1 0.9,0.62 -0.1,0.9 -0.87,0.28 -1.9,-0.47 0.9,0.83 -1.8,0.7 -0.9,0.1 0.17,0.9 -0.9,0.1 -0.88,-0.27 -1,0.47 1,0.06 -0.72,0.9 -0.9,0.53 -0.9,-0.35 0.52,1 -0.9,0 -0.63,0.88 -0.98,0.56 -0.9,0 -0.82,0.97 -1.9,-0.17 -0.88,0.35 -0.47,0.53 -0.9,-0.15 -0.97,0.53 -0.9,0 -1.88,0.53 -1,-0.24 -1.82,1.07 -0.9,0.37 -0.97,-0.37 -1.8,0.9 -0.97,-0.28 -0.72,-0.9 -0.8,0.18 0,1.1 -0.9,-0.2 0.7,0.9 -0.9,0.36 -0.8,-0.9 -1.8,-0.27 0.88,0.35 0.72,1 -0.87,0.18 -1,-0.1 -0.9,0.2 -1.8,-0.63 -0.9,0.16 -0.37,-0.9 -0.9,-0.36 -0.88,-0.9 -0.9,-0.45 -0.3,-0.9 -0.9,0.36 0.47,0.88 0.9,0.28 0.63,0.9 -0.9,0.1 0.9,0.62 -0.1,0.9 0.45,0.9 -0.9,0.55 -0.88,-0.1 -0.9,0.43 -0.92,0.72 -0.9,0.38 -0.72,0.9 -0.9,0.16 0.2,0.9 -0.98,0.46 0.78,0.88 -0.87,0.2 0,0.9 -1.8,1 -0.55,1.68 -0.62,0.9 -0.9,0.3 -0.2,-0.92 -0.43,1.88 -0.56,0.9 -1.8,0.53 -0.9,-0.33 0.38,0.9 -0.9,-0.37 -1,0 -0.9,-0.53 0.9,0.9 -0.63,0.9 -0.9,-0.08 0,0.86 -1,0.66 -0.88,-0.47 -0.9,-0.72 -0.82,0.9 -1.8,0.44 0.08,-0.87 -0.72,1.78 c -0.92,-0.15 -1.2,-0.4 -1.43,-0.62 l 0,0.1 0.28,0.18 -0.28,0.97 0,380.76 0.28,0.1 1.44,1.27 1.15,0.16 0.9,0.6 3.8,-0.05 0.9,0.06 0.96,0.4 0.66,0.9 0.44,0.96 0.53,2.44 0.73,1.9 0,0.82 0.47,1.06 -0.28,1 0.37,-0.37 0.15,0.9 0,0.92 -0.44,0.44 0.3,0.1 -0.2,1 0.25,0.43 -0.25,1 -0.62,1.52 0,0.53 -0.63,1.8 -1,1.7 -1.62,1.9 -0.1,-0.1 -0.53,0.4 0,0.33 -2.06,2.35 -0.56,0.9 -0.63,0.2 -1.78,1.33 -0.9,-0.37 0.25,1.08 -0.97,0.2 0.43,0.86 -0.9,0.57 -0.44,0.88 0.28,0.1 -0.37,0.7 0,216.33 -26.4,0 0,13 26.4,0 0,25.38 69.56,0 0,-374.52 -20.96,0 0,-23.7 20.97,0 0,-85.27 -44.27,0 0,-27.2 44.28,0 0,-137.41 -11.69,0 0,-30.25 11.63,0 0,-24.09 z m -34.74,14.42 0.9,0.53 -0.96,-0.1 0,-0.34 0.06,-0.08 z m -34.44,14.94 -0.37,0.06 0,1.06 0.37,-0.4 0.88,-0.57 -0.88,-0.14 z m 4.03,2.78 -0.18,1 -0.54,0.34 -0.18,-0.9 0.9,-0.44 z m -2.78,1.97 0.9,0.2 -0.27,0.7 -0.63,-0.9 z"
2962+ id="path4070-1"
2963+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2964+ inkscape:connector-curvature="0"
2965+ overflow="visible"
2966+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2967+ <path
2968+ d="m 675.72,0.52 0,29 1.87,0.72 0.9,0.15 2,0.8 0.34,0.9 -3.87,1.35 -0.53,0.9 -0.72,0.3 0,2.87 0.34,0 1,0.28 0.72,0.97 0.28,2.72 -0.53,1.86 -0.47,0.9 -1.34,1.35 0,2.7 0.9,-0.53 1.07,-0.53 c 2.07,-0.8 3.74,-2.7 5.7,-3.88 0.2,-0.12 0.4,-0.2 0.6,-0.3 1,-0.53 2.13,-0.83 3.4,-0.7 l -0.96,0.56 -0.2,1.97 1,-0.35 0.98,-0.66 2,-0.63 1.87,0.18 0.9,0.72 1.06,-0.18 1,0.55 1.82,-0.2 -0.38,-0.9 1,-0.1 0.9,-0.43 -1,-0.37 0.2,-1 0.96,-0.06 1.1,0.33 L 699,40 l 0.97,0.15 0.9,-0.25 1,0.1 1.07,-0.9 1,0.24 1.9,-0.16 1.8,0.25 2.96,-0.26 2,0.15 2.87,0.8 3.88,0.57 0.96,0.25 0.9,0.28 1.98,1.15 0.9,0.2 0,0.9 -0.9,0.53 -2.88,1 -0.62,0.9 -1.88,0.35 -0.9,0.9 -1.1,0.63 -0.9,0.2 -2.88,0 -0.97,0.18 0,0.87 1.06,0.67 -0.2,0.87 -4.84,0.63 -0.9,1 -2.78,0.37 -2.97,-0.47 -1.97,0.1 -0.9,-0.53 -1,0 -0.1,0.9 -1,0.16 -0.87,0.56 -1,0.16 -3.07,-0.16 -1.06,-0.28 c -3.58,-0.7 -3.54,0.57 -5.25,0.94 -0.14,0.03 -0.3,0.04 -0.47,0.06 -0.5,0.05 -1.16,0.04 -2.03,-0.1 l 1,0.3 1.06,0.6 0.92,-0.6 1,-0.2 0.87,-0.63 1,-0.18 1.9,0.18 0.97,0.35 2,0.1 2.06,0.43 2.97,-0.25 1.97,-0.63 1.9,0.72 3.07,0.16 0.87,0.2 -0.6,0.9 -0.98,0.7 -0.9,-0.27 0.43,0.9 -1.87,0.82 -0.9,0.2 -3.9,-0.1 -1.86,0.27 -5.88,-0.8 -0.96,0.15 -1.9,1.47 -0.98,0.25 -0.28,0.72 0.28,0.37 -0.28,0.54 -0.28,1 1.9,0.8 0.9,-0.36 0,-0.2 -0.9,0.2 0.25,-0.9 0.65,-0.9 2.06,-0.54 0.98,-0.54 0.9,-0.1 c 2.6,0.85 4.78,-1.47 7.85,0.1 l -0.37,1.16 -1.78,1.72 -1,0.62 -0.9,0.2 -3.8,-0.54 -0.96,0.44 -1,0.8 0.2,0.92 -0.83,0.97 0.53,0.9 -0.2,0.9 -0.62,0.9 0.92,-0.9 1.97,0 0.08,0.9 -1,-0.46 -0.78,1 -0.9,0.62 -1.35,0.28 0,0.63 0.44,0.62 -0.45,0.9 -0.47,0.2 -1.87,-0.2 -0.9,0.1 -1,0.34 -0.9,0.7 0.46,0.92 -1.9,0.38 1,0.1 1.1,0.52 -0.82,0.9 -1,1.88 0.37,1 -0.9,0.8 -1,-0.08 0.9,0.72 -1,0.53 -0.33,1 0.87,-0.43 -0.72,0.97 -0.87,0.9 0,0.91 0.97,-0.1 1,0.54 -0.9,0.9 1,-0.53 0.43,-0.9 0.1,-1 1.62,-1.88 1,-0.4 0.97,0.82 1.9,0.72 2.16,0.56 1.87,0.25 0.9,0.54 0.82,1 -1.88,0.36 -2.97,-1.28 -0.9,-0.16 -1,0.35 -1,-0.2 -0.98,0.48 0.97,0.34 1.1,0.62 -1,0.18 1,0.47 -2.97,-0.37 1.87,0.53 2.9,0.47 -0.9,0.25 -1.9,0 1.9,0.28 1.78,-0.1 1,0.3 1.97,1.14 0.65,-0.9 0.97,-0.25 2,0.25 0.87,0.9 0.46,2.78 -0.47,0.9 -0.97,0.64 -0.9,0 -1,-0.36 -2.8,-0.37 -1.9,-0.72 -0.78,-0.1 -0.56,0.2 -2.9,-0.45 -1,0.44 1,0.63 -1.86,-0.16 -2,0.26 1.9,0.1 1.8,0.28 -1.9,0.53 -1,0.53 -0.9,0.72 -0.87,-0.25 -0.8,-1 -1,-0.72 -0.92,0.1 -0.34,0.9 -0.18,0.15 0,0.88 0.2,0.03 0.6,0.92 0.73,-0.9 1,0.18 -0.1,0.9 0.98,0.2 -0.97,0.43 0.97,0.2 -1.88,0 -0.9,0.14 0.9,0.1 2.78,-0.16 -0.34,0.98 -0.1,0.9 0.96,-0.34 1.9,0.16 1,0.47 0.88,0.8 1,-0.18 -1.96,-0.73 -0.9,-0.9 1,0.18 1.77,0.72 1,-0.28 1.63,0 0.7,0.9 -0.36,0.9 -0.97,0 -1.1,0.54 -0.9,0.18 -1.97,-0.18 -3.7,0.28 -0.9,0.15 3.8,-0.15 1.96,0.1 0.9,0.24 1,0.1 0.32,-0.04 c 0.52,-0.67 1.33,-1.1 2.25,-1.1 1.6,0 2.88,1.3 2.88,2.88 0,1.1 -0.63,2.02 -1.53,2.5 l 0.03,0.44 -0.25,1.78 -0.9,0.9 -0.9,-0.08 -0.98,-0.35 0,-1.1 -1,-0.35 -1.9,0.44 -1.88,-0.73 -0.9,-1 -0.9,-0.53 -2.9,-1.06 -0.96,0.06 0.9,0.2 2,0.8 0.86,0.8 -1.87,-0.27 -1,0 -1.9,-0.34 1.8,0.44 1,0 1.9,0.28 0.88,0.72 1,0.37 0.9,0.63 1,0.34 0,0.92 c -2.82,-0.63 -2.87,0.6 -4.7,1.15 l -1.9,-1.06 -0.87,-0.18 0.98,0.47 0.72,0.87 0.9,0.28 1,-0.28 1.88,-0.97 2,0.53 -0.56,1.87 0.72,0.9 -0.97,0.64 -0.9,0.18 3.77,-0.28 0.9,0.47 0.98,0.26 0.9,-0.25 0.9,-0.52 0.64,0.87 1,0.82 -0.38,0.9 -0.62,0.9 -0.9,0.45 -0.98,0.1 -1.62,-0.26 -1,-0.75 -0.82,-0.86 -1.8,0 -1.98,-0.3 -1.87,0.3 -0.92,-0.63 -1,-0.46 1,0.9 -0.2,1 -0.9,0.35 -1.8,0.1 c -0.06,0 -0.1,-0.04 -0.16,-0.05 -0.12,0 -0.25,-0.04 -0.38,-0.06 -1.76,-0.23 -3.65,-0.65 -5.56,-1.04 l -0.06,0 -2.16,-0.4 c -1.28,-0.22 -2.54,-0.37 -3.72,-0.35 l -0.06,0 -1.4,0.23 -0.25,0.03 -0.35,0.06 -1.78,0.6 -0.22,0.06 -0.2,0.1 -3.33,1.77 -0.25,0.16 c -0.46,0.32 -0.92,0.62 -1.34,0.95 -2.1,1.76 -3.86,4.18 -5.32,7 -0.36,0.7 -0.7,1.44 -1.03,2.2 -3.57,8.23 -4.92,18.9 -4.7,26.17 l 3.5,-0.72 0.46,-0.1 0.88,0.4 1,-0.2 0.9,0.53 1.88,-0.34 0.3,0.5 1.14,-0.23 0.28,-0.57 0.72,-0.9 1,-0.53 0.9,0.1 0.88,0.33 0.9,-0.1 2.8,-1.15 0.9,-0.28 1,0 -0.38,1 1,-0.62 0.9,0.34 0.9,0.1 3.8,1.27 0.87,0 c 1.8,0.82 3.74,0.4 5.6,0.25 0.6,-0.05 1.2,-0.07 1.8,0 l -0.9,0.9 -0.9,0 0,24.07 69.46,0 0,-176.89 -69.43,0 z m 9.1,35.9 1.05,0.47 0.82,0.9 0.9,0.62 0.9,0.97 -1,0.46 -1.06,-0.28 -1.9,-1.53 -0.73,-0.9 1,-0.73 z m 7.37,4.16 0.9,0 1.87,1.25 -0.9,0.53 -2.88,-1.25 1,-0.52 z m -3.17,16.94 c 0.9,-0.08 2.07,0.36 2.72,1.06 l -3.88,0.97 c -0.36,-1.4 0.26,-1.96 1.16,-2.03 z m 9.1,10.87 0.7,0.87 -1.96,1.18 -0.37,-1 0.8,-0.9 0.83,-0.16 z m -7.75,2.87 1,0.53 -0.2,0.9 -0.96,0.2 0.25,0.43 -0.97,0 -0.9,-0.72 1.77,-1.33 z m 5.06,0.8 0.62,0 -0.1,0.88 -0.52,-0.87 z m -1.1,1.8 0.9,0.08 -0.9,0.63 -1,0.2 1,-0.92 z m -3.25,2.7 0.27,0.73 -0.9,0.15 0.62,-0.87 z m -2.26,0.35 0.57,0 0.16,0.9 -0.72,-0.9 z m 2.82,0.53 0.87,0.3 -1.44,0.6 0.56,-0.9 z m 0.62,1.63 0.44,0.1 -0.9,0.8 0.46,-0.9 z m -10.8,1.62 0.6,0 -0.6,0.9 0,-0.9 z m 3.86,0.3 1.9,0 0,0.33 1.07,0.47 1.83,0 -0.1,0.9 -1.8,-0.28 -0.98,-0.28 -0.9,-0.44 -1,-0.7 z m 12.6,0.6 0.37,0.2 0.36,0.9 -0.53,0.88 -1,0.47 -0.97,0 0.15,-0.9 0.73,-0.9 0.9,-0.64 z m -6.2,11.54 0.98,0.06 0.9,0.82 -0.18,1.9 0.37,1.88 -0.08,0.9 0.53,1.44 -0.53,0.9 -0.1,-0.9 -1,-1.78 -0.1,-1 -1.05,-1.9 0.44,-0.88 1,-0.28 -0.9,-0.28 -0.25,-0.88 z m 51.2,50.28 -0.1,1 -0.9,0.63 -0.97,0.28 -1,0 -1.88,1.34 0.43,-1 1.88,-0.72 0.66,-0.96 1.88,-0.58 z m -67.22,64.32 0,137.43 -44.28,0 0,27.2 44.28,0 0,85.27 -20.97,0 0,23.7 20.97,0 0,374.55 69.47,0 0,-96.7 -34.83,0 0,-43.7 34.82,0 0,-126.82 -37.23,0 0,-9.6 37.22,0 0,-52.46 -0.1,0 -0.9,-0.08 -6.1,-2.88 -1.82,-1.34 -0.72,-0.8 -1.97,-1.73 -0.3,-0.44 -1.33,-1.1 -1.28,-0.34 -0.82,-0.48 0.18,-0.34 -0.18,0 -1.25,-0.9 -1.07,-0.44 -0.65,-0.9 -0.62,-0.4 0.1,-0.17 -2.8,-1.25 -0.9,-0.53 -0.1,-0.64 0.92,-0.37 -0.62,0.08 -0.9,-0.63 -0.3,0.1 -1.77,-1 0.26,-0.72 -0.35,-0.9 -0.9,-0.16 -0.24,-0.9 0.87,0.52 -0.34,-0.3 0.18,-0.24 0.96,-0.37 -0.9,-0.1 0.1,-0.35 -0.88,0 0.15,-0.9 1,0 -0.52,-0.45 -0.9,-0.37 -0.1,-0.72 -0.9,-1.8 -0.54,-0.35 -0.18,-0.9 -0.35,0.47 0.26,-0.9 -0.1,-0.1 -0.52,0.43 -1,-0.7 0,-0.73 -1.06,0 -0.9,-0.72 -0.82,-1.63 0.1,-0.15 -0.92,-0.57 0.57,-0.96 -1.52,0.24 0,-0.9 -0.9,0.46 -0.54,-1 0.25,-0.72 -1.07,0.28 0.7,-0.9 0.9,-0.63 -1.45,0.2 0.28,-0.92 1,0 0.88,0.35 0.37,0 -0.36,-0.15 0,-0.72 -2.5,0.34 -0.63,0.44 -0.9,0.2 0,-0.92 0.82,-0.25 -1.1,0.1 -0.9,0.42 -0.03,-0.03 -0.95,-0.5 0.34,-1 0.6,-0.4 0.3,-0.23 -0.3,0.1 -0.86,0.24 -0.37,0.4 -1.53,-0.64 -0.25,-0.37 0.7,-0.9 0.82,0 -0.66,-0.9 -0.53,0.16 -0.28,-0.53 0.1,-0.9 -0.26,-0.63 -0.1,-0.9 0.72,-0.45 0.53,0.9 1.8,0 0,-0.6 1.9,-0.1 0.9,-0.3 0.43,0 -0.44,-0.18 -1,0.38 -1.78,0.1 -0.9,0.43 -1,-0.72 0,-0.44 0.37,-1 0,-1 -0.47,0.72 -0.53,0.28 1.1,-1.62 -1.44,1 c -0.07,-0.53 -0.2,-0.98 -0.4,-1.38 -0.08,-0.2 -0.2,-0.38 -0.3,-0.56 -0.1,-0.18 -0.24,-0.34 -0.38,-0.5 -0.13,-0.16 -0.28,-0.32 -0.43,-0.47 -0.15,-0.14 -0.28,-0.3 -0.42,-0.4 l -0.9,-0.86 1,-0.44 0.43,-0.43 1.1,-1.38 1.44,-2.5 c -0.03,-0.33 -0.06,-0.62 -0.06,-0.9 l 0,-0.33 c 0,-0.08 0.03,-0.16 0.03,-0.25 l 0.04,-0.6 0.07,-0.37 0.16,-0.8 c 0.1,-0.4 0.22,-0.75 0.35,-1.1 0.2,-0.52 0.42,-1.02 0.63,-1.5 0.14,-0.32 0.28,-0.65 0.4,-0.97 l 0.1,-0.25 c 0.12,-0.3 0.22,-0.6 0.3,-0.9 0.02,-0.02 0,-0.03 0,-0.04 l 0.08,-0.23 c 0.06,-0.2 0.12,-0.43 0.16,-0.65 l 0.03,-0.13 0.02,-0.32 0.04,-0.34 c 0,-0.08 0.02,-0.15 0.03,-0.22 l 0,-0.16 0,-0.78 -0.2,-1.88 -0.3,-1 -0.7,-2.15 -0.88,-0.72 0,-0.72 1.07,-1.9 0.17,-1.78 -1.34,-2.62 -0.56,0.47 -1.16,-2.07 -0.33,-0.28 -0.28,0.53 -0.3,1.2 -0.18,-0.9 0.8,-4.7 0.48,-0.9 0.72,-0.9 0.9,-0.36 0.44,-0.9 0.2,-0.92 0.6,-0.97 0,-0.8 0.33,-0.53 1.3,-2.2 0.2,-0.87 -0.92,0.8 0.63,-0.9 1.54,-1.27 1.62,-1.78 0.88,-0.72 0.56,-0.9 0.44,-3.16 1.34,-2.7 0.28,-1.08 3.6,-2.26 0.72,-0.9 0.28,-0.8 -23.35,-0.1 0,-30.54 33.86,-35.56 11.25,-12.13 -0.6,-0.83 1.08,-0.9 0.28,-0.48 -0.38,0.37 -0.9,0.25 1,-0.97 -1,0.1 0.18,-0.9 0.47,-0.73 -0.9,0.34 0.1,-0.87 0.14,-0.2 -0.87,0.2 -0.38,-0.4 0.1,-0.27 -0.63,-0.88 1.87,-1.43 0.9,0.06 0.9,-0.34 1.35,-0.3 0,-0.42 -0.18,0.1 0.47,-0.92 0.9,-0.62 1.76,0.2 0.13,-49.7 -0.4,0.1 -0.52,1 -0.72,-0.3 -0.72,0.92 -0.9,0.25 -0.44,-0.63 -0.63,0.1 0.44,0.9 -4.2,1.53 -0.9,-0.46 -0.92,0.27 -0.9,-0.2 1.8,-0.9 -1.87,0.2 -0.7,0.37 0,-0.47 1.6,-0.97 -1.6,0.34 -0.9,0 -0.92,-0.44 0.72,-0.9 1.1,-0.28 0.96,-0.53 -0.97,-0.1 -1.82,0.27 0.44,-0.9 2.34,0 -0.25,-0.9 1.8,-1.07 2.34,-0.56 1,-0.07 -0.9,-0.1 0,-0.65 -0.92,0.9 -1.87,0 -1.38,0.48 1.9,-1.8 0.1,-0.92 0.54,-0.9 1,0.1 0.35,-0.17 -0.34,-0.7 -1.8,0.24 -0.54,-0.97 -0.9,0.53 -1.07,-0.53 -0.66,-0.9 0.65,-0.1 0,-0.47 1.43,0 -0.9,-0.15 0.43,-0.9 0.9,0 -0.9,-0.63 -0.62,-0.2 0.18,-0.9 -0.28,-0.9 -0.25,-0.16 0,-0.56 0.96,0.28 1,-0.38 0.9,0.2 0.88,0.55 0.28,0.35 0.9,-0.9 1.9,0.55 -0.64,-0.9 1.34,-0.8 0.38,0 0.44,-0.2 0.37,-0.9 -2.7,0 0.9,-0.82 0.9,-0.44 -0.62,-1.1 0.72,-0.88 1.87,-0.18 0.9,0.18 0.4,0.88 0.14,0 0.4,-0.6 0,-0.87 -0.1,-0.3 0.1,0 0,-52.8 -69.49,0 z m 27.9,273.06 0.54,-0.1 -0.44,-0.1 -0.1,0.2 z m 4.66,3.06 0.47,0.2 0.34,-0.2 -0.82,0 z m 25.3,-215.25 0,0.73 -0.9,-0.38 0.9,-0.34 z m -24.92,218.42 -0.72,0.18 -0.2,0.82 0.38,-0.1 0.54,-0.9 z m -0.9,1 -0.2,0.1 0.2,0 0,-0.1 z m -0.2,0.1 -1.68,-0.3 -0.2,-0.37 -0.27,0.47 -0.2,0.03 -0.7,0.16 0.7,0.04 2.02,0.03 0.34,-0.06 z"
2969+ id="path4289-0"
2970+ inkscape:connector-curvature="0"
2971+ overflow="visible"
2972+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2973+ <path
2974+ d="m 742.93,143.4 -1.88,0.58 -0.65,0.96 -1.88,0.72 -0.44,1 1.88,-1.34 1,0 0.97,-0.28 0.9,-0.63 0.1,-1 z"
2975+ id="path10444-8"
2976+ inkscape:connector-curvature="0"
2977+ overflow="visible"
2978+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2979+ <path
2980+ d="m 745.2,0.52 0,176.98 -81.11,0 0,30.24 81.09,0 0,52.78 -0.1,0 0.1,0.3 0,0.88 -0.4,0.6 -0.14,0 -0.38,-0.88 -0.9,-0.18 -1.88,0.18 -0.72,0.88 0.63,1.1 -0.9,0.43 -0.9,0.8 2.7,0 -0.36,0.92 -0.44,0.2 -0.38,0 -1.34,0.8 0.63,0.9 -1.87,-0.56 -0.9,0.9 -0.3,-0.35 -0.86,-0.56 -0.9,-0.2 -1,0.38 -0.98,-0.28 0,0.56 0.24,0.16 0.28,0.9 -0.18,0.9 0.62,0.2 0.9,0.62 -0.9,0 -0.43,0.9 0.9,0.16 -1.44,0 0,0.47 -0.66,0.1 0.65,0.9 1.06,0.53 0.9,-0.53 0.53,0.97 1.8,-0.25 0.35,0.7 -0.34,0.17 -1,-0.1 -0.52,0.9 -0.1,0.92 -1.9,1.8 1.37,-0.47 1.88,0 0.9,-0.9 0,0.65 0.9,0.1 -1,0.06 -2.34,0.56 -1.8,1.06 0.26,0.9 -2.34,0 -0.44,0.9 1.8,-0.27 0.98,0.1 -0.97,0.52 -1.1,0.28 -0.72,0.9 0.9,0.44 0.9,0 1.6,-0.34 -1.6,0.97 0,0.47 0.73,-0.38 1.9,-0.2 -1.82,0.92 0.9,0.2 0.9,-0.3 0.9,0.47 4.23,-1.53 -0.42,-0.9 0.62,-0.1 0.44,0.63 0.9,-0.25 0.72,-0.9 0.72,0.27 0.53,-1 0.4,-0.1 -0.14,49.7 0.13,0 0.9,0.62 0.96,0.24 0.28,0.38 0.9,-0.47 0.54,0.2 3.06,-0.1 0.9,-0.35 0.92,0.44 c 2.54,-0.16 5,1.55 7.56,0.62 l 0.06,0.2 c 2.25,-1.47 3.2,0.36 4.7,0.36 l 0.36,-0.47 0.88,-0.25 1.53,0.82 0.9,0.06 1.1,-0.06 0.97,-0.28 0.9,-0.47 c 2,-4.1 1.42,-7.36 2.07,-11.6 l 0.9,0.1 0.8,0.9 0.2,0.97 0.7,0.8 0.2,0.64 -0.1,-0.63 -0.52,-0.9 -0.2,-0.97 -0.46,-0.9 -0.88,-0.73 -0.9,-0.53 -0.28,0 0.62,-0.47 0.2,-0.9 -0.3,-1.78 0.1,-0.47 -0.87,0 -0.9,-0.53 -0.72,-0.2 -0.56,-0.43 -0.63,-0.9 -0.98,-0.9 0.63,-1.17 -0.9,-0.53 0.18,-0.9 0.9,0 0.98,0.43 -0.9,-0.53 -1.16,0 -0.9,0.1 -0.35,-1 0.43,-0.35 -1.87,0 -0.9,-0.73 -0.63,0.9 -0.47,-0.9 -0.9,-0.62 -2.98,-0.66 -0.87,0.27 -0.9,-0.9 -0.9,-0.44 -0.54,-0.1 1.78,-0.37 -0.87,-0.53 -0.1,-0.9 0.97,0.37 -0.1,-0.63 -1.77,0.35 -0.1,-0.9 0.9,-0.73 0.92,-0.35 1.77,-0.38 1.62,0.28 0.7,-1 0.92,0.1 0.9,-0.25 1.54,1.78 0.87,-0.1 1.2,-0.62 1.43,0.72 0.18,0.37 0.1,-0.18 -0.2,-0.2 2.8,-0.43 -0.82,-0.8 0.1,-0.92 -0.54,-1.87 -0.72,-0.9 -0.62,-1.82 1.5,0.28 1.37,-0.27 0.1,0.9 0.8,1.26 1,-0.36 0.9,0.25 0.9,0 1.78,0.37 2,-0.82 0.8,-0.18 0.17,-0.16 -1.06,0.17 -0.64,-0.9 c 2.8,-2.98 4.24,-0.38 6.47,-3.7 l 0.53,0.2 -0.43,-0.92 0.28,-0.15 -0.18,-1.8 0.2,-0.92 0.86,-0.9 3.16,-0.63 2.97,-1.53 2.07,-0.53 0.9,0.36 0.9,-0.2 1.36,0.1 0.28,0.54 -0.27,-0.63 -1.07,-0.47 -0.9,0.38 -0.9,-0.38 -0.38,-0.87 1.53,-0.1 0.9,0.63 0.92,0.34 -0.2,-0.43 -0.9,-0.28 0.82,-0.17 -0.44,-0.38 -0.8,0.1 -0.54,-0.63 0.34,0 1,0.53 0.44,0.1 0.9,-0.38 1.1,-0.15 -1.1,0 -1.43,-0.72 -0.34,-0.9 0.44,0 1.63,-1.82 0.62,-1.25 0.28,-1.8 0.25,-0.83 1,-0.06 1.25,-0.65 0.9,-0.64 0.1,-0.34 1,-0.9 1.7,-0.54 1.7,-0.1 1.82,-0.37 0.87,0.92 1.3,0.53 0.7,-0.35 -0.62,-0.28 -1,-0.18 0.1,-0.88 0.7,-0.9 0.92,-0.3 0.53,0.1 0,-28.24 -1.2,-0.2 -0.96,-0.43 -1.82,0.15 0.47,-0.88 0.87,-0.56 -0.53,0.3 -1.98,-0.2 -0.28,-0.25 -0.9,-0.28 -0.97,-0.72 -0.9,-0.43 -0.82,-0.9 -0.28,-0.57 0.56,-0.97 0.25,-0.9 0.9,0.62 0.9,0.2 0.54,0.27 0.54,-1 1,-0.28 -1,0.17 -0.97,0.72 -0.3,-0.54 -0.18,-0.9 0.9,-0.82 1,-0.53 -1,0.35 0.44,-0.43 -0.87,-0.38 0.33,-0.25 -0.9,-0.2 0.9,-0.18 -1.87,0.1 0.43,0.9 -0.9,0.34 -0.17,-0.97 -0.66,0.96 -0.7,-0.62 -0.1,-0.82 0.18,-0.87 0.9,-0.2 -0.62,0.98 0.9,-0.34 0.16,-0.83 0.9,0.44 0.56,-0.86 0.72,0 0.97,-0.72 -0.97,0.53 -0.9,-0.1 -0.82,-0.37 0.35,-0.63 0.9,-0.43 -0.08,-0.1 1,-0.72 0.1,-1 0.9,-0.8 0.87,-0.45 0.1,0.9 -0.17,0.92 0.88,-1.82 0.9,-0.37 -1.96,0.2 -0.9,0.36 -0.72,0.9 -0.9,0.35 -0.54,1.52 -0.53,0 0.16,-1.43 -0.87,0.17 0.06,-0.9 -0.88,1 -0.9,-0.66 -0.2,-0.86 0.82,-0.9 0.9,0.52 0.1,-0.1 -0.82,-0.43 0.9,-0.8 0.45,0.7 0.2,-0.28 0.24,-0.9 -0.96,0 -1.44,0.9 -0.38,-0.9 -1,-0.72 1.3,0.37 0.9,0.44 -0.48,-0.87 0.9,-0.38 -1.18,0.27 -0.87,-0.1 0.42,-1 2.8,-1 3.33,0.2 1,-0.44 0.87,0.53 0,0.9 0.9,0 -0.33,-0.9 1.05,-0.44 0.9,0.25 0.1,-0.1 0,-0.55 -0.1,0.03 -0.28,-0.1 -0.34,-0.53 0.53,-0.9 -0.9,0.8 0.46,0.92 -0.9,0.18 -1,0 0.56,-0.47 -1.9,0 -0.2,-0.1 0.48,-0.77 -1.3,1.5 -0.86,-0.53 -1.9,0 -1.88,0.8 -1,-1 -0.9,-0.43 1,-0.43 1.77,-0.2 -1.88,0.1 -0.9,-0.3 1.9,-0.52 0.87,0.2 0.9,-0.1 -0.9,0 -1.8,-0.38 0.92,-0.25 -1,-0.28 1,0.1 -1,-0.2 -0.9,0.1 1.8,-0.38 -0.9,0.1 -0.9,-0.26 c 1.24,-2.07 2.58,-2.28 4.3,-0.57 l 1.9,-0.72 0.92,0.2 0.97,-0.35 c -2.8,0.3 -4.57,-0.4 -7.37,-0.56 l 0.9,-0.63 -1,-0.52 0.9,-0.28 0.73,0.9 -0.25,-0.9 1.8,-0.35 0.46,0.88 1.78,-0.06 -0.9,-0.38 -0.53,-1 0.9,-0.54 1,0.1 0.64,1 -0.2,-0.63 0.1,-0.9 0.9,-0.38 0.98,0.72 0.37,1 0,0.43 0.34,-0.87 1,-0.1 -0.9,0 -0.73,-0.9 -0.9,-0.38 -0.96,0.2 -1.2,-0.2 1.1,-0.53 -1.1,-0.34 1.92,-0.28 0.96,0.28 0.9,-0.2 0.92,0.1 0.8,0.35 0,-1.25 -0.27,-0.1 0.28,-0.12 0,-0.1 -1.25,0.32 -0.9,-0.53 0.9,-0.28 -1,-0.72 1,-0.44 0.88,0.26 0.1,0 0.27,-0.2 0,-206.96 -69.5,0 z m -47.1,67.88 -0.8,0.15 -0.82,0.9 0.38,1 1.96,-1.18 z m -7.75,2.87 -1.78,1.34 0.9,0.73 0.97,0 -0.25,-0.44 0.97,-0.2 0.17,-0.9 z m 5.07,0.8 0.53,0.88 0.1,-0.87 -0.63,0 z m -1.1,1.8 -1,0.9 1,-0.2 0.9,-0.62 z m -3.25,2.7 -0.63,0.88 0.9,-0.15 z m -2.26,0.35 0.72,0.9 -0.15,-0.9 z m 2.82,0.53 -0.57,0.9 1.43,-0.6 z m 0.62,1.63 -0.47,0.9 0.92,-0.8 z m -8.8,1.53 -1,0.4 -1.64,1.86 -0.1,1 -0.43,0.9 -1,0.54 0.92,-0.9 -1,-0.54 -0.97,0.1 0,-0.38 c -0.27,0.1 -0.53,0.23 -0.78,0.37 -0.23,0.14 -0.42,0.3 -0.63,0.47 0,0.02 -0.04,0.02 -0.06,0.03 -0.2,0.17 -0.36,0.35 -0.53,0.54 l -0.1,0.08 c -0.15,0.18 -0.3,0.37 -0.43,0.56 l 0,7.56 0.2,-0.15 0.33,-0.9 0.9,-0.1 1,0.72 0.82,1 0.87,0.25 0.9,-0.72 1,-0.53 1.9,-0.53 -1.8,-0.3 -1.9,-0.08 2,-0.25 1.87,0.17 -1,-0.63 1,-0.44 2.9,0.44 0.55,-0.2 0.78,0.1 1.9,0.73 2.8,0.37 1,0.35 0.9,0 0.96,-0.64 0.46,-0.9 -0.47,-2.8 -0.88,-0.9 -2,-0.24 -0.97,0.25 -0.66,0.9 -1.98,-1.15 -1,-0.28 -1.78,0.1 -1.9,-0.3 1.9,0 0.9,-0.24 -2.9,-0.47 -1.87,-0.53 2.97,0.37 -1,-0.47 1,-0.18 -1.1,-0.63 -0.97,-0.35 0.97,-0.47 1,0.2 1,-0.36 0.9,0.16 2.98,1.28 1.87,-0.37 -0.82,-1 -0.9,-0.55 -1.88,-0.25 -2.16,-0.56 -1.9,-0.72 z m -2,0.1 0,0.9 0.6,-0.9 z m 3.86,0.3 1,0.7 0.9,0.44 0.98,0.28 1.8,0.28 0.1,-0.9 -1.8,0 -1.07,-0.47 0,-0.34 -1.9,0 z m 12.6,0.6 -0.9,0.64 -0.73,0.9 -0.14,0.9 0.97,0 1,-0.46 0.53,-0.88 -0.35,-0.9 z m -6.2,11.54 0.26,0.88 0.9,0.28 -1,0.28 -0.43,0.87 1.06,1.9 0.1,1 1,1.8 0.1,0.9 0.52,-0.9 -0.53,-1.45 0.1,-0.9 -0.38,-1.88 0.18,-1.9 -0.9,-0.82 z m -16.02,0.94 0,6.56 0.03,0.03 c 0.17,0.17 0.34,0.33 0.53,0.47 0.03,0.03 0.07,0.04 0.1,0.06 0.2,0.16 0.43,0.3 0.65,0.44 l 0.3,0.16 c 0.14,0.07 0.26,0.16 0.4,0.22 0.26,0.13 0.54,0.24 0.83,0.34 0.06,0.02 0.1,0.05 0.16,0.06 0.2,0.08 0.43,0.13 0.65,0.2 l 0.6,0.15 c 0.25,0.06 0.52,0.1 0.78,0.15 l 0.5,0.07 c 0.25,0.02 0.5,0.08 0.75,0.1 l 0.12,0 c 0.57,0.07 1.14,0.1 1.72,0.14 l 1.78,0.1 c 0.47,0 0.95,0 1.4,0.02 0.2,0 0.4,0.02 0.57,0.03 0.6,0 1.22,0.04 1.8,0.1 l 0.1,0.24 0.72,1 0.03,0.46 c 0.9,-0.48 1.53,-1.4 1.53,-2.5 0,-1.58 -1.3,-2.87 -2.87,-2.87 -0.9,0 -1.72,0.42 -2.24,1.1 l -0.32,0.02 -1,-0.1 -0.9,-0.24 -1.97,-0.08 -3.78,0.15 0.9,-0.15 3.68,-0.28 1.97,0.18 0.9,-0.18 1.1,-0.54 0.97,0 0.37,-0.9 -0.73,-0.9 -1.62,0 -1,0.27 -1.78,-0.72 -1,-0.18 0.9,0.9 1.97,0.72 -1,0.18 -0.87,-0.8 -1,-0.48 -1.9,-0.16 -0.98,0.35 0.1,-0.92 0.33,-0.97 -2.78,0.17 -0.9,-0.1 0.9,-0.15 1.88,0 -0.97,-0.2 0.97,-0.43 -0.97,-0.2 0.1,-0.9 -1,-0.2 -0.73,0.92 -0.62,-0.9 -0.18,-0.04 z m 132.41,117.83 0.34,0.44 -0.97,0.47 z m -1.9,0.72 0.9,0.1 0,0.53 -0.9,-0.63 z m -3.33,2.88 0.97,0.18 0,0.35 -0.87,0.37 -0.1,-0.9 z m 0.44,5.5 0.1,0.06 -1,0.2 0.9,-0.26 z m 0,3.84 0.92,0.1 -1,0 0.1,-0.1 z m 0.1,0.28 0.82,0.9 -1,-0.8 0.2,-0.1 z m -0.28,1 0.72,0.35 0.1,1 -0.88,-0.45 0.06,-0.9 z m 3.35,2.4 0,0.38 -0.9,0 z m -1.63,0.66 0.82,0.54 -0.35,1 -0.55,-0.57 0.1,-0.97 z m -0.34,0.97 0.44,0.9 -0.9,0 z m -0.2,2.88 0.26,0.2 0.1,0.45 -0.63,0.88 0.28,-1.53 z m -70.7,35.56 -0.9,0.35 0.9,0.38 z m 65.12,13.8 1.37,0.77 -0.82,0 -0.9,-0.72 z m -25.63,33.65 0.87,0.06 0,0.2 z m 0.52,1.34 0.9,0.34 -0.18,0.56 z m -19.62,55.04 -1.87,-1 -1,-1.15 0.18,-0.63 -0.27,-0.37 -0.9,-0.53 0.9,-1.1 -1.34,-0.43 -1.82,-1.07 0.18,-0.56 -0.43,0 -1.82,0.57 -0.17,-0.28 -0.07,-0.2 -0.37,-1.43 -0.1,-0.1 1.24,-2.06 0,-0.18 0.2,-0.18 1,-0.16 0.24,-0.9 -0.72,0.1 -0.72,-1.1 -0.34,-0.26 0.1,-0.18 -0.1,-0.1 c 0.52,-2.47 0.8,-0.68 1.72,-2.97 l -0.1,0 -0.28,-0.47 -0.34,0.1 -0.66,-0.88 0.1,-0.1 -0.35,-0.46 0.1,-0.53 -0.48,-0.2 -0.72,-0.9 2.25,0 0.2,-0.06 0.18,-0.72 0,-0.1 0.15,0 0.28,-0.9 -0.62,-1 0.34,-0.43 0.38,-0.1 0.18,-1.72 0,-0.1 0.1,-1.43 -0.47,-0.72 -0.1,-0.1 0,-0.08 0.47,-0.07 0.63,-0.9 0.9,-0.38 0.1,-0.18 0.97,-0.97 0.28,-0.47 -1.63,-0.97 -0.1,-0.9 -0.9,-0.38 -0.82,0.1 -0.15,-0.1 -1,-0.06 -0.1,0.52 -0.97,0.43 -0.53,-0.25 0,0.07 -1.2,-0.2 -0.45,0.04 -0.72,0.26 -0.13,0 -0.28,0.1 -0.06,-0.1 -0.07,0 -0.1,-0.25 -0.1,0 0.04,-0.05 0,-0.03 0.44,-0.85 -0.5,-0.56 -0.52,0.2 -0.35,0.12 -1.15,0.2 -0.44,0.52 -0.03,-0.03 -11.24,12.14 -33.85,35.56 0,30.65 23.36,0.1 -0.28,0.78 -0.72,0.9 -3.6,2.26 -0.28,1.08 -1.34,2.7 -0.44,3.14 -0.56,0.9 -0.88,0.73 -1.62,1.78 -1.53,1.28 -0.62,0.9 0.9,-0.8 -0.18,0.88 -1.3,2.2 -0.32,0.52 0,0.8 -0.63,0.98 -0.2,0.9 -0.42,0.9 -0.9,0.36 -0.73,0.9 -0.47,0.9 -0.8,4.7 0.18,0.9 0.3,-1.2 0.27,-0.52 0.34,0.28 1.17,2.07 0.56,-0.47 1.35,2.62 -0.2,1.78 -1.05,1.9 0,0.73 0.87,0.72 0.7,2.15 0.3,1 0.2,1.88 0,1.04 c -0.02,0.03 -0.04,0.08 -0.04,0.12 -0.02,0.22 -0.03,0.44 -0.07,0.65 -0.1,0.53 -0.24,1.05 -0.4,1.52 -0.8,2.23 -2.2,4 -1.86,7.47 l -1.43,2.5 -1.1,1.37 -0.42,0.43 -1,0.44 c 1.2,1.13 2.58,2.05 2.8,4.16 l 1.45,-1 0.1,-0.2 0.43,0.1 -0.53,0.1 -1.1,1.62 0.53,-0.28 0.47,-0.72 0,1 -0.37,1 0,0.44 1,0.72 0.9,-0.44 0.13,0 1.64,-0.1 1,-0.37 0.44,0.2 0.8,0 -0.33,0.18 -0.47,-0.2 -0.44,0 -0.9,0.3 -1.75,0.1 -0.14,0 0,0.6 -1.8,0 -0.54,-0.9 -0.72,0.44 0.1,0.9 0.24,0.62 -0.1,0.9 0.3,0.54 0.52,-0.16 0.66,0.9 -0.8,0 -0.73,0.9 0.24,0.36 1.53,0.63 0.37,-0.4 0.85,-0.24 0.3,-0.1 -0.3,0.23 -0.6,0.4 -0.35,1 0.94,0.5 0.02,0.02 0.9,-0.43 1.1,-0.1 -0.8,0.24 0,0.9 0.9,-0.18 0.62,-0.44 2.5,-0.34 0,0.72 0.37,0.15 -0.36,0 -0.88,-0.34 -1,0 -0.28,0.92 1.44,-0.2 -0.88,0.63 -0.72,0.9 1.07,-0.27 -0.26,0.72 0.53,1 0.9,-0.47 0,0.9 1.54,-0.24 -0.56,0.95 0.9,0.57 -0.08,0.15 0.8,1.63 0.9,0.72 1.08,0 0,0.72 1,0.7 0.53,-0.42 0.1,0.1 -0.26,0.9 0.36,-0.47 0.18,0.9 0.53,0.35 0.9,1.8 0.1,0.73 0.9,0.37 0.54,0.44 -1,0 -0.14,0.9 0.87,0 -0.1,0.35 0.9,0.1 -0.96,0.36 -0.18,0.25 0.33,0.3 -0.87,-0.54 0.25,0.9 0.9,0.16 0.36,0.9 -0.25,0.73 1.8,1 0.27,-0.1 0.9,0.63 0.63,-0.1 -0.9,0.38 0.1,0.63 0.9,0.52 2.77,1.25 -0.1,0.18 0.64,0.38 0.66,0.9 1.06,0.44 1.25,0.9 0.2,0 -0.2,0.35 0.82,0.47 1.27,0.34 1.34,1.1 0.3,0.43 1.96,1.72 0.72,0.8 1.8,1.34 6.1,2.88 0.9,0.1 0.1,0 0,52.46 -37.21,0 0,9.6 37.2,0 0,126.8 -34.8,0 0,43.72 34.8,0 0,96.7 69.57,0 0,-299.77 -11.78,0 0,-4.75 14,0 -0.03,-16 -2.2,-0.44 0,-9.38 -0.7,0 -0.48,0.18 -0.72,-0.53 -0.25,0.9 -0.1,-0.9 -0.53,-0.1 0.34,1 -0.52,0.26 -0.37,-1.78 0,2.15 -0.34,-0.37 0.1,-0.88 -0.1,0.25 -0.72,0.2 -0.53,0.8 -0.9,0.2 0,-0.9 -0.62,1 -0.28,-0.67 -0.28,0.1 -1.25,-0.63 -1.16,-1.72 0,-2.06 0.54,-0.2 0.2,-0.7 -1.1,0.65 -0.38,-0.82 0.9,-0.1 -0.9,-0.18 0.1,-0.43 -0.88,0.53 -0.1,-0.9 0.82,-0.45 -0.66,0.25 -0.72,-0.1 -1.53,-1.52 -1.6,-0.88 -2.44,-0.28 -1,0.1 -0.9,-0.2 -0.35,0.37 -3.96,0.16 -2.43,0.28 -1.34,0.3 -0.1,-0.1 0.82,-0.2 -0.1,-0.43 -0.52,-0.9 -0.35,-0.63 0,-0.9 -0.18,-0.47 0.44,0 c 0.1,-3.24 -0.03,-6.45 -0.15,-9.7 l -0.74,-0.9 -0.07,-0.1 -0.2,-0.62 -0.1,-0.28 0,-0.8 -0.08,-1.17 0,-0.46 c -0.97,-0.55 -1.76,-0.98 -2.6,-1.8 l 0.07,-1.52 0.36,-0.9 0.2,-0.44 0.15,0.06 0,-0.25 0.9,-0.57 0,-0.16 0.92,-0.47 0.1,-0.43 0.27,-0.28 0.87,0.27 1.1,-0.28 0.18,0.08 0.53,0 0.35,-0.25 1.1,-0.9 0.36,-1 -0.38,-0.54 -0.2,-0.3 -0.7,-1 0.62,-0.86 -0.53,-1.1 -0.43,-0.1 -1,0.48 -1.16,-0.1 -1.17,-1 -0.97,-0.8 -0.57,-0.1 -0.1,-0.25 0,-0.9 0.66,-0.2 0.25,0 0.54,-0.18 -0.72,-0.26 -0.88,-0.82 -1.53,-0.72 0,-0.18 -0.64,-0.82 -0.53,-0.9 -0.1,-0.9 -0.53,-0.45 -0.1,-1 -0.1,-0.96 0.3,-0.2 0,-0.2 -0.1,-0.33 1.34,0 0.9,0.25 0.2,-0.1 1.15,-0.15 1.43,-1.38 3.44,-0.16 2.87,-0.2 0.9,0.1 0.73,-0.47 1.34,0.2 0.54,0.08 0.28,0.1 0.72,-0.9 0.9,-0.54 0.17,-0.18 0.66,-1.43 -0.1,-0.2 0.26,-0.9 0.72,-0.88 c 0.32,-4.34 0.14,-8.72 0.2,-13.07 l -2.08,0.38 -2.15,0.44 -1,-0.9 0.73,-1.07 -0.25,-0.9 -0.2,-1.26 -1,-0.56 -1.15,-0.25 -0.9,-0.1 -1.25,-1.18 -0.9,0.2 -1.2,-0.36 -0.62,-0.9 -0.72,-0.64 -1,-0.66 -0.44,-0.87 0,-0.38 -0.1,-0.43 -5.5,-3.53 c -8.4,-6.35 -17.3,-12.34 -26.15,-18.08 l 0,-0.1 -12.97,-8.08 -1,-0.66 0,-7.1 c 1.62,-1.14 3.35,-2.15 4.88,-3.43 l 0.9,-0.06 0.44,-0.4 0.9,-0.7 1.44,0.1 0.9,0.17 0.73,-0.9 0,-0.44 0.16,0.06 0.9,0.1 0.9,-0.17 2.07,-0.38 1.2,-0.43 0.86,-1 0.72,-1.2 0.9,-0.62 1.3,-0.43 0.43,0 1,-0.53 0.26,-0.2 0.9,-0.7 1.44,-0.3 -0.1,-0.9 -0.52,-0.44 0.28,-0.9 -0.47,-0.97 0,-0.38 1.8,-0.18 0.9,-0.25 0.82,-0.28 0.44,-0.2 0.18,-0.9 1.7,-0.53 0.9,-0.18 2.15,0.2 2.43,0.08 0.8,0.1 0.1,-0.1 -0.37,-0.28 -0.1,0 0.2,-0.34 0.53,-1.8 -0.73,-0.64 -0.97,-0.9 0.1,-0.88 -0.66,-0.8 -0.16,-1 0.25,-0.92 -0.25,-0.53 -0.37,-0.18 0.38,-2.06 -0.28,-0.9 0.2,-1.07 -0.54,-0.9 -0.1,-0.64 -0.1,-0.1 -1.43,-1.1 0,-0.08 -0.28,-0.34 -0.63,-0.2 -0.9,0.2 -0.9,-0.2 -0.88,-0.8 -0.1,-0.3 -1.9,0.73 -1.78,-0.43 -0.3,0.37 -1.8,-0.18 -0.97,0.44 -1.44,-0.25 -1,-0.55 -1.63,-1.63 -0.34,-0.97 0.05,-0.46 -0.25,-0.17 z m 41.66,144.35 0.65,0 0.9,-0.72 z m -87,-29.78 -0.53,0.9 -0.38,0.1 0,0.1 -0.2,0 -0.33,0.05 -2.03,-0.03 -0.7,-0.03 0.7,-0.15 0.2,-0.03 0.3,-0.47 0.17,0.38 1.7,0.28 0.18,-0.08 0.2,-0.82 0.7,-0.18 z"
2981+ id="path4517-8"
2982+ inkscape:connector-curvature="0"
2983+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2984+ overflow="visible"
2985+ style="overflow:visible;fill:#95a9c8;stroke:#000000;stroke-opacity:0.25" />
2986+ <path
2987+ d="m 889.75,163.6 0.6,-0.76 4.94,2.18 2.3,-2.6 0.96,-0.06 1.45,-6.07 2.94,-2.44 3.4,-0.33 1.9,-0.84 2.6,1.63 3.76,1.95 0.72,1 -1.67,2.14 0.16,1.67 0.64,0.42 0.37,0 1,-0.9 0.36,-1.54 1,-0.1 0.9,-0.34 0.97,-0.28 1.1,-1.7 0,-0.08 -0.1,-0.28 0.1,0 0.9,0.62 0.97,0.28 0.9,0 0.44,-0.9 -0.25,-0.9 -0.1,-0.35 -0.9,-0.2 -0.82,1 -0.25,-0.9 -0.9,-0.62 0,0.97 -0.38,0.72 -0.72,-0.16 0,-0.47 -1.06,0.1 -1,0.27 1,-0.72 -0.56,-0.9 -0.87,0.18 0.35,-0.9 -0.9,-0.2 -0.98,-0.43 -1.9,-0.28 1,-0.35 3.87,0.63 1.97,0 1,-0.53 0.9,-0.82 1.88,-0.37 0.28,-0.9 -2.8,-1.44 -0.9,0.28 -0.9,0 0.9,-0.38 -0.08,-0.87 -1.2,-0.28 -0.96,0.7 0,-1 -1.1,0.3 -0.9,0.42 0.28,-0.97 -1,-0.65 -0.96,-0.35 -0.9,0.3 -0.92,0.86 -0.37,0.92 -0.17,1 -1,1 -0.28,0.97 0.1,-0.98 0.7,-1 -1.77,0.34 0.88,-0.87 0.65,-1 -2.08,0.6 -0.97,0.1 0.97,-0.18 0.9,-0.44 -1.06,-0.56 0.97,-0.53 0.47,0.27 1.7,-0.9 -0.45,-0.92 -1,0.3 0.28,-0.92 -1,0 -0.9,0.2 -0.88,-0.3 -0.9,0.63 -1,0.1 0.18,0.9 1,0.72 -0.9,0.62 -0.9,0.3 0.36,0.9 -0.9,0.1 0.6,0.95 -1,-0.1 -1.86,1 0.34,-0.9 0.1,-0.9 -0.54,-0.88 0.9,-0.47 -0.18,-1.78 -0.9,0.53 -1.88,1.54 -0.37,0.9 -0.9,0.62 -0.88,0.9 -0.18,0.88 -0.9,0.9 -0.92,0.47 -0.96,0 0.53,-0.9 0.17,-1 0.88,-0.82 -0.88,-0.1 0.35,-0.52 2.78,-2.06 0.1,-0.9 -0.9,0.08 -0.9,-0.28 -0.7,0.9 -0.48,-0.9 -0.9,0 -0.88,-0.53 -1,0.1 0.72,0.9 -1.1,0.35 -0.87,0.08 0.96,0.53 0.9,0.82 -1.77,-0.15 -0.76,0.87 0.9,0.72 -1.53,-0.25 -0.86,0.26 -0.9,0.66 -0.2,0.97 -1,0.08 -0.25,0.9 -0.38,1 0.9,0.16 0.35,0.28 -1.44,0.35 -0.25,-0.35 -0.56,-0.28 -0.25,-0.87 -0.9,0.34 -1.35,0.17 1.25,-0.25 1,-0.82 -2.25,-0.25 -0.63,-0.1 0.52,0.92 -0.9,-0.47 -0.72,-0.9 -0.9,-0.16 -0.63,0.96 -0.8,-0.96 -1.9,0.78 0.98,0.47 1,0.7 0.9,0.1 1,-0.28 -0.9,0.47 1,0.14 0.06,0.28 -0.7,0.35 0,0.9 0.46,0.9 -0.56,-0.9 -0.78,-0.43 -1.28,-1 -0.9,0.18 0,1.25 -0.98,0.57 -0.62,-0.72 0.87,-0.82 -0.86,0.35 -0.72,1 -0.9,0.72 0.18,0.9 0.88,0.72 -0.97,-0.3 -0.9,0.45 -0.8,0.9 -1,0.82 0,-0.2 0.9,-0.8 0.9,-1.88 -0.2,-0.9 0.3,-0.98 -0.38,-0.9 -0.44,0.9 -0.9,0.53 -0.2,-0.38 -0.62,1 0.28,0.9 0.35,0.17 -0.98,-0.16 -0.1,0.97 -0.9,0.72 0.9,-1.78 -0.1,-1 -0.9,-0.45 -1,0.2 -0.87,0.24 -0.66,0.8 0,0.9 1,-0.28 -1,0.63 0.56,1 0.9,-0.1 0.63,1 -0.92,-0.7 -1,-0.2 -0.53,-0.9 -1.1,-0.45 -0.87,0.2 0.53,0.87 1.9,1 -0.98,-0.35 -1,0.16 -0.44,0.72 0.06,-0.44 -0.34,-1 -1,-0.62 -0.97,1.9 0.53,0.8 -1.8,0.17 -0.92,0.92 -0.15,0.9 0.96,0 -0.35,0.9 -0.9,-0.18 -0.52,0.28 1.53,0.78 -1.9,-0.43 -0.97,0.1 -1.9,0.62 -0.2,0.7 0.38,0.82 1.98,0 1,-0.2 1.97,0.3 -1.25,0.27 -0.8,0.43 0,0.28 0.42,0.9 -0.62,-0.9 0,-0.27 -0.9,-0.2 -0.98,0.3 -0.9,-0.63 -0.9,0.15 0.37,0.82 0.96,0.9 -0.97,-0.72 -1.1,-0.34 0.9,0.54 -0.28,0.44 1,0.8 -0.9,0 0.37,0.92 -0.92,-0.35 0.63,0.88 -0.9,-0.88 -0.1,0.88 -0.34,-0.72 -0.53,-1.86 -0.9,0.25 -0.54,0.8 -0.66,-0.35 -0.88,0.2 -0.18,0.87 0.9,-0.53 0.88,0.27 0.1,0.1 0.08,0 0.72,0.52 -0.9,0 -2.8,0.62 -0.9,0 0,1.1 -0.87,0.62 0.87,0.1 2.1,-1.45 0.87,0.43 0.9,0.72 -0.9,-0.44 -0.88,0.1 0.88,0.44 -0.88,-0.2 -0.9,0.64 0.9,0.72 1.78,-0.25 -0.97,0.44 0.54,1 -0.7,0 -0.83,-0.92 -1,-0.28 -0.9,0.37 0.9,-0.53 -0.9,-0.2 -0.97,0.55 0.97,0.45 0,0.16 -0.88,0 -2.1,1.3 1.9,-0.3 0.1,0.45 1.87,-0.63 0.9,0.63 1.64,0.1 -1.1,0 -0.08,1 -0.97,-0.73 -0.9,-0.18 -0.38,0.28 0,-0.47 -2.06,0.56 -0.9,0.73 1,0.16 -1,0 -0.8,0.45 -0.9,0 -0.9,0.44 -1,0.27 1.9,0.9 -0.9,-0.08 -0.9,0.33 0.9,0 -1,0.2 0.2,0.27 1,-0.1 -0.9,0.2 -1,0 0.08,0.24 -0.9,-0.1 0.18,0.9 1,-0.08 0.88,0.38 -0.97,-0.2 -0.9,0.73 -0.9,-0.72 0.36,0.9 0,0.9 1.88,0 -1,0.07 -0.87,0.82 0.97,-0.44 0.9,-0.2 0.9,0.1 1.9,-0.53 -1.54,0.9 -0.88,0.26 0.44,0.1 -0.8,0.46 -0.64,-0.9 -1.62,0.6 -0.9,0.1 -0.9,0.82 1.55,-0.28 -0.1,0.9 0.26,0.2 -0.72,-0.3 -0.9,0.3 -0.35,1.77 -0.9,0.1 -0.1,1 0.9,-0.1 0.28,1.17 -0.9,-0.44 -0.82,-0.9 0.28,1 -0.9,0.8 0.1,0.9 0.96,-0.55 -0.1,1 0.82,0.2 1.8,-1.2 -0.9,0.8 -1.87,0.92 -0.9,0.1 1.06,-0.38 -1.87,-0.25 -0.9,0.87 1,-0.34 -1,0.44 -0.63,0.1 -0.9,0.55 1.1,0.15 -1.92,0.56 1,0.35 0.9,-0.62 1.8,-0.8 0.7,0.17 -1.05,0.1 -0.9,0.34 -0.54,0.53 0.7,0.28 -1.9,0.54 0.38,0.9 1.06,0 -0.88,0.9 0.63,0 -0.64,0.1 -1.28,0.7 -0.44,-1 -1.87,0 0.34,0.92 -0.9,-0.1 -0.96,0.63 -0.2,1 -1,-0.1 -0.33,1 -0.65,0.72 1,-0.28 -1,0.46 0,0.16 1,-0.25 -2.78,1.25 1,0 -1,0.8 1.78,-0.62 0,0.16 -0.62,0.75 0.62,0.98 2.25,-0.72 1,-0.62 1,-0.38 0.97,-0.87 -0.97,-0.2 -0.9,0.2 2.96,-1.45 0.9,0.1 -0.27,0.24 -0.82,0.1 -0.82,1 1,0.6 -0.9,0.35 -0.97,0.2 -0.92,0.9 0.97,-0.1 -0.34,1 -3.15,0 0,0.9 -1,-0.27 -0.62,0.28 0.62,-0.66 0,-0.25 -1.5,-1.34 -1.8,1.26 0.9,-0.1 -0.9,0.63 0.9,0 -0.9,0.27 -1,0.53 0.6,-1 -1.86,-0.15 -0.64,0.8 0.1,0.9 0.87,-0.1 -1.53,0.27 -1.5,0.38 0.97,0.62 0.9,0 -0.43,0.9 0.97,0.45 -0.96,-0.38 -0.9,-0.73 -0.82,-0.87 -0.63,0.15 1.15,1.9 0.9,0.35 0.3,0.47 -1.54,-0.9 -0.7,-0.9 -0.92,0.18 -1.53,-0.2 0.63,0 0,-0.6 -0.63,0.42 -0.28,0.2 -0.1,0 -0.87,-0.26 -1,0.45 1,0.72 -0.9,0.28 0.9,0.53 1.25,-0.3 0.63,-0.17 -0.63,0.26 -0.28,0.13 0.28,0.08 0.72,0.2 1.78,-0.58 -2.22,0.82 0.88,0.62 -0.1,0.1 -0.86,0.18 -0.2,-0.1 -0.8,-0.33 -0.9,-0.1 -0.9,0.18 -0.98,-0.28 -1.9,0.28 1.08,0.34 -1.1,0.53 1.2,0.2 0.97,-0.2 0.9,0.38 0.73,0.9 0.9,0 -1,0.1 -0.34,0.87 0,-0.43 -0.38,-1 -0.97,-0.72 -0.9,0.37 -0.1,0.9 0.2,0.63 -0.64,-1 -1,-0.1 -0.9,0.54 0.54,1 0.9,0.37 -1.78,0.06 -0.47,-0.88 -1.8,0.35 0.26,0.9 -0.72,-0.9 -0.9,0.28 1,0.53 -0.9,0.64 c 2.8,0.17 4.55,0.85 7.37,0.56 l -0.96,0.34 -0.9,-0.2 -1.9,0.73 c -0.24,-0.22 -0.46,-0.4 -0.67,-0.56 -1.43,-1.07 -2.56,-0.67 -3.66,1.14 l 0.92,0.25 0.9,-0.1 -1.8,0.37 0.9,-0.1 1,0.2 -1,-0.1 1,0.28 -0.9,0.25 1.77,0.37 0.9,0 -0.9,0.1 -0.88,-0.2 -1.9,0.54 0.9,0.3 1.87,-0.1 -1.8,0.2 -1,0.42 0.92,0.44 1,1 1.87,-0.8 1.9,0 0.88,0.52 1.28,-1.5 -0.47,0.78 0.18,0.1 1.9,0 -0.56,0.46 1,0 0.9,-0.18 -0.46,-0.9 0.9,-0.82 -0.53,0.9 0.35,0.53 0.28,0.1 0.1,-0.03 0.8,-0.16 -0.8,0.72 -0.1,0.1 -0.9,-0.26 -1.07,0.44 0.33,0.9 -0.9,0 0,-0.9 -0.88,-0.53 -1,0.44 -3.34,-0.2 -2.77,1 -0.44,1 0.86,0.1 1.2,-0.28 -0.92,0.37 0.47,0.87 -0.9,-0.44 -1.27,-0.37 1,0.72 0.37,0.9 1.44,-0.9 0.97,0 -0.24,0.9 -0.2,0.3 -0.43,-0.73 -0.9,0.8 0.8,0.45 -0.1,0.1 -0.9,-0.54 -0.8,0.9 0.18,0.88 0.92,0.67 0.87,-1 -0.07,0.9 0.88,-0.18 -0.15,1.42 0.53,0 0.53,-1.53 0.92,-0.35 0.72,-0.9 0.9,-0.38 1.97,-0.2 -0.9,0.38 -0.84,1.72 -0.06,0.1 0.2,-0.9 -0.1,-0.92 -0.88,0.44 -0.9,0.8 -0.1,1 -1,0.72 0.1,0.1 -0.9,0.43 -0.36,0.63 0.82,0.37 0.9,0.1 0.97,-0.53 -0.97,0.72 -0.72,0 -0.56,0.87 -0.9,-0.43 -0.16,0.82 -0.9,0.33 0.62,-0.97 -0.9,0.2 -0.2,0.86 0.1,0.82 0.72,0.62 0.65,-0.97 0.16,0.96 0.9,-0.34 -0.44,-0.9 1.87,-0.1 -0.9,0.18 0.9,0.2 -0.34,0.24 0.86,0.38 -0.43,0.43 1,-0.34 -1,0.54 -0.9,0.8 0.18,0.92 0.3,0.53 0.96,-0.73 1,-0.18 -1,0.27 -0.53,1 -0.54,-0.28 -0.9,-0.2 -0.92,-0.63 -0.25,0.9 -0.56,0.98 0.28,0.56 0.8,0.92 0.92,0.43 0.97,0.72 0.9,0.28 0.3,0.25 1.95,0.2 0.53,-0.3 -0.88,0.57 -0.47,0.88 1.8,-0.16 0.98,0.43 1.2,0.2 0.62,0 1.8,-0.64 0.16,-0.38 0.72,-0.1 1.82,-0.9 0.62,-0.78 3.06,-2.35 0.44,-1 0.9,-0.35 0,-0.56 -0.24,-0.55 0.25,0.35 0.73,0.28 0.62,0.47 0.28,-0.56 1,-0.55 0.72,-0.9 0.44,-1 -0.92,-0.88 0.66,-0.56 0.87,0.3 -0.42,-0.9 -0.2,-0.73 0.73,-0.72 0.63,0.53 -0.8,0.9 0.46,1.44 -0.1,0.9 0.28,0.92 0.8,0.1 0.88,0.33 0.47,0.47 -0.37,0.9 0.53,0.88 -0.07,1 0.34,1.82 0.62,0.87 0.62,-0.86 -0.25,0.87 0.97,-0.15 0.28,0.54 -0.53,-0.1 -0.92,0.43 0.9,0.56 0.63,-0.82 0.2,0.25 -0.1,1 -0.62,1.34 0.72,0.2 0,0.9 0.34,0.62 -0.1,0.9 0.92,0 0.53,1.87 0.46,0.9 0.62,0.92 0.2,0 0.33,0.33 0.58,0.9 0.78,0.3 0.37,0.7 -0.2,0.63 -0.9,-0.2 0.38,1.73 -0.9,-0.38 0,1 0.48,0.53 0.96,1.9 0.38,0.9 -0.1,0.9 0.9,0.74 0.98,0.14 1.9,-0.53 2.07,0.1 0.72,-1 -0.73,-0.9 0,-0.88 0.53,-0.65 0.9,-0.72 0.9,0.28 -0.17,-1 1.34,-0.1 1.9,0.2 0.9,-0.44 0.36,0.08 0.9,0.8 0.72,-1 0.63,-1.6 1.1,-1.45 0.33,-1.8 -0.08,-0.17 0.56,-0.8 -0.28,-0.3 -0.1,-0.7 0.73,-0.92 0.1,-2.6 -0.73,-0.8 1.16,0.18 -0.35,-0.72 0.26,-2.7 -1.43,-0.64 1,0.28 1,0 -0.3,-0.9 -1,-0.38 -0.86,0.28 0.97,-0.37 1.8,0.18 0.54,-0.96 0.9,0.24 0.9,-0.35 0.73,-0.9 -0.27,-0.4 0.38,-0.86 0.73,1.87 0.62,-1 1.25,-1.05 0.9,-0.2 -0.43,-0.9 0.87,0.47 0.38,-0.28 -0.28,-0.9 -0.88,0.1 -0.9,0.36 -0.1,-0.9 0.9,0.44 0.82,-0.97 0.88,-0.57 0.37,-0.53 0.8,-0.28 0.2,-0.88 -0.56,-1.1 -0.9,-0.9 -0.54,0 -0.34,-0.53 -0.1,-0.92 -1,-0.28 -1.82,-1.44 -0.97,0.28 -0.9,-0.72 -1.24,-0.28 0.25,-0.87 -0.43,-1 0.2,-0.9 0,-1.01 -0.4,-0.82 0.3,-1 0.34,-0.43 -0.24,-0.9 0.9,-0.2 0,-0.97 0.97,-2.62 -0.9,-0.44 0.18,-1.62 0.48,0.53 0.88,-0.35 0.9,-0.56 0.38,-0.87 -0.56,-1.38 -0.54,-0.45 0,-1 0.72,1.38 0.72,0.72 1.8,-0.9 -0.17,-0.9 0.9,-0.45 0.45,-0.9 1,0.1 -0.28,-0.48 0.9,0.28 1,-0.63 0.1,-0.9 0.44,0 0.9,-0.44 0.92,-0.1 1.78,-0.8 0.8,-0.9 0.92,0 1,-0.45 0.97,-1.9 0.7,-0.9 1.82,-1.45 0.25,-0.97 -0.88,-0.47 -1,-0.82 0.62,0.37 -0.2,-1 -0.96,-0.53 0.9,-0.1 0.8,-1 0.8,-0.43 0,-1 0.66,-0.9 -1,-0.08 0.34,-0.75 0.9,0.2 1.1,-0.1 -0.62,-0.88 0.87,-0.48 0.67,0.2 0.87,-0.54 -0.34,-1.38 1.78,0.47 0.1,-1 0.9,0.82 0.9,0.42 0.9,0 -0.6,-0.87 0.77,0.53 1.9,-0.38 1.88,0 -0.06,-0.06 -0.03,0 0,-0.2 -1.16,-2.42 -1,-0.82 0,-1 -0.06,-0.53 0.97,-0.8 0.08,-0.98 0.53,-0.9 -2.05,-2.9 0,-0.36 1.1,-1.07 -0.9,-0.72 -0.92,-0.28 0.53,-0.9 -0.15,-0.9 0,-0.1 -0.1,-0.53 0.92,-1.16 -0.66,-0.56 -0.8,-0.88 -0.88,-0.47 -0.38,-0.9 -1.87,-0.88 -0.9,-0.3 -0.92,-0.36 -0.08,0.1 -0.97,-0.17 -0.66,-0.65 -1.97,-0.88 -0.9,-0.9 -1.9,-1.1 0,-0.53 -0.08,0 -0.47,-0.18 -0.62,-0.18 0.62,-0.54 1.8,0.1 -0.33,-1.16 1.06,-0.56 1.54,0.28 1.25,1.44 0.18,0.28 0.38,0.34 0.72,0.57 0.87,0.95 0.2,0.9 z"
2988+ id="path42062-1"
2989+ inkscape:connector-curvature="0"
2990+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
2991+ overflow="visible"
2992+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
2993+ <path
2994+ d="m 898.97,143.6 -0.9,0.73 -0.88,0.44 0.96,0 0.9,0.75 1.35,-0.38 0.9,-0.2 -0.9,0 0.48,-0.9 -0.9,-0.05 z"
2995+ id="path42066-0"
2996+ inkscape:connector-curvature="0"
2997+ overflow="visible"
2998+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
2999+ <path
3000+ d="m 890.97,144.77 -0.1,0.37 1,0.44 -0.9,-0.8 z"
3001+ id="path42060-1"
3002+ inkscape:connector-curvature="0"
3003+ overflow="visible"
3004+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3005+ <path
3006+ d="m 884.22,149.2 0.72,-0.37 0.9,0.2 2.78,-2 0.35,-0.36 -0.88,-0.37 -0.63,0.9 -1,0.57 -0.9,-0.75 0.27,0.9 -0.9,-0.34 -0.91,0 -1.86,0.97 0.97,-0.06 -0.1,0.86 0.9,-0.1 0.3,-0.06 z"
3007+ id="path42058-9"
3008+ inkscape:connector-curvature="0"
3009+ sodipodi:nodetypes="ccccccccccccccccccccc"
3010+ overflow="visible"
3011+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3012+ <path
3013+ d="m 889.78,147.2 0,0.9 0.38,0.92 1,0.1 0.25,-0.38 0.3,-0.9 -0.92,-0.45 -1,-0.2 z"
3014+ id="path42056-5"
3015+ inkscape:connector-curvature="0"
3016+ overflow="visible"
3017+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3018+ <path
3019+ d="m 889.34,148.2 -0.9,0.72 -1.88,0.53 -0.18,0.9 1,-0.33 0.43,0.97 1,-0.92 0.92,-0.53 -0.28,-1 -0.1,-0.35 z"
3020+ id="path42054-6"
3021+ inkscape:connector-curvature="0"
3022+ overflow="visible"
3023+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3024+ <path
3025+ d="m 884.22,150.74 0.62,0.53 0.9,0 0.92,0.1 -0.9,-0.92 -0.92,-0.28 -0.62,0.1 -0.38,0.1 0.38,0.37 z"
3026+ id="path42052-8"
3027+ inkscape:connector-curvature="0"
3028+ sodipodi:nodetypes="ccccccccccccc"
3029+ overflow="visible"
3030+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3031+ <path
3032+ d="m 919.03,154.24 -0.97,0.9 0.97,0 0,-0.37 z"
3033+ id="path42046-7"
3034+ inkscape:connector-curvature="0"
3035+ overflow="visible"
3036+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3037+ <path
3038+ d="m 739.44,340.14 0.43,-0.53 1.16,-0.18 0.34,-0.12 0.54,-0.2 0.5,0.57 -0.43,0.85 0,0.03 -0.03,0.06 0.1,0 0.08,0.26 0.07,0 0.05,0.1 0.28,-0.1 0.13,0 0.7,-0.25 0.48,-0.02 1.2,0.2 0,-0.08 0.52,0.25 0.97,-0.43 0.1,-0.53 1,0.05 0.15,0.1 0.8,-0.1 0.92,0.37 0.1,0.9 1.62,0.98 -0.28,0.47 -0.97,0.97 -0.1,0.18 -0.9,0.38 -0.63,0.9 -0.46,0.07 0,0.1 0.1,0.08 0.46,0.72 -0.1,1.44 0,0.1 -0.18,1.72 -0.38,0.1 -0.34,0.43 0.62,1 -0.28,0.9 -0.15,0 0,0.1 -0.2,0.72 -0.18,0.07 -2.25,0 0.72,0.9 0.47,0.2 -0.1,0.52 0.34,0.47 -0.1,0.1 0.66,0.87 0.34,-0.1 0.3,0.47 0.08,0 c -0.92,2.3 -1.2,0.5 -1.72,2.97 l 0.1,0.1 -0.1,0.18 0.34,0.25 0.72,1.1 0.72,-0.1 -0.25,0.9 -1,0.17 -0.2,0.18 0,0.2 -1.24,2.05 0.1,0.1 0.36,1.43 0.07,0.2 0.18,0.27 1.83,-0.56 0.43,0 -0.18,0.57 1.8,1.07 1.35,0.43 -0.9,1.1 0.9,0.53 0.28,0.37 -0.17,0.63 1,1.15 1.87,1 1.25,-0.8 0.66,-1.26 0.88,-0.48 0.72,-0.15 0.9,0 0.9,-0.9 0.45,-0.3 3.88,0 1.8,-0.15 1.35,0.35 0.9,0 0.9,-0.72 0.73,0 0.92,0.37 0.72,-0.9 0.43,-0.9 0.1,-0.92 1.97,-1.25 0.9,-0.37 0.9,0 0.92,-0.63 0.53,-1.34 0.24,-1 1.18,-1.6 1.8,-1.17 1,-0.44 -1.64,-1.45 -0.44,-0.9 -0.43,-1.53 0.8,-1.72 0.7,-0.9 0.3,-0.63 1.6,-1.78 0.54,-1 0.63,-0.2 1,-0.63 0,-0.19 -0.72,-0.55 0.9,-0.9 1.54,-0.72 4.2,-1.16 0.3,-0.37 0.9,-0.63 2.5,-1.25 0.9,-0.72 0.28,-1 -0.37,-0.9 0.82,-0.35 -1.16,-2.25 0,-0.9 -0.28,-0.2 0.2,-0.27 0.08,-0.97 1.16,-0.9 0.9,-0.2 1.8,-1.24 1,-0.38 0.7,0.47 0.72,0.1 0.82,0.44 0.9,-0.1 -0.2,-0.9 0.4,0.9 1.05,-0.1 -0.08,0.1 0.37,0.38 0.9,-0.18 0.87,0.9 0.9,0.1 0.1,0.15 1,0.18 0.9,0.44 1.8,-0.72 0.9,-0.53 0.34,-0.9 2,-1.35 1.17,-0.53 0.28,-0.05 0.72,-0.06 1.25,-0.38 0.9,-0.53 1.63,-2.08 1.16,-0.62 0.9,0 1.82,0.53 1.54,1.1 0.87,0.1 0.38,0.24 0.54,0.1 0.53,0.43 0.56,0.8 0.1,1.4 1.06,1.77 0.08,1.8 0.9,0.1 0.35,0.88 1.44,1.1 0.65,0.9 1.54,0.53 0.7,0.9 0.17,0.44 0.8,0.38 0.92,0.62 0.37,0.9 1.07,0.63 0.6,0.72 1.82,1 0.9,0.25 0.9,0 1,0.38 0.7,-0.2 0.82,1.17 1.18,1.28 0.88,0.1 0.37,0.87 0.35,0.1 0.9,-0.35 0.9,0.72 0.45,0.9 0,0.87 0.72,0.37 0.9,0.8 1.34,-0.27 0.65,0.82 0.06,1 0.37,0.9 0.63,0.87 0.37,1.8 0.63,0.92 -0.57,0.9 -0.88,0.15 -0.1,1.37 -1.24,1.78 0.43,0.9 1,0 0.9,-0.27 0.27,-0.9 1.8,-1.6 0,-1.8 2.7,-1.36 0,-0.9 -0.63,-1.53 -1.34,-0.72 -0.9,-0.28 -0.1,-0.88 0.44,-0.9 0.2,-0.72 0.45,-0.47 0.53,-0.97 0.7,-0.63 1.08,0 0.1,0.16 -0.16,0 0.63,0.72 1.78,0.28 0.8,0.62 0.3,1 0.9,0.82 0.88,0.1 0.56,-1.38 -0.2,-0.98 -0.8,-0.9 -1,-0.63 -0.54,-0.64 -2.7,-1.37 -0.9,-0.73 -2.72,-0.97 -3.03,-1.53 0.08,-0.9 0.9,-0.63 -0.1,-0.9 -4.55,-0.1 -0.82,-0.44 -1.08,-0.38 -3.3,-3.22 -1.3,-3.62 -0.8,-1.6 -0.9,-0.37 -1.98,-1.33 -0.9,-0.47 -1.7,-1.5 -0.47,-1.28 0,-0.9 -0.18,-0.26 1,-1 0.36,-0.72 -0.37,-0.2 -0.64,-1.05 -0.43,-0.2 -0.1,-0.28 -0.28,-0.1 0,-0.15 0.28,0.1 0.35,-1 1.1,0 0.96,-0.38 0.8,-0.54 0.92,-0.2 -0.1,-0.33 0.9,-0.2 0.54,0.2 0.1,-0.1 -0.1,0.3 0.9,-0.58 0.38,0.2 0.25,0.9 0,0.25 -0.34,0 -0.3,0.37 -0.34,0.1 0.44,0.9 -0.1,0.1 0.63,0.87 0,0.8 0.9,1.3 0.3,-0.38 0.33,-1.06 0.2,0.15 0.37,0 0.7,-2.06 1.36,0.7 1.33,1.35 -0.1,1.54 0.54,0.9 0.47,0.27 1.06,1.07 0.9,0.46 0.1,0.16 0.38,0 -0.1,0.47 -0.47,-0.47 -1.05,-0.53 -0.47,0.9 2.25,2.07 1.28,0.72 0.36,1 1.72,-0.28 1.43,0.62 1,0.2 0.8,0.9 1.8,1.15 0.9,0.82 -0.9,-0.15 -0.9,-0.57 -0.97,0 1.78,0.82 1.92,0.47 2.7,1.86 1.42,-0.2 0.1,0.4 -0.38,-0.2 -0.62,0.2 1,0.8 0.9,0.44 0.82,1.25 1.06,0.65 0.72,0.07 0.2,0.47 0,1 -0.73,1.25 0.3,0.9 -0.2,0.87 0.1,0.8 -0.63,1.3 0.62,0.7 -0.1,0.1 0.2,0.88 -0.1,0.1 -0.54,-0.35 0.53,0.9 1.78,0.88 0.8,1.1 0,0.9 0.48,0.1 0.53,0.15 0.33,-0.88 0.56,0 -0.3,-0.46 0.2,-0.55 0.28,-0.46 0.63,0 0.16,-0.08 0.66,-1.37 0.06,-0.53 0.9,-0.44 0.3,-0.47 0,-0.52 -0.3,-0.53 0,-0.38 0.73,0 1.38,-0.25 0.16,0 0.9,0.07 0.63,-0.17 0.56,-0.8 0,-0.1 0.88,-0.3 0.48,-0.14 0.62,0.14 0.72,0.1 0,-0.1 0.28,0 0.88,-0.15 0.1,-0.4 0,-0.43 0.52,-0.1 0.28,0 0.1,-0.27 0,-0.72 0.18,-1 -0.18,-0.53 -0.3,-0.44 -0.08,-0.6 -1.44,-0.83 -0.25,-0.18 -0.08,-0.14 -0.2,-0.25 -0.43,-0.52 0.62,-0.4 0.2,-0.13 -0.2,-0.4 -0.2,-0.4 0,-1.36 -0.08,-0.1 0.28,-0.16 0.1,-0.03 0.52,-0.18 0.2,0.1 0.8,-0.72 0.72,-0.9 0,-0.16 -0.28,-0.1 -0.8,-0.9 -0.35,-0.2 -0.9,-0.9 0,0.02 -0.4,-0.67 c -0.1,-0.35 -0.14,-0.63 -0.1,-0.88 0,-0.03 -0.02,-0.06 0,-0.1 l 0.02,-0.05 c 0.02,-0.1 0.03,-0.17 0.06,-0.25 0.02,-0.02 0.04,-0.04 0.04,-0.06 l 0.03,-0.1 0.07,-0.1 0.03,-0.03 c 0.06,-0.1 0.14,-0.2 0.22,-0.28 0,-0.03 0,-0.06 0.02,-0.08 0.05,-0.06 0.13,-0.12 0.2,-0.18 l 0.27,-0.32 c 0.14,-0.17 0.3,-0.34 0.42,-0.56 l -0.37,-0.44 -0.1,0 -0.34,-0.43 -0.08,-0.3 -0.2,-0.18 0.2,-0.1 0.72,-0.34 0.18,0.1 0.35,-0.2 -0.9,-0.43 -0.35,-0.13 -0.53,-0.15 -0.48,0.43 -0.9,0.47 -0.26,-0.28 0,-0.2 -1.62,-0.34 -0.28,-0.28 0,-0.1 -0.53,-0.24 -0.44,0 -0.2,-0.3 0.3,-0.14 0.6,-0.28 -0.7,-0.38 -0.2,-0.2 0.28,-0.14 0.16,-0.9 -0.82,-0.3 -0.15,0 -0.1,-0.08 -0.9,-0.35 -0.8,-0.72 -0.1,-0.18 -0.3,-0.2 0.2,-0.18 -0.2,-0.26 0.1,-0.56 -0.43,-0.53 -0.2,-0.2 -0.24,-0.52 -1.1,-0.44 -0.27,-0.57 -0.25,-0.34 0.1,-0.2 0.96,-0.2 0.9,0.2 0.1,0 0.1,-0.1 0.33,-0.53 1.38,0 0.72,-0.9 0.15,-0.25 0.2,-0.9 0.7,-0.38 0,-0.44 0.1,-0.1 0.44,-0.53 0.28,-0.9 0.63,-0.63 0,-0.1 0.2,-0.46 0.55,-1.12 0.25,-0.47 0.1,-0.2 0.43,-0.28 0.28,-0.2 0.25,-0.52 0.9,-0.35 0.3,-0.1 1,-0.36 0.86,-0.73 -0.26,-0.82 -0.1,-0.1 -0.9,0 -0.18,-0.33 -0.35,-0.44 -0.27,0 -0.9,-0.72 0,-0.1 -0.35,-0.18 -0.2,0 0,-0.2 0.1,-0.7 0.45,-0.54 0.62,-0.9 0.2,-0.72 0.27,-0.5 0.28,-0.5 1.5,0.47 -0.06,-0.4 -0.66,-0.9 0.1,-0.62 -0.26,-0.9 0,-0.63 0.54,-0.63 0.1,-0.1 0.33,-0.43 0.18,-0.1 0.1,-0.1 0.7,-0.9 c 0.16,-0.16 0.3,-0.27 0.45,-0.4 l 0.06,-0.07 0.4,-0.44 0.22,-0.16 c 0.18,-0.16 0.36,-0.32 0.56,-0.47 0.12,-0.1 0.25,-0.17 0.38,-0.25 l 0.1,-0.1 0.18,-0.1 0.34,-0.52 0.9,-0.2 0.9,-0.7 0.1,-0.38 0,-0.35 -0.7,-0.9 0.9,-0.44 -1,-0.8 -0.54,-1.2 -0.1,0 -0.46,-0.53 -0.06,-0.72 -0.38,-0.9 -0.18,-0.1 -0.1,-0.62 0.2,-0.72 0.08,0 0.28,-1.72 -0.1,-0.16 0,-0.1 -0.27,-0.18 -0.34,-0.2 -1.53,-0.9 0.25,-0.43 0.57,-0.63 0.05,-0.1 0.1,-0.18 0.37,-0.25 1.78,-0.73 0.37,-0.75 0,-1.06 -0.28,-0.9 0.18,-0.2 c -0.86,-1.87 -1.9,-3.8 -1.87,-5.93 l 0,-0.16 -0.37,-0.56 -0.9,-0.52 -0.44,-0.37 -0.73,-0.43 -0.9,0.2 -1.35,0.08 -1.53,0.1 -2.53,0 c -0.42,0 -0.86,-0.03 -1.3,-0.04 l -0.09,0 c -0.8,0 -1.6,-0.02 -2.37,-0.1 l -0.03,0 c -0.22,-0.03 -0.38,-0.02 -0.62,-0.04 l -0.25,-0.1 -1.28,-0.2 -0.25,0 -1.2,-0.08 c -0.3,-0.04 -0.76,-0.04 -1.05,-0.16 l -0.47,0.35 -2.06,0.72 0,-0.45 0.9,-0.2 0.96,-0.52 -0.15,-0.1 -0.9,0.54 -1.8,0.28 -1.17,-0.2 -0.53,-0.27 -1.1,-2.34 0.9,0.37 -0.8,-0.43 -0.9,-0.28 -1.82,0.1 -2.7,0.52 -1.77,0.9 -1.8,0.44 -0.2,0.38 -1.33,1.25 -3.7,0.7 -4.93,1.54 -0.47,-0.1 -1.06,-0.72 -0.27,0.9 -0.44,0.35 0.96,-0.15 0.82,0.1 0.56,0.33 0.34,-0.34 -0.28,-0.08 1.28,0.15 -0.47,0.9 0.3,0.73 -0.9,-0.53 -0.54,-0.1 -1.9,-0.8 -0.17,-0.2 -0.1,-0.06 -0.47,-2 -0.9,0.3 -0.07,0.27 -1.8,-1.28 0,-0.2 -1,-0.53 -0.88,0 -1,0.47 0,-0.37 0.9,-0.28 0.88,0.08 -1.78,-0.34 -0.54,0.9 -0.9,0.63 -0.38,0.8 -0.1,-0.55 -0.87,0.18 -0.9,0 -0.92,0.9 -0.28,0.73 -0.87,-0.2 -0.9,-0.43 -0.82,0.25 0.1,-0.87 0.8,-0.9 0.17,-1 -0.97,0.18 -0.9,0.44 -1.9,-0.88 -0.73,0.53 -0.72,-0.7 0.2,-1.3 -0.43,0 0.25,-0.25 -1.6,-0.7 -0.9,0 0.63,-0.55 0.7,-0.18 -1.14,-1.44 0.87,-0.72 -0.8,-1.43 0.9,-0.28 0.48,-0.63 -1,-0.53 1,0.25 0.87,-0.2 0,-1.16 1.2,-0.2 0,-1.77 1.05,-0.37 0.28,0.9 0.44,-0.8 0.9,-0.3 0.47,-0.86 -0.72,-0.9 -0.9,0.15 -0.92,-0.26 -0.9,0.53 0.72,-1 -0.97,-0.63 0.98,0 -0.25,-0.9 -0.38,-0.88 -1,-0.62 0.1,-0.1 0.9,0.63 0.9,-0.63 0.63,-0.9 -0.1,-1.63 -0.34,-0.9 0.72,-0.9 -1.8,1 -1,0 -1.07,1.1 -0.54,0.96 -0.9,0.8 -1,0.2 -0.92,-0.1 -0.87,0.3 -0.9,-0.1 -0.38,0.28 -0.92,0.87 -0.62,0.92 0.8,0.9 1.35,-1.9 1.83,-0.44 0.1,-0.2 0.8,0.4 -0.47,1.14 0.66,1 -0.2,0.9 -0.9,-0.8 -0.43,-0.9 -0.92,0.7 -0.28,0.92 -2.06,0 -0.44,-0.9 -0.38,0.9 -0.1,3.6 0.92,-0.3 0.43,1 -0.25,0.2 -0.9,-0.54 0.1,1.7 -0.3,1 1,-0.3 0.64,0.82 0.9,0.63 0,0.8 -0.37,0.57 0.46,1.44 -0.38,0.16 -0.9,-0.72 -0.16,0 0.44,0.9 0.9,-0.1 0,0.4 1.53,1.86 -0.1,0.1 -0.8,0.62 -0.64,0.9 0.82,-0.1 0.53,0.92 -0.37,0.9 0.9,0.63 1.3,0.28 1.58,1.8 0.73,0.18 -0.06,0.1 -1.2,-0.38 -0.7,-0.88 -0.9,-0.8 -0.92,0.15 -0.88,0 -0.37,-0.16 -0.9,0.26 -0.35,0.9 0.34,1 -0.26,1.07 -0.28,-1.34 -0.9,-0.2 0.28,1 -0.9,0 0.08,-0.9 -1,-0.9 -1.53,0.27 -0.35,0 -0.53,-0.1 -0.9,0.28 -0.73,0.9 -0.1,0.9 1,0.17 0.63,0.28 -0.72,0.35 -1.27,-0.53 -0.88,-0.9 -1.8,0.37 -1.73,0.08 -1.7,0.53 -1,0.92 -0.08,0.34 -0.9,0.63 -1.26,0.64 -1,0.06 -0.25,0.82 -0.28,1.8 -0.62,1.26 -1.63,1.8 -0.44,0 0.35,0.92 1.44,0.72 1.1,0 -1.1,0.15 -0.9,0.38 -0.44,-0.1 0.44,0.38 -0.8,0.16 0.9,0.27 0.18,0.43 -0.9,-0.34 -0.9,-0.62 -1.54,0.1 0.37,0.86 0.9,0.38 0.9,-0.38 1.08,0.47 0.28,0.63 -0.27,-0.53 -1.35,-0.1 -0.9,0.2 -0.9,-0.38 -2.07,0.52 -2.96,1.53 -3.16,0.62 -0.87,0.9 -0.18,0.92 0.2,1.8 -0.04,0 -0.25,0.15 0.43,0.9 -0.53,-0.18 c -2.23,3.32 -3.66,0.72 -6.47,3.7 l 0.63,0.9 1.05,-0.16 -0.16,0.17 -0.82,0.18 -2,0.82 -1.78,-0.38 -0.9,0 -0.9,-0.26 -1,0.35 -0.8,-1.26 -0.1,-0.9 -1.36,0.27 -1.5,-0.27 0.62,1.8 0.72,0.92 0.53,1.87 -0.08,0.9 0.8,0.82 -2.77,0.44 0.2,0.2 -0.1,0.17 -0.2,-0.37 -1.43,-0.72 -1.2,0.63 -0.86,0.08 -1.53,-1.78 -0.9,0.25 -0.92,-0.1 -0.7,1 -1.63,-0.28 -1.78,0.38 -0.92,0.34 -0.9,0.7 0.1,0.92 1.77,-0.35 0.1,0.63 -0.97,-0.38 0.1,0.9 0.86,0.54 -1.78,0.38 0.53,0.1 0.9,0.43 0.9,0.9 0.88,-0.28 2.97,0.65 0.9,0.62 0.48,0.9 0.62,-0.9 0.9,0.72 1.88,0 -0.44,0.34 0.34,1 0.9,-0.1 1.18,0 0.9,0.53 -0.96,-0.43 -0.9,0 -0.2,0.9 0.9,0.53 -0.62,1.16 0.97,0.9 0.62,0.9 0.56,0.45 0.72,0.2 0.9,0.52 0.88,0 -0.1,0.47 0.3,1.78 -0.2,0.9 -0.62,0.47 0.28,0 0.9,0.53 0.88,0.72 0.47,0.9 0.18,0.98 0.53,0.9 0.1,0.63 -0.2,-0.63 -0.7,-0.8 -0.2,-0.98 -0.8,-0.9 -0.9,-0.1 c -0.18,1.06 -0.3,2.04 -0.36,3 -0.07,0.97 -0.1,1.92 -0.18,2.85 -0.05,0.46 -0.12,0.9 -0.2,1.37 -0.14,0.92 -0.36,1.9 -0.7,2.87 -0.2,0.5 -0.4,0.98 -0.63,1.5 l -0.9,0.47 -0.98,0.28 -1.1,0.06 -0.9,-0.06 -1.53,-0.82 -0.88,0.25 -0.37,0.47 c -1.48,0 -2.44,-1.83 -4.7,-0.37 l -0.05,-0.2 c -2.56,0.94 -5.02,-0.77 -7.56,-0.6 l -0.9,-0.45 -0.92,0.34 -3.06,0.1 -0.53,-0.2 -0.9,0.48 -0.3,-0.38 -0.96,-0.25 -0.9,-0.63 -0.14,-0.07 0,0.07 -1.75,-0.2 -0.9,0.63 -0.46,0.9 0.18,-0.08 0,0.43 -1.34,0.3 -0.9,0.33 -0.9,-0.06 -1.9,1.43 0.64,0.88 -0.1,0.28 0.38,0.4 0.88,-0.2 -0.16,0.2 -0.1,0.86 0.9,-0.34 -0.46,0.72 -0.18,0.9 1,-0.1 -1,0.98 0.9,-0.25 0.38,-0.38 -0.28,0.46 -1.07,0.9 0.6,0.85 z"
3039+ id="path42448-1-8"
3040+ inkscape:connector-curvature="0"
3041+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccc"
3042+ overflow="visible"
3043+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3044+ <path
3045+ d="m 824.75,365.36 -2.72,0.88 -0.8,0.7 -1.26,0.48 -1,0.2 -0.9,-0.3 -0.88,0.45 -0.92,0.1 -1.53,-0.82 -0.63,-0.35 -0.46,0 -0.97,0.82 -0.92,0 -0.9,-0.2 -0.9,-0.7 -0.92,0.33 -0.15,0.57 -0.9,0.34 -1.8,0.38 -1.08,0.7 -0.9,0 -0.72,-0.36 -0.38,-0.44 -0.87,-0.47 -4.5,-0.06 -1.8,0.73 -0.92,-0.2 -0.34,0.36 -0.92,-0.36 -1.8,1.16 -0.9,-0.16 -5.92,0.72 -3.63,1.53 -0.97,0.77 -0.65,1.1 -0.43,0.28 -1,-0.47 -1.78,0.8 -0.92,0 -0.9,0.54 -0.72,0.9 -0.53,0.73 -0.9,0.28 -0.92,0.72 -1.42,0.28 -0.63,-0.1 0.28,0.35 0,0.1 1.44,1.1 0.1,0.08 0.1,0.63 0.52,0.9 -0.2,1.05 0.28,0.9 -0.37,2.07 0.38,0.2 0.25,0.52 -0.25,0.9 0.16,1 0.65,0.82 -0.1,0.88 0.97,0.9 0.72,0.63 -0.54,1.8 -0.2,0.35 0.1,0 0.38,0.28 -0.1,0.1 -0.8,-0.1 -2.45,-0.1 -2.16,-0.18 -0.9,0.2 -1.7,0.52 -0.18,0.9 -0.44,0.2 -0.8,0.28 -0.92,0.25 -1.8,0.18 0,0.38 0.46,0.97 -0.3,0.9 0.55,0.44 0.1,0.9 -1.44,0.3 -0.9,0.7 -0.25,0.2 -1,0.53 -0.43,0 -1.28,0.43 -0.92,0.63 -0.72,1.2 -0.87,1 -1.2,0.42 -2.06,0.38 -0.9,0.16 -0.92,-0.1 -0.15,-0.07 0,0.44 -0.72,0.9 -0.9,-0.18 -1.44,-0.1 -0.9,0.7 -0.44,0.4 -0.9,0.05 c -0.77,0.64 -1.6,1.22 -2.4,1.78 -0.83,0.56 -1.67,1.08 -2.48,1.66 l 0,7.08 1,0.66 12.97,8.1 0,0.08 c 8.85,5.74 17.75,11.73 26.16,18.07 l 5.5,3.52 0.1,0.43 0,0.38 0.44,0.87 1,0.66 0.72,0.63 0.62,0.9 1.2,0.34 0.9,-0.2 1.24,1.2 0.9,0.1 1.17,0.24 1,0.56 0.17,1.25 0.25,0.9 -0.7,1.06 1,0.9 2.14,-0.43 2.06,-0.38 c -0.03,3.24 0.06,6.5 -0.03,9.75 l 0,0.04 c -0.04,1.1 -0.08,2.18 -0.16,3.28 l -0.72,0.87 -0.25,0.9 0.1,0.2 -0.66,1.42 -0.15,0.2 -0.9,0.52 -0.73,0.9 -0.28,-0.1 -0.53,-0.08 -1.33,-0.2 -0.72,0.48 -0.9,-0.1 -2.88,0.2 -3.44,0.15 -1.44,1.37 -1.16,0.15 -0.2,0.1 -0.9,-0.25 -1.31,0 0.1,0.34 0,0.2 -0.3,0.2 0.1,0.95 0.1,1 0.53,0.44 0.1,0.9 0.53,0.9 0.65,0.82 0,0.18 1.54,0.72 0.88,0.82 0.72,0.25 -0.53,0.17 -0.24,0 -0.66,0.2 0,0.9 0.1,0.25 0.56,0.1 0.96,0.8 1.2,1 1.15,0.1 1,-0.47 0.44,0.1 0.54,1.1 -0.63,0.86 0.73,1 0.2,0.3 0.36,0.52 -0.38,1 -1.1,0.9 -0.34,0.26 -0.53,0 -0.2,-0.1 -1.08,0.3 -0.88,-0.3 -0.3,0.3 -0.08,0.42 -0.9,0.47 0,0.16 -0.9,0.56 0,0.24 -0.17,-0.06 -0.2,0.44 -0.36,0.9 -0.08,1.53 c 0.84,0.8 1.63,1.24 2.6,1.8 l 0,0.45 0.1,1.16 0,0.8 0.1,0.3 0.17,0.62 0.06,0.1 0.75,0.9 c 0.1,2.43 0.2,4.83 0.2,7.25 l 0,0.03 c 0,0.8 -0.02,1.6 -0.04,2.4 l -0.44,0 0.2,0.48 0,0.9 0.34,0.63 0.53,0.9 0.08,0.44 -0.8,0.2 0.08,0.1 1.35,-0.3 2.44,-0.27 3.97,-0.16 0.36,-0.37 1.53,-0.72 -0.9,0.72 -0.64,0 0.9,0.2 1,-0.1 2.44,0.27 1.6,0.88 1.52,1.53 0.72,0.1 0.66,-0.26 -0.8,0.44 0.08,0.9 0.88,-0.52 -0.1,0.43 0.9,0.2 -0.9,0.08 0.38,0.82 1.1,-0.66 -0.2,0.73 -0.53,0.2 0,2.05 1.17,1.72 1.25,0.62 0.28,-0.1 0.28,0.67 0.63,-1 0,0.9 0.9,-0.2 0.54,-0.8 0.72,-0.2 0.1,-0.25 -0.1,0.88 0.35,0.37 0,-2.15 0.38,1.78 0.53,-0.25 -0.33,-1 0.53,0.1 0.1,0.9 0.24,-0.9 0.72,0.52 0.47,-0.18 0.82,0 0.1,-0.63 0.08,0.62 0.88,0.37 1.9,-0.3 0.92,-0.24 -0.8,-1.72 0.8,0.9 0.25,-0.27 0.8,0.18 -0.33,0.9 0.8,0.54 -0.18,-0.9 0.72,0.45 0.2,-0.18 0.52,1.78 0.72,1.1 1,-0.1 0,0.53 0.53,-0.53 0.2,0.2 0.05,-0.1 -0.25,-0.3 1.06,0 0.1,-0.15 -0.1,0.25 0.2,0.9 -0.2,0.2 -0.14,0.9 0.8,0 -0.18,0.88 0.72,0.8 0.2,0.92 -0.48,0.9 -0.44,3.4 0.2,0.92 -0.82,1.62 0.43,0 -0.54,0.1 -0.8,0.9 -0.4,0.87 0.92,0.47 0.9,-0.1 0.2,0.44 -0.9,-0.1 0.08,1.9 -0.9,-0.18 -0.1,0.9 0.9,0.92 1,0.43 0.8,0 -1.8,0.2 -0.9,-0.3 -0.44,2.17 -0.9,1.9 -0.53,0.9 -0.4,-0.9 0,0.28 -0.18,-0.1 -0.15,0.82 0.44,0.35 -0.1,0.18 0.54,1.44 0.47,0.1 1.07,1.05 0.9,0.2 -0.9,0.08 -0.96,-0.72 -0.7,-0.8 1.14,1.8 0.38,0.9 0.87,0.45 -0.26,0 0.72,1.88 0.9,0.2 0.8,0.52 0,0.37 -0.9,-0.53 0.73,0.87 3.12,2.8 0.1,0.26 2.24,2.72 2.63,2.4 0.24,0.9 1.1,1.64 0.62,0 -0.1,0.8 0.38,0.9 -0.1,0.9 0.28,0.98 0.25,0.47 0.9,0.72 0.92,-0.28 0.9,-0.64 1.43,0.1 -0.47,0.1 -0.97,0.52 -0.9,0.1 -1.83,0.52 0.47,0.9 1.07,1.9 0.82,0.9 0.28,0.7 0,0.48 0.72,1.87 1.7,3.5 0,1.2 -0.26,0.8 -1.35,1.44 0.1,0.52 0.44,0.72 0.28,0.9 0.07,0.9 1.6,3.42 0.82,0.9 0.54,1.98 -0.44,4.15 -0.8,1.77 -0.55,0.82 -0.9,0.36 -1,0.63 -0.97,1.86 -0.9,0.72 -0.63,0.9 0,1.44 -0.56,1 -0.53,3.6 -0.9,2.25 -0.25,0.9 0,0.63 -1.28,1.8 0.28,3.7 -0.44,3.7 0.1,1.77 0.15,0.9 0.66,0.9 0.33,0.92 1.63,1.77 0.9,1.43 2.35,4.5 0.63,0.9 0.88,2.73 0.9,1.78 0.92,1.3 1.25,2.24 1.1,1.16 1,1.87 0.24,0.9 0,1.2 -0.52,0.9 0.38,1.25 -0.1,0.9 0.16,1.8 -0.25,0.9 0.72,1.8 0.17,0.98 0.63,0.9 0.16,0.9 -0.07,1.8 0.34,0.9 -0.28,0.9 0.7,1.9 -0.05,0.9 0.64,0.55 0.25,0.87 -0.17,0.9 0.53,0.92 0.28,1.8 1.7,2.7 0.46,1 3.06,2.78 0.35,-0.1 0.82,-0.62 0.44,-0.38 0.37,-0.87 0.63,-0.72 0.9,0.16 0.1,0.27 0.8,0.8 -0.18,0.92 0.53,1.05 1,0.37 1,0 0.9,0.44 1.8,0.1 0.9,-0.2 0.82,0 0.87,0.38 0.9,0 0.37,-0.1 0.1,-0.9 0.72,-0.1 0.42,-0.9 1.1,-0.15 0.87,-0.4 0.06,-5.4 c 0.02,-3.5 0,-7 0,-10.5 l 0,-5.68 0,-2.25 c 0,-2.65 0,-5.27 0.03,-7.9 l 4.58,0 0,-17.53 c 0.85,0.04 1.7,-0.05 2.53,-0.18 l 0.1,0 c 1.3,-0.2 2.58,-0.5 3.88,-0.78 l 0.28,-0.06 0.16,-0.03 0.06,0 c 0.53,-0.1 1.06,-0.2 1.6,-0.28 l 0.65,-0.1 c 0.45,-0.05 0.9,-0.1 1.38,-0.1 l 0.35,0.63 0.72,0.82 0.47,0.9 1.25,-1.06 0.36,-0.47 1.78,-0.98 0.82,0.44 0.9,-0.72 0.38,-0.28 0.87,-0.1 1.3,-0.06 -1.3,-1.1 -0.08,-0.08 -0.88,-0.28 -2.25,-0.07 -0.3,-0.1 -3.5,0.73 -1.27,-0.63 -3.3,-3.25 -1.1,-1.1 -1.16,-1.96 0,-0.1 c 0.04,-2.43 0,-4.88 -0.03,-7.3 l 0,-0.04 -0.07,-3.65 0,-3.66 0.47,-0.08 0.57,-0.1 1.32,-0.1 2.12,0 1.53,0.04 2.08,0 c 0.33,0 0.63,0 0.87,-0.03 l -0.18,-0.9 0.17,-0.73 0.35,-0.9 0.1,-0.88 -0.16,-0.28 0,-2.44 0.15,-0.9 0,-1.7 -0.08,-0.08 -0.06,-1.2 -0.9,0.67 -1,-0.1 -0.92,-0.1 -0.87,0.53 -0.47,0.1 -0.9,-0.2 -0.88,0.2 -0.66,-0.3 -0.34,0.4 -0.1,0.08 -1.1,0.54 0,-0.1 -0.33,-1.77 0.43,-0.28 0.28,-0.45 0,-0.1 -0.1,-0.28 0,-0.9 -0.42,-1.25 -0.1,-0.72 -1.34,-1.53 -0.28,-0.9 0.1,-1.45 -0.1,-0.28 0.1,-0.72 0.33,-2.5 -0.1,-0.47 -0.72,-1.78 0.1,-0.37 0.28,-0.97 0.1,-1 -0.38,-0.72 -5.75,0 0.1,-0.8 0.33,-0.9 -1.06,0 -0.9,0.37 -1.07,0 -0.37,-1 -0.72,-0.9 -0.28,-1.88 0.56,-0.58 0.97,-0.43 0.46,-0.64 0.34,-0.9 -0.2,-1.16 0.2,-0.9 -0.2,-0.9 -0.42,-1.36 0.28,-0.9 -0.38,-1 0.1,-0.07 0.28,-0.1 0.87,0.54 0.47,-0.43 0.2,0 0.14,-0.1 0.9,-0.55 -0.08,-3.32 0.47,-1.9 0.43,-0.9 0.53,-0.63 0.18,-0.97 1.25,0.1 0.9,-0.82 1.73,0.87 0.28,-0.15 0.62,-0.47 1.07,-0.25 -0.44,-1.9 1.14,0.18 0.38,-0.28 0.62,-0.44 1.44,0.72 0.53,-0.2 1,0.64 2.26,-0.63 0.9,-0.72 2.17,0.1 -0.2,-1.16 -0.8,-0.66 -0.9,-0.25 -2.8,-2.17 0.1,-0.63 0.9,-0.46 -0.8,-0.9 -2.07,-0.26 1.88,-0.9 -0.63,-0.9 -1.33,-1.9 -0.2,-0.7 -0.33,-0.57 c -0.1,-0.3 -0.17,-0.64 -0.25,-1 l -0.08,-0.2 c 0,-0.04 -0.02,-0.07 -0.03,-0.1 l -0.04,-0.06 c -0.03,-0.17 -0.04,-0.34 -0.1,-0.5 0,-0.06 -0.03,-0.1 -0.05,-0.16 -0.04,-0.15 -0.12,-0.3 -0.18,-0.44 l 0,-0.03 -0.3,-0.5 -0.3,-0.3 c -0.03,-0.04 -0.08,-0.06 -0.12,-0.1 -0.32,-0.23 -0.74,-0.38 -1.28,-0.37 l 0.9,-0.97 0.1,-0.47 0.1,-0.45 0.34,-0.62 -0.1,-0.28 0.66,0.28 0.25,0.1 1,-0.73 1,0.16 0.16,-0.16 0.9,-0.28 0.9,0.28 -0.27,-1 -0.97,-0.62 -0.2,0 -0.9,0.1 -0.63,-0.9 0.44,-1.92 -0.9,0.38 -0.44,-0.3 0,-1.86 1,-0.2 0.9,-0.6 0.88,0.17 0.1,-0.18 0.53,-0.72 -0.78,0 -0.57,-0.2 -1.8,0 -1.33,-1.15 -0.28,-0.06 -0.2,-0.03 0,-0.08 0.2,-0.28 0.44,-0.63 0,-0.52 0.62,-0.72 0.56,-0.47 1.44,-0.1 0.9,0.65 c 0.48,-0.3 0.92,-0.5 1.35,-0.68 0.42,-0.17 0.84,-0.3 1.25,-0.44 l 0.03,0 c 0.64,-0.2 1.25,-0.4 1.92,-0.78 0.22,-0.13 0.46,-0.27 0.7,-0.44 0.2,0.18 0.38,0.3 0.55,0.42 0.17,0.1 0.3,0.2 0.44,0.25 0.14,0.06 0.25,0.1 0.35,0.12 0.06,0 0.13,0.03 0.2,0.02 l 0.05,0 0.12,-0.03 c 0.1,-0.03 0.2,-0.1 0.32,-0.13 0.18,-0.08 0.37,-0.15 0.68,-0.2 0.17,0 0.37,-0.03 0.6,-0.02 l 0.9,-1.44 0.9,-0.27 0.35,0.37 1,0.35 1.25,0 0.47,0.2 0.96,0.45 0.8,0.07 0.92,0.1 0.8,-0.54 0.92,0 0.9,0.37 0.16,0.25 0.2,0.1 -0.73,-1 -0.28,-0.78 0.1,-0.9 -0.73,-1 -0.96,-0.45 -0.47,-0.37 -0.2,-0.1 -0.97,-0.18 -0.37,-0.88 -0.82,-1.1 0.47,-0.8 -0.9,-0.55 -0.7,-1 -1.26,-0.9 -1.9,-0.88 -0.82,-0.9 0.44,-0.63 -0.25,-0.9 -1,-0.38 -0.1,-0.16 -0.6,-0.9 -1.9,-0.47 -0.9,0 -0.37,-0.16 0,-1.8 -0.97,-0.1 -1.28,0 -0.87,-0.25 -0.1,-1 -0.08,-0.63 0.53,-0.38 0.38,-0.97 0.1,-1.8 -0.48,-1 -1.34,-2.17 -1.7,-1.72 -0.2,-0.44 0.38,-1.8 -0.54,-0.45 -0.9,-0.43 -0.44,-0.9 0.06,-0.48 0.2,-0.87 -0.54,-0.26 -0.1,-0.04 0,-0.9 -0.28,-1.25 -0.53,-0.9 -0.9,0.18 -0.96,-0.1 -0.28,-0.62 0.37,-0.9 1.06,-0.9 0.7,-0.9 -0.27,-0.35 -0.44,-0.9 0,-0.9 0.28,-0.45 0.87,-0.53 0.47,-0.57 0.28,-0.34 -0.28,0 -0.2,-0.9 0.2,-1 0.62,-0.16 0.3,-0.2 0.33,-1.33 0.2,-0.2 0.6,-0.37 0.3,-0.87 -0.38,-1.1 0.9,-0.9 1.24,0.2 1,-0.4 0.9,0 0.98,0.3 0,-18.2 c -3.06,-1.7 -6.12,-3.33 -9.2,-4.96 l -1.86,-1 c -2.45,-1.3 -4.9,-2.56 -7.35,-3.82 -1.25,-0.64 -2.5,-1.3 -3.77,-1.93 l -5.5,-2.78 -0.03,0 c -3.1,-1.56 -6.2,-3.1 -9.34,-4.66 -1.64,0.7 -3,1.47 -4.7,2.16 l 0,0.1 -0.24,0.08 -0.9,0.53 -1,0.47 -0.9,0.53 -0.98,-0.18 -0.47,-0.44 c -0.47,-0.37 -0.7,-0.58 -0.97,-0.8 l -0.2,-0.17 c -0.06,-0.06 -0.2,-0.2 -0.27,-0.25 l -0.44,-0.4 -0.07,-0.03 -0.03,-0.03 -0.66,-0.3 -0.15,-0.1 -0.1,0 -0.22,-0.07 -0.6,-0.1 c -0.74,-0.17 -1.47,-0.38 -2.22,-0.55 l -0.18,-0.03 c -0.3,-0.08 -0.6,-0.14 -0.9,-0.2 l -1.54,-0.3 -0.78,-0.23 -0.07,-0.03 -0.1,-0.07 -0.25,-0.4 c -0.08,-0.22 -0.22,-0.58 -0.44,-1 l -0.46,-0.82 c 0,-0.02 -0.04,-0.04 -0.06,-0.06 l -0.1,-0.16 -0.27,-0.47 -0.8,-1 -0.26,-0.1 -0.9,-0.28 -0.13,-0.04 -0.08,-0.03 -0.97,-0.28 -0.25,-0.1 -0.1,0 -0.9,-0.28 -0.9,0.38 -0.97,-0.47 -0.47,-0.97 -0.25,-0.08 -0.1,-0.1 -0.27,-1 0,-0.9 -0.28,-0.88 -0.44,-0.72 -0.14,-0.25 -0.07,-0.06 c -0.7,-1 -1.44,-1.95 -2.13,-2.93 l 0.53,-0.9 0.9,-0.44 1,-0.9 -0.1,-0.44 -0.17,-0.92 -0.1,-0.2 -0.15,-0.9 -0.3,-0.9 0,-0.16 0.2,-0.47 0.35,-0.9 0.1,0 0,-0.06 0.08,-0.4 0.3,-0.6 -0.2,-0.83 -0.37,-1 -0.06,-0.1 -0.1,-0.87 0.16,-0.9 0.1,-0.38 0,-0.1 c 0.05,-0.32 0.08,-0.66 0.1,-1 l 0,-0.02 c 0,-1.03 -0.2,-2.04 -0.54,-3 l -0.4,-1 -0.52,-0.9 -0.72,-0.88 -0.1,-0.2 0,-0.7 0.73,-0.38 0.1,-0.07 c 0.4,-0.17 0.6,-0.23 0.8,-0.28 0.3,-0.08 0.47,-0.06 0.62,-0.2 0.1,-0.08 0.3,-0.4 0.53,-0.7 l 0.66,-0.92 0.63,-0.9 0,-0.63 -0.2,-0.9 -0.27,-0.88 -0.15,-0.9 0.63,-0.92 0.2,-0.18 0.86,-0.16 0.18,-0.18 0.44,-0.9 0.2,-0.1 0.55,-0.18 c 0.1,-0.17 0.2,-0.3 0.3,-0.44 l 0.04,0 c 0.16,-0.16 0.3,-0.32 0.48,-0.44 l 0.72,-0.34 0.06,-0.03 0.2,-0.1 0.65,-0.26 0.26,-0.1 0.25,-0.12 c 0.17,-0.07 0.3,-0.15 0.48,-0.25 0.02,-0.36 -0.33,-2.36 -0.2,-2.78 l 0,-0.2 0.1,-0.43 0.1,-0.2 0,-0.27 -0.1,-0.1 -0.8,-0.43 -0.92,0 -0.15,-1 -0.37,-0.88 -0.34,0 -0.92,0.77 -0.2,-0.87 -0.9,0 -1.15,-0.56 -0.8,-0.97 -0.4,-0.9 0,-0.38 0.83,-0.9 1.8,-1 1.54,-1.9 0.9,-1.87 -0.37,-1.63 -0.9,-0.8 -0.63,-0.35 -0.72,-0.9 -0.34,-1.2 0.25,-0.96 1,-0.48 1.33,-1.78 0.28,-1 -0.9,-0.2 -2.15,1.54 -0.63,-0.25 0,-0.2 -0.1,0.1 0.36,-0.56 -0.25,-0.15 -0.47,-0.9 0.1,-0.2 -0.92,-0.62 -0.62,-0.1 0,-0.18 -0.97,-0.16 z"
3046+ id="path12442-5"
3047+ inkscape:connector-curvature="0"
3048+ overflow="visible"
3049+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3050+ <path
3051+ d="m 878.63,260.52 -0.44,0.9 0.08,0.88 -0.9,0.72 -1.82,-0.25 -0.15,-0.47 0.54,-0.4 0.28,-0.26 c 0.26,-0.23 0.5,-0.45 0.72,-0.72 0.14,-0.16 0.26,-0.35 0.37,-0.53 l 0.04,-0.04 c 0.06,-0.1 0.1,-0.2 0.16,-0.28 l 0.16,-0.3 c 0.25,-0.63 0.34,-1.3 0.15,-2.04 l -0.24,1.87 -0.53,0.92 -0.8,0.9 -1,0.88 -0.73,0.37 -0.9,-0.1 -0.9,0.1 -0.36,0.2 0.2,0.87 -0.3,0.56 -0.18,0.34 -1.15,1.1 0.16,0.1 0.9,-0.82 0.57,-0.72 0.16,-0.2 1.7,0.3 -1,0.52 -0.7,0.2 -0.98,0.8 c 0.15,0.06 0.34,0.08 0.53,0.1 l 0.53,0.06 1.2,0.1 0.24,0 1.28,0.18 0.25,0.1 1.03,0.06 1.2,0.06 c 0.68,0.03 1.48,0.06 2.18,0.06 -0.42,0 -0.87,-0.03 -1.32,-0.03 0.94,0.03 1.86,0.05 3.03,0.04 l 0.82,0 1.52,-0.1 1.34,-0.1 0.9,-0.17 0.73,0.43 0.42,0.38 0.9,0.53 0.4,0.57 -0.14,0.75 1.76,-0.02 2.25,0.34 1.64,-0.54 0.28,-1.03 1.1,0.03 1.8,-0.96 0.3,0.9 0.98,-0.07 -0.87,-0.95 1.03,-3.5 1.7,-0.86 2.58,-1.67 -1.18,-0.48 0.76,-2.34 1.07,-0.25 0.54,-0.7 3.1,-0.1 0.1,-0.6 0.47,-0.3 0.83,-0.84 1.47,-0.17 0.25,-0.53 -0.16,-1 0,-0.06 -0.1,-0.47 -0.62,-0.9 -0.1,0 -0.56,-0.88 -0.25,-0.92 -0.38,0.1 -0.54,0.06 0.44,-0.97 0.1,-0.9 0.28,-0.1 0.18,-0.28 -0.18,-0.9 -0.72,-0.46 -0.9,-0.87 -0.45,-0.1 0.17,-0.72 0.56,-0.9 0.35,-0.28 0.28,-0.1 0.1,-1.15 -0.1,0 -0.9,-1.82 0.37,-0.96 -0.1,-0.3 -0.37,-1.8 0.18,-0.97 0.54,-0.47 0.62,-0.34 0.56,-1.2 0.07,-0.7 1,-0.16 0.46,-0.38 0,-0.28 -0.38,-0.25 -0.44,-0.38 -0.47,0.47 -4.64,-0.3 -1,-0.53 -0.9,0 -1,-0.37 -1.8,-0.25 -0.9,0.44 -1,-0.45 c -0.36,0.98 -0.4,0.98 -1.34,0.72 l -1.88,0 -0.7,0.53 -1,-0.2 -0.92,0.73 -0.9,-0.2 0.37,0.73 -1.92,0.38 -0.87,0.53 -0.46,1 1,0.28 -1,0.34 0.62,1 1,0.15 -1,0.2 -0.15,1 0.82,0.6 0.25,1 1,0.1 0.9,0.35 0.88,-0.8 0.9,0.7 -1.15,2.97 0.25,1 0.38,2.7 -0.82,0.9 -0.9,0.53 -0.96,0.56 -0.9,0.1 -1.82,-1 -0.25,-0.9 -1.72,-1.73 -0.9,-0.63 -0.63,-0.9 -2.25,1 -0.9,0.1 -0.9,0.8 -0.64,0.9 -0.34,0.9 0,0.9 -0.73,0.9 -0.9,0.8 -0.3,1.82 -0.08,1.97 0.36,0.9 0,1.53 0.25,0.9 0.58,1.5 0.1,0.9 z"
3052+ id="path42050-6"
3053+ inkscape:connector-curvature="0"
3054+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
3055+ overflow="visible"
3056+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3057+ <path
3058+ d="m 883.94,163.86 -0.2,-0.9 -0.87,-0.97 -0.7,-0.58 -0.4,-0.34 -0.18,-0.28 -1.26,-1.44 -1.53,-0.28 -1.05,0.56 0.34,1.16 -1.82,-0.1 -0.62,0.54 0.62,0.18 0.47,0.2 0.1,0 0,0.52 1.87,1.1 0.9,0.9 1.97,0.88 0.65,0.65 0.97,0.16 0.1,-0.1 0.9,0.38 0.28,0.1 0.62,0.2 1.88,0.87 0.37,0.9 0.88,0.47 0.03,0 0.78,0.88 0.66,0.56 -0.9,1.16 0.1,0.53 0,0.1 0.14,0.9 -0.53,0.9 0.9,0.28 0.9,0.72 -1.08,1.07 0,0.37 2.06,2.9 -0.52,0.9 -0.1,0.96 -0.96,0.8 0.06,0.54 0,1 1,0.82 1.2,2.43 0,0.2 0.05,0.05 0.1,0.2 1.62,0.1 0.1,-0.1 0.18,0.62 0.9,0.47 0.88,0.17 1.64,1.44 -0.25,0.9 0.05,0.64 -0.25,0.88 1.06,0.8 -0.15,0 -0.1,0.38 -0.9,0 0.72,0.9 c -2.6,-1.58 -3.93,0.83 -5.3,2.7 l -1,0.72 -0.35,0.9 -0.53,0.38 -0.38,0.25 -0.72,1.1 -1,-0.1 -0.06,0.87 -0.03,0 -0.88,0.38 -0.28,-0.1 -1.07,1.82 -0.02,0 -1.06,-0.57 -0.72,0.82 -0.1,0.1 -0.43,0.9 0.24,1.1 -0.25,0.24 -1.92,0.54 0.2,-0.34 -0.92,0.34 -1,-0.62 -0.15,0.62 0,0.88 -0.46,1 -0.88,0.63 -0.28,1 0.2,0.9 -0.4,0.88 0.3,0.9 0.34,-0.33 0.47,0.97 -0.1,0.9 -0.38,0.9 0.1,0.34 0.8,1 1,1.97 -0.8,-0.24 0.18,1.78 -0.2,1 -0.46,0.9 0.1,0.9 -0.35,1.8 0.9,0.56 0,0.15 0.62,-0.34 0.44,0.92 0.9,-0.1 0.2,0.25 0.96,0.28 1.1,0.16 0.72,0.14 -0.72,0.87 1.44,0.1 0.9,-0.53 -0.2,0.44 -1.86,0.57 -0.28,0.35 -0.47,0.53 0.1,0.37 0.27,0 0.1,-0.03 0.9,-0.16 0.88,-0.63 0.2,-0.33 0.46,0.53 0.87,0.25 0.1,0.37 -0.26,0 -0.28,0.44 1,-0.44 -0.38,0.53 -0.9,0.72 1.8,-1.06 0.1,-0.18 1.06,0.44 0.8,-0.44 2.1,-0.53 0,0.52 0.88,0 0.56,-1 0.82,-0.1 0.87,-0.33 0.92,0.08 1,-0.38 1.25,-0.9 0.47,0.9 0.62,-0.9 0.88,0.47 -0.44,-0.9 0.9,0.27 1,0 0.35,-0.56 0.44,0.2 1.8,-0.2 1,-0.53 0.8,0.47 1.9,0 0.17,-0.38 0.35,-0.34 1.2,-1 0.9,-0.8 0.7,-0.64 0.17,-0.1 0.27,0 1.15,-1.1 0.1,0 2,-1.33 1.06,-1.25 0.1,-0.1 0.37,-0.1 1.78,-1.6 0.2,-0.36 2.68,-2.72 1.44,-1.06 0.9,-0.9 0.73,-0.72 1.34,-2.7 -0.24,-0.55 -1,-0.82 -0.34,-0.87 -1,-0.56 -0.47,-0.38 -1.16,-0.65 -0.35,-0.14 -0.38,-0.28 c -0.37,-0.22 -0.74,-0.47 -1.1,-0.72 l -0.33,-0.2 -0.44,-0.42 -0.56,-0.54 0.56,-0.18 0.44,-0.2 1.72,-1.77 0.1,-0.66 -0.2,-0.88 -0.9,-0.57 -0.9,-0.25 -0.54,-1.1 -0.2,-0.18 -0.08,-0.15 0.1,-0.38 0.9,-0.73 -0.9,-0.8 -0.63,0.08 -0.9,-0.7 -0.34,-0.92 0.9,-0.72 0.25,-0.9 -0.9,0 0.38,-0.87 0.28,-2.44 0.97,-0.2 0.56,0.1 c -0.04,-1.54 -0.7,-2.78 -1.48,-4 l -0.12,-0.2 -0.84,-1.2 -0.13,-0.32 c -0.32,-0.53 -0.63,-1.07 -0.87,-1.66 l -1.44,-1.8 0,-0.73 2.15,-2.8 0.9,-0.8 1,-0.8 0.26,-1.26 0,-0.3 -1.7,-1.14 -0.7,-1 -0.9,-0.9 -2,-0.54 -0.9,-0.62 -0.8,-2 -0.1,-0.16 -0.1,-0.2 1.45,-1.9 -0.44,-0.87 -0.9,0 -0.2,-0.08 2.07,-1.43 -0.14,-1.68 1.66,-2.14 -0.72,-1 -3.76,-1.95 -2.6,-1.64 -1.9,0.83 -3.4,0.33 -2.93,2.43 -1.44,6.06 -0.97,0.05 -2.3,2.62 -4.94,-2.18 -0.65,0.77 z"
3059+ id="path42064-1"
3060+ inkscape:connector-curvature="0"
3061+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
3062+ overflow="visible"
3063+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3064+ <path
3065+ d="m 894.84,192.3 -1,0.34 0.53,0.56 1.44,-0.56 0,-0.15 z"
3066+ id="path41967-9"
3067+ inkscape:connector-curvature="0"
3068+ overflow="visible"
3069+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3070+ <path
3071+ d="m 886.2,201.5 -0.92,0.24 1,0.28 -0.1,-0.53 z"
3072+ id="path41965-3"
3073+ inkscape:connector-curvature="0"
3074+ overflow="visible"
3075+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3076+ <path
3077+ d="m 877.9,205.52 0.63,0.9 0.28,-0.43 z"
3078+ id="path41963-5"
3079+ inkscape:connector-curvature="0"
3080+ overflow="visible"
3081+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3082+ <path
3083+ d="m 879.1,224.86 -0.1,0.28 0.72,0 -0.63,-0.28 z"
3084+ id="path41961-2"
3085+ inkscape:connector-curvature="0"
3086+ overflow="visible"
3087+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3088+ <path
3089+ d="m 871.88,226.24 0.28,0.87 -0.9,0.1 0.9,1 0.53,0 0.17,-0.28 -0.18,-0.97 0.27,0.54 0.9,0 -0.28,-1 -1.73,-0.26 z"
3090+ id="path41959-7"
3091+ inkscape:connector-curvature="0"
3092+ overflow="visible"
3093+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3094+ <path
3095+ d="m 883.94,226.24 -0.1,0.15 0.3,-0.16 -0.2,0 z"
3096+ id="path41957-6"
3097+ inkscape:connector-curvature="0"
3098+ overflow="visible"
3099+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3100+ <path
3101+ d="m 882.7,226.77 0.42,0.34 0.57,-0.24 -1,-0.1 z"
3102+ id="path41955-5"
3103+ inkscape:connector-curvature="0"
3104+ overflow="visible"
3105+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3106+ <path
3107+ d="m 883.13,227.1 -0.1,0.2 0.28,0.28 -0.17,-0.47 z"
3108+ id="path41953-3"
3109+ inkscape:connector-curvature="0"
3110+ overflow="visible"
3111+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3112+ <path
3113+ d="m 872.7,228.4 0.55,0.52 0.53,0 0,-0.53 z"
3114+ id="path41951-7"
3115+ inkscape:connector-curvature="0"
3116+ overflow="visible"
3117+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3118+ <path
3119+ d="m 885.84,228.92 0.82,0.53 0.43,-0.53 z"
3120+ id="path41949-4"
3121+ inkscape:connector-curvature="0"
3122+ overflow="visible"
3123+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3124+ <path
3125+ d="m 889.16,284.08 0.18,0.1 0.38,0.9 0.06,0.72 0.47,0.53 0.1,0 0.52,1.2 1,0.8 -0.9,0.44 0.72,0.9 0,0.35 -0.1,0.37 -0.9,0.7 -0.92,0.2 -0.34,0.53 c -0.1,0.06 -0.2,0.12 -0.28,0.2 -0.13,0.07 -0.26,0.15 -0.38,0.24 -0.2,0.14 -0.38,0.3 -0.56,0.47 -0.2,0.17 -0.42,0.4 -0.63,0.6 l -0.07,0.05 c -0.14,0.13 -0.3,0.24 -0.44,0.4 l -0.73,0.9 -0.1,0.1 -0.18,0.1 -0.35,0.43 -0.1,0.1 -0.53,0.62 0,0.62 0.25,0.9 -0.1,0.63 0.67,0.9 0.06,0.4 -1.5,-0.48 -0.28,0.5 -0.28,0.5 -0.2,0.72 -0.62,0.9 -0.43,0.53 -0.1,0.72 0,0.18 0.18,0 0.35,0.2 0,0.08 0.9,0.72 0.28,0 0.36,0.44 0.18,0.34 0.9,0 0.1,0.1 0.25,0.8 -0.88,0.73 -1,0.36 -0.28,0.1 -0.9,0.34 -0.26,0.53 -0.28,0.2 -0.44,0.27 -0.1,0.2 -0.24,0.45 -0.56,1.13 -0.2,0.47 0,0.1 -0.62,0.62 -0.28,0.9 -0.43,0.53 -0.1,0.1 0,0.44 -0.72,0.37 -0.17,0.92 -0.16,0.25 -0.72,0.9 -1.37,0 -0.35,0.53 -0.1,0.1 -0.1,0 -0.9,-0.2 -0.96,0.2 -0.1,0.2 0.26,0.33 0.28,0.56 1.1,0.43 0.25,0.53 0.2,0.2 0.43,0.52 -0.1,0.56 0.2,0.25 -0.2,0.18 0.28,0.2 0.1,0.17 0.8,0.72 0.92,0.35 0.1,0.1 0.15,0 0.8,0.27 -0.15,0.9 -0.28,0.15 0.2,0.2 0.7,0.37 -0.6,0.28 -0.3,0.15 0.2,0.3 0.43,0 0.53,0.24 0,0.08 0.28,0.28 1.62,0.34 0,0.2 0.25,0.27 0.92,-0.47 0.47,-0.43 0.52,0.15 0.34,0.13 0.9,0.44 -0.33,0.17 -0.2,-0.1 -0.7,0.35 -0.2,0.1 0.2,0.18 0.08,0.3 0.36,0.42 0.1,0 0.37,0.44 c -0.08,0.13 -0.2,0.26 -0.3,0.38 l -0.14,0.18 c -0.06,0.05 -0.1,0.1 -0.14,0.16 l -0.15,0.16 -0.18,0.18 c -0.02,0.02 -0.02,0.05 -0.03,0.07 -0.04,0 -0.05,0.05 -0.07,0.08 -0.05,0.05 -0.1,0.1 -0.13,0.16 0,0 -0.02,0 -0.03,0.03 l -0.03,0.03 c -0.03,0.03 -0.05,0.06 -0.06,0.1 -0.02,0.02 -0.02,0.06 -0.04,0.1 l -0.03,0.05 -0.05,0.25 -0.03,0.06 0,0.1 c 0,0.1 -0.02,0.2 0,0.34 0,0.16 0.05,0.33 0.12,0.53 l 0.38,0.66 0,0.14 0.9,0.9 0.35,0.2 0.8,0.9 0.3,0.1 0,0.15 -0.73,0.9 -0.8,0.72 -0.2,-0.1 -0.53,0.2 -0.08,0.02 -0.28,0.16 0.1,0.1 0,1.34 0.18,0.4 0.2,0.4 -0.2,0.13 -0.63,0.4 0.43,0.54 0.2,0.26 0.08,0.13 0.26,0.17 1.44,0.82 0.1,0.6 0.28,0.45 0.18,0.53 -0.18,1 0,0.72 -0.1,0.28 -0.27,0 -0.53,0.1 0,0.43 -0.1,0.4 -0.87,0.14 -0.28,0 0,0.1 -0.72,-0.1 -0.63,-0.15 -0.46,0.14 -0.87,0.28 0,0.1 -0.56,0.8 -0.63,0.17 -0.9,-0.08 -0.16,0 -1.37,0.25 -0.7,0 0,0.38 0.27,0.53 0,0.53 -0.28,0.48 -0.92,0.44 -0.06,0.53 -0.66,1.37 -0.15,0.07 -0.62,0 -0.28,0.45 -0.2,0.54 0.3,0.45 -0.57,0 -0.34,0.88 -0.54,-0.16 -0.47,-0.1 0.6,0.35 0.82,1.82 0.72,0.1 1.28,1.68 0.35,-0.82 0.47,0.3 0.87,0.17 -0.43,0.72 -0.28,-0.2 -0.88,-0.1 -0.1,0.92 1.16,0.8 0.72,1.82 0.9,-0.72 0,-0.18 0.63,0.9 2.35,-0.56 0.9,0.37 0.9,-0.37 0.54,0.34 0.44,0.28 0.28,-0.34 0.8,0.63 0.92,0.08 0.87,0.34 -0.25,0.47 -0.9,0.62 -0.82,-0.2 -0.9,-0.62 -0.44,-0.1 -0.47,-0.08 -1.06,-0.44 -1,-0.63 -0.92,0.25 -0.87,0.72 -0.9,0.1 -0.72,1 0.35,0.9 0.7,1 0.48,0.16 0.64,0.9 -0.44,1.72 0.72,1.44 0.87,-0.28 0.8,-0.9 0.1,0.56 0.9,0.9 0.82,1.35 0.1,0.15 0,-0.87 0.8,-0.9 0.63,0.43 0.53,0.9 0.9,0.63 0.1,-0.52 -0.56,-0.9 0.1,-0.9 -0.26,-0.9 -0.9,-1.6 -0.38,-1 0.1,-0.3 0.9,0.38 0.63,0.9 1.82,-0.37 0.25,-0.2 -0.53,-0.87 -0.9,0.16 -0.26,-0.73 -0.62,-0.72 0,-0.35 1.96,-0.53 0.9,0.44 0.92,0.64 0.87,0.9 0.1,-0.1 0.1,-0.9 -0.28,-0.62 0,-0.9 -0.35,-0.92 -1.1,-0.25 -0.43,-0.7 -1.25,-0.2 0,-0.63 -0.9,-0.1 -0.92,-0.62 -0.9,-0.28 -0.63,-0.53 0.9,0.1 1,-0.55 -0.8,-1.62 0.96,-0.2 0.57,0.36 -0.46,0.9 0.72,-0.2 0.3,-0.87 -1.73,-1.72 -1.17,-2.05 -0.28,-0.1 -0.28,-0.8 0.37,-0.9 0.1,-0.92 0.18,-0.34 0.1,0.17 0.97,-0.8 -0.45,0.96 0.97,0.8 1.37,0.82 0.34,1.2 0.9,-0.2 -0.62,-0.37 -0.63,-0.88 0.87,-0.1 1,0.45 0.62,0.9 0.56,0 0.06,-0.1 -0.63,-0.9 -0.16,0 -0.38,-0.96 0.9,0 0.9,0.33 0.83,0.9 0.33,-0.18 -0.8,-0.9 -0.92,-0.63 -0.86,-0.1 -0.47,-1.62 0.72,-0.16 0.52,0.25 1,-0.26 0.9,-0.8 1.82,0.43 0.87,-0.63 0.73,-0.28 0.47,0.47 2.78,0.44 0.9,0.62 0.44,0.7 1,0 1.8,-0.24 0.17,0.44 -2.7,1.34 0.26,0.56 -0.16,0.88 0.8,-0.88 0.9,-0.65 0.9,-0.88 0.9,-0.28 0.28,-0.3 0.88,-0.33 1.8,-1.82 0.9,0 1.64,-0.43 1.87,0.25 0.1,-0.07 0.28,0.44 0.87,0 1,-0.62 -0.43,-1 -2.73,-1.07 -1.06,-0.7 -0.8,-1.4 0.18,-0.86 -0.28,-0.67 -0.9,-0.88 -0.44,-0.9 -0.9,-0.38 0.9,-0.43 0.25,-0.63 0.73,-0.9 0.28,-1.96 0.48,-0.3 0.43,-0.9 1.9,-0.18 0.46,-2.7 0,-1.8 0.43,-0.97 1.24,-1.63 -0.87,0.28 -0.1,-0.2 0.72,-0.9 0.1,-0.9 0.42,-0.1 0,0.9 0.9,0.3 0.92,-0.1 0.72,-0.47 0.25,-0.63 0,-1.25 0.3,0 0.17,-0.7 0,-0.55 -0.62,-0.65 -0.1,-0.88 0.9,-0.18 0.98,-0.63 0,0.54 0.9,-0.53 1.16,-1.33 0,-0.03 0.02,0 1.44,-1.8 0.07,-0.9 1.8,-0.52 0.73,0.18 0.53,-0.9 0.46,0.8 0.9,-0.08 0.63,-0.9 0.08,-0.92 0.16,-0.25 -0.82,-1.53 1,1.53 0,1.77 0.72,0.86 0.9,0.1 1.54,-0.54 -0.9,0.53 -0.2,0.38 -1.77,0 -1.7,-0.28 0.7,0.37 0.82,0.72 -0.9,0.44 0.9,0.1 1.53,0.9 0.9,0.2 2.8,-0.3 1.8,0.44 0.53,-0.43 0.63,1.14 -0.9,0.47 -2.78,0.98 -1.8,1.1 0,0.9 0.7,-0.2 0.9,0.1 0.92,0.63 0.9,0.4 0.63,0.05 0.8,1.2 -0.46,0.9 0,0.9 -0.7,0.25 0.8,0.53 0.3,0 0.27,0.47 1.78,0 0.9,-0.47 0.82,-0.97 0.9,-0.56 1.8,-0.44 0.17,0.28 0.9,-0.8 0.92,-0.4 0,-0.42 0.96,-0.2 0.9,0.63 2.64,-0.25 0.1,-0.9 0.96,-0.8 -0.9,-0.55 -0.88,-0.18 -0.9,0.53 -0.63,-0.1 -1.8,0.57 -0.9,-0.47 -1.54,-1.97 -0.1,-0.2 -0.44,-0.9 -0.18,-0.7 -0.1,-0.92 1.38,-0.6 0.34,-0.92 0.44,0.9 -1.34,1.1 0,0.2 0.9,-0.48 1.25,-1.53 0.92,-0.44 0.9,-0.8 0.9,-0.2 0.92,0.2 0.87,-0.54 0.92,-0.3 0.9,0.38 1,-1 1.8,-0.53 0.36,-0.38 0.1,-0.1 1.78,-0.24 0.9,0.06 0.63,-0.16 -0.1,-0.3 -0.1,-1 0.38,-0.86 0.9,-0.9 0.9,-0.3 0.07,-0.08 0.38,-0.1 0.43,-0.87 c 1.5,0.1 2.8,0.08 4.35,0.06 l 0,-0.88 0.35,-0.38 -0.1,-0.1 0.63,-0.9 0.1,-0.06 0,-0.38 -0.2,0 -0.05,0.1 -0.2,0 -0.1,-0.1 -0.17,-0.18 0.37,-0.16 -0.28,-0.9 -0.9,-0.47 0,-0.26 0.1,-0.2 0.52,-0.9 0.03,0 0.88,0.1 0.37,-0.38 -0.2,-0.16 -0.17,0.1 -0.2,0.06 -0.87,-0.25 0.1,-0.8 0.97,-0.63 0.72,-0.9 -0.2,-0.53 -0.24,-0.38 0.34,-0.9 -0.63,-0.1 -0.1,0.1 -0.43,0.28 -0.9,-0.3 -0.53,-0.8 -0.9,0 -0.9,-0.87 -0.9,0.43 -0.26,0 -0.9,-0.53 -0.9,-0.37 -0.92,-0.25 -0.78,-0.1 0.06,0.1 -0.78,0.53 -0.03,0 -0.26,-0.47 -0.1,-0.05 -0.1,-0.2 -0.9,-0.36 -0.43,-0.64 -0.62,-0.9 -0.9,-0.54 -0.9,0.53 -0.82,0 -0.44,0.1 -0.2,0.1 -0.9,0.62 -0.87,-0.63 -0.56,0.2 -0.36,-0.45 -0.9,-0.57 -0.8,0.1 -0.73,0.46 -0.52,-0.48 -0.72,-0.9 0.15,-0.88 0,-0.1 -0.36,-0.8 -0.06,-0.1 -0.3,-0.47 -0.1,-0.15 -0.07,-0.1 -0.52,-0.62 -0.04,-0.03 c -0.02,-0.03 -0.03,-0.07 -0.06,-0.1 l -0.06,-0.15 -0.56,-0.44 c -0.6,0.2 -0.97,0.28 -1.22,0.28 -0.38,0 -0.5,-0.17 -0.78,-0.3 -0.1,-0.06 -0.2,-0.1 -0.35,-0.14 -0.27,-0.07 -0.68,-0.1 -1.33,-0.03 l 0.2,-0.1 0.27,-0.63 -0.1,0 -0.18,-0.37 -0.28,-0.9 -0.35,-0.45 0.28,-0.28 0.17,0 0.8,-0.87 c -2.5,-1.7 -0.74,-1.9 -2.1,-2.88 l -0.04,0 c -0.2,-0.14 -0.46,-0.28 -0.82,-0.47 l -0.9,0.54 -0.1,-0.26 -0.14,-0.2 -0.28,0 -0.82,-0.08 -0.53,0.28 -0.9,0.43 -0.9,0 -0.82,-0.34 -0.87,-0.1 0,0.54 -0.2,0.2 -0.7,0.9 -0.9,0.05 -1,-0.34 -4.02,0.22 -1.9,2.64 0.36,1.57 -0.45,0.9 -1.64,-1.4 -3.84,0.65 -1.05,-1.4 -0.36,-0.15 -1.18,0.5 -0.44,0.84 -2.12,-1.53 -1.8,0.3 -0.7,0.78 -0.25,-0.03 0,-0.64 -9.7,-1.95 -5.35,0.24 -1.53,1.52 -1.86,0.57 z"
3126+ id="path41947-7"
3127+ inkscape:connector-curvature="0"
3128+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
3129+ overflow="visible"
3130+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3131+ <path
3132+ d="m 950.88,443.2 -0.54,-0.8 -1.78,-1.3 -0.56,-0.9 -1.88,-0.7 -0.7,-0.9 -0.3,-1 -0.34,-0.43 -0.37,-2.8 0.3,-0.88 0.9,-0.1 -0.66,-0.3 -1.78,-1.8 -1,-1.88 -0.25,-1 -1.37,-2.4 -0.34,-0.9 -0.73,-0.92 -1.9,-3.68 -0.26,-0.9 -0.08,-1 -0.47,-0.88 -1.25,-1.82 0.2,-0.62 -0.3,-1.2 -1.34,-1.33 -2.97,-4.13 c 1.05,-2.82 -2.94,-2.16 -0.2,-5.12 l 0.48,1.15 0.06,0.9 0.65,1.35 1.6,1.63 0.18,1.87 0.28,0.47 0.9,0.9 0.44,0.25 0.63,0.9 0.9,0.9 0.9,0.73 0.54,0.1 0.28,0.24 -0.1,-0.34 0.9,-1.28 -0.08,-0.78 0.2,-0.9 0.7,-1.73 0.26,-1.82 0.37,-1.16 0.97,-1.15 0.2,0.06 -0.2,0.9 0.37,0 1.16,0.2 1.2,0.27 1.24,0.16 1.2,0.2 0.95,-0.73 0,-0.1 1.1,-0.9 0.7,-1.16 1,-0.62 1.26,-0.28 1.15,-0.25 0.4,0 0.08,-0.2 0.44,-0.9 0.72,-0.9 1.2,-0.63 -2.36,-2.54 c -0.74,-0.8 -1.47,-1.6 -2.15,-2.4 l 0.25,-0.3 0.37,-0.08 0.2,0 0.05,-0.1 1.28,-0.34 0,-0.03 1.25,-0.33 0.9,-0.16 0.1,-0.08 1.16,-0.28 0.08,-0.1 1.25,-0.28 0.38,-0.16 1.26,-0.28 0.18,-0.1 1.16,-0.7 0.62,-0.54 0,-0.1 -0.25,-0.52 -0.1,0 -1,-0.3 0,-0.14 -0.08,-0.17 0.08,0 0.2,-0.1 0.08,-0.1 -0.37,-1.17 -0.9,-3.32 c 2.3,-1.1 4.57,-2.38 6.76,-3.6 l 0.25,-0.18 0.1,0 0.3,-0.1 0.08,-0.1 1.7,-0.9 0.8,-0.43 0.28,-0.2 0,-0.08 0.97,-1.78 0,-0.1 -0.06,-1 0,-0.8 0.34,-1.88 0.2,-0.2 0.28,-1 -0.37,-1.25 -0.15,-0.9 0.06,-0.73 0.3,-0.9 1,-0.53 0.62,-0.14 0.28,-0.06 0.28,-0.22 1.16,-0.94 0.06,0 1.37,-1.34 -0.1,-0.28 1.07,-0.28 0.82,-1.16 0.9,0.28 0.9,-0.28 0.98,0.28 0.9,0.35 1,0.2 0.82,-0.2 0.62,-0.28 0.63,0.9 -0.1,0.4 0.92,0.08 0.9,-0.56 0.82,-0.07 0.1,0.16 0.08,-0.9 -0.9,-0.63 -0.1,-0.34 -0.1,-0.9 0.2,-0.3 -0.72,-0.43 -0.9,-0.44 c 0.87,-3.5 0.77,-0.63 0,-4.26 l 0.18,-0.97 -0.56,-0.65 -0.1,-0.25 0,-0.9 -0.62,-1.1 1.72,-0.16 0.34,-1.52 0.9,-0.2 0.73,0.54 -0.17,-0.43 -1.1,-0.92 -0.37,-0.53 -0.34,-0.1 -0.1,-0.1 -0.53,-0.18 c -1.43,0.42 -1.56,0.06 -2.8,-0.43 l 0.17,-0.63 -0.34,-0.9 0.18,-0.8 0.36,-0.54 0.1,-0.2 0,-0.27 -0.1,-0.35 -0.53,-1 -0.72,-0.72 -1.1,-0.44 -0.08,-0.3 -0.16,-0.08 0.16,-0.28 -0.9,-0.54 -0.54,-0.53 -0.53,-0.1 0.28,-0.33 -1.2,0 -0.33,0.7 -1.8,-0.27 -0.92,0 -0.44,0.35 -0.46,-0.16 -0.8,-0.28 -0.08,-0.1 -1,0.9 -1.25,0.73 -0.9,0.3 -0.9,0.52 -2.45,1 -0.62,-0.37 -1.97,-0.28 -0.9,-0.35 -2.53,0.44 -0.63,0.38 -1.78,0.1 -2.34,-0.57 -0.38,-0.53 -0.87,0.53 -0.2,-0.1 -0.7,-0.34 -0.9,-0.2 -0.54,-0.24 -0.9,-0.9 -0.92,0 -0.6,0.52 -0.92,-0.35 -0.9,-0.9 -0.1,-0.9 -0.87,0 -0.1,-0.35 -1.8,0.34 -0.9,-0.34 -0.82,-0.9 -0.34,-0.92 -0.28,-0.28 -0.9,0.63 -0.88,0.2 -5.94,-0.45 -1.8,0.72 -3.08,0.9 -1.25,0.97 -2.7,1.43 -0.54,1 -2.15,0.2 -2.24,-0.64 -0.72,0.15 -1.63,0.1 -2.96,-0.45 -0.7,0.82 -0.02,0 0.2,0.72 1.05,0.7 0.47,0.2 0.9,0 0.88,0.35 -3.3,0.36 -0.9,0.25 0.27,0.73 0.86,0.2 -1.15,0.36 -3.4,-0.2 -0.9,0.3 -0.38,-0.92 -0.88,0.16 0.07,0.9 -0.87,0.1 -1.53,-0.72 -1,0.28 -0.9,-0.1 -1.8,1.35 -0.55,0.9 -0.53,0.1 0,1.78 -0.44,1 0.25,0.1 2.88,-0.63 0.9,0 -0.6,0.9 -0.92,0.72 1.1,0.78 -0.2,0.9 1.2,0.2 -0.66,0.9 -0.88,0.1 0.78,1.44 1,0.1 -0.18,0.24 -1.78,0.56 -0.2,-0.2 -0.08,-0.9 -0.72,-0.9 -0.44,0 -0.1,0.56 0.54,0.88 -0.2,0.37 -0.87,0.35 1.6,0.9 0.7,-0.53 0.9,0.72 1.54,0.62 -0.43,1.34 -0.62,0.1 -0.2,0.18 0.83,0.53 0.1,1.1 0.9,-0.1 0.63,0.63 0.44,0 -0.72,0.9 -0.9,-0.28 0,0.9 3.43,-0.37 0.88,0.47 -0.88,0.82 -0.9,-0.1 -1.2,0.28 -0.87,0.25 0,0.2 0.17,0.08 1.28,0 0.44,-0.53 0.7,0.07 0.9,-0.26 -0.27,0.9 -0.44,0.25 0.28,0.1 1.25,-0.92 0.53,-0.72 0.9,0.28 0,0.53 0.28,0.1 0.25,-0.1 0.28,0.2 0.9,-0.3 0.16,1 0.37,0.82 0.3,0.27 1.15,0.53 1.88,0.35 1.8,-0.72 0.9,0.56 0.83,-1.73 0,-1 0.72,-0.9 1.68,0.18 0.75,0.1 1.8,0.9 1.53,0.54 0.9,0.7 1,1.25 1.06,0.57 0.9,0.25 0.9,-0.35 2.98,-0.53 0.96,-0.48 0.9,-0.1 0.4,-0.7 0.86,-0.92 1.63,-1.06 0.9,0.2 0.2,0.24 0.52,0.1 0.9,0.52 0.9,0.2 0.73,-0.1 0.1,-0.63 0.7,-0.25 0.9,-0.65 0.8,0 0.47,0.9 -0.63,0.9 -0.9,0.82 -0.1,0.9 0.63,1.15 -0.72,1.2 -0.28,0.87 0.66,0.9 0.07,1.35 -0.25,1.18 0.44,1.63 0,0.62 -0.9,0.63 -0.54,0.72 -0.25,1.62 -0.56,0.44 -0.43,1.45 -0.9,1.62 0.1,0.28 -0.54,0.72 -0.1,0.97 -0.37,0.38 -0.35,0.9 -0.36,1.78 -0.9,2.44 c -0.97,2.04 -3.3,4.4 -5.76,3.44 l -0.2,0.25 -1.05,0.37 -0.62,-0.37 0,0.28 -0.56,-0.18 -0.53,0.28 0.54,-0.46 -1.34,0.37 -0.62,-0.52 -0.72,-0.38 -0.2,0.63 -0.52,0.2 -0.2,-0.1 0,0.15 -0.1,-0.13 -0.17,-0.2 0,-0.31 -1.16,-0.53 0.45,-0.62 0.03,0 0.88,0.28 -0.82,-0.9 -0.34,0 -1.25,0.43 -1.72,-0.7 -0.9,0 0.43,0.18 -0.87,0.62 -0.58,-0.1 -0.87,0.4 0.97,-0.83 -0.9,0.28 -0.88,0 -1.1,1.07 0.53,0.18 -0.62,-0.1 -0.44,-0.43 -2.14,1.7 -1.82,0.8 -0.8,0.1 -0.98,-0.53 -1.9,-0.72 -1.78,-0.1 -0.9,-0.72 -0.92,0.3 -0.9,-0.3 -0.9,-0.7 -5.57,-1.17 -0.92,-0.1 -1.8,0.54 -1.14,0 -0.38,-0.38 -0.1,-0.35 -0.7,-1.53 -0.88,-0.28 -2.8,0 -0.92,-0.16 -0.97,-0.66 -2.53,-0.25 -0.72,-0.8 0,-1 -0.9,-0.63 -1.88,-0.54 -1.2,-0.46 -1.05,-0.16 -1.25,-0.1 -0.9,0.26 -0.82,0.56 -1.8,0.15 -0.92,0.57 -0.97,0.34 -1.8,1.53 -0.8,1 -0.36,0.96 0.1,1.28 c 1.12,2.95 1.72,3.04 -1.38,6.13 l -1.78,0.8 -1,0.07 -2.15,-1.06 -2.07,-1.63 -3.87,-1.53 -2.98,-0.72 -0.9,0.1 -1.73,-0.2 -1.8,-0.8 -0.8,-0.9 c -1.13,-1.38 -0.6,-3.12 -1.5,-3.95 l -0.12,-0.1 c -0.23,-0.15 -0.55,-0.27 -0.94,-0.33 l -0.13,0 c -0.2,-0.03 -0.43,-0.04 -0.7,-0.03 l -1.73,-0.45 -0.9,-0.72 -1.44,-0.53 -1.72,-0.2 -1.24,-0.52 c -4.2,1.7 -4.7,-0.18 -8.18,-1.34 l 0,0.34 -0.1,0.2 -0.1,0.42 0,0.2 c -0.13,0.4 0.22,2.4 0.2,2.77 -0.17,0.1 -0.3,0.18 -0.47,0.25 l -0.24,0.13 c -0.08,0.03 -0.18,0.06 -0.25,0.1 l -0.65,0.24 -0.2,0.1 c 0,0 -0.03,0 -0.05,0.02 l -0.72,0.34 c -0.17,0.12 -0.32,0.28 -0.47,0.44 l -0.33,0.44 -0.56,0.18 -0.18,0.1 -0.44,0.9 -0.2,0.2 -0.86,0.15 -0.2,0.18 -0.6,0.9 0.14,0.92 0.28,0.87 0.2,0.9 0,0.63 -0.63,0.9 -0.65,0.92 c -0.22,0.3 -0.43,0.62 -0.53,0.7 -0.15,0.14 -0.3,0.12 -0.63,0.2 -0.2,0.04 -0.4,0.1 -0.8,0.27 l -0.1,0.07 -0.73,0.37 0,0.73 0.1,0.2 0.7,0.86 0.54,0.9 0.4,1 c 0.32,0.96 0.53,1.97 0.52,3 l 0,0.03 c 0,0.33 -0.04,0.67 -0.1,1 l 0,0.1 -0.1,0.37 -0.14,0.9 0.1,0.88 0.05,0.1 0.38,1 0.2,0.8 -0.3,0.63 -0.08,0.4 0,0.05 -0.1,0 -0.34,0.9 -0.2,0.47 0,0.16 0.3,0.9 0.15,0.9 0.1,0.2 0.18,0.9 0.1,0.44 -1,0.9 -0.9,0.45 -0.53,0.9 c 0.7,0.98 1.44,1.94 2.12,2.94 0,0.03 0.04,0.05 0.06,0.07 l 0.15,0.25 0.45,0.72 0.28,0.88 0,0.9 0.28,1 0.1,0.1 0.26,0.1 0.47,0.96 0.96,0.47 0.9,-0.38 0.9,0.28 0.1,0 0.25,0.1 c 0.32,0.1 0.65,0.2 0.97,0.28 l 0.1,0.03 0.12,0.03 0.9,0.27 0.25,0.1 0.8,1 0.3,0.47 0.08,0.15 c 0.02,0 0.05,0.03 0.06,0.05 l 0.47,0.82 c 0.23,0.42 0.37,0.78 0.45,1 l 0.25,0.4 0.1,0.07 0.06,0.03 0.78,0.22 c 0.36,0.06 0.82,0.15 1.53,0.3 0.3,0.06 0.6,0.12 0.9,0.2 0.06,0 0.13,0 0.2,0.02 l 1.24,0.28 1.57,0.37 0.22,0.07 0.1,0 0.14,0.1 c 0.28,0.08 0.5,0.17 0.66,0.3 l 0.03,0.03 0.06,0.03 0.43,0.4 c 0.06,0.07 0.2,0.2 0.28,0.26 l 0.2,0.16 c 0.27,0.23 0.5,0.44 0.97,0.8 l 0.47,0.45 0.97,0.18 0.9,-0.53 1,-0.47 0.92,-0.53 0.25,-0.1 0,-0.08 c 1.7,-0.7 3.05,-1.46 4.7,-2.16 l 9.33,4.66 0.03,0 5.5,2.78 c 1.26,0.64 2.52,1.3 3.78,1.93 2.47,1.26 4.9,2.53 7.36,3.82 l 1.87,1 c 0.73,0.4 1.46,0.8 2.2,1.18 0.8,0.43 1.6,0.85 2.4,1.3 l 4.6,2.5 0,-2.02 4.27,-0.2 0,-9.6 29.15,-0.42 0.84,-0.63 0.15,0.9 z"
3133+ id="path42327-3"
3134+ inkscape:connector-curvature="0"
3135+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
3136+ overflow="visible"
3137+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3138+ <path
3139+ d="m 905.1,522.83 -0.82,0.53 -0.9,-0.1 -0.82,-0.06 -0.97,-0.46 -0.48,-0.2 -1.25,0 -1,-0.34 -0.34,-0.37 -0.9,0.28 -0.9,1.45 c -0.47,-0.02 -0.77,0.05 -1,0.12 l -0.3,0.1 c -0.1,0.04 -0.2,0.1 -0.3,0.12 l -0.2,0.02 -0.18,-0.03 -0.34,-0.13 -0.43,-0.25 c -0.17,-0.1 -0.34,-0.24 -0.56,-0.4 -0.46,0.33 -0.9,0.55 -1.34,0.74 -0.42,0.2 -0.84,0.34 -1.25,0.47 -0.84,0.27 -1.66,0.52 -2.6,1.12 l -0.92,-0.65 -1.44,0.1 -0.56,0.46 -0.62,0.72 0,0.53 -0.44,0.64 -0.2,0.28 0,0.1 0.2,0.02 0.28,0.06 1.34,1.16 1.78,0 0.57,0.2 0.77,0 -0.53,0.7 -0.1,0.2 -0.87,-0.2 -0.9,0.63 -1,0.18 0,1.87 0.43,0.3 0.9,-0.4 -0.43,1.92 0.62,0.9 0.9,-0.1 0.2,0 0.96,0.63 0.28,1 -0.9,-0.28 -0.9,0.28 -0.17,0.16 -1,-0.16 -1,0.72 -0.25,-0.1 -0.66,-0.27 0.1,0.28 -0.35,0.62 -0.08,0.44 -0.1,0.46 -0.9,0.97 c 0.13,0 0.25,0.02 0.37,0.03 l 0.15,0.03 c 0.17,0.03 0.33,0.08 0.47,0.15 l 0.28,0.15 c 0.04,0.04 0.1,0.06 0.13,0.1 l 0.28,0.3 c 0.12,0.17 0.23,0.33 0.32,0.5 l 0,0.04 c 0.13,0.28 0.23,0.6 0.3,0.9 l 0.04,0.2 0.03,0.06 0.02,0.1 0.07,0.2 c 0.07,0.36 0.15,0.7 0.24,1 l 0.34,0.57 0.2,0.72 1.33,1.87 0.64,0.9 -1.88,0.9 2.06,0.26 0.82,0.9 -0.9,0.47 -0.1,0.63 2.78,2.16 0.9,0.24 0.82,0.65 0.18,1.15 -2.15,-0.1 -0.9,0.72 -2.26,0.63 -1,-0.63 -0.52,0.2 -1.44,-0.73 -0.62,0.44 -0.38,0.28 -1.15,-0.2 0.42,1.92 -1.06,0.25 -0.62,0.47 -0.28,0.15 -1.72,-0.87 -0.9,0.8 -1.26,-0.08 -0.2,0.97 -0.52,0.62 -0.43,0.9 -0.47,1.9 0.1,3.32 -0.92,0.56 -0.15,0.1 -0.2,0 -0.47,0.43 -0.87,-0.52 -0.3,0.1 -0.08,0.06 0.38,1 -0.28,0.9 0.43,1.35 0.2,0.9 -0.2,0.9 0.2,1.15 -0.34,0.9 -0.47,0.64 -0.98,0.42 -0.56,0.57 0.28,1.86 0.72,0.9 0.37,1 1.06,0 0.9,-0.37 1.06,0 -0.34,0.9 -0.1,0.8 5.76,0 0.37,0.73 -0.1,1 -0.27,0.97 -0.1,0.37 0.75,1.78 0.06,0.47 -0.35,2.5 -0.1,0.72 0.1,0.28 -0.1,1.44 0.3,0.9 1.33,1.54 0.1,0.72 0.43,1.25 0,0.9 0.1,0.28 0,0.1 -0.27,0.44 -0.44,0.27 0.33,1.78 0,0.1 1.1,-0.54 0.1,-0.08 0.33,-0.38 0.66,0.28 0.87,-0.18 0.9,0.18 0.47,-0.1 0.87,-0.52 0.9,0.1 1,0.1 0.92,-0.67 0.06,1.2 0.1,0.08 0,1.7 -0.16,0.9 0,2.44 0.15,0.28 -0.08,0.88 -0.34,0.9 -0.2,0.72 0.2,0.9 c -0.25,0.03 -0.55,0.04 -0.88,0.04 l -1.1,0 c -1.44,-0.02 -3.2,-0.08 -4.68,-0.03 -0.47,0 -0.92,0.05 -1.3,0.1 -0.22,0.02 -0.4,0.05 -0.58,0.1 -0.15,0.02 -0.34,0.04 -0.46,0.08 -0.02,2.46 0.02,4.88 0.06,7.32 l 0,0.03 c 0.03,2.44 0.07,4.88 0.03,7.32 l 0,0.1 1.15,1.96 1.1,1.1 3.3,3.24 1.3,0.63 3.5,-0.72 0.27,0.1 2.24,0.06 0.88,0.28 0.1,0.1 1.27,1.08 -1.3,0.07 -0.86,0.1 -0.38,0.27 -0.9,0.72 -0.82,-0.44 -1.78,0.97 -0.37,0.46 -1.26,1.06 -0.47,-0.9 -0.72,-0.82 -0.34,-0.62 c -0.46,0 -0.9,0.04 -1.37,0.1 -0.22,0.02 -0.44,0.05 -0.66,0.1 -0.53,0.06 -1.06,0.16 -1.6,0.27 l -0.05,0 c -0.06,0 -0.1,0.02 -0.16,0.03 l -0.28,0.06 c -1.3,0.28 -2.6,0.58 -3.87,0.78 l -0.1,0 c -0.4,0.07 -0.82,0.12 -1.24,0.16 -0.42,0.03 -0.85,0.04 -1.28,0.03 l 0,17.76 -4.6,0 c -0.02,2.64 -0.02,5.26 -0.02,7.9 l 0,8.02 c 0,3.5 0.02,7 0,10.5 0,1.8 -0.04,3.6 -0.07,5.4 l -0.88,0.38 -1.1,0.16 -0.43,0.9 -0.73,0.1 -0.1,0.9 -0.37,0.1 -0.9,0 -0.88,-0.37 -0.8,0 -0.92,0.18 -1.8,-0.1 -0.9,-0.43 -1,0 -1,-0.37 -0.52,-1.07 0.2,-0.9 -0.82,-0.8 -0.1,-0.3 -0.9,-0.15 -0.63,0.72 -0.37,0.87 -0.44,0.38 -0.8,0.62 0.36,0.9 1.16,1.8 1.1,2.8 0.15,0.9 0.9,2.6 1.34,2.7 1.44,2.24 1.37,1.8 0.34,1 0.46,2.17 -0.1,0.9 -0.27,0.88 -0.73,0.73 -0.9,-0.35 -0.35,1 0.8,0.54 0.45,0.9 -0.1,0.35 0.72,0.9 0.8,1.63 -0.43,1.25 0.16,1.25 0.56,0.65 -0.3,-0.9 0.38,-0.47 0.72,-0.1 0.72,0.2 0.1,0.8 0.34,0.54 0.72,-0.07 1,0.35 0.18,0.9 0.35,0.1 0.9,0.72 0.92,0.1 0.87,0.33 2.8,-1.97 1.26,0.1 -0.28,-0.38 0.9,-0.18 1,0.28 2.7,-0.2 2.05,-1.62 0.9,0 0.3,-0.06 0.6,-0.28 0.64,0.1 0,-0.2 0.2,0.3 0.9,0.24 0.18,-0.16 0.88,0.16 0.9,-0.35 1,-0.18 5.47,1.1 0.47,-0.92 0.34,-0.28 1,0 0.92,0.38 0.9,0.1 0.54,-0.2 -0.38,-0.9 0.9,-0.63 1,-0.1 1.8,0.38 2.9,-1.18 3.75,-2.6 0.9,-0.72 0.38,-0.56 0.98,-0.53 1.9,-1.73 3.35,-3.6 2.4,-1.87 1.63,-2.1 1.25,-1.96 0.82,-1.62 1.2,-1.54 0.08,-0.62 1.06,-1.78 2.16,-2.35 0.28,0 0.9,-0.46 -0.18,-0.25 0.9,-0.38 0.9,-0.9 0.07,-0.72 0.46,-0.63 0.35,-1 0.3,-1.8 1.08,-3.68 0.44,-4.3 -0.53,0.86 -0.73,-0.53 -0.66,-0.9 -0.33,-0.1 0.9,-0.43 0.63,-1.35 0.9,-0.8 0.63,-0.4 0.35,-0.42 6.84,-2.53 1.8,-0.82 1.54,-1.78 0.63,-1.9 -0.92,0.46 0.63,-3.6 0.3,-0.9 0.33,-0.56 -0.53,-0.97 0.2,-2.15 -0.2,-0.9 -0.53,0.9 0.1,0.87 -0.48,-0.87 0.18,-0.9 -0.44,-2.35 -0.56,-1 -0.16,-1.78 0.1,-0.38 -0.56,-0.98 -1.63,-1.8 0.56,-1.92 -0.3,-0.53 -0.17,-0.9 -0.63,-0.44 0.9,0.53 0.54,0.63 0.72,-0.26 1.8,-1.63 1.54,-1.8 0.9,-0.53 0.88,-0.82 0.72,0.3 -0.06,-0.83 0.87,-0.18 0.2,-0.44 1.72,-1.72 0.28,-1 -0.38,-0.44 0.9,0.35 0.82,-1.08 1.44,-0.9 0.35,-0.2 3.53,-1.58 0.87,-0.3 0.66,-0.45 0.86,0 0.63,-0.26 1.52,-1.2 1.8,-1.05 0.3,-0.92 1.05,-0.53 1.9,-2.8 0.82,-0.9 0.43,-0.9 -0.37,-0.62 1.1,-2 -0.1,-0.88 -0.72,0.16 -0.1,-0.86 -0.43,-0.9 0.44,-0.92 -0.25,-0.9 0.06,-0.97 -0.35,-0.28 0.2,-1.82 -0.72,-0.9 0.88,-0.63 -0.25,-0.97 0.1,-0.9 -0.37,-0.72 0.1,-1.9 -0.36,-0.82 0.07,-0.86 -0.44,-0.66 0.63,-0.97 0.1,-2.7 -0.36,-0.35 -0.28,0.28 -0.82,0.44 -0.9,0.8 -2.26,0.82 -0.9,0.62 -0.97,0.18 -0.9,0.1 -1.35,0.53 -0.63,0.62 -0.9,-0.53 -0.9,-0.28 -0.63,0.1 -1.25,1.53 -0.92,0.34 -0.2,0.3 -0.9,-0.1 -0.9,-0.35 -0.25,-0.37 -0.9,0.1 -0.9,0.7 -0.2,0 -0.16,0.1 -1.8,-0.7 -1.73,-0.73 -0.87,0.72 -0.72,0 -0.2,-0.1 -1.93,0 0,0.72 -0.28,0.96 0,0.03 -0.63,0.87 -0.3,0.9 0.1,0.9 0.44,0.92 -0.34,0.95 0,0.04 0.06,0.17 0.22,0.7 -0.1,1 0.35,0.9 0.63,0.97 0,0.03 0.2,0.22 0.26,0.3 0.54,1.78 0.1,0.9 -1.1,-1.15 -0.63,-0.47 -0.53,1 -0.28,0 -0.63,-0.9 0.24,-1.9 -0.87,-0.6 0,-0.04 -0.16,-0.28 -0.3,-0.6 0.1,-1 -0.3,-1.9 -0.33,-0.44 -0.1,-0.9 -0.7,-0.97 0,-0.03 0.27,-1.16 1.06,-1.8 -0.34,-1.6 -0.1,-0.44 0,-1.73 -0.2,-0.92 0.4,-1 -0.82,-0.88 0,-0.03 -0.22,-0.3 -0.35,-0.57 -0.2,-1.13 -0.04,-0.22 -0.72,-0.65 -0.7,0.1 -0.92,-0.16 -1.78,-0.72 -0.38,0 -0.7,-0.38 -0.1,0 0,-0.1 -0.2,-0.18 -0.87,-0.06 -0.2,-0.38 -1.9,-0.53 -0.43,0.1 -0.9,-0.92 -0.26,0.2 -0.37,-0.2 -0.45,-0.9 -0.37,-0.1 -0.54,-0.34 -0.9,0 -0.44,0.87 -0.03,0 -0.88,-0.7 -0.76,-0.35 -0.87,0.1 0,-0.04 -0.1,-0.24 -0.28,-0.62 0.53,-0.82 -0.35,-0.9 -0.9,-0.63 -0.35,-0.9 -0.37,-1.8 0,-0.03 -0.63,-0.68 -0.62,-0.3 -0.27,-0.1 -1.5,-1.86 -0.04,-0.04 -0.63,-1.78 -0.63,-0.9 -0.1,-0.82 0.73,-0.87 0,-0.03 -0.1,-0.88 0,-0.03 -0.62,-0.88 -0.28,-0.9 -0.16,-1.54 0.1,-0.9 0.63,-1.88 -1,0.44 0.28,-0.88 0,-0.03 0.26,-2.78 0.28,-0.8 0.3,0 0.27,0.9 0,1 1.5,3.2 0,0.04 0.58,0 0,-0.2 1.06,-0.53 0.8,-1.1 0.55,-0.9 0.46,-0.34 0,-0.38 0.3,-0.7 0.33,-0.3 0.44,-0.53 0.38,-0.34 0.53,-0.9 -0.08,-0.3 0.2,-0.33 -1.73,-0.1 -0.17,-0.9 0.44,-0.44 -0.44,0 0.63,-1.18 0.9,-0.18 0.07,0.1 0,-0.1 0.46,-1.44 -0.3,-0.44 -0.08,-0.1 0,-0.1 0.1,-0.42 0,-0.82 -0.1,-0.28 -0.16,-0.18 -0.1,-0.16 0,-0.28 -0.27,-0.28 -0.3,-0.07 -0.7,-1.46 -0.45,0 -0.2,0.3 -0.08,0.08 -1.44,1.44 -0.44,0.1 -0.38,-0.73 -0.44,0.1 -0.62,0.17 c -0.04,-0.26 -0.05,-0.52 -0.07,-0.78 l 0,-0.04 c -0.02,-0.5 0.02,-1 0.1,-1.5 l 0,-0.03 c 0.06,-0.56 0.17,-1.12 0.27,-1.7 0,-0.05 0.03,-0.1 0.03,-0.18 0.1,-0.6 0.16,-1.18 0.2,-1.8 l 0.08,-0.38 -0.1,-0.28 0.9,-1.7 0.26,-1.9 0.04,0 0.06,-0.1 0.1,0 1,-0.8 0.43,-0.54 0.72,-0.35 -0.2,-0.7 0.66,-0.9 -0.63,0.9 0.16,0.7 0.27,0.98 0.03,-1.34 0.7,0.8 1.24,-1.8 0.9,-0.35 0.82,-0.9 0.37,-0.64 -0.28,-1.53 -0.37,0.38 -1.07,-0.8 -0.46,-0.2 -0.06,0.2 -0.9,-0.57 0.25,-0.87 0.46,-1 -0.47,-1.25 0.37,-0.7 0,-0.92 0.1,-0.28 -0.48,0.58 -1.4,-0.6 0.04,-1.1 -1.66,-0.5 -1.8,-1.88 -0.02,-0.8 -1.77,0.08 -0.88,0.8 -2.66,-0.48 -1.24,0.6 -2.88,-1.4 -0.36,-0.9 -1,-0.42 z"
3140+ id="path41945-8"
3141+ inkscape:connector-curvature="0"
3142+ sodipodi:nodetypes="cccccccccccccccccccsscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
3143+ overflow="visible"
3144+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3145+ <path
3146+ d="m 925.25,536.33 0.53,-0.53 0,-0.2 z"
3147+ id="path41943-5"
3148+ inkscape:connector-curvature="0"
3149+ overflow="visible"
3150+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3151+ <path
3152+ d="m 889.34,359.24 0.28,0.34 1.8,0.2 1.27,1.8 0.86,0.44 0.2,-0.2 -0.3,-0.9 -0.87,-0.15 -0.38,-0.9 0,-0.92 -0.9,-0.9 -0.88,0 -0.9,-0.35 -0.9,-0.62 -0.73,-0.9 -0.9,0.34 -0.9,0.72 0.9,0 0.9,0.37 0.9,0.73 z"
3153+ id="path41941-1"
3154+ inkscape:connector-curvature="0"
3155+ overflow="visible"
3156+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3157+ <path
3158+ d="m 884.94,235.24 -0.72,0.65 -0.2,0.15 -1.86,0.25 1.87,0.72 0.2,0.25 0.52,0.65 1.9,-1.15 -0.8,-1 z"
3159+ id="path41939-9"
3160+ inkscape:connector-curvature="0"
3161+ overflow="visible"
3162+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3163+ <path
3164+ d="m 887.47,235.5 0,0.55 0.87,-0.28 z"
3165+ id="path41937-7"
3166+ inkscape:connector-curvature="0"
3167+ overflow="visible"
3168+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3169+ <path
3170+ d="m 887.72,238.02 -0.44,0.8 0.97,0.2 z"
3171+ id="path41935-1"
3172+ inkscape:connector-curvature="0"
3173+ overflow="visible"
3174+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3175+ <path
3176+ d="m 884.3,238.45 -0.08,0.04 -0.8,0.24 -0.92,0.53 -0.9,-0.2 0.27,0.92 -0.43,0.9 0.87,0.52 -0.24,1.82 0.9,-1 0.26,-0.9 0.9,-0.35 0.1,0 0.8,0.08 1.9,-1.1 0.9,-0.34 -0.73,-0.72 -0.9,-0.47 -0.98,0.2 -0.9,-0.2 z"
3177+ id="path41933-9"
3178+ inkscape:connector-curvature="0"
3179+ overflow="visible"
3180+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3181+ <path
3182+ d="m 926.3,315.67 2.73,0.72 -0.9,-0.35 z"
3183+ id="path41931-9"
3184+ inkscape:connector-curvature="0"
3185+ overflow="visible"
3186+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3187+ <path
3188+ d="m 936.06,315.95 0.78,0 0.9,0.44 0.92,-0.45 0.9,0.72 0.2,0.82 1.05,-0.67 1.1,1.9 0.26,0.35 1,1.2 0.18,0.9 -0.72,-0.9 -0.46,-0.92 -1.53,-1.34 -0.88,0.53 0.16,-0.2 0.3,-0.86 -0.54,0.05 -0.38,-0.25 -0.9,0.25 -0.88,-0.78 -0.56,-0.1 -0.88,-0.72 z"
3189+ id="path41929-2"
3190+ inkscape:connector-curvature="0"
3191+ overflow="visible"
3192+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3193+ <path
3194+ d="m 894.66,346.8 -0.9,0.1 0.46,0.9 0.15,-0.1 z"
3195+ id="path41927-0"
3196+ inkscape:connector-curvature="0"
3197+ overflow="visible"
3198+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3199+ <path
3200+ d="m 900.16,349.6 -0.72,0.17 -0.57,0.47 0.38,0.18 z"
3201+ id="path41925-0"
3202+ inkscape:connector-curvature="0"
3203+ overflow="visible"
3204+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3205+ <path
3206+ d="m 896.38,350.95 -0.38,0.1 0.53,0.9 0.9,-0.1 0.48,-0.9 z"
3207+ id="path41923-7"
3208+ inkscape:connector-curvature="0"
3209+ overflow="visible"
3210+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3211+ <path
3212+ d="m 871.97,351.86 -0.9,0.53 1.62,1.8 0,-0.28 -0.36,-0.28 -0.37,-0.9 z"
3213+ id="path41921-9"
3214+ inkscape:connector-curvature="0"
3215+ overflow="visible"
3216+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3217+ <path
3218+ d="m 901.84,354.27 -0.97,0.47 -0.9,0.9 0.97,0.16 0.9,-0.44 -0.34,0.9 0.9,0.26 0.88,-0.35 z"
3219+ id="path41919-0"
3220+ inkscape:connector-curvature="0"
3221+ overflow="visible"
3222+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3223+ <path
3224+ d="m 893.4,356.7 0.44,0.9 0.44,-0.36 z"
3225+ id="path41917-6"
3226+ inkscape:connector-curvature="0"
3227+ overflow="visible"
3228+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3229+ <path
3230+ d="m 875.94,357.24 -0.38,0.18 0.47,0.9 -0.1,-1.08 z"
3231+ id="path41915-9"
3232+ inkscape:connector-curvature="0"
3233+ overflow="visible"
3234+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3235+ <path
3236+ d="m 900.78,358.6 -0.9,0.54 0.43,0.9 0.2,0.88 0.44,-0.43 0.1,-1 -0.26,-0.9 z"
3237+ id="path41913-5"
3238+ inkscape:connector-curvature="0"
3239+ overflow="visible"
3240+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3241+ <path
3242+ d="m 875.13,359.67 -0.63,0.28 0.1,0.9 1.77,0.45 -1.25,-1.63 z"
3243+ id="path41911-4"
3244+ inkscape:connector-curvature="0"
3245+ overflow="visible"
3246+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3247+ <path
3248+ d="m 894.84,362.55 0.82,0.9 0.06,-0.7 z"
3249+ id="path41909-0"
3250+ inkscape:connector-curvature="0"
3251+ overflow="visible"
3252+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3253+ <path
3254+ d="m 876.56,362.64 -0.9,0.2 0.9,0.8 z"
3255+ id="path41907-5"
3256+ inkscape:connector-curvature="0"
3257+ overflow="visible"
3258+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3259+ <path
3260+ d="m 904.28,362.83 -0.9,0.62 0.9,0.3 0.9,-0.73 z"
3261+ id="path41905-7"
3262+ inkscape:connector-curvature="0"
3263+ overflow="visible"
3264+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3265+ <path
3266+ d="m 895.8,363.55 0,0.2 0.92,0 z"
3267+ id="path41903-7"
3268+ inkscape:connector-curvature="0"
3269+ overflow="visible"
3270+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3271+ <path
3272+ d="m 898.34,366.08 -0.9,0.53 0.47,0.92 0.63,-0.57 z"
3273+ id="path41901-9"
3274+ inkscape:connector-curvature="0"
3275+ overflow="visible"
3276+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3277+ <path
3278+ d="m 906.34,367.6 -0.9,0.35 -0.44,0.9 z"
3279+ id="path41899-7"
3280+ inkscape:connector-curvature="0"
3281+ overflow="visible"
3282+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3283+ <path
3284+ d="m 910.66,370.1 -0.88,0.3 -0.9,0.62 -0.38,0.9 -0.1,0.9 0.9,-0.37 0.83,-0.53 0.53,-1.8 z"
3285+ id="path41897-3"
3286+ inkscape:connector-curvature="0"
3287+ overflow="visible"
3288+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3289+ <path
3290+ d="m 886.2,370.4 0.6,0.9 -0.42,-0.9 z"
3291+ id="path41895-6"
3292+ inkscape:connector-curvature="0"
3293+ overflow="visible"
3294+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3295+ <path
3296+ d="m 905.8,373.8 -0.36,0.9 0.28,0.9 0.28,-0.9 z"
3297+ id="path41893-0"
3298+ inkscape:connector-curvature="0"
3299+ overflow="visible"
3300+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3301+ <path
3302+ d="m 940.28,374.17 -0.8,0.2 -1.73,0.87 -1.78,0.56 -1.53,0.15 -0.9,-0.15 -0.9,0.53 -0.2,0.44 -1.53,0 -1.24,0.9 0.18,0.63 0.72,0.9 0.72,0.3 1.16,0 0.62,0.42 -0.06,-0.34 0.25,-0.28 0.9,-0.1 1.26,-0.43 0.73,-0.9 1,0 0.7,-0.2 -0.7,-0.8 0.37,-0.82 0.88,-0.72 1,-0.44 0.9,-0.73 z"
3303+ id="path41891-1"
3304+ inkscape:connector-curvature="0"
3305+ overflow="visible"
3306+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3307+ <path
3308+ d="m 889.34,374.42 -0.28,1.9 3.7,0.35 1.8,0.57 0.1,0.43 0.28,0.38 1.68,-0.1 0.9,-0.28 3.6,0 0.63,-0.62 0.1,-0.9 -0.9,0.37 -1.8,0.34 -0.1,-0.9 -0.9,0.1 -1.43,-0.17 -0.9,-0.38 -1.26,-0.1 -1.8,0.47 -0.35,-0.3 -0.37,-0.9 -0.87,0.3 -1.82,-0.58 z"
3309+ id="path41889-0"
3310+ inkscape:connector-curvature="0"
3311+ overflow="visible"
3312+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3313+ <path
3314+ d="m 895.22,396.9 0.25,1.4 c -0.23,-0.66 -0.4,-0.97 -0.25,-1.4 z"
3315+ id="path41887-9"
3316+ inkscape:connector-curvature="0"
3317+ overflow="visible"
3318+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3319+ <path
3320+ d="m 895.63,398.8 0.18,0.47 0,0.47 c -0.04,-0.37 -0.1,-0.68 -0.17,-0.94 z"
3321+ id="path41885-4"
3322+ inkscape:connector-curvature="0"
3323+ overflow="visible"
3324+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3325+ <path
3326+ d="m 929.66,400.42 0,0.19 -0.2,-0.05 0.04,-0.03 0.16,-0.1 z"
3327+ id="path41883-0"
3328+ inkscape:connector-curvature="0"
3329+ overflow="visible"
3330+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3331+ <path
3332+ d="m 895.53,400.67 -0.15,0.5 -0.22,0.22 z"
3333+ id="path41881-7"
3334+ inkscape:connector-curvature="0"
3335+ overflow="visible"
3336+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3337+ <path
3338+ d="m 929.9,401.33 0.07,0.06 0.6,0.65 0.2,0.06 0.04,0.04 0.04,0 0.07,0.38 0,0.06 -0.12,-0.13 -0.16,-0.2 -0.34,0 -0.37,-0.92 z"
3339+ id="path41879-7"
3340+ inkscape:connector-curvature="0"
3341+ overflow="visible"
3342+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3343+ <path
3344+ d="m 894.66,402.14 -0.16,0.35 -0.03,-0.08 0.2,-0.28 z"
3345+ id="path41877-2"
3346+ inkscape:connector-curvature="0"
3347+ overflow="visible"
3348+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3349+ <path
3350+ d="m 894.56,402.8 0.28,0.72 -0.1,-0.1 -0.18,-0.62 z"
3351+ id="path41875-4"
3352+ inkscape:connector-curvature="0"
3353+ overflow="visible"
3354+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3355+ <path
3356+ d="m 894.94,404.5 0.15,0.27 0.1,0.4 c -0.1,-0.23 -0.16,-0.46 -0.26,-0.68 z"
3357+ id="path41873-8"
3358+ inkscape:connector-curvature="0"
3359+ overflow="visible"
3360+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3361+ <path
3362+ d="m 895.63,407 0.18,0.64 0,1.16 c -0.03,-0.62 -0.08,-1.24 -0.17,-1.8 z"
3363+ id="path41871-1"
3364+ inkscape:connector-curvature="0"
3365+ overflow="visible"
3366+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3367+ <path
3368+ d="m 941.2,410 0.05,0.7 -0.62,1.82 0.65,-1.82 -0.1,-0.7 z"
3369+ id="path41869-5"
3370+ inkscape:connector-curvature="0"
3371+ overflow="visible"
3372+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3373+ <path
3374+ d="m 895.8,414.6 0,3.4 c -0.05,-1.06 -0.02,-2.2 0,-3.4 z"
3375+ id="path41867-2"
3376+ inkscape:connector-curvature="0"
3377+ overflow="visible"
3378+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3379+ <path
3380+ d="m 953.78,779.24 c -0.33,0.4 -0.53,0.88 -0.53,1.43 0,0.55 0.2,1.05 0.53,1.44 z"
3381+ id="path12086-4"
3382+ inkscape:connector-curvature="0"
3383+ overflow="visible"
3384+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3385+ <path
3386+ d="m 978.16,365.08 -0.82,1.16 -1.06,0.28 0.1,0.28 -1.38,1.34 c -0.5,0.48 -0.78,0.7 -1.22,0.94 l -0.03,0 c -0.18,0.1 -0.43,0.2 -0.7,0.3 l 0.17,-0.02 c -0.4,0.17 -0.9,0.35 -1.63,0.66 l -0.3,0.9 -0.05,0.72 0.16,0.9 0.38,1.26 -0.28,1 -0.2,0.2 -0.33,1.86 0,0.8 0.1,1 0,0.1 -1,1.8 0,0.08 -0.3,0.2 -0.8,0.43 -1.7,0.9 -0.08,0.1 -0.3,0.1 -0.1,0 -0.24,0.18 -0.28,0.15 -0.1,0 -0.1,0.1 -0.52,0.28 -0.2,0.1 -1.24,0.7 -3.78,1.98 c -0.17,0.1 -0.35,0.2 -0.53,0.28 l 0.9,3.3 0.36,1.2 -0.1,0.1 -0.18,0.1 -0.1,0 0.1,0.15 0,0.17 1,0.28 0.1,0 0.28,0.54 0,0.08 -0.03,0 -0.63,0.53 -1.16,0.73 -0.18,0.1 -1.25,0.27 -0.37,0.16 -1.25,0.28 -0.1,0.1 -1.15,0.28 -0.04,0 c -0.26,0.06 -0.52,0.15 -0.78,0.22 l -0.2,0.03 c -0.05,0 -0.1,0.04 -0.18,0.06 l -1.06,0.28 0,0.04 c -0.42,0.12 -0.85,0.2 -1.28,0.35 l -0.06,0.08 -0.2,0 -0.36,0.1 -0.25,0.27 c 0.68,0.8 1.4,1.6 2.15,2.4 l 0.06,0.07 2.3,2.47 -1.2,0.62 -0.72,0.9 -0.44,0.9 -0.1,0.2 -0.37,0 -1.14,0.25 -1.25,0.28 -1,0.62 -0.7,1.16 -1.1,0.9 0,0.1 -0.97,0.72 -1.2,-0.2 -1.24,-0.15 -1.2,-0.28 -1.16,-0.18 -0.35,0 -0.8,3.25 0.08,0.7 -0.65,1.82 -0.44,0.53 0.27,0.34 1.7,-0.35 0.9,0.25 0.18,0.47 0.72,0.9 1,1.88 0.87,0.9 0.38,1 1.53,1.88 1.53,2.7 0.72,1 -0.1,0.08 0.9,0.92 1.8,2.78 0.1,0.62 -0.45,1 0.72,0.9 0.72,1.35 0.08,0 0.8,0.28 0.83,0.63 1.44,0.8 1.25,0.98 1.1,1.9 0.52,1.8 0.8,0.9 0.54,1.52 0.2,0.9 -0.38,1 -0.1,0.9 0.1,0.9 0.62,1.8 -0.16,0.9 0.44,0.98 0.72,0.9 1.16,1.82 0.9,0.72 1.72,0.62 0.9,0.63 1.88,2.15 1.72,2.72 0.28,1.78 0.97,1.25 0.28,0.9 0.45,0.57 0.47,0.88 1.87,1.37 0.8,0.88 0.38,1.8 0.44,0.1 0.47,0.9 0.77,0.98 0.56,3.16 -0.65,1.7 0.37,0.9 0.1,0.9 -0.9,0.08 0.08,0.2 0.9,0.17 0.82,2.6 0,0.9 0.34,0.9 0.1,0.92 0.6,0.97 0.3,0.9 -0.2,1.97 1.1,1.92 0.2,0.62 0.86,-0.1 0.9,0.48 1.82,-0.1 0.9,-0.62 0.98,-0.1 0.9,0.25 0,-0.25 0.44,-0.18 0.1,-0.2 -0.1,0.48 0.56,-0.9 1.07,-0.38 0.9,-0.9 0.9,-0.63 0.88,-0.17 3.64,-0.2 0.97,-0.46 1.63,-0.34 0.9,-0.38 0.9,-0.87 1.8,-0.8 0.9,0.24 1.97,-0.25 0.9,-0.72 0.73,-0.9 0.9,-0.82 1.8,-0.9 1.8,-0.44 1,0 1.8,-1 2.4,-0.55 1.1,-0.28 2.7,-1.43 0.9,-0.3 0.47,-0.7 -0.2,-0.88 0.2,-0.9 0.25,-0.57 0.9,-0.8 0.1,0 2.78,-1.18 0,-0.28 -1.25,-2.78 -0.37,-0.2 0,-0.05 -0.1,-0.18 -0.86,-2.06 -0.1,-0.1 -0.1,-0.2 -0.7,-1.8 -1.54,-3.6 2.25,-0.77 11.6,-4.07 2.96,-9.28 -0.24,-1 -1.72,-2.88 -1,0.38 -11.15,-1.44 -0.45,-0.55 -1.44,-1.88 -1.24,-1.43 -0.56,-0.82 -0.2,-0.1 -0.7,-1 -0.1,-0.7 -0.88,-0.26 -0.1,0.1 0.1,-0.9 -0.37,-0.2 -0.44,-0.53 0.9,-0.1 0.9,-1.8 0,-1.16 -0.35,-0.72 -0.2,-0.8 0.45,-0.64 0,-1.08 -0.34,-0.25 -0.38,0 -0.34,-0.75 -0.9,0 -0.82,0.9 0,0.47 -0.35,0.52 0,0.9 -0.46,0.2 -0.15,-0.1 0,1.97 0.44,1.52 0,0.2 -0.2,0.08 -0.34,-0.1 -1.2,-2.96 -1.62,-1.8 -0.15,-0.92 -0.58,-0.34 0.1,-0.8 0.9,-0.1 0.1,-0.38 -0.28,-0.88 -0.72,-0.72 -0.1,-0.56 0.1,-0.34 0.2,0.34 0.08,-0.1 0.44,0.3 -1,-1.07 -0.35,0 -1,-0.72 -0.35,-0.9 -0.28,0.24 -0.63,-0.1 0.1,-0.25 -0.44,-0.28 -0.9,-0.9 0,-0.54 -0.2,0.1 -0.43,-0.44 -0.66,0.05 -0.24,-0.72 0.25,-0.25 0.1,0.25 0,-0.53 -0.43,-0.35 0,-0.46 -0.2,0 -0.9,-1.98 -0.53,-0.72 -0.1,-0.9 -1.15,-1.54 -0.3,-1.34 -1,-0.2 -0.14,-0.9 0.9,-0.43 0.53,-0.1 -0.63,-0.9 -0.28,-0.98 0,-0.57 2.33,0.9 0.35,-0.18 -0.35,-0.15 -0.62,-1.38 -0.02,-0.03 -0.16,-0.3 -1,-0.63 -0.16,-0.37 0.06,-1.88 -0.7,-0.56 -0.92,-0.34 0,-0.9 0.12,-1 0.07,-0.35 0.46,-1.1 0.1,-0.06 -0.48,-0.9 -0.72,-1 -0.44,-0.7 -0.56,-1.1 -0.87,-0.07 -0.73,-0.28 -0.2,-0.28 -1.9,-1.35 -0.7,-0.43 -0.45,-0.2 -1,0 0.1,-0.9 0.27,-0.26 -0.9,-1.53 -0.2,-0.08 -0.1,-0.28 -0.87,-0.44 -1.62,-1.8 0.3,-0.36 0.42,-0.8 -0.43,-0.92 -0.14,-0.28 0.38,-0.9 0.9,0.28 -0.28,-1 0.56,-0.88 0.44,-0.47 0.25,-0.34 0.1,-0.2 1,0 0.1,-0.36 -0.2,-0.63 -0.6,-0.9 0.08,-0.82 0.9,-0.53 0,-0.45 -1,-0.18 -0.9,0.1 -0.44,-0.38 -0.37,-0.45 -0.16,0 -0.18,-0.1 -0.18,-0.1 -0.2,-0.08 -0.24,0.18 -0.37,0 -0.1,-0.1 0,-0.96 -0.25,-0.9 -0.9,-0.58 -0.1,-0.15 -0.2,-0.2 0.3,-0.7 -0.38,-0.45 -0.62,-0.18 -0.1,-0.1 0.2,-0.9 -0.45,-0.9 -0.1,-0.17 -0.8,0.07 -0.9,0.56 -0.92,-0.1 0.1,-0.37 -0.62,-0.9 -0.62,0.27 -0.82,0.2 -1,-0.2 -0.9,-0.34 -0.97,-0.28 -0.9,0.28 -0.9,-0.28 z"
3387+ id="path42171-5"
3388+ inkscape:connector-curvature="0"
3389+ overflow="visible"
3390+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3391+ <path
3392+ d="m 1003,403.58 0.37,0.28 -0.65,0.53 0.47,0.9 0.86,-0.35 -0.25,-0.7 -0.55,-0.67 -0.25,0 z"
3393+ id="path42167-1"
3394+ inkscape:connector-curvature="0"
3395+ overflow="visible"
3396+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3397+ <path
3398+ d="m 1013.25,407.2 -0.2,0.1 0.1,0.15 0.1,-0.25 z"
3399+ id="path42165-3"
3400+ inkscape:connector-curvature="0"
3401+ overflow="visible"
3402+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3403+ <path
3404+ d="m 1010.1,416.92 -0.98,0.16 1.07,-0.06 -0.1,-0.1 z"
3405+ id="path42163-5"
3406+ inkscape:connector-curvature="0"
3407+ overflow="visible"
3408+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3409+ <path
3410+ d="m 1013.8,422.67 0,1 0.54,0.88 0.16,-0.78 0,-0.9 -0.7,-0.2 z"
3411+ id="path42161-9"
3412+ inkscape:connector-curvature="0"
3413+ overflow="visible"
3414+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3415+ <path
3416+ d="m 973.84,467.2 0.53,0.9 -0.34,-0.9 -0.2,0 z"
3417+ id="path42157-2"
3418+ inkscape:connector-curvature="0"
3419+ overflow="visible"
3420+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3421+ <path
3422+ d="m 973.56,468.3 0.9,0.62 0.9,0.38 0,-0.56 -1.8,-0.44 z"
3423+ id="path42155-1"
3424+ inkscape:connector-curvature="0"
3425+ overflow="visible"
3426+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3427+ <path
3428+ d="m 965.37,472.52 0,1.28 0.63,0.1 0.9,-0.3 -0.9,-0.18 -0.63,-0.9 z"
3429+ id="path42153-4"
3430+ inkscape:connector-curvature="0"
3431+ overflow="visible"
3432+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3433+ <path
3434+ d="m 1027.84,487.64 -0.56,0.9 0.9,0.63 0.9,0.28 1.45,-0.18 1.9,-1 -1.9,-0.63 -0.9,0.2 -1.8,-0.2 z"
3435+ id="path42151-4"
3436+ inkscape:connector-curvature="0"
3437+ overflow="visible"
3438+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3439+ <path
3440+ d="m 1021.62,490 0.9,0.27 0,-0.27 -0.9,0 z"
3441+ id="path42149-8"
3442+ inkscape:connector-curvature="0"
3443+ overflow="visible"
3444+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3445+ <path
3446+ d="m 964.75,569.55 -0.9,0.44 0.27,0.9 -0.37,0 0.66,0.96 0.26,-0.87 0.1,-1.45 z"
3447+ id="path42145-3"
3448+ inkscape:connector-curvature="0"
3449+ overflow="visible"
3450+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3451+ <path
3452+ d="m 962.4,573.67 -0.43,0.38 -0.38,0.72 0.1,0.87 0.36,0.2 0.8,0.9 0.45,-0.2 -0.18,-0.9 -0.62,-0.97 -0.1,-1 z"
3453+ id="path42143-1"
3454+ inkscape:connector-curvature="0"
3455+ overflow="visible"
3456+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3457+ <path
3458+ d="m 980.4,599.95 0,1.82 1,0.62 0,-0.63 -1,-1.82 z"
3459+ id="path42141-9"
3460+ inkscape:connector-curvature="0"
3461+ overflow="visible"
3462+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3463+ <path
3464+ d="m 1007.75,602.92 -0.06,0.9 -0.82,0.98 -0.9,-0.25 0.52,0.9 0.28,0.88 -0.2,1 -0.27,0.37 0,0.88 -0.86,0.8 -0.9,0.48 -0.54,0.9 -1,-0.65 -0.9,0 -0.3,0.92 0.67,0.9 0.1,0.44 -0.57,0.8 -0.87,0.64 0.34,1 0.9,0.2 0,0.7 -0.46,-0.53 -0.9,0.25 -1.34,1.9 0.47,-1.9 -0.9,0.63 -0.35,0.9 -0.82,0.9 0.82,0.92 -0.2,0.18 -0.27,0 -0.18,0.16 -0.34,-0.33 -0.38,-1 -1.87,1.25 -0.9,0.8 -0.1,0.92 0.7,0.62 -0.33,-0.1 -0.28,0.2 -0.28,-0.35 -0.25,-0.9 -0.92,0.63 -1.34,-0.28 -1.8,1.44 -0.92,-0.45 -0.9,0.9 -0.44,0.2 -0.9,-0.2 -0.99,0 -0.28,0.9 0.2,0.9 -0.2,0.8 -1.16,1.8 -1,1.9 0.44,1.36 -0.06,0.98 0.15,1.8 0.9,1.9 -0.1,0.9 0.2,0.9 0.53,0.8 0.28,0.2 0.16,0.87 -0.25,0.57 -0.08,0.8 0.2,0.17 0.14,0.7 -0.06,0.3 -0.9,1.17 -1,1.97 -0.72,0.9 -0.2,0.88 -0.52,1 -0.53,-0.1 -0.63,0.57 -0.1,0.87 -0.52,0.9 -0.57,1.53 0.3,0.63 -0.1,0.9 0.38,1.82 0.43,0.97 0.73,0.9 0.1,0.9 0.62,1.26 -0.53,0.62 0.1,2.82 1.24,1.78 0.2,1 0.52,1 0.9,0.44 1,0.7 1.16,0.2 1.8,1.35 1.9,-0.1 1.34,-0.9 1.8,-0.9 2.5,-0.27 0.9,-0.47 0.83,-0.87 0.82,-1.83 0.2,-1 1.05,-2.5 0.1,-0.9 0.7,-2.07 0.92,-4.15 1.43,-3.4 1.62,-6.04 0.8,-1.9 -0.17,-0.15 0.28,0 c 0.77,-4.5 4.02,-8.46 3.06,-13.16 l 0.62,-1.45 1.16,-1.87 -0.1,-0.9 -0.7,-1.54 0.08,-0.9 -0.2,-0.9 0.48,-0.98 0.72,0.63 0.44,0.9 0.62,0.8 0.82,-0.37 0.37,-1 0.35,-0.88 0.1,-0.9 -0.92,-1.63 -0.25,-0.9 -0.17,-0.9 0.1,-0.98 -0.3,-0.9 -0.18,-1.82 -0.87,-2.68 -0.1,-0.9 -0.53,-0.92 -0.9,-0.72 -0.2,-0.9 -0.7,-0.88 -0.92,0.1 0.63,-0.9 -0.9,-0.2 z"
3465+ id="path42139-0"
3466+ inkscape:connector-curvature="0"
3467+ overflow="visible"
3468+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3469+ <path
3470+ d="m 986.25,603.45 -0.88,0.3 0.88,0.7 0,-1 z"
3471+ id="path42137-4"
3472+ inkscape:connector-curvature="0"
3473+ overflow="visible"
3474+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3475+ <path
3476+ d="m 982.3,604.27 0.9,0.18 0,-0.18 -0.9,0 z"
3477+ id="path42135-6"
3478+ inkscape:connector-curvature="0"
3479+ overflow="visible"
3480+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3481+ <path
3482+ d="m 1011.72,624.9 -0.16,0.24 -0.28,0.9 0.44,-0.9 0,-0.25 z"
3483+ id="path42133-3"
3484+ inkscape:connector-curvature="0"
3485+ overflow="visible"
3486+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3487+ <path
3488+ d="m 955.5,778.42 c -0.7,0 -1.3,0.33 -1.72,0.82 l 0,2.87 c 0.4,0.5 1.03,0.82 1.72,0.82 1.24,0 2.25,-1 2.25,-2.25 0,-1.24 -1,-2.25 -2.25,-2.25 z"
3489+ id="path12124-7"
3490+ inkscape:connector-curvature="0"
3491+ overflow="visible"
3492+ style="overflow:visible;fill:#ffffff;stroke:#0f380f;stroke-opacity:0.15" />
3493+ <path
3494+ d="m 958.9,462.45 -1.34,-0.9 -1.9,-1.8 -0.9,-0.64 -0.9,-0.15 -0.08,-0.18 -0.37,-0.72 -0.7,-2.8 0,-0.9 -0.45,-2.43 0,-0.9 0.25,-1 -0.53,-2.7 0.72,0.45 -1.26,-1.78 -0.47,-1 -0.36,-1.74 -24.95,0 -0.16,-0.9 -0.78,0.65 -29.22,0.43 0,9.6 -4.28,0.2 0,20.2 -0.97,-0.3 -0.9,0 -1,0.4 -1.26,-0.2 -0.9,0.9 0.36,1.1 -0.28,0.87 -0.62,0.38 -0.2,0.2 -0.34,1.33 -0.28,0.2 -0.62,0.15 -0.2,1 0.2,0.9 0.28,0 -0.28,0.35 -0.47,0.57 -0.87,0.53 -0.3,0.44 0,0.9 0.45,0.9 0.28,0.35 -0.7,0.9 -1.07,0.9 -0.37,0.9 0.28,0.64 0.97,0.1 0.9,-0.2 0.54,0.9 0.3,1.26 0,0.9 0.08,0.04 0.53,0.25 -0.2,0.86 -0.05,0.47 0.44,0.9 0.9,0.44 0.53,0.44 -0.37,1.82 0.2,0.44 1.7,1.72 1.35,2.16 0.47,1 -0.1,1.8 -0.37,0.98 -0.53,0.37 0.1,0.62 0.1,1 0.86,0.25 1.28,0 0.97,0.1 0,1.8 0.38,0.16 0.9,0 1.9,0.47 0.6,0.9 0.1,0.16 1,0.38 0.3,0.9 -0.48,0.63 0.8,0.9 1.92,0.88 1.25,0.9 0.7,1 0.9,0.54 -0.46,0.8 0.82,1.1 0.37,0.87 0.97,0.18 0.2,0.1 0.46,0.37 0.96,0.44 0.72,1 -0.1,0.9 0.3,0.8 0.7,1 -0.18,-0.1 -0.15,-0.26 0.34,1.08 0.74,0.4 0.36,0.93 2.88,1.42 1.24,-0.62 2.66,0.5 0.9,-0.82 1.76,-0.08 0.02,0.8 1.8,1.87 1.66,0.52 -0.03,1.08 1.4,0.6 0.37,-0.3 0,0.9 -0.37,0.72 0.46,1.25 -0.47,1 -0.25,0.88 0.9,0.56 0.06,-0.2 0.47,0.2 1.08,0.8 0.37,-0.37 0.53,-0.72 0,0.2 -0.53,0.53 0.28,1.53 -0.37,0.63 -0.82,0.9 -0.9,0.34 -1.25,1.8 -0.7,-0.8 -0.03,1.34 -0.28,-0.97 -0.73,0.35 -0.44,0.54 -1,0.8 -0.1,0 -0.05,0.1 -0.3,1.9 -0.9,1.7 0.1,0.27 c -0.3,1.07 -0.3,2 -0.4,2.93 l 0.1,-0.56 c -0.04,0.38 -0.1,0.75 -0.17,1.13 0,0.1 -0.03,0.18 -0.05,0.28 -0.07,0.3 -0.15,0.6 -0.28,0.9 l 0.1,0.72 0,0.03 0.1,0.5 0,0.47 0.6,-0.18 0.45,-0.1 0.37,0.7 0.43,-0.08 1.44,-1.44 0.1,-0.1 0.18,-0.28 0.44,0 0.7,1.47 0.3,0.07 0.27,0.28 0,0.28 0.1,0.15 0.15,0.2 0.1,0.27 0,0.82 -0.1,0.43 0,0.1 0.1,0.1 0.27,0.43 -0.48,1.44 0,0.1 -0.06,-0.1 -0.9,0.18 -0.63,1.2 0.44,0 -0.44,0.43 0.16,0.9 1.7,0.1 -0.18,0.34 0.1,0.27 -0.54,0.9 -0.37,0.35 -0.43,0.53 -0.35,0.3 -0.28,0.7 0,0.38 -0.47,0.34 -0.53,0.9 -0.8,1.1 -1.07,0.53 0,0.2 -0.53,0 -0.28,1.87 0.7,0.72 0.3,0.9 -0.2,0.7 0.2,0.92 0.43,0.87 0,0.9 -0.9,0.9 0.33,0.97 0.03,0.03 0.88,0.7 1,0.18 0,0.03 1.43,1.8 0.38,1.9 0,0.87 1.44,2.35 0.27,0.9 0.8,0.9 0.14,0.76 0.04,0.12 0,0.04 0.9,0 0.53,0.34 0.38,0.1 0.44,0.9 0.36,0.2 0.25,-0.2 0.92,0.9 0.44,-0.1 1.9,0.54 0.2,0.38 0.86,0.06 0.2,0.2 0,0.08 0.1,0 0.7,0.38 0.38,0 1.78,0.72 0.9,0.15 0.73,-0.1 0.72,0.65 0,-0.03 0.25,-0.43 0.04,0 0.8,-0.2 0.4,0.34 0.2,0.16 0.3,0.22 0,0.03 0.2,0.3 0.36,0.48 0.25,0.47 0.1,0.15 0,0.25 0.1,0.28 0.1,1.88 0,0.03 0.1,0.12 0.14,0.13 0.03,0 0.06,0.9 -0.16,1.16 0.35,0.72 0.9,0.9 0.38,0.9 2.06,0 0.2,0.1 0.7,0 0.88,-0.7 1.72,0.7 1.8,0.73 0.17,-0.1 0.2,0 0.9,-0.73 0.9,-0.1 0.25,0.38 0.9,0.35 0.9,0.1 0.2,-0.3 0.9,-0.33 1.26,-1.53 0.62,-0.1 0.9,0.28 0.9,0.53 0.64,-0.62 1.34,-0.53 0.9

Subscribers

People subscribed via source and target branches

to all changes: