1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
inkscape:export-ydpi="115.2"
inkscape:export-xdpi="115.2"
inkscape:export-filename="/home/doctormo/Desktop/about_screen_alpha.png"
enable-background="new"
sodipodi:docname="beta_1.0_about_screen.svg"
inkscape:version="1.0alpha2 (1ecb54ceb6, 2019-09-05, custom)"
version="1.1"
id="svg2"
viewBox="0 0 750.00001 625.00001"
height="625"
width="750">
<sodipodi:namedview
inkscape:document-rotation="0"
inkscape:snap-bbox-midpoints="true"
inkscape:showpageshadow="true"
borderlayer="false"
showborder="true"
showguides="false"
inkscape:object-paths="false"
inkscape:snap-midpoints="false"
inkscape:snap-center="false"
inkscape:snap-global="false"
inkscape:snap-intersection-paths="false"
inkscape:snap-smooth-nodes="true"
inkscape:object-nodes="true"
inkscape:bbox-nodes="false"
inkscape:snap-bbox="true"
inkscape:window-maximized="1"
inkscape:window-y="24"
inkscape:window-x="39"
inkscape:window-height="776"
inkscape:window-width="1241"
inkscape:snap-page="true"
units="px"
showgrid="false"
inkscape:current-layer="layer5"
inkscape:document-units="px"
inkscape:cy="560"
inkscape:cx="400"
inkscape:zoom="0.33667137"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base" />
<defs
id="defs4">
<inkscape:path-effect
back_thickness="0.25"
front_thickness="1"
stroke_width_bottom="1"
stroke_width_top="1"
fat_output="true"
bottom_smth_variation="0;1"
top_smth_variation="0;1"
scale_tb="1"
scale_tf="1"
scale_bb="1"
scale_bf="1"
top_tgt_variation="0;1"
bottom_tgt_variation="0;1"
top_edge_variation="5.2501494;1"
bottom_edge_variation="5.2501494;1"
bender="578.32469,124.21532 , 5,-0.70710678"
do_bend="true"
growth="0"
dist_rdm="75;1"
direction="574.6578,118.40643 , 8.5357706,1.767767"
is_visible="true"
id="path-effect54403"
effect="rough_hatches" />
<inkscape:path-effect
pattern-nodetypes="cccsssccc"
effect="skeletal"
id="path-effect11348"
is_visible="true"
pattern="m -82.045202,163.73779 0,16.85631 19.750362,-0.0335 c 1.258827,-3.16655 4.54292,-4.98086 7.845229,-4.3469 3.302309,0.63397 5.681085,3.53542 5.65532,6.89793 -0.02576,3.36251 -2.448729,6.22717 -5.760367,6.81046 -3.311638,0.58328 -6.567541,-1.28115 -7.759196,-4.41614 l -19.731348,0.0164 0,16.85641"
copytype="repeated_stretched"
prop_scale="1"
scale_y_rel="false"
spacing="0"
normal_offset="0.5"
tang_offset="0"
prop_units="true"
vertical_pattern="true"
fuse_tolerance="0.3" />
<inkscape:path-effect
pattern-nodetypes="csscssssssssssssssssssscssssssscsssssssssssscssc"
fuse_tolerance="0"
vertical_pattern="false"
prop_units="false"
tang_offset="0"
normal_offset="0"
spacing="0"
scale_y_rel="true"
prop_scale="1"
copytype="repeated_stretched"
pattern="m -127.13222,274.60716 c 0.66391,1.24821 0.79139,2.77058 0.34431,4.11181 -0.44708,1.34125 -1.46248,2.48265 -2.74254,3.08287 -0.8233,0.38605 -1.7463,0.55222 -2.65376,0.49397 -0.90745,-0.0583 -1.79793,-0.33928 -2.58292,-0.79826 -1.56997,-0.91796 -2.67955,-2.54354 -3.08437,-4.31656 -0.49643,-2.17434 0.0449,-4.52612 1.28729,-6.37835 1.24236,-1.85223 3.14327,-3.2161 5.2351,-3.98971 3.16534,-1.17063 6.70813,-1.0199 9.95799,-0.10987 3.24987,0.91004 6.2504,2.53931 9.1314,4.29705 2.88099,1.75774 5.68084,3.66057 8.68953,5.18948 3.00869,1.52891 6.269739,2.68514 9.641909,2.8202 3.243338,0.1299 6.46707,-0.69136 9.466062,-1.93318 2.998999,-1.24183 5.804874,-2.89847 8.615204,-4.52271 2.810324,-1.62425 5.651598,-3.22889 8.695857,-4.35521 3.044253,-1.12633 6.32352,-1.76296 9.547466,-1.38576 2.192763,0.25656 4.357539,0.99845 6.111457,2.33927 1.753924,1.34081 3.068463,3.30999 3.408705,5.49133 0.174441,1.11838 0.09274,2.27803 -0.254578,3.35533 -0.347311,1.0773 -0.961298,2.06986 -1.783038,2.84829 -0.82174,0.77842 -1.850734,1.33948 -2.954416,1.59064 -1.103681,0.25116 -2.279297,0.18948 -3.34457,-0.19313 -1.517064,-0.54487 -2.782847,-1.75218 -3.398795,-3.2418 -0.615948,-1.48962 -0.57245,-3.23832 0.116788,-4.69548 -0.51436,1.47888 -0.466539,3.14576 0.131764,4.5927 0.598303,1.44695 1.741657,2.66084 3.150243,3.34458 1.183434,0.57446 2.542466,0.77555 3.843815,0.58316 1.301349,-0.19238 2.540314,-0.77545 3.527951,-1.64442 0.987637,-0.86896 1.721998,-2.01955 2.108651,-3.27693 0.38666,-1.25739 0.426243,-2.61762 0.128036,-3.89886 -0.529103,-2.27329 -2.111805,-4.22908 -4.101667,-5.44901 -1.989861,-1.21993 -4.356304,-1.74271 -6.690346,-1.74567 -3.421566,-0.004 -6.774698,1.06647 -9.833754,2.59923 -3.059051,1.53276 -5.862558,3.52131 -8.66727,5.48109 -2.804706,1.95978 -5.640865,3.90861 -8.743923,5.3502 -3.103057,1.44159 -6.512219,2.36462 -9.927542,2.15794 -3.395824,-0.20549 -6.645229,-1.51588 -9.577599,-3.24071 -2.93237,-1.72483 -5.59505,-3.8639 -8.31994,-5.90077 -2.72489,-2.03686 -5.55023,-3.99384 -8.69546,-5.29054 -3.14522,-1.29669 -6.66055,-1.90177 -9.97993,-1.15644 -2.41769,0.54286 -4.70487,1.83201 -6.22353,3.78996 -0.75932,0.97898 -1.32032,2.11554 -1.60256,3.32191 -0.28223,1.20637 -0.28256,2.48176 0.0319,3.68014 0.51461,1.96139 1.91307,3.69005 3.75977,4.52764 0.92335,0.4188 1.94693,0.61779 2.9594,0.56414 1.01246,-0.0537 2.01187,-0.36089 2.87373,-0.89488 1.16591,-0.72238 2.06702,-1.86229 2.50074,-3.16347 0.43373,-1.30117 0.39679,-2.75376 -0.10251,-4.03121"
is_visible="true"
id="path-effect7020"
effect="skeletal" />
<linearGradient
gradientTransform="matrix(1.6361073,0,0,1.6361073,-1064.5199,667.97105)"
osb:paint="solid"
id="linearGradient6851">
<stop
id="stop6853"
offset="0"
style="stop-color:#3771c8;stop-opacity:1;" />
</linearGradient>
<inkscape:path-effect
effect="spiro"
id="path-effect6770"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect6766"
is_visible="true" />
<inkscape:path-effect
effect="spiro"
id="path-effect6762"
is_visible="true" />
<inkscape:path-effect
is_visible="true"
id="path-effect6758"
effect="spiro" />
<inkscape:path-effect
is_visible="true"
id="path-effect6754"
effect="spiro" />
<inkscape:path-effect
pattern-nodetypes="csssssssssssssscssssssssssssssc"
fuse_tolerance="0.1"
vertical_pattern="true"
prop_units="false"
tang_offset="0"
normal_offset="0"
spacing="0"
scale_y_rel="true"
prop_scale="1"
copytype="single_stretched"
pattern="m 510.40137,1167.7612 c 3.22922,-43.2246 8.37332,-341.0442 9.69563,-384.36393 1.29,-42.26132 2.189,-127.67462 4.1498,-169.14152 0.93832,-19.84341 7.14004,-52.50325 10.04998,-65.1979 3.06295,-13.36215 4.86861,-25.17993 6.36055,-38.894 2.83907,-26.09704 2.34779,-53.98623 -0.99002,-79.60235 -2.2425,-17.21017 -5.00096,-34.24092 -9.11311,-49.35577 -2.10185,-7.72564 -3.52567,-10.19869 -6.11317,-16.91939 -1.54164,-4.00423 -6.04343,-12.90314 -4.82526,-18.51572 1.50992,-6.9568 2.27716,-12.23415 6.67968,-17.50233 3.29927,-3.948 9.54765,-18.42215 9.85641,-24.45943 0.2089,-4.08476 -1.38133,-11.85616 -1.77881,-16.01003 -0.50083,-5.23397 2.15849,-6.96415 -1.24623,-10.5216 -5.11559,-5.34507 -6.31082,-9.8281 -8.27005,-16.69151 -1.76141,-6.17042 -5.10922,-10.17778 -10.08491,-14.65457 -1.80421,-1.6233 -1.92057,-2.44157 -4.37051,-2.26123 -2.44994,-0.18034 -2.5663,0.63793 -4.37051,2.26123 -4.97569,4.47679 -8.3235,8.48415 -10.08491,14.65457 -1.95923,6.86341 -3.15446,11.34644 -8.27005,16.69151 -3.40472,3.55745 -0.7454,5.28763 -1.24623,10.5216 -0.39748,4.15387 -1.98771,11.92527 -1.77881,16.01003 0.30876,6.03728 6.55714,20.51143 9.85641,24.45943 4.40252,5.26818 5.16976,10.54553 6.67968,17.50233 1.21817,5.61258 -3.28362,14.51149 -4.82526,18.51572 -2.5875,6.7207 -4.01132,9.19375 -6.11317,16.91939 -4.11215,15.11485 -6.87061,32.1456 -9.11311,49.35577 -3.33781,25.61612 -3.82909,53.50531 -0.99002,79.60235 1.49194,13.71407 3.2976,25.53185 6.36055,38.894 2.90994,12.69465 9.11166,45.35449 10.04998,65.1979 1.9608,41.4669 2.8598,126.8802 4.1498,169.14152 1.32231,43.31973 6.46641,341.13933 9.69563,384.36393"
is_visible="true"
id="path-effect6747"
effect="skeletal" />
<inkscape:path-effect
allow_transforms="false"
method="bsplinespiro"
linkeditem="m 257.62762,331.92694 c 7.20901,39.43642 -25.75204,69.08955 -69.03093,69.08955 -43.27888,0 -81.0286,-30.22686 -62.33184,-65.68997 10.47326,-19.86516 2.92595,-26.28757 11.82571,-38.6231 14.61183,-20.25274 34.10843,-26.28344 61.00511,-26.28344 43.27888,0 51.41414,22.56944 58.53195,61.50696 z"
is_visible="true"
id="path-effect56492"
effect="clone_original" />
<inkscape:path-effect
allow_transforms="false"
method="bsplinespiro"
linkeditem="m 217.41952,449.54263 c 20.40925,-20.10821 21.20554,-43.00797 35.97407,-33.30624 17.20547,11.30261 0.4946,101.30707 -32.71748,90.69208 -48.79949,-15.59692 -18.1809,-42.68169 -3.25659,-57.38584 z"
is_visible="true"
id="path-effect56411"
effect="clone_original" />
<inkscape:path-effect
allow_transforms="false"
method="bsplinespiro"
linkeditem="m 222.2021,452.89491 c 22.34119,-27.28441 15.00477,-40.57682 29.7733,-30.87509 17.20547,11.30261 -3.39258,131.46717 -36.69287,94.8974 -33.3003,-36.56976 6.91957,-64.02231 6.91957,-64.02231 z"
is_visible="true"
id="path-effect56372"
effect="clone_original" />
<inkscape:path-effect
allow_transforms="false"
method="bsplinespiro"
linkeditem="m 265.38705,473.39157 c 32.6126,53.30978 14.05289,103.92358 -36.52225,103.92358 -22.67958,0 -39.09734,4.58861 -60.91977,-15.01553 -20.37595,-18.3047 -22.15675,-58.59794 -7.27043,-91.26732 21.29002,-46.72289 -11.5047,-78.54156 30.75685,-80.17213 10.78892,-0.41627 25.68393,-17.85701 27.68319,-11.53756 6.51877,20.60518 19.13161,49.70358 46.27241,94.06896 z"
is_visible="true"
id="path-effect56333"
effect="clone_original" />
<inkscape:path-effect
allow_transforms="false"
method="bsplinespiro"
linkeditem="m 222.2021,452.89491 c 22.34119,-27.28441 15.00477,-40.57682 29.7733,-30.87509 17.20547,11.30261 -3.39258,131.46717 -36.69287,94.8974 -33.3003,-36.56976 6.91957,-64.02231 6.91957,-64.02231 z"
is_visible="false"
id="path-effect56251"
effect="clone_original" />
<inkscape:path-effect
effect="sketch"
id="path-effect5585"
is_visible="true"
nbiter_approxstrokes="2"
strokelength="100"
strokelength_rdm="0.3;1"
strokeoverlap="0.3"
strokeoverlap_rdm="0.3;1"
ends_tolerance="0.1;1"
parallel_offset="0;1"
tremble_size="2.7;1"
tremble_frequency="2.51"
nbtangents="0"
tgt_places_rdmness="1;1"
tgtscale="10"
tgtlength="100"
tgtlength_rdm="0.3;1" />
<filter
style="color-interpolation-filters:sRGB"
id="filter5342"
inkscape:label="Tampon">
<feTurbulence
id="feTurbulence5344"
type="turbulence"
baseFrequency="0.01"
numOctaves="6"
seed="6"
result="result1"
in="SourceGraphic" />
<feTurbulence
id="feTurbulence5368"
in="SourceGraphic"
baseFrequency="0.098000000000000004"
numOctaves="3" />
<feBlend
mode="multiply"
id="feBlend5370"
in2="result1" />
<feComponentTransfer
id="feComponentTransfer5358"
result="result2">
<feFuncR
id="feFuncR5360"
type="discrete"
tableValues="0" />
<feFuncG
id="feFuncG5362"
type="discrete"
tableValues="0" />
<feFuncB
id="feFuncB5364"
type="discrete"
tableValues="0" />
<feFuncA
id="feFuncA5366"
type="discrete"
tableValues="0 0 1 1 1 1 1" />
</feComponentTransfer>
<feComposite
id="feComposite5374"
in2="result2"
operator="in"
in="SourceGraphic"
result="result3" />
<feDisplacementMap
id="feDisplacementMap5376"
in2="result1"
xChannelSelector="R"
yChannelSelector="G"
scale="6.3999999999999986"
result="result4" />
<feBlend
mode="screen"
id="feBlend5378"
in2="result3" />
</filter>
<filter
y="-0.15"
height="1.3"
x="-0.15"
width="1.3"
inkscape:menu-tooltip="Aquarelle paper effect which can be used for pictures as for objects"
inkscape:menu="Textures"
inkscape:label="Rough Paper"
style="color-interpolation-filters:sRGB;"
id="filter5433">
<feTurbulence
type="fractalNoise"
baseFrequency="0.011999999999999976"
numOctaves="5"
seed="0"
result="result4"
id="feTurbulence5435" />
<feDisplacementMap
in="SourceGraphic"
in2="result4"
yChannelSelector="G"
xChannelSelector="R"
scale="10"
result="result3"
id="feDisplacementMap5437" />
<feDiffuseLighting
lighting-color="rgb(233,230,215)"
diffuseConstant="1"
surfaceScale="0.5"
result="result1"
in="result4"
id="feDiffuseLighting5439">
<feDistantLight
azimuth="235"
elevation="40"
id="feDistantLight5441" />
</feDiffuseLighting>
<feComposite
operator="in"
in="result3"
in2="result1"
result="result2"
id="feComposite5443" />
<feComposite
in2="result1"
result="result5"
operator="arithmetic"
k1="1.7"
id="feComposite5445" />
<feBlend
in="result5"
in2="result3"
mode="normal"
id="feBlend5447" />
</filter>
<filter
style="color-interpolation-filters:sRGB"
id="filter5342-8-1"
inkscape:label="Tampon">
<feTurbulence
id="feTurbulence5344-7-5"
type="turbulence"
baseFrequency="0.0090000000000000011"
numOctaves="6"
seed="6"
result="result1" />
<feTurbulence
id="feTurbulence5368-9-5"
baseFrequency="0.098000000000000004"
numOctaves="3" />
<feBlend
mode="multiply"
id="feBlend5370-2-4"
in2="result1" />
<feComponentTransfer
id="feComponentTransfer5358-0-7"
result="result2">
<feFuncR
id="feFuncR5360-2-6"
type="discrete"
tableValues="0" />
<feFuncG
id="feFuncG5362-3-5"
type="discrete"
tableValues="0" />
<feFuncB
id="feFuncB5364-7-6"
type="discrete"
tableValues="0" />
<feFuncA
id="feFuncA5366-5-9"
type="discrete"
tableValues="0 0 1 1 1 1 1" />
</feComponentTransfer>
<feComposite
id="feComposite5374-9-3"
in2="result2"
operator="in"
in="SourceGraphic"
result="result3" />
<feDisplacementMap
id="feDisplacementMap5376-2-7"
in2="result1"
xChannelSelector="R"
yChannelSelector="G"
scale="6.4"
result="result4" />
</filter>
<circle
transform="matrix(-0.86474802,-0.502206,0.502206,-0.86474802,470.94679,1185.0387)"
r="184.77254"
cy="316.49588"
cx="392.64163"
id="circle5318-8-4"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<circle
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="circle5323-9-5"
cx="392.64163"
cy="316.49588"
r="234.26518"
transform="matrix(-0.90266723,0.43033925,0.43033925,0.90266723,508.58097,259.5029)" />
<inkscape:path-effect
effect="sketch"
id="path-effect5585-05"
is_visible="true"
nbiter_approxstrokes="2"
strokelength="100"
strokelength_rdm="0.3;1"
strokeoverlap="0.3"
strokeoverlap_rdm="0.3;1"
ends_tolerance="0.1;1"
parallel_offset="0;1"
tremble_size="2.7;1"
tremble_frequency="2.51"
nbtangents="0"
tgt_places_rdmness="1;1"
tgtscale="10"
tgtlength="100"
tgtlength_rdm="0.3;1" />
<inkscape:path-effect
tgtlength_rdm="0.3;1"
tgtlength="100"
tgtscale="10"
tgt_places_rdmness="1;1"
nbtangents="0"
tremble_frequency="2.51"
tremble_size="2.7;1"
parallel_offset="0;1"
ends_tolerance="0.1;1"
strokeoverlap_rdm="0.3;1"
strokeoverlap="0.3"
strokelength_rdm="0.3;1"
strokelength="100"
nbiter_approxstrokes="2"
is_visible="false"
id="path-effect41901-6"
effect="sketch" />
<inkscape:path-effect
tgtlength_rdm="0.3;1"
tgtlength="100"
tgtscale="10"
tgt_places_rdmness="1;1"
nbtangents="0"
tremble_frequency="2.51"
tremble_size="2.7;1"
parallel_offset="0;1"
ends_tolerance="0.1;1"
strokeoverlap_rdm="0.3;1"
strokeoverlap="0.3"
strokelength_rdm="0.3;1"
strokelength="100"
nbiter_approxstrokes="2"
is_visible="false"
id="path-effect41905-0"
effect="sketch" />
<inkscape:path-effect
tgtlength_rdm="0.3;1"
tgtlength="100"
tgtscale="10"
tgt_places_rdmness="1;1"
nbtangents="0"
tremble_frequency="2.51"
tremble_size="2.7;1"
parallel_offset="0;1"
ends_tolerance="0.1;1"
strokeoverlap_rdm="0.3;1"
strokeoverlap="0.3"
strokelength_rdm="0.3;1"
strokelength="100"
nbiter_approxstrokes="2"
is_visible="false"
id="path-effect41909-2"
effect="sketch" />
<inkscape:path-effect
tgtlength_rdm="0.3;1"
tgtlength="100"
tgtscale="10"
tgt_places_rdmness="1;1"
nbtangents="0"
tremble_frequency="2.51"
tremble_size="2.7;1"
parallel_offset="0;1"
ends_tolerance="0.1;1"
strokeoverlap_rdm="0.3;1"
strokeoverlap="0.3"
strokelength_rdm="0.3;1"
strokelength="100"
nbiter_approxstrokes="2"
is_visible="false"
id="path-effect41913-7"
effect="sketch" />
<inkscape:path-effect
tgtlength_rdm="0.3;1"
tgtlength="100"
tgtscale="10"
tgt_places_rdmness="1;1"
nbtangents="0"
tremble_frequency="2.51"
tremble_size="2.7;1"
parallel_offset="0;1"
ends_tolerance="0.1;1"
strokeoverlap_rdm="0.3;1"
strokeoverlap="0.3"
strokelength_rdm="0.3;1"
strokelength="100"
nbiter_approxstrokes="2"
is_visible="false"
id="path-effect41919-6"
effect="sketch" />
<inkscape:path-effect
tgtlength_rdm="0.3;1"
tgtlength="100"
tgtscale="10"
tgt_places_rdmness="1;1"
nbtangents="0"
tremble_frequency="2.51"
tremble_size="2.7;1"
parallel_offset="0;1"
ends_tolerance="0.1;1"
strokeoverlap_rdm="0.3;1"
strokeoverlap="0.3"
strokelength_rdm="0.3;1"
strokelength="100"
nbiter_approxstrokes="2"
is_visible="false"
id="path-effect41923-1"
effect="sketch" />
<inkscape:path-effect
tgtlength_rdm="0.3;1"
tgtlength="100"
tgtscale="10"
tgt_places_rdmness="1;1"
nbtangents="0"
tremble_frequency="2.51"
tremble_size="2.7;1"
parallel_offset="0;1"
ends_tolerance="0.1;1"
strokeoverlap_rdm="0.3;1"
strokeoverlap="0.3"
strokelength_rdm="0.3;1"
strokelength="100"
nbiter_approxstrokes="2"
is_visible="false"
id="path-effect41927-3"
effect="sketch" />
<inkscape:path-effect
effect="sketch"
id="path-effect5585-05-90"
is_visible="true"
nbiter_approxstrokes="2"
strokelength="100"
strokelength_rdm="0.3;1"
strokeoverlap="0.3"
strokeoverlap_rdm="0.3;1"
ends_tolerance="0.1;1"
parallel_offset="0;1"
tremble_size="2.7;1"
tremble_frequency="2.51"
nbtangents="0"
tgt_places_rdmness="1;1"
tgtscale="10"
tgtlength="100"
tgtlength_rdm="0.3;1" />
<filter
id="filter6821"
style="color-interpolation-filters:sRGB;"
inkscape:menu-tooltip="Inky splotches underneath the object"
inkscape:menu="Protrusions"
inkscape:label="Ink Bleed">
<feGaussianBlur
id="feGaussianBlur6823"
stdDeviation="1.3"
in="SourceGraphic"
result="result1" />
<feTurbulence
id="feTurbulence6825"
baseFrequency="0.034"
numOctaves="4"
result="result0" />
<feDisplacementMap
id="feDisplacementMap6827"
in2="result0"
in="result1"
xChannelSelector="R"
yChannelSelector="G"
scale="19.6"
result="result2" />
<feColorMatrix
id="feColorMatrix6829"
result="result3"
values="2 0 0 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0.7 0" />
<feGaussianBlur
id="feGaussianBlur6831"
stdDeviation="1.1"
in="SourceGraphic"
result="result4" />
<feComposite
id="feComposite6833"
in2="result3"
in="result4" />
</filter>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath11351">
<path
transform="translate(-52.325907,371.90339)"
style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter11312)"
d="m 52.325907,659.74511 c 0,-5.66167 0,-11.32333 0,-16.985 6.583454,0.0112 13.166908,0.0225 19.750362,0.0338 1.258827,3.19072 4.54292,5.01888 7.845229,4.38008 3.302309,-0.63881 5.681085,-3.56241 5.65532,-6.95059 -0.02576,-3.38818 -2.448729,-6.27471 -5.760367,-6.86245 -3.311638,-0.58774 -6.567541,1.29093 -7.759196,4.44985 -6.577116,-0.006 -13.154232,-0.011 -19.731348,-0.0165 0,-5.6617 0,-11.3234 0,-16.9851 0,-5.66167 0,-11.32333 0,-16.985 6.583454,0.0112 13.166908,0.0225 19.750362,0.0338 1.258827,3.19072 4.54292,5.01888 7.845229,4.38008 3.302309,-0.63881 5.681085,-3.56241 5.65532,-6.95059 -0.02576,-3.38818 -2.448729,-6.27471 -5.760367,-6.86245 -3.311638,-0.58774 -6.567541,1.29093 -7.759196,4.44985 -6.577116,-0.006 -13.154232,-0.011 -19.731348,-0.0165 0,-5.66169 0,-11.32339 0,-16.98509 0,-5.66167 0,-11.32334 0,-16.985 6.583454,0.0113 13.166908,0.0225 19.750362,0.0338 1.258827,3.19073 4.54292,5.01889 7.845229,4.38009 3.302309,-0.63881 5.681085,-3.56241 5.65532,-6.95059 -0.02576,-3.38818 -2.448729,-6.27471 -5.760367,-6.86246 -3.311638,-0.58773 -6.567541,1.29093 -7.759196,4.44986 -6.577116,-0.006 -13.154232,-0.011 -19.731348,-0.0165 0,-5.6617 0,-11.3234 0,-16.9851 0,-5.66166 0,-11.32333 0,-16.985 6.583454,0.0113 13.166908,0.0225 19.750362,0.0338 1.258827,3.19073 4.54292,5.01889 7.845229,4.38009 3.302309,-0.63881 5.681085,-3.56241 5.65532,-6.95059 -0.02576,-3.38819 -2.448729,-6.27472 -5.760367,-6.86246 -3.311638,-0.58773 -6.567541,1.29093 -7.759196,4.44986 -6.577116,-0.006 -13.154232,-0.011 -19.731348,-0.0165 0,-5.6617 0,-11.3234 0,-16.9851 0,-5.66166 0,-11.32333 0,-16.985 6.583454,0.0113 13.166908,0.0225 19.750362,0.0338 1.258827,3.19072 4.54292,5.01888 7.845229,4.38008 3.302309,-0.63881 5.681085,-3.56241 5.65532,-6.95059 -0.02576,-3.38818 -2.448729,-6.27471 -5.760367,-6.86245 -3.311638,-0.58773 -6.567541,1.29093 -7.759196,4.44985 -6.577116,-0.005 -13.154232,-0.011 -19.731348,-0.0165 0,-5.6617 0,-11.3234 0,-16.9851 0,-5.66167 0,-11.32333 0,-16.985 6.583454,0.0113 13.166908,0.0225 19.750362,0.0338 1.258827,3.19072 4.54292,5.01888 7.845229,4.38008 3.302309,-0.63881 5.681085,-3.56241 5.65532,-6.95059 -0.02576,-3.38818 -2.448729,-6.27471 -5.760367,-6.86245 -3.311638,-0.58774 -6.567541,1.29093 -7.759196,4.44985 -6.577116,-0.006 -13.154232,-0.011 -19.731348,-0.0165 0,-5.6617 0,-11.3234 0,-16.9851 0,-5.66167 0,-11.32334 0,-16.985 6.583454,0.0113 13.166908,0.0225 19.750362,0.0337 1.258827,3.19073 4.54292,5.01889 7.845229,4.38009 3.302309,-0.63881 5.681085,-3.56241 5.65532,-6.95059 -0.02576,-3.38818 -2.448729,-6.27471 -5.760367,-6.86246 -3.311638,-0.58773 -6.567541,1.29094 -7.759196,4.44986 -6.577116,-0.006 -13.154232,-0.011 -19.731348,-0.0165 0,-5.6617 0,-11.3234 0,-16.9851 0,-5.66166 0,-11.32333 0,-16.98499 6.583454,0.0113 13.166908,0.0225 19.750362,0.0337 1.258827,3.19073 4.54292,5.01889 7.845229,4.38009 3.302309,-0.63881 5.681085,-3.56241 5.65532,-6.95059 -0.02576,-3.38818 -2.448729,-6.27471 -5.760367,-6.86246 -3.311638,-0.58773 -6.567541,1.29093 -7.759196,4.44986 -6.577116,-0.006 -13.154232,-0.011 -19.731348,-0.0165 0,-5.6617 0,-11.3234 0,-16.9851 10e-7,-5.66166 10e-7,-11.32333 10e-7,-16.985 6.583454,0.0113 13.166908,0.0225 19.750362,0.0338 1.258827,3.19072 4.54292,5.01889 7.845229,4.38009 3.302309,-0.63881 5.681085,-3.56242 5.65532,-6.9506 -0.02576,-3.38818 -2.448729,-6.27471 -5.760367,-6.86245 -3.311638,-0.58773 -6.567541,1.29093 -7.759196,4.44985 -6.577116,-0.005 -13.154232,-0.011 -19.731348,-0.0165 0,-5.6617 0,-11.3234 0,-16.9851 0,-5.66167 0,-11.32333 0,-16.985 6.583454,0.0112 13.166908,0.0225 19.750362,0.0338 1.258827,3.19072 4.54292,5.01888 7.845229,4.38008 3.302309,-0.63881 5.681085,-3.56241 5.65532,-6.95059 -0.02576,-3.38818 -2.448729,-6.27471 -5.760367,-6.86245 -3.311638,-0.58774 -6.567541,1.29093 -7.759196,4.44985 -6.577116,-0.006 -13.154232,-0.011 -19.731348,-0.0165 0,-5.6617 0,-11.3234 0,-16.9851 0,-5.66167 0,-11.32333 0,-16.985 6.583454,0.0113 13.166908,0.0225 19.750362,0.0338 1.258827,3.19072 4.54292,5.01888 7.845229,4.38008 3.302309,-0.63881 5.681085,-3.56241 5.65532,-6.95059 -0.02576,-3.38818 -2.448729,-6.27471 -5.760367,-6.86245 -3.311638,-0.58774 -6.567541,1.29093 -7.759196,4.44985 -6.577116,-0.006 -13.154232,-0.011 -19.731348,-0.0165 0,-5.6617 0,-11.3234 0,-16.9851 0,-5.66167 0,-11.32334 0,-16.985 6.583454,0.0113 13.166908,0.0225 19.750362,0.0337 1.258827,3.19073 4.54292,5.01889 7.845229,4.38009 3.302309,-0.63881 5.681085,-3.56241 5.65532,-6.95059 -0.02576,-3.38818 -2.448729,-6.27471 -5.760367,-6.86246 -3.311638,-0.58773 -6.567541,1.29093 -7.759196,4.44986 -6.577116,-0.006 -13.154232,-0.011 -19.731348,-0.0165 0,-5.6617 0,-11.3234 0,-16.9851 0,-5.66166 0,-11.32333 0,-16.98499 6.583454,0.0113 13.166908,0.0225 19.750362,0.0337 1.258827,3.19073 4.54292,5.01889 7.845229,4.38009 3.302309,-0.63881 5.681085,-3.56241 5.65532,-6.95059 -0.02576,-3.38819 -2.448729,-6.27472 -5.760367,-6.86246 -3.311638,-0.58773 -6.567541,1.29093 -7.759196,4.44986 -6.577116,-0.006 -13.154232,-0.011 -19.731348,-0.0165 0,-5.6617 0,-11.3234 0,-16.9851 0,-5.66166 0,-11.32333 0,-16.985 6.583454,0.0113 13.166908,0.0225 19.750362,0.0338 1.258827,3.19072 4.54292,5.01888 7.845229,4.38008 3.302309,-0.63881 5.681085,-3.56241 5.65532,-6.95059 -0.02576,-3.38818 -2.448729,-6.27471 -5.760367,-6.86245 -3.311638,-0.58773 -6.567541,1.29093 -7.759196,4.44985 -6.577116,-0.006 -13.154232,-0.011 -19.731348,-0.0165 0,-5.6617 0,-11.3234 0,-16.9851 0,-5.66167 0,-11.32333 0,-16.984999 6.583454,0.01125 13.166908,0.0225 19.750362,0.03376 1.258827,3.190719 4.54292,5.018879 7.845229,4.380079 3.302309,-0.63881 5.681085,-3.562404 5.65532,-6.950585 -0.02576,-3.388181 -2.448729,-6.274711 -5.760367,-6.862454 -3.311638,-0.587733 -6.567541,1.290931 -7.759196,4.449855 -6.577116,-0.0055 -13.154232,-0.01102 -19.731348,-0.01653 0,-5.661699 0,-11.323399 0,-16.985099 0,-5.661666 0,-11.323332 0,-16.984998 6.583454,0.01125 13.166908,0.0225 19.750362,0.03375 1.258827,3.190725 4.54292,5.018887 7.845229,4.380087 3.302309,-0.63881 5.681085,-3.562411 5.65532,-6.950592 -0.02576,-3.388181 -2.448729,-6.274711 -5.760367,-6.862454 -3.311638,-0.587733 -6.567541,1.290931 -7.759196,4.449854 -6.577116,-0.0055 -13.154232,-0.01102 -19.731348,-0.01652 0,-5.661699 0,-11.323399 0,-16.985099 l 749.999992,-5.62e-4 0,624.999997 z"
id="path11353"
inkscape:connector-curvature="0" />
</clipPath>
<filter
inkscape:collect="always"
style="color-interpolation-filters:sRGB"
id="filter11720">
<feComposite
id="feComposite12011"
in2="BackgroundImage"
in="SourceGraphic"
operator="in" />
<feBlend
inkscape:collect="always"
mode="multiply"
in2="BackgroundImage"
id="feBlend11722"
result="result1" />
</filter>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath13830">
<path
sodipodi:nodetypes="ccsssccccc"
inkscape:connector-curvature="0"
d="M 0,0 C 0,60 11.995505,120.78921 43.180328,139.98361 L 279.44262,336.86885 C 307.01603,359.84669 337.14643,386.5 375,386.5 c 37.85357,0 67.98397,-26.65331 95.55738,-49.63115 L 706.81967,139.98361 C 738.0045,120.78921 750,60 750,0 l 0,625 -750,0 z"
style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
transform="matrix(-1.5946494,-0.37000392,-0.37000392,1.5946494,1230.1154,544.00167)"
id="path13832" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath13850">
<path
id="path13852"
transform="matrix(-0.99999999,-3.1788591e-6,-3.1788591e-6,0.99999999,750.00002,0.00237234)"
style="fill:#00ff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 C 0,60 11.995505,120.78921 43.180328,139.98361 L 279.44262,336.86885 C 307.01603,359.84669 337.14643,386.5 375,386.5 c 37.85357,0 67.98397,-26.65331 95.55738,-49.63115 L 706.81967,139.98361 C 738.0045,120.78921 750,60 750,0 Z"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsssccc" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath13964">
<path
transform="translate(5.0443397e-6,2.8247456e-6)"
style="fill:#00ffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,625 375,312.5 750,625 Z"
id="path13966"
inkscape:connector-curvature="0" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath13996">
<path
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#00ffff;stroke-width:0.61086893px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 0,0 0,625 313.43555,363.80273 c -11.93289,-8.32174 -23.16144,-17.90796 -33.99219,-26.93359 L 43.179688,139.98438 C 11.994858,120.78998 0,59.999999 0,0 Z m 750,0 c 0,59.999999 -11.99486,120.78998 -43.17969,139.98438 L 470.55664,336.86914 c -10.83075,9.02563 -22.0593,18.61185 -33.99219,26.93359 L 750,625 750,0 Z"
id="path13998"
inkscape:connector-curvature="0"
transform="matrix(1.5946494,0.37000392,-0.37000392,1.5946494,34.128309,266.49873)" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath4649">
<path
sodipodi:nodetypes="ccsssccc"
inkscape:connector-curvature="0"
d="M 0,0 C 0,60 11.995505,120.78921 43.180328,139.98361 L 279.44262,336.86885 C 307.01603,359.84669 337.14643,386.5 375,386.5 c 37.85357,0 67.98397,-26.65331 95.55738,-49.63115 L 706.81967,139.98361 C 738.0045,120.78921 750,60 750,0 Z"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(-1,0,0,1,750,0)"
id="path4651" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6851">
<path
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 313.43555,363.80273 0,625 750,625 436.56445,363.80273 C 418.11808,376.66685 397.9848,386.5 375,386.5 c -22.9848,0 -43.11808,-9.83315 -61.56445,-22.69727 z"
id="path6853"
inkscape:connector-curvature="0" />
</clipPath>
<filter
style="color-interpolation-filters:sRGB"
id="filter7371"
inkscape:label="Sign">
<feFlood
id="feFlood7401"
flood-color="rgb(0,0,0)"
result="result7" />
<feOffset
dx="-4"
dy="-2"
id="feOffset7385"
in="SourceAlpha"
result="result4" />
<feComposite
id="feComposite7399"
operator="in"
in2="result4"
result="result3"
in="result7" />
<feComponentTransfer
id="feComponentTransfer7433"
in="result7"
result="result8">
<feFuncR
id="feFuncR7435"
type="table"
tableValues="1 0" />
<feFuncG
id="feFuncG7437"
type="table"
tableValues="1 0" />
<feFuncB
id="feFuncB7439"
type="table"
tableValues="1 0" />
<feFuncA
id="feFuncA7441"
type="identity" />
</feComponentTransfer>
<feOffset
dx="1"
dy="1"
id="feOffset7397"
in="SourceAlpha"
result="result2" />
<feComposite
id="feComposite7377"
in2="result2"
in="result8"
operator="in"
result="result1"
k1="1"
k2="0.5" />
<feColorMatrix
id="feColorMatrix7449"
in="SourceGraphic"
result="result10"
values="0.9 0 0 0 0 0 0.9 0 0 0 0 0 0.9 0 0 0 0 0 1 0 " />
<feComposite
id="feComposite7403"
in2="result1"
in="result10"
result="result5" />
<feGaussianBlur
stdDeviation="0.40000000000000002"
id="feGaussianBlur7447"
result="result9" />
<feComposite
id="feComposite7417"
in="BackgroundImage"
operator="arithmetic"
k1="1"
k2="0.5"
result="result6"
in2="result9" />
<feMerge
id="feMerge7443">
<feMergeNode
inkscape:collect="always"
id="feMergeNode7445"
in="result6" />
</feMerge>
</filter>
<inkscape:path-effect
effect="sketch"
id="path-effect5585-05-3"
is_visible="true"
nbiter_approxstrokes="2"
strokelength="100"
strokelength_rdm="0.3;1"
strokeoverlap="0.3"
strokeoverlap_rdm="0.3;1"
ends_tolerance="0.1;1"
parallel_offset="0;1"
tremble_size="2.7;1"
tremble_frequency="2.51"
nbtangents="0"
tgt_places_rdmness="1;1"
tgtscale="10"
tgtlength="100"
tgtlength_rdm="0.3;1" />
<inkscape:path-effect
effect="sketch"
id="path-effect5585-05-5"
is_visible="true"
nbiter_approxstrokes="2"
strokelength="100"
strokelength_rdm="0.3;1"
strokeoverlap="0.3"
strokeoverlap_rdm="0.3;1"
ends_tolerance="0.1;1"
parallel_offset="0;1"
tremble_size="2.7;1"
tremble_frequency="2.51"
nbtangents="0"
tgt_places_rdmness="1;1"
tgtscale="10"
tgtlength="100"
tgtlength_rdm="0.3;1" />
<filter
id="filter1445"
style="color-interpolation-filters:sRGB"
inkscape:collect="always">
<feBlend
id="feBlend1447"
in2="BackgroundImage"
mode="darken"
inkscape:collect="always" />
</filter>
</defs>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
style="display:none"
sodipodi:insensitive="true"
inkscape:label="Paper"
id="layer1"
inkscape:groupmode="layer">
<g
transform="matrix(1.0092232,0,0,1.0092232,-5.5023205,4.4548619)"
id="g35239"
style="display:inline;opacity:1">
<path
inkscape:connector-curvature="0"
id="path14603"
d="M 92.386264,186.16525 301.48461,280.96037 382.74309,453.42551 Z"
style="fill:#f5f5f5;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
transform="rotate(115.55934,317.19603,313.03951)"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
transform="rotate(115.55934,182.77553,331.53189)"
style="fill:#f4f4f4;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 92.386264,186.16525 366.02236,446.49698 173.64475,358.63039 Z"
id="path13444"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path14605"
d="M 295.18372,151.35417 447.28085,618.96212 173.64475,358.63039 Z"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
transform="rotate(115.55934,277.75106,392.15872)"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
transform="rotate(115.55934,496.60345,436.09786)"
style="fill:#f0f0f0;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 122.83955,333.96532 447.28085,618.96212 238.18251,524.16702 Z"
id="path14607"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path14609"
d="M 122.83955,333.96532 568.81982,411.68592 447.28085,618.96212 Z"
style="fill:#efefef;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
transform="rotate(115.55934,496.60345,436.09786)"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
transform="rotate(115.55934,496.60345,436.09786)"
style="fill:#f5f5f5;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 122.83955,333.96532 568.81982,411.68592 583.81036,180.60941 Z"
id="path14611"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path14613"
d="M 720.91695,879.29386 568.81982,411.68592 583.81036,180.60941 Z"
style="fill:#ececec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
transform="rotate(115.55934,496.60345,436.09786)"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
transform="rotate(115.55934,496.60345,436.09786)"
style="fill:#f0f0f0;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 720.91695,879.29386 699.43164,422.36973 583.81036,180.60941 Z"
id="path14615"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path14617"
d="M 720.91695,879.29386 699.43164,422.36973 781.49729,685.73714 Z"
style="fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
transform="rotate(115.55934,496.60345,436.09786)"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
transform="rotate(115.55934,496.60345,436.09786)"
style="fill:#f6f6f6;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 720.91695,879.29386 806.45666,714.98366 781.49729,685.73714 Z"
id="path14619"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path14621"
d="M 720.91695,879.29386 806.45666,714.98366 800.90821,841.03824 Z"
style="fill:#fafafa;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
transform="rotate(115.55934,496.60345,436.09786)"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
transform="rotate(115.55934,496.60345,436.09786)"
style="fill:#fdfdfd;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 881.27684,802.60214 806.45666,714.98366 800.90821,841.03824 Z"
id="path14623"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path14625"
d="M 881.27684,802.60214 806.45666,714.98366 699.43164,422.36973 Z"
style="fill:#f2f2f2;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
transform="rotate(115.55934,496.60345,436.09786)"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
transform="rotate(115.55934,496.60345,436.09786)"
style="fill:#e8e8e8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 781.49729,685.73714 806.45666,714.98366 699.43164,422.36973 Z"
id="path14627"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path14629"
d="M -37.454572,639.45882 366.02236,446.49698 173.64475,358.63039 Z"
style="fill:#f0f0f0;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
transform="rotate(115.55934,182.77553,331.53189)"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
transform="rotate(115.55934,182.77553,331.53189)"
style="fill:#ebebeb;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M -37.454572,639.45882 34.585671,327.04111 173.64475,358.63039 Z"
id="path14631"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path14633"
d="M -116.71207,91.370143 34.585671,327.04111 173.64475,358.63039 Z"
style="fill:#f8f8f8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
transform="rotate(115.55934,182.77553,331.53189)"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
transform="rotate(115.55934,182.77553,331.53189)"
style="fill:#f2f2f2;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M -116.71207,91.370143 34.585671,327.04111 -89.330687,290.55398 Z"
id="path14635"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path14637"
d="M -116.71207,91.370143 -130.99452,298.74927 -89.330687,290.55398 Z"
style="fill:#f6f6f6;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
transform="rotate(115.55934,182.77553,331.53189)"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
transform="rotate(115.55934,182.77553,331.53189)"
style="fill:#f3f3f3;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M -116.71207,91.370143 -130.99452,298.74927 -164.00417,256.77522 Z"
id="path14639"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path14641"
d="M -116.71207,91.370143 -258.65688,176.932 -164.00417,256.77522 Z"
style="fill:#f8f8f8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
transform="rotate(115.55934,182.77553,331.53189)"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
transform="rotate(115.55934,182.77553,331.53189)"
style="fill:#efefef;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M -116.71207,91.370143 -258.65688,176.932 -361.03885,-37.14537 Z"
id="path14643"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path14645"
d="M -116.71207,91.370143 -232.05504,-98.831563 -361.03885,-37.14537 Z"
style="fill:#e9e9e9;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
transform="rotate(115.55934,182.77553,331.53189)"
sodipodi:nodetypes="cccc" />
<path
inkscape:connector-curvature="0"
id="path14647"
d="M -130.99452,298.74927 34.585671,327.04111 -89.330687,290.55398 Z"
style="fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
transform="rotate(115.55934,182.77553,331.53189)"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
transform="rotate(115.55934,182.77553,331.53189)"
style="fill:#f5f5f5;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M -130.99452,298.74927 34.585671,327.04111 1.5433921,470.33592 Z"
id="path14649"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path14651"
d="M -130.99452,298.74927 -37.454572,639.45882 1.5433921,470.33592 Z"
style="fill:#e9e9e9;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
transform="rotate(115.55934,182.77553,331.53189)"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
transform="rotate(115.55934,182.77553,331.53189)"
style="fill:#eaeaea;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M -130.99452,298.74927 -149.55986,405.05032 -164.00417,256.77522 Z"
id="path14653"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path14655"
d="M -130.99452,298.74927 -149.55986,405.05032 -37.454572,639.45882 Z"
style="fill:#e6e6e6;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
transform="rotate(115.55934,182.77553,331.53189)"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
transform="rotate(115.55934,182.77553,331.53189)"
style="fill:#f8f8f8;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M -258.65688,176.932 -149.55986,405.05032 -164.00417,256.77522 Z"
id="path14657"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path14659"
d="M 122.83955,333.96532 557.69256,125.99795 583.81036,180.60941 Z"
style="fill:#f7f7f7;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
transform="rotate(115.55934,496.60345,436.09786)"
sodipodi:nodetypes="cccc" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer20"
inkscape:label="GroupeCarnet"
style="display:inline">
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="Feuille"
style="display:inline">
<g
inkscape:groupmode="layer"
id="layer7"
inkscape:label="Fond"
style="display:inline;filter:url(#filter1445)">
<g
transform="translate(2.5076657e-6,-408.67294)"
id="g5453"
style="display:inline;filter:url(#filter5433)"
clip-path="url(#clipPath11351)">
<rect
transform="translate(0,427.36216)"
y="-18.68922"
x="-2.5076656e-06"
height="625"
width="750"
id="rect5380"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="translate(0,427.36216)"
inkscape:connector-curvature="0"
id="path42060"
d="m 158.37645,-18.68922 v 643.68922"
style="fill:none;fill-rule:evenodd;stroke:#ff8080;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:nodetypes="cc" />
<path
id="path11309"
transform="translate(0,427.36216)"
style="fill:none;fill-rule:evenodd;stroke:#afdde9;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 0,4.286341 h 750 m -750,599.999999 h 750 m -750,-40 h 750 m -750,-40 h 750 m -750,-40 h 750 m -750,-40 h 750 m -750,-40 h 750 m -750,-40 h 750 m -750,-40 h 750 m -750,-40 h 750 m -750,-40 h 750 m -750,-40 h 750 m -750,-40 h 750 m -750,-40 h 750 m -750,-40 h 750 m -750,-40 h 750"
inkscape:connector-curvature="0" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer19"
inkscape:label="Cadre"
style="display:inline">
<path
sodipodi:nodetypes="ccccccccccccccccc"
inkscape:connector-curvature="0"
d="m 24.874629,16.452817 c 0.769756,1.372449 0.940803,3.071496 0.470369,4.589964 -0.470244,1.517881 -1.575054,2.835008 -2.980281,3.555037 -0.904369,0.463399 -1.923373,0.684448 -2.931574,0.653638 -1.00819,-0.03087 -2.004118,-0.311701 -2.890123,-0.795878 -1.770684,-0.967638 -3.063504,-2.747371 -3.578304,-4.716834 -0.63181,-2.417196 -0.114593,-5.069056 1.220755,-7.19083 1.334999,-2.121271 3.436657,-3.7184362 5.781434,-4.6633684 3.546419,-1.4291979 7.568058,-1.3923103 11.252795,-0.4954959 3.687592,0.8975174 7.083307,2.6075276 10.325515,4.4666813 3.238101,1.856806 6.373668,3.884111 9.715348,5.479106 3.345638,1.596883 6.955143,2.766802 10.707395,2.790349 0.886677,0.0056 1.773322,-0.05304 2.656847,-0.16689 2.737828,-0.03616 5.439034,-0.597901 7.989385,-1.437547 3.383284,-1.113877 6.531444,-2.705101 9.66517,-4.259445 3.131608,-1.553308 6.277354,-3.081129 9.630413,-4.053722 3.355872,-0.9734222 6.956598,-1.376668 10.526907,-0.6571984 2.27574,0.4586024 4.5398,1.3894164 6.45662,2.8656924 0.12952,0.0698 0.25738,0.142451 0.38348,0.217997 2.00773,1.202821 3.53111,3.172383 3.97765,5.541767 0.22884,1.214313 0.17442,2.517043 -0.17399,3.772663 -0.34832,1.255325 -0.99203,2.462101 -1.86781,3.464994 -0.53479,0.612406 -1.15638,1.147925 -1.8324,1.577749 -0.44395,0.171102 -0.91144,0.294286 -1.39361,0.36416 -1.23797,0.179401 -2.56953,0.0043 -3.78397,-0.518129 -1.73103,-0.744704 -3.18816,-2.202464 -3.91698,-3.91821 -0.72847,-1.714906 -0.717329,-3.658836 0.0166,-5.218118 -0.538182,1.599669 -0.447853,3.460468 0.26028,5.126323 0.70842,1.666541 2.02782,3.120567 3.64012,4.010005 1.35359,0.746727 2.89798,1.093453 4.36197,0.997297 0.28385,-0.01864 0.56447,-0.05383 0.84029,-0.104837 1.11207,-0.476389 2.14665,-1.209845 2.99785,-2.12187 1.05565,-1.131074 1.82894,-2.533711 2.21737,-3.995317 0.38856,-1.462087 0.39326,-2.980349 0.0242,-4.354899 -0.65509,-2.439633 -2.47536,-4.350024 -4.74299,-5.379429 -0.33799,-0.153432 -0.68501,-0.288249 -1.03952,-0.405325 -2.00243,-1.126644 -4.23198,-1.7351236 -6.42511,-1.9225134 -3.777448,-0.3223834 -7.455555,0.5575904 -10.829264,1.9833234 -3.370738,1.42448 -6.483123,3.385685 -9.61998,5.314579 -3.139375,1.930448 -6.338036,3.846249 -9.857885,5.175426 -2.404217,0.907889 -4.97633,1.533172 -7.595103,1.665523 -1.191106,0.198914 -2.390262,0.29332 -3.587789,0.261147 -3.761563,-0.101047 -7.342433,-1.443523 -10.590706,-3.262215 -3.245733,-1.817271 -6.215941,-4.11293 -9.272867,-6.288224 -3.059975,-2.177453 -6.252711,-4.260024 -9.82177,-5.5943794 -3.566135,-1.3332561 -7.561896,-1.8799164 -11.294411,-0.921018 -2.719495,0.6986434 -5.260277,2.2268434 -6.900228,4.4767954 -0.820003,1.125035 -1.407556,2.418324 -1.678785,3.780181 -0.27117,1.361622 -0.222414,2.789815 0.173143,4.11999 0.647074,2.176229 2.266465,4.060699 4.34028,4.927721 1.03792,0.43394 2.178268,0.617898 3.299211,0.519431 1.12088,-0.09852 2.220698,-0.480374 3.164247,-1.110847 1.275798,-0.852489 2.253393,-2.163567 2.709211,-3.636126 0.455977,-1.473024 0.386708,-3.0976 -0.199299,-4.508876 m 103.555645,-0.59405 c 0.75102,1.274351 0.90702,2.941005 0.4302,4.5034 -0.47656,1.561557 -1.57915,2.99893 -2.97372,3.878752 -0.89757,0.566277 -1.90668,0.905473 -2.90318,0.992887 -0.9965,0.08736 -1.97914,-0.07536 -2.85178,-0.453679 -1.74392,-0.756049 -3.01012,-2.377732 -3.50594,-4.279996 -0.6085,-2.334628 -0.079,-5.036036 1.25707,-7.300509 1.33594,-2.264299 3.42689,-4.0906719 5.75501,-5.294858 3.5204,-1.8208935 7.5013,-2.2354932 11.14201,-1.7624089 3.64072,0.4730939 6.99001,1.7823059 10.181,3.2503472 1.32176,0.6080917 2.62282,1.2449487 3.9289,1.8675507 1.83985,1.483528 3.68761,2.945906 5.60569,4.278894 3.2738,2.275153 6.81101,4.19218 10.49516,4.997274 3.54644,0.775001 7.11152,0.49278 10.47986,-0.302309 3.36522,-0.79436 6.56923,-2.089473 9.79864,-3.348678 3.23094,-1.259818 6.51877,-2.493246 10.01496,-3.158182 0.34194,-0.06503 0.68615,-0.124437 1.03226,-0.17771 3.11881,-1.062472 6.33829,-1.636342 9.4723,-1.293125 2.36334,0.258828 4.68424,1.057916 6.57735,2.527153 1.88695,1.464447 3.33785,3.647236 3.70885,6.062806 0.19061,1.241083 0.0966,2.530911 -0.3046,3.732722 -0.40141,1.202479 -1.11074,2.31183 -2.06833,3.188013 -0.95699,0.875617 -2.15862,1.511647 -3.44515,1.804707 -1.28569,0.292871 -2.64985,0.238858 -3.86604,-0.173326 -1.73612,-0.588382 -3.1246,-1.912262 -3.73879,-3.562312 -0.6136,-1.648448 -0.44485,-3.593717 0.41391,-5.222029 -0.66441,1.650722 -0.72154,3.503108 -0.12396,5.104701 0.59806,1.60288 1.84537,2.935459 3.44884,3.67964 1.34444,0.623982 2.91911,0.830753 4.43432,0.600728 1.51606,-0.230145 2.96215,-0.893302 4.10848,-1.871576 1.14744,-0.979207 1.98836,-2.264946 2.4271,-3.668388 0.43841,-1.402385 0.47499,-2.914683 0.13948,-4.335205 -0.5941,-2.515313 -2.34555,-4.680157 -4.48941,-6.007308 -2.15195,-1.332157 -4.69174,-1.88501 -7.22205,-1.860326 -3.23541,0.03189 -6.46195,0.972029 -9.56009,2.367295 -0.46175,0.122308 -0.91908,0.25523 -1.37133,0.397438 -3.54184,1.113718 -6.80707,2.779512 -10.04419,4.412376 -3.23501,1.6318 -6.476,3.244352 -9.94816,4.238459 -3.47564,0.995099 -7.22503,1.351941 -10.93574,0.456827 -3.68623,-0.889198 -7.18884,-2.976436 -10.36065,-5.454432 -1.62881,-1.272508 -3.18603,-2.652437 -4.72076,-4.069059 -1.46191,-0.861539 -2.90299,-1.766755 -4.36627,-2.64348 -3.00764,-1.802005 -6.15078,-3.501359 -9.67181,-4.4198318 -3.518,-0.9176761 -7.47083,-1.01159 -11.17178,0.3627548 -2.69731,1.0016343 -5.2223,2.808785 -6.86082,5.236485 -0.81917,1.213731 -1.40921,2.569168 -1.68671,3.95717 -0.27742,1.387694 -0.23869,2.805335 0.1436,4.084848 0.62549,2.093749 2.21388,3.78177 4.25818,4.402067 1.02318,0.310463 2.14918,0.359725 3.25812,0.130411 1.10881,-0.229345 2.19897,-0.737965 3.13651,-1.474834 1.26762,-0.996315 2.24433,-2.412764 2.70627,-3.927788 0.46216,-1.515687 0.40619,-3.120335 -0.16276,-4.454365 m 103.00491,4.78034 c 0.81983,1.378439 1.06855,3.069466 0.64223,4.564832 -0.42685,1.497273 -1.52432,2.775338 -2.97677,3.459565 -0.93225,0.439172 -1.99528,0.635274 -3.04817,0.581759 -1.05303,-0.05358 -2.09284,-0.354802 -3.00992,-0.855229 -1.83869,-1.003332 -3.12452,-2.791404 -3.60116,-4.759636 -0.58282,-2.406834 0.0195,-5.035072 1.35827,-7.104906 1.34001,-2.071798 3.38095,-3.614146 5.6126,-4.497063 3.38239,-1.338205 7.18215,-1.214224 10.78634,-0.241424 1.66698,0.449937 3.30063,1.072217 4.91308,1.800586 1.90531,0.529476 3.75578,1.2123 5.5644,1.943222 3.36471,1.359795 6.63383,2.89927 10.06377,3.976122 3.4346,1.078313 7.08455,1.68886 10.77871,1.144517 3.55167,-0.523349 7.02562,-2.098592 10.25197,-4.091071 1.64249,-1.014349 3.23133,-2.13806 4.79697,-3.309451 1.5258,-0.670466 3.03644,-1.395494 4.55495,-2.111199 3.09637,-1.4594013 6.2625,-2.8943011 9.69982,-3.7781123 3.43272,-0.8826389 7.17038,-1.19682 10.82177,-0.3888209 2.48362,0.5495969 4.91898,1.6354273 6.85036,3.3406542 1.93468,1.708131 3.3184,4.05506 3.60007,6.530304 0.14421,1.267289 -1.8e-4,2.549557 -0.43107,3.707118 -0.43077,1.157258 -1.14933,2.188181 -2.08039,2.95347 -0.93151,0.765652 -2.07579,1.263222 -3.28903,1.406377 -1.21323,0.143155 -2.493,-0.07099 -3.64854,-0.628256 -1.64307,-0.792368 -3.01327,-2.293671 -3.67196,-4.024096 -0.65925,-1.73192 -0.59651,-3.669911 0.19077,-5.206029 -0.59262,1.581361 -0.55507,3.440161 0.0844,5.122305 0.63902,1.680943 1.87474,3.174347 3.39679,4.10782 1.28041,0.785295 2.75495,1.177381 4.18111,1.124162 1.42617,-0.05321 2.8,-0.549289 3.91858,-1.39546 1.11786,-0.845611 1.97983,-2.038403 2.46677,-3.391666 0.48713,-1.353763 0.59991,-2.865073 0.3291,-4.329233 -0.48119,-2.601509 -2.16408,-4.965687 -4.37155,-6.5678476 -2.20293,-1.5988683 -4.87727,-2.4652247 -7.52541,-2.7496226 -3.88385,-0.4167301 -7.70035,0.370295 -11.13612,1.7014758 -3.44046,1.3330064 -6.53944,3.1960114 -9.60086,5.0271754 -1.40252,0.83891 -2.80455,1.67466 -4.23023,2.449632 -1.66842,1.427458 -3.3772,2.787352 -5.17007,3.997929 -3.31172,2.236132 -6.95908,3.963582 -10.68274,4.438206 -3.70379,0.472101 -7.33578,-0.310942 -10.68966,-1.621754 -3.35039,-1.309447 -6.47774,-3.138594 -9.68875,-4.84005 -1.66644,-0.88301 -3.36792,-1.736592 -5.1309,-2.465372 -1.62368,-0.944481 -3.27651,-1.791269 -4.98069,-2.466351 -3.54391,-1.403852 -7.35737,-2.032364 -10.92176,-1.16526 -2.59349,0.630907 -5.0541,2.09379 -6.70518,4.286994 -0.82529,1.096282 -1.44363,2.368342 -1.75474,3.711672 -0.31128,1.34415 -0.31232,2.762113 0.049,4.090096 0.59228,2.176769 2.20489,4.074966 4.36658,4.985987 1.07732,0.45403 2.27172,0.66252 3.44415,0.590351 1.17254,-0.07223 2.31902,-0.425954 3.28858,-1.030026 1.31371,-0.818505 2.28058,-2.093627 2.696,-3.546158 0.41502,-1.451062 0.27581,-3.064937 -0.36146,-4.478238 m 102.91746,-2.212174 c 0.64609,1.419211 0.67989,3.12501 0.0693,4.605352 -0.27386,0.663986 -0.67549,1.278312 -1.17312,1.81053 -0.59076,0.612785 -1.31489,1.089406 -2.11211,1.371831 -0.9297,0.329361 -1.94912,0.400689 -2.93656,0.223552 -0.98727,-0.177162 -1.94196,-0.600783 -2.77318,-1.209558 -1.65992,-1.215708 -2.79475,-3.168589 -3.14872,-5.192586 -0.43485,-2.486596 0.28122,-5.037571 1.78305,-6.954268 1.50055,-1.915103 3.73356,-3.2060789 6.16354,-3.8181829 1.35552,-0.3414562 2.76077,-0.4762193 4.17494,-0.4395255 2.31847,-0.1097632 4.65622,0.2777593 6.86281,0.99835 3.49028,1.1398024 6.72208,3.0793674 9.86579,5.1508404 3.15513,2.079002 6.24857,4.300461 9.65611,6.128237 3.39839,1.822868 7.13023,3.237806 10.97261,3.518462 0.8583,0.06269 1.71353,0.06792 2.56188,0.02304 0,0 0,0 0,0 2.73776,-0.579964 5.40851,-1.698639 7.92176,-3.075521 3.27453,-1.793949 6.31886,-4.02522 9.37154,-6.219964 3.05337,-2.195263 6.14423,-4.372042 9.48564,-6.043314 3.34095,-1.6710605 6.96759,-2.8275966 10.57419,-2.8455077 2.45306,-0.012174 4.89452,0.5209198 6.90092,1.7780411 2.0067,1.2572925 3.54671,3.2747956 4.01088,5.6621246 0.23796,1.223901 0.19255,2.528725 -0.15105,3.777856 -0.34359,1.24909 -0.98666,2.440106 -1.86846,3.420429 -0.88181,0.980337 -2.00208,1.746489 -3.21746,2.177039 -1.21542,0.430567 -2.52317,0.521925 -3.72187,0.240186 -1.7069,-0.401176 -3.16324,-1.575809 -3.91002,-3.153853 -0.74681,-1.578089 -0.77231,-3.535053 -0.0667,-5.254667 -0.5102,1.720017 -0.38675,3.573288 0.33859,5.106141 0.72532,1.532828 2.04594,2.731499 3.63813,3.302379 1.33781,0.479685 2.85477,0.518862 4.29196,0.12693 1.43715,-0.391907 2.78966,-1.211222 3.85229,-2.31517 1.06258,-1.103892 1.8335,-2.487631 2.21411,-3.942937 0.0432,-0.164966 0.0813,-0.330798 0.11445,-0.497204 0,0 0,0 0,0 0.26026,-1.24853 0.21611,-2.585127 -0.12424,-3.867803 -0.004,-0.01584 -0.008,-0.03167 -0.0127,-0.0475 -0.6873,-2.442826 -2.51633,-4.3913941 -4.76706,-5.4749803 -2.26435,-1.0901432 -4.92182,-1.3513541 -7.52172,-1.0370154 -3.81165,0.4612237 -7.50121,2.1117767 -10.84016,4.2384327 -3.33933,2.126895 -6.36972,4.726811 -9.40013,7.295855 -3.02971,2.568464 -6.09217,5.129982 -9.47072,7.161126 -2.35156,1.413728 -4.87839,2.567539 -7.479,3.217497 -1.17476,0.104361 -2.36564,0.11101 -3.56049,0.0011 -3.91349,-0.360083 -7.66915,-1.946072 -11.00935,-3.984714 -3.34561,-2.041934 -6.31086,-4.524589 -9.30197,-6.907646 -2.98231,-2.37604 -6.02845,-4.67646 -9.39654,-6.242978 -2.16297,-1.006006 -4.49066,-1.7009743 -6.85195,-1.8846653 -1.37651,-0.2022343 -2.76616,-0.2442084 -4.13696,-0.089073 -2.78105,0.3147303 -5.45131,1.4769539 -7.26351,3.4756629 -0.90651,0.999825 -1.59089,2.197491 -1.96518,3.508029 -0.37417,1.310196 -0.4344,2.731161 -0.14593,4.105411 0.47147,2.246396 1.92158,4.350689 3.88608,5.510558 0.98426,0.581131 2.08795,0.929796 3.19651,0.995121 1.10856,0.06527 2.22093,-0.153957 3.20395,-0.643733 0.8306,-0.413838 1.56397,-1.022997 2.14017,-1.763084 0,0 0,0 0,0 0.35777,-0.468586 0.65416,-0.979546 0.87686,-1.518585 0.59346,-1.436403 0.6584,-3.060242 0.19889,-4.506048 m 103.5476,-4.017642 c 0.76948,1.432726 0.94062,3.140278 0.47101,4.612197 -0.46945,1.471467 -1.57258,2.687203 -2.97581,3.281724 -0.90309,0.382628 -1.9207,0.51377 -2.92764,0.395328 -1.00686,-0.118488 -2.00184,-0.484569 -2.88711,-1.042947 -1.76914,-1.115874 -3.06233,-2.996645 -3.57836,-4.997525 -0.63339,-2.456038 -0.11926,-5.046074 1.21372,-7.0423024 1.33243,-1.9954491 3.43248,-3.4076768 5.776,-4.1517502 3.545,-1.1255587 7.56545,-0.7546511 11.24921,0.4483893 3.68712,1.2041441 7.0793,3.1957748 10.31907,5.3288143 3.23329,2.128774 6.36787,4.426344 9.70285,6.309476 2.07119,1.169526 4.24585,2.185522 6.49051,2.871323 1.3784,0.325787 2.7842,0.52583 4.21122,0.560627 3.61167,0.08807 7.22899,-0.88805 10.62418,-2.329029 3.39271,-1.439931 6.60638,-3.342524 9.834,-5.203929 3.23125,-1.863508 6.50834,-3.7014177 10.00697,-5.0100391 1.97171,-0.7375013 4.02251,-1.3018956 6.08564,-1.5879967 1.55836,0.00208 3.12132,0.1727963 4.66232,0.5570874 2.40296,0.5992573 4.75008,1.7361069 6.6206,3.4815254 1.86915,1.744119 3.23443,4.129984 3.50996,6.609163 0.14135,1.271852 -0.003,2.553179 -0.44168,3.705069 -0.43841,1.152014 -1.17151,2.171303 -2.12934,2.9229 -0.95764,0.751436 -2.1389,1.231213 -3.38876,1.354827 -1.24987,0.123614 -2.56481,-0.11184 -3.73659,-0.689736 -1.66978,-0.823491 -3.01391,-2.348988 -3.61205,-4.099083 -0.59793,-1.749489 -0.44068,-3.694709 0.41288,-5.222391 -0.66058,1.576901 -0.71035,3.443582 -0.12918,5.143016 0.58133,1.699934 1.78818,3.215451 3.32835,4.178458 1.29332,0.808671 2.80694,1.225595 4.27566,1.195534 1.46871,-0.03005 2.8866,-0.50461 4.03361,-1.333443 1.14731,-0.829039 2.02067,-2.007224 2.50947,-3.354394 0.48873,-1.346982 0.59336,-2.857824 0.32045,-4.328778 -0.48391,-2.608302 -2.14793,-5.017645 -4.28305,-6.660542 -2.13704,-1.6443661 -4.71668,-2.5655426 -7.29033,-2.9021254 -1.57225,-0.2054596 -3.14222,-0.2010729 -4.69166,-0.03379 -2.21836,0.5430374 -4.3872,1.3962308 -6.44708,2.424239 -3.53347,1.7634263 -6.78028,4.0294273 -10.01265,6.2688403 -3.22882,2.236954 -6.47763,4.467632 -9.98187,6.133847 -3.50665,1.667362 -7.31682,2.761959 -11.10634,2.592161 -1.1026,-0.0494 -2.18925,-0.20496 -3.25645,-0.44746 -2.57108,-0.764925 -5.03328,-2.030407 -7.32643,-3.516833 -3.23915,-2.099627 -6.20626,-4.652121 -9.2587,-7.085513 -3.05694,-2.436975 -6.24598,-4.7847469 -9.81414,-6.4156438 -3.56507,-1.629479 -7.55915,-2.5065324 -11.29065,-1.8645708 -2.7182,0.4676279 -5.25742,1.7746616 -6.89436,3.8717961 -0.8186,1.0487555 -1.40456,2.2837645 -1.67426,3.6134855 -0.26966,1.329521 -0.21947,2.752148 0.17702,4.107508 0.64847,2.216993 2.26814,4.230104 4.33985,5.272415 1.03695,0.521713 2.176,0.80415 3.29544,0.803902 1.11942,-3.04e-4 2.21759,-0.284363 3.15976,-0.829907 1.27391,-0.737636 2.24998,-1.958432 2.705,-3.385889 0.45516,-1.427814 0.38569,-3.052328 -0.2002,-4.508033 m 103.63835,4.999077 c 0.69864,1.48505 0.79557,3.199403 0.25484,4.630073 -0.54086,1.431013 -1.71229,2.558198 -3.16686,3.045678 -0.93508,0.313387 -1.97544,0.367694 -2.98992,0.174079 -1.01454,-0.193682 -2.0013,-0.633093 -2.86163,-1.256071 -1.72169,-1.246716 -2.89034,-3.214786 -3.26432,-5.24979 -0.45826,-2.493764 0.25056,-5.040442 1.70371,-6.927253 1.45363,-1.88748 3.60754,-3.136774 5.94142,-3.699949 3.53241,-0.8523953 7.42319,-0.1781792 10.98422,1.299606 2.60009,1.079014 5.05213,2.567172 7.41786,4.212868 0.86776,0.40781 1.72678,0.840356 2.57942,1.284091 3.16937,1.649417 6.28262,3.460898 9.69289,4.84319 3.40214,1.378996 7.13207,2.317247 10.95491,2.105114 3.6772,-0.204053 7.27241,-1.465275 10.541,-3.172586 2.91901,-1.524717 5.59469,-3.394699 8.22591,-5.284514 -4.39779,3.146601 5.35946,-3.834411 0.96166,-0.687809 2.96933,-2.12036 5.99166,-4.219483 9.31113,-5.8114098 3.31679,-1.5906524 6.96142,-2.6615665 10.62471,-2.594496 2.49068,0.04561 4.98567,0.6361516 7.05037,1.9409196 2.06675,1.3060467 3.66618,3.3584842 4.18929,5.7586662 0.26804,1.229863 0.25237,2.533938 -0.0618,3.774916 -0.31411,1.240733 -0.92815,2.416698 -1.78283,3.375267 -0.85484,0.958748 -1.95094,1.697528 -3.14985,2.098111 -1.19918,0.400674 -2.49939,0.459863 -3.70485,0.148832 -1.71538,-0.442593 -3.214,-1.6529 -4.02054,-3.247905 -0.80677,-1.595445 -0.90846,-3.551692 -0.26082,-5.253549 -0.45075,1.706842 -0.25538,3.562074 0.52777,5.111703 0.78297,1.549283 2.14677,2.780364 3.75359,3.389751 1.35088,0.512332 2.86301,0.588806 4.28389,0.232247 1.42059,-0.356473 2.74654,-1.142689 3.77946,-2.220678 1.0326,-1.077646 1.77173,-2.443569 2.12023,-3.889667 0.3486,-1.446502 0.3076,-2.970069 -0.10698,-4.368362 -0.736,-2.482334 -2.63364,-4.4905029 -4.95801,-5.6356449 -2.3218,-1.1438751 -5.02927,-1.4676011 -7.65892,-1.2146069 -3.85691,0.3714479 -7.54243,1.9340646 -10.83177,3.9798028 -3.29176,2.047248 -6.22371,4.569268 -9.14051,7.063283 0.0998,-0.08535 -0.77886,0.66524 -0.67904,0.579887 -2.70686,2.292787 -5.5046,4.534947 -8.64786,6.327277 -3.40301,1.940438 -7.2492,3.334864 -11.15877,3.47106 -3.89163,0.135583 -7.64487,-0.976054 -10.98991,-2.581902 -3.35051,-1.608473 -6.33592,-3.699364 -9.34585,-5.676061 -0.70776,-0.4648 -1.41899,-0.924226 -2.1364,-1.36913 -2.33299,-1.977131 -4.75753,-3.828286 -7.38679,-5.275138 -3.44025,-1.893131 -7.28925,-3.0697392 -10.97681,-2.713133 -2.68586,0.259731 -5.26123,1.37013 -7.02726,3.33637 -0.88283,0.98293 -1.5561,2.170542 -1.92399,3.475168 -0.36791,1.304777 -0.42703,2.726821 -0.13043,4.107553 0.48562,2.260986 1.97129,4.384584 4.00734,5.581139 1.01719,0.597788 2.15695,0.964677 3.29376,1.048451 1.13679,0.08372 2.26806,-0.116926 3.25138,-0.589689 1.33074,-0.639807 2.37445,-1.781517 2.89947,-3.169825 0.52493,-1.388046 0.52733,-3.011635 0.0126,-4.505927 m 103.42143,-6.92871 c 0.79689,1.322412 1.00385,3.009567 0.56825,4.557384 -0.4354,1.54715 -1.50688,2.934475 -2.88994,3.744104 -0.89015,0.521098 -1.89964,0.80732 -2.90403,0.841125 -1.00437,0.03375 -2.00218,-0.183124 -2.89533,-0.610274 -1.78482,-0.853602 -3.11348,-2.549686 -3.6718,-4.485049 -0.68528,-2.375542 -0.2316,-5.058898 1.05122,-7.2652192 1.28246,-2.2057486 3.34227,-3.93659 5.6603,-5.0313269 2.42768,-1.1465336 5.09981,-1.6050977 7.73983,-1.5593146 1.2009,0.1630108 2.39408,0.4241658 3.55388,0.7646271 3.77925,1.1094103 7.22907,3.0077939 10.48328,5.0494864 3.23798,2.0315102 6.35589,4.2452042 9.61696,6.0203962 3.27645,1.783566 6.78204,3.155979 10.48256,3.394108 1.79533,0.11553 3.60596,-0.03851 5.40829,-0.3866 1.76004,-0.08659 3.50895,-0.365242 5.21436,-0.768489 3.43866,-0.813087 6.74586,-2.123822 10.07394,-3.39249 3.33201,-1.270181 6.71805,-2.508203 10.28814,-3.177004 3.56655,-0.6681513 7.34609,-0.7471751 10.89129,0.285457 2.41099,0.702275 4.70405,1.935412 6.41756,3.751298 1.71564,1.818117 2.80604,4.238558 2.77478,6.714708 -0.016,1.268406 -0.32365,2.5339 -0.90524,3.658432 -0.58146,1.124289 -1.43792,2.105705 -2.47712,2.811041 -1.03951,0.705533 -2.26191,1.1324 -3.50799,1.202743 -1.2464,0.07036 -2.5142,-0.2185 -3.60948,-0.841886 -1.55817,-0.886828 -2.74064,-2.462616 -3.17095,-4.226681 -0.43051,-1.764935 -0.1015,-3.692627 0.89925,-5.174993 -0.81106,1.539368 -1.02759,3.393935 -0.61002,5.108085 0.41741,1.713456 1.46502,3.273484 2.88172,4.293589 1.1913,0.857817 2.63341,1.335172 4.08379,1.366836 1.45008,0.03167 2.90477,-0.380079 4.14317,-1.154366 1.23784,-0.773936 2.25836,-1.907242 2.91988,-3.222578 0.66172,-1.315737 0.96473,-2.810304 0.87725,-4.28179 -0.15536,-2.613111 -1.54442,-5.069337 -3.54637,-6.799003 -1.99905,-1.727164 -4.55882,-2.75692 -7.17023,-3.205435 -3.83011,-0.6574429 -7.75576,-0.111698 -11.39223,1.004835 -3.63997,1.117609 -7.026,2.788827 -10.3835,4.434186 -3.3533,1.643305 -6.71345,3.274688 -10.27011,4.291951 -1.5533,0.444271 -3.15416,0.768383 -4.77141,0.920171 -2.08707,0.499251 -4.19541,0.719996 -6.2768,0.541233 -3.67253,-0.315411 -7.11441,-1.857755 -10.2657,-3.856531 -3.14182,-1.992766 -6.06339,-4.460634 -9.10448,-6.800885 -3.05239,-2.3489307 -6.28087,-4.605826 -9.93344,-6.1445128 -1.15517,-0.4866295 -2.35599,-0.8968001 -3.57904,-1.2067446 -2.57893,-0.3556876 -5.24739,-0.2318332 -7.77582,0.5861203 -2.69731,0.8725769 -5.19673,2.5626505 -6.78005,4.9165387 -0.79169,1.1770084 -1.34735,2.5071944 -1.58601,3.8857344 -0.2386,1.378277 -0.15666,2.802576 0.26833,4.106702 0.69518,2.133535 2.35164,3.913391 4.43582,4.647001 1.04322,0.367206 2.18253,0.477999 3.2962,0.307762 1.11359,-0.170282 2.19993,-0.622407 3.12541,-1.313 1.2513,-0.933729 2.19622,-2.306849 2.6182,-3.80778 0.42214,-1.50146 0.31811,-3.120726 -0.29651,-4.493708"
id="path48404"
inkscape:original-d="m 11.17419,16.72425 53.57257,-1.80158 44.35212,3.64699 39.77411,-5.96393 46.84765,8.23357 47.05146,-0.51129 40.77554,-7.60687 50.17749,5.49501 40.37361,1.38856 49.88078,-6.10678 46.85645,2.43291 40.20546,-0.61661 44.43335,5.68965 42.22484,-4.07763 50.26405,-4.93081 39.64418,0.94612 46.87558,8.03611"
inkscape:path-effect="#path-effect7020"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#666666;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;filter:url(#filter6821);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
d="m 732.34587,33.832799 c -1.42241,0.561749 -3.04983,0.539944 -4.39212,-0.08396 -1.3436,-0.624507 -2.38194,-1.84378 -2.8088,-3.304349 -0.27404,-0.937672 -0.30003,-1.961112 -0.092,-2.937962 0.20811,-0.977027 0.64794,-1.904917 1.25818,-2.689078 1.22322,-1.571843 3.10805,-2.513213 5.04246,-2.671048 2.36583,-0.193015 4.76059,0.756036 6.50985,2.317973 1.75127,1.563703 2.88749,3.708963 3.36969,5.939814 0.73049,3.379488 0.0116,6.939094 -1.46592,10.179364 -1.47313,3.230563 -3.67912,6.210095 -5.99371,9.111264 -0.24859,0.311581 -0.49887,0.622895 -0.75013,0.934221 -1.50413,2.645454 -3.08652,5.248136 -4.34293,8.044705 -1.40712,3.13199 -2.40317,6.552819 -2.31101,10.134436 0.0887,3.444952 1.18236,6.906267 2.70619,10.141397 1.52413,3.235736 3.47334,6.276382 5.39017,9.318334 0.9397,1.491276 1.87527,2.989688 2.75044,4.51429 0.60383,1.574678 1.13621,3.177797 1.52966,4.831511 0.7721,3.24514 0.99277,6.71791 0.14787,10.10265 -0.57467,2.30211 -1.65932,4.56106 -3.32097,6.37226 -1.6613,1.81084 -3.92799,3.14459 -6.28351,3.44485 -1.20789,0.15396 -2.42408,0.0366 -3.5165,-0.35963 -1.09245,-0.39621 -2.05834,-1.07226 -2.76907,-1.96289 -0.71068,-0.89057 -1.16274,-1.995 -1.27647,-3.16995 -0.11373,-1.17495 0.11361,-2.41734 0.66554,-3.53314 0.78613,-1.58931 2.23859,-2.8914 3.90087,-3.49708 1.66211,-0.60562 3.50766,-0.50541 4.95529,0.2666 -1.49479,-0.58807 -3.26625,-0.58911 -4.88076,-7.4e-4 -1.61464,0.58842 -3.05721,1.76085 -3.9754,3.23122 -0.77133,1.23516 -1.17153,2.66778 -1.14725,4.05033 0.0243,1.3826 0.47069,2.70982 1.25433,3.77817 0.78369,1.06842 1.90017,1.87557 3.17779,2.3177 1.27757,0.44212 2.71185,0.51976 4.10917,0.23909 2.47883,-0.49789 4.76844,-2.11512 6.33436,-4.17778 1.56631,-2.06318 2.44686,-4.54044 2.77258,-6.99901 0.4771,-3.60393 -0.19276,-7.16891 -1.3933,-10.444154 -0.57287,-1.562858 -1.26379,-3.068831 -2.01311,-4.545634 -1.1334,-1.627861 -2.32944,-3.220958 -3.51663,-4.814913 -2.27145,-3.049686 -4.53178,-6.135752 -6.2742,-9.492457 -1.74216,-3.356181 -2.95598,-7.022297 -2.97491,-10.65035 -0.0188,-3.607168 1.1415,-7.011797 2.76147,-10.056321 1.35418,-2.54501 3.02688,-4.873512 4.68614,-7.205363 0.42811,-0.453048 0.85637,-0.905224 1.28122,-1.356712 2.58456,-2.746648 5.11217,-5.546902 6.97643,-8.653799 1.86978,-3.116098 3.06416,-6.612162 2.80626,-10.092469 -0.18775,-2.533754 -1.18296,-5.061755 -3.00167,-6.934935 -0.90889,-0.936097 -2.01708,-1.702479 -3.24097,-2.190887 -1.22448,-0.488636 -2.56699,-0.696667 -3.8788,-0.552407 -2.15063,0.236434 -4.18904,1.467862 -5.37313,3.355168 -0.59028,0.940815 -0.96541,2.026825 -1.07255,3.134055 -0.10708,1.107248 0.0552,2.232195 0.47894,3.229361 0.57414,1.350926 1.62926,2.447411 2.93273,3.05443 1.30245,0.606563 2.84098,0.719181 4.26819,0.333879 m -3.96811,98.186818 c -1.26185,0.68115 -2.86287,0.79182 -4.32276,0.29065 -1.46061,-0.50141 -2.75838,-1.60787 -3.50799,-2.99245 -0.31898,-0.58917 -0.53978,-1.22356 -0.6581,-1.8668 0,0 0,0 0,0 0.009,-0.3243 0.0452,-0.65083 0.10827,-0.97485 0.18681,-0.95872 0.60693,-1.89392 1.20094,-2.71273 1.18821,-1.6379 3.06134,-2.76851 4.99406,-3.14996 2.36968,-0.46767 4.78468,0.16641 6.57326,1.52411 1.78877,1.3578 2.96965,3.39532 3.49918,5.61729 0.006,0.0233 0.011,0.0466 0.0165,0.07 1.4965,3.33558 1.65282,7.01284 0.98787,10.39442 -0.66909,3.40262 -2.12494,6.5535 -3.7291,9.59846 -1.60549,3.04748 -3.37069,6.02396 -4.72549,9.24526 -0.67466,1.60414 -1.24576,3.27819 -1.62964,5.00095 -0.61474,1.72357 -1.04605,3.48981 -1.20583,5.28126 -0.30631,3.43444 0.3987,6.83697 1.56335,10.01339 1.16395,3.17446 2.7812,6.15977 4.36279,9.16135 1.58259,3.00345 3.14221,6.05239 4.18448,9.32737 0.45341,1.42465 0.80595,2.89762 1.01287,4.39146 0.37723,1.85455 0.5095,3.72863 0.29959,5.59377 -0.25262,2.24454 -1.01921,4.48035 -2.41601,6.35602 -1.39128,1.86829 -3.46204,3.3777 -5.7478,3.876 -1.17543,0.25624 -2.39733,0.24528 -3.53805,-0.065 -1.14136,-0.31043 -2.19663,-0.92124 -3.03393,-1.78527 -0.83658,-0.86328 -1.44901,-1.97662 -1.73673,-3.19154 -0.28753,-1.21411 -0.24648,-2.5236 0.13759,-3.70963 0.54858,-1.69405 1.80127,-3.08901 3.37409,-3.75944 1.57044,-0.66941 3.43023,-0.60464 4.98662,0.12907 -1.57744,-0.54787 -3.34752,-0.51036 -4.87316,0.14168 -1.52755,0.65285 -2.78963,1.91345 -3.48755,3.48869 -0.58493,1.32021 -0.7693,2.8404 -0.53963,4.27785 0.22966,1.43745 0.86998,2.78458 1.80465,3.8222 0.93588,1.03898 2.15803,1.76352 3.4888,2.09582 1.32974,0.33205 2.76068,0.27278 4.10476,-0.13343 2.37766,-0.71858 4.43138,-2.51306 5.69276,-4.61559 1.26734,-2.11247 1.80085,-4.54008 1.78359,-6.92745 -0.0139,-1.89555 -0.36181,-3.76865 -0.94342,-5.60509 -0.40095,-1.61877 -0.96985,-3.19501 -1.64519,-4.70359 -1.47393,-3.29247 -3.44296,-6.29806 -5.38253,-9.29012 -1.93825,-2.99001 -3.86424,-5.9984 -5.23452,-9.27159 -1.37112,-3.27517 -2.17388,-6.85935 -1.77651,-10.46468 0.16338,-1.48247 0.52613,-2.94195 1.03561,-4.36666 0.45451,-2.04934 1.21444,-4.01843 2.13496,-5.86596 1.57028,-3.15159 3.59959,-5.99363 5.51561,-8.88289 1.91462,-2.88715 3.73489,-5.85978 4.82335,-9.15346 1.08218,-3.27472 1.40552,-6.91982 0.34166,-10.40388 -0.002,-0.0232 -0.004,-0.0465 -0.006,-0.0697 -0.24035,-2.55991 -1.28866,-5.00206 -3.15124,-6.65449 -0.93125,-0.82616 -2.05688,-1.44812 -3.29476,-1.77799 -1.23793,-0.32987 -2.58788,-0.36434 -3.8997,-0.0638 -2.14735,0.49187 -4.16932,1.92486 -5.31067,3.85788 -0.57055,0.96628 -0.92224,2.04453 -1.00504,3.11722 -0.0314,0.4073 -0.0239,0.81351 0.022,1.21132 0.21334,0.65816 0.52371,1.29324 0.92184,1.87288 0.86874,1.26477 2.15485,2.24925 3.57175,2.73603 1.41635,0.48661 2.95132,0.47176 4.259,-0.0342 m 1.09554,98.63934 c -1.29216,0.87863 -2.87773,1.2392 -4.28383,0.93986 -1.40789,-0.29971 -2.61536,-1.25743 -3.2692,-2.60001 -0.41952,-0.8614 -0.61199,-1.86584 -0.56908,-2.87723 0.043,-1.01166 0.31952,-2.02682 0.78576,-2.9368 0.93528,-1.82539 2.61674,-3.16524 4.47716,-3.74359 2.27322,-0.70666 4.76385,-0.29552 6.71878,0.84037 1.95803,1.13765 3.40959,2.96571 4.23535,5.01221 1.2514,3.10137 1.11919,6.69063 0.20121,10.16902 -0.0311,0.11781 -0.063,0.23553 -0.0958,0.35315 0,0 0,0 0,0 0.0562,3.37899 -0.63872,6.6078 -1.49165,9.70478 -0.88259,3.20462 -1.94099,6.31668 -2.53984,9.54957 -0.59977,3.23785 -0.72717,6.64032 0.23816,10.03537 0.9275,3.26199 2.83617,6.41298 5.09986,9.32438 0.26028,0.33475 0.52538,0.66682 0.79465,0.99655 0.79699,2.63973 1.91654,5.14538 3.01536,7.68449 1.24172,2.86929 2.46731,5.81229 3.1696,9.02254 0.70229,3.21023 0.86497,6.72471 -0.0282,10.19013 -0.60777,2.358 -1.72056,4.68535 -3.40548,6.55487 -0.6173,0.68495 -1.3143,1.3037 -2.06635,1.82921 -1.03894,0.90198 -2.31659,1.53376 -3.74131,1.7525 -1.1528,0.17698 -2.38663,0.0836 -3.57261,-0.28938 -1.00921,-0.31738 -1.98207,-0.83802 -2.82925,-1.52312 0,0 -10e-6,-10e-6 -10e-6,-10e-6 -0.11341,-0.11795 -0.22147,-0.24076 -0.32373,-0.3682 -0.68616,-0.85515 -1.10812,-1.918 -1.19129,-3.05527 -0.0832,-1.13751 0.1749,-2.34787 0.75096,-3.45145 0.81893,-1.56886 2.29435,-2.90307 3.95243,-3.57404 1.6601,-0.67178 3.48278,-0.67041 4.89979,0.0258 -1.46731,-0.51146 -3.21982,-0.42085 -4.83234,0.23081 -1.61089,0.651 -3.07292,1.85832 -4.01988,3.31748 -0.79673,1.22766 -1.23182,2.62662 -1.24308,3.96682 -0.009,1.03192 0.23262,2.02707 0.68871,2.9003 0.2143,0.26635 0.44428,0.52118 0.68826,0.76208 1.06031,1.04692 2.38023,1.82851 3.76171,2.24409 1.3815,0.41558 2.82049,0.4658 4.12675,0.15932 1.85169,-0.43446 3.3913,-1.57939 4.44233,-3.08846 0,0 0,0 0,0 0.37398,-0.38404 0.7233,-0.7922 1.04376,-1.21893 1.59384,-2.12242 2.50725,-4.66916 2.87063,-7.17437 0.53238,-3.67285 -0.0723,-7.25051 -1.19276,-10.4464 -1.12209,-3.20066 -2.74808,-6.06446 -4.33495,-8.8883 -1.3422,-2.38845 -2.66633,-4.77063 -3.63677,-7.31783 -0.40432,-0.44542 -0.80001,-0.89642 -1.18539,-1.35399 -2.50564,-2.97499 -4.58264,-6.27247 -5.48876,-9.68824 -0.90188,-3.39979 -0.61282,-6.78746 0.21391,-9.95676 0.82557,-3.16488 2.17307,-6.15712 3.39527,-9.23227 1.18282,-2.97608 2.25966,-6.07292 2.62027,-9.40206 0,0 0,0 0,0 0.0445,-0.11275 0.0883,-0.22565 0.13142,-0.33871 1.31778,-3.45794 1.92184,-7.10093 1.11444,-10.40542 -0.58774,-2.40549 -1.96277,-4.63458 -4.03694,-6.06103 -1.03632,-0.7127 -2.24099,-1.22075 -3.51294,-1.43338 -1.27278,-0.21277 -2.61561,-0.12712 -3.87086,0.2995 -2.05911,0.69977 -3.84272,2.35741 -4.68838,4.48692 -0.42114,1.0605 -0.60876,2.21806 -0.5321,3.33587 0.0767,1.11782 0.41838,2.19161 0.99325,3.07721 0.77919,1.20037 1.98298,2.03354 3.3491,2.32584 1.36474,0.29202 2.8785,0.0419 4.20393,-0.66568 m 9.29109,96.24815 c -1.21787,0.69234 -2.80321,0.81729 -4.2819,0.33746 -1.47871,-0.47982 -2.83013,-1.55771 -3.65014,-2.91133 -0.52741,-0.87061 -0.83776,-1.84498 -0.90937,-2.80157 -0.0716,-0.95658 0.094,-1.89388 0.46255,-2.71882 0.73712,-1.64988 2.28728,-2.80984 4.09607,-3.22569 2.21821,-0.50995 4.77546,0.0756 6.90911,1.39725 2.13364,1.32167 3.84925,3.33475 4.97091,5.54549 1.69729,3.34527 2.05767,7.08033 1.5751,10.50177 -0.48259,3.42144 -1.75952,6.57546 -3.18933,9.60264 -1.39828,2.96042 -2.95414,5.83814 -4.11637,8.9222 0,0 0,0 0,0 -0.0464,0.0692 -0.0927,0.13855 -0.13878,0.20796 -2.08925,3.1467 -3.83096,6.53832 -4.51127,10.05447 -0.65485,3.3846 -0.30345,6.77267 0.53081,9.96683 0.83347,3.19112 2.13926,6.22291 3.4109,9.27938 0.62168,1.49425 1.23742,3.00108 1.788,4.53976 0.86005,1.61061 1.65423,3.24669 2.31786,4.92883 1.29791,3.28982 2.08663,6.78943 1.79877,10.18048 -0.19579,2.30643 -0.90712,4.56026 -2.26849,6.35767 -1.36056,1.79636 -3.40583,3.10842 -5.70749,3.37699 -1.18044,0.13774 -2.41336,0.002 -3.56778,-0.41543 -1.15457,-0.41707 -2.22762,-1.11591 -3.08073,-2.02957 -0.853,-0.91357 -1.48201,-2.04065 -1.78496,-3.23445 -0.30291,-1.19364 -0.27641,-2.45029 0.0938,-3.57175 0.52741,-1.59778 1.76432,-2.88882 3.32224,-3.46827 1.55774,-0.57937 3.41192,-0.4385 4.97933,0.37141 -1.58455,-0.625 -3.34888,-0.66363 -4.86209,-0.10058 -1.51337,0.56311 -2.76126,1.72287 -3.43948,3.19744 -0.56961,1.23839 -0.73789,2.68526 -0.49078,4.08817 0.24713,1.4031 0.90643,2.75613 1.86106,3.85066 0.95478,1.09471 2.19947,1.9277 3.54663,2.39303 1.34695,0.46526 2.79146,0.56324 4.14059,0.29955 2.39307,-0.46772 4.41496,-2.06566 5.63915,-4.1169 1.225,-2.05259 1.69691,-4.52927 1.61902,-6.99797 -0.11448,-3.61761 -1.36536,-7.22272 -3.09355,-10.55521 -0.82771,-1.59609 -1.76402,-3.13938 -2.753,-4.65629 -0.78757,-1.64379 -1.64377,-3.24416 -2.49168,-4.83783 -1.62629,-3.05668 -3.2351,-6.1191 -4.26136,-9.40899 -1.0273,-3.29323 -1.45438,-6.85525 -0.68942,-10.39742 0.70989,-3.28723 2.41772,-6.43508 4.50112,-9.3232 0.0872,-0.20632 0.1767,-0.41123 0.26831,-0.61467 1.38761,-3.08156 3.25119,-5.87614 4.99798,-8.73696 1.74678,-2.86081 3.39467,-5.82805 4.29999,-9.13674 0.90531,-3.30867 1.02768,-7.01195 -0.24408,-10.51701 -0.92629,-2.55293 -2.61977,-4.97289 -4.9053,-6.58658 -1.14276,-0.80683 -2.4225,-1.40552 -3.73494,-1.71067 -1.31243,-0.30514 -2.65628,-0.31344 -3.87285,0.0107 -1.99117,0.53045 -3.60761,1.99441 -4.21949,3.93661 -0.30595,0.9711 -0.36561,2.04927 -0.1607,3.11729 0.20495,1.06802 0.67508,2.12385 1.36402,3.03605 0.93199,1.234 2.2651,2.19136 3.69963,2.65684 1.43452,0.46549 2.95961,0.43559 4.2324,-0.083 m -0.40951,98.12324 c -1.30313,0.6673 -2.91619,0.75747 -4.3557,0.23839 -1.43995,-0.51924 -2.68545,-1.64062 -3.36563,-3.03127 -0.4373,-0.89406 -0.64432,-1.8883 -0.61259,-2.85785 0.0318,-0.96955 0.30051,-1.91272 0.76154,-2.73532 0.92251,-1.64596 2.60957,-2.76588 4.47756,-3.12609 2.28967,-0.44149 4.80446,0.23279 6.81201,1.62341 2.00776,1.39075 3.52198,3.45555 4.41557,5.69433 0.97261,2.43674 1.22731,5.05142 0.97611,7.59747 -0.22028,1.02639 -0.51659,2.04024 -0.87417,3.02413 -1.27458,3.50706 -3.2797,6.66209 -5.41021,9.63028 -2.12098,2.95489 -4.40625,5.78875 -6.28765,8.79232 -1.88927,3.01612 -3.40294,6.27819 -3.85015,9.78174 -0.23318,1.82685 -0.1714,3.68561 0.0983,5.54226 0.0464,1.59765 0.24393,3.17765 0.54229,4.70385 0.65278,3.33915 1.77132,6.43933 2.84714,9.45844 1.07491,3.01651 2.11369,5.9774 2.60175,9.05025 0.4897,3.08301 0.40891,6.30377 -0.7011,9.52386 -0.24413,0.70819 -0.53973,1.41655 -0.88762,2.11432 0.0549,1.50395 -0.15748,2.94579 -0.7098,4.20152 -0.81714,1.85783 -2.41311,3.27398 -4.53972,3.70457 -1.09011,0.22072 -2.30479,0.18221 -3.52145,-0.12556 -1.21619,-0.30766 -2.43384,-0.886 -3.49894,-1.67762 -1.0652,-0.7917 -1.9767,-1.798 -2.59379,-2.89078 -0.44363,-0.7856 -0.73361,-1.61536 -0.84427,-2.42365 0.12537,-0.345 0.27572,-0.68584 0.45044,-1.01773 0.88746,-1.68581 2.39537,-3.08918 4.0683,-3.7869 1.66887,-0.69603 3.4656,-0.67484 4.81741,0.006 -1.41299,-0.49801 -3.14364,-0.42037 -4.76497,0.25778 -1.62458,0.6795 -3.11369,1.95109 -4.12074,3.52354 -0.21191,0.33089 -0.40183,0.67355 -0.56871,1.02367 0.01,0.95713 0.25911,1.96745 0.72451,2.93585 0.62122,1.29266 1.62387,2.50811 2.83551,3.46347 1.21136,0.95516 2.62988,1.65094 4.0423,1.99413 1.41317,0.34337 2.81876,0.33525 4.03529,-0.015 2.1585,-0.62141 3.65591,-2.31207 4.27292,-4.40477 0.43131,-1.46288 0.456,-3.10557 0.17909,-4.78134 0.25874,-0.69916 0.46606,-1.40246 0.62424,-2.1011 0.76947,-3.4 0.41812,-6.70674 -0.49304,-9.83866 -0.90775,-3.12016 -2.36046,-6.10292 -3.79006,-9.1805 -1.43206,-3.08288 -2.85474,-6.29762 -3.70194,-9.83797 -0.33854,-1.41473 -0.58099,-2.88521 -0.68961,-4.37903 -0.40818,-2.13485 -0.52277,-4.28367 -0.20919,-6.38127 0.51911,-3.47251 2.19255,-6.67613 4.27904,-9.56498 2.08134,-2.88171 4.59737,-5.51945 6.99998,-8.27253 2.41062,-2.76227 4.74353,-5.68982 6.41817,-9.05354 0.4849,-0.97398 0.91119,-1.98747 1.26056,-3.02482 0.55214,-2.47085 0.62741,-5.06004 -0.0162,-7.5713 -0.66,-2.57523 -2.1082,-5.04569 -4.23753,-6.73514 -1.06469,-0.84472 -2.29007,-1.48774 -3.57936,-1.83791 -1.28945,-0.35021 -2.64252,-0.40433 -3.90331,-0.11852 -2.06397,0.4678 -3.8506,1.89137 -4.67874,3.83745 -0.41381,0.97244 -0.59116,2.06165 -0.50065,3.14796 0.0906,1.08636 0.44981,2.16744 1.0455,3.10773 0.8061,1.27241 2.04625,2.27168 3.44313,2.77563 1.39654,0.50384 2.93837,0.50849 4.27821,0.0173 m -3.61452,96.82826 c -1.05783,0.69371 -2.56582,0.84266 -4.07666,0.41284 -1.50943,-0.42941 -3.00435,-1.43177 -4.03174,-2.70163 -0.66143,-0.81752 -1.13165,-1.73786 -1.36755,-2.64813 -0.23588,-0.91034 -0.23877,-1.80957 -0.0249,-2.61015 0.4278,-1.60114 1.73143,-2.77126 3.41543,-3.24068 2.06689,-0.57613 4.64692,-0.11324 6.94084,1.09682 2.2944,1.21029 4.29082,3.11863 5.74766,5.25281 2.2017,3.22534 3.17149,6.88913 3.28118,10.23329 0.10976,3.34629 -0.58544,6.4226 -1.44096,9.34715 -0.24919,0.85182 -0.51242,1.6943 -0.77443,2.53487 -1.98742,2.0276 -3.98897,4.04716 -5.82945,6.14464 -2.59825,2.96107 -4.92806,6.15814 -6.24707,9.49199 -1.2721,3.21527 -1.56611,6.46198 -1.34171,9.5645 0.22004,3.042 0.92253,5.96415 1.60934,8.92384 0.002,0.002 0.11157,0.16795 0.11313,0.17029 2.04468,3.07622 4.12511,6.12517 5.70833,9.19795 1.5949,3.0954 2.72691,6.32293 2.78695,9.5322 0.0409,2.18835 -0.43155,4.38932 -1.59818,6.2926 -1.1595,1.89168 -3.06893,3.49941 -5.3183,4.12508 -1.15642,0.32166 -2.39093,0.3822 -3.57295,0.135 -1.18346,-0.24748 -2.3069,-0.80376 -3.23433,-1.63384 -0.92664,-0.82938 -1.6473,-1.92669 -2.05284,-3.14615 -0.40498,-1.21774 -0.48973,-2.54862 -0.22521,-3.76266 0.37813,-1.73555 1.4755,-3.17941 2.95221,-3.89233 1.47556,-0.71237 3.30666,-0.68701 4.92191,5.7e-4 -1.61501,-0.50272 -3.34778,-0.42637 -4.782,0.26837 -1.43511,0.69516 -2.55434,2.00334 -3.09212,3.62339 -0.4503,1.35651 -0.48911,2.90829 -0.12091,4.35616 0.36872,1.44996 1.13913,2.7818 2.18314,3.78071 1.04541,1.00028 2.35089,1.65755 3.73176,1.9114 1.37859,0.25343 2.82116,0.10452 4.13389,-0.37985 2.32372,-0.8574 4.18161,-2.74593 5.18105,-4.85858 1.00613,-2.1268 1.21919,-4.50139 0.89288,-6.81987 -0.47652,-3.38325 -2.07383,-6.70915 -4.08706,-9.86417 -1.97311,-3.09213 -4.41743,-6.153 -6.76693,-9.26909 0.001,0.004 -0.0399,-0.11569 -0.0384,-0.11144 -1.04271,-3.02774 -2.05204,-6.03665 -2.43823,-9.22635 -0.38683,-3.19488 -0.12342,-6.59614 1.29431,-9.94599 1.40562,-3.32127 3.89507,-6.47414 6.66928,-9.33227 1.782,-1.83592 3.70007,-3.58033 5.63413,-5.31471 0.42514,-0.97789 0.86434,-1.9519 1.28873,-2.93776 1.1851,-2.75302 2.26608,-5.64015 2.58061,-8.87515 0.31418,-3.2315 -0.18494,-6.87027 -2.00176,-10.26379 -1.32503,-2.47493 -3.36786,-4.78227 -5.85968,-6.2687 -1.24542,-0.7429 -2.58833,-1.27318 -3.91516,-1.51616 -1.32637,-0.24289 -2.63309,-0.19513 -3.75882,0.16578 -1.84272,0.59069 -3.15837,2.05781 -3.41345,3.93096 -0.1277,0.9377 0.003,1.96694 0.38712,2.97904 0.38452,1.01186 1.02374,2.00532 1.8485,2.85846 1.11495,1.15333 2.57088,2.04055 4.03552,2.45671 1.46576,0.41648 2.9324,0.35915 4.07287,-0.16792"
id="path48402"
inkscape:original-d="m 734.48343,20.97767 -4.4931,29.52186 2.77217,42.13937 -4.57667,35.00138 2.90695,34.35362 -1.85183,38.10663 0.49542,37.01927 12.30535,38.12252 -5.35376,35.4433 5.68128,40.88133 -5.10154,33.77566 1.36741,42.85039 -3.25983,37.63675 -7.2586,34.59807 12.3949,39.08326 -11.76196,33.95807 3.957,31.03532"
inkscape:path-effect="#path-effect7020"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#666666;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;filter:url(#filter6821);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
d="m 719.21654,605.89206 c -0.88946,-1.28937 -1.22258,-2.94971 -0.90064,-4.48444 0.32193,-1.5347 1.29436,-2.92247 2.62612,-3.74802 0.85661,-0.53101 1.85073,-0.83265 2.85641,-0.88514 1.00567,-0.0524 2.02114,0.14254 2.9435,0.54709 1.84457,0.80904 3.27442,2.45664 3.94775,4.35698 0.82579,2.33068 0.53231,4.98986 -0.59897,7.18966 -1.13121,2.19973 -3.05163,3.94638 -5.25898,5.06786 -3.33999,1.69693 -7.26591,1.98733 -10.96293,1.40351 -3.69736,-0.58388 -7.20831,-1.99213 -10.60161,-3.55772 -3.39278,-1.56536 -6.71315,-3.30181 -10.21377,-4.59912 -1.61543,-0.59867 -3.27982,-1.10307 -4.97011,-1.44475 -1.94766,-0.41793 -3.91561,-0.61401 -5.88609,-0.48018 -3.51348,0.23863 -6.92898,1.52329 -10.13054,3.23973 -3.19057,1.71055 -6.23932,3.87161 -9.33054,5.97522 -3.10693,2.11431 -6.29678,4.19573 -9.78067,5.78644 -1.80724,0.82517 -3.69467,1.51143 -5.60643,1.97512 -1.68703,-0.0835 -3.38637,-0.36365 -5.06026,-0.89685 -2.37139,-0.7554 -4.68829,-2.03614 -6.52883,-3.88374 -1.84054,-1.84758 -3.1723,-4.28814 -3.43417,-6.75013 -0.13426,-1.26227 0.012,-2.51431 0.4431,-3.61872 0.43106,-1.10441 1.14792,-2.05833 2.08011,-2.73285 0.93218,-0.6745 2.07899,-1.06618 3.29166,-1.10238 1.21267,-0.0362 2.48806,0.28569 3.6275,0.93511 1.62269,0.92484 2.93917,2.52062 3.53495,4.28493 0.59577,1.7643 0.46154,3.6696 -0.36032,5.11595 0.63278,-1.50798 0.66364,-3.34344 0.0849,-5.0572 -0.57871,-1.71377 -1.76173,-3.29026 -3.25956,-4.34368 -1.25841,-0.88505 -2.72634,-1.39927 -4.15105,-1.47019 -1.42472,-0.0709 -2.80096,0.29943 -3.91803,1.03718 -1.11707,0.73775 -1.97264,1.83865 -2.45539,3.13172 -0.48275,1.29307 -0.59316,2.77384 -0.33238,4.24121 0.4627,2.60353 2.08673,5.08745 4.18979,6.85373 2.10307,1.7663 4.65009,2.85077 7.18769,3.35906 1.70863,0.34207 3.41282,0.43283 5.08589,0.33248 2.05665,-0.713 4.05143,-1.67315 5.93576,-2.77374 3.4923,-2.03976 6.61371,-4.53661 9.67733,-7.02098 3.0491,-2.4726 6.07778,-4.95957 9.32405,-6.90392 3.25597,-1.95017 6.80396,-3.37101 10.45653,-3.54756 1.63805,-0.0792 3.27013,0.0918 4.88384,0.44592 2.02485,0.41413 4.00554,1.10137 5.89686,1.93883 3.43987,1.52315 6.63733,3.53752 9.89231,5.4306 3.25537,1.8933 6.6135,3.68513 10.24367,4.70848 3.62982,1.02326 7.58263,1.23688 11.14671,-0.0115 2.59599,-0.9093 4.9518,-2.62345 6.37361,-4.97513 0.7109,-1.17585 1.18266,-2.49957 1.33831,-3.86437 0.15563,-1.36477 -0.008,-2.76924 -0.50851,-4.04846 -0.81871,-2.09359 -2.57986,-3.81758 -4.71841,-4.50254 -1.06939,-0.34252 -2.2207,-0.4301 -3.32755,-0.24088 -1.10683,0.18927 -2.167,0.65604 -3.04721,1.35494 -1.19067,0.94542 -2.03752,2.31685 -2.34978,3.80569 -0.31228,1.48888 -0.0876,3.08403 0.62429,4.42676 m -101.78885,1.88712 c -0.66025,-1.51031 -0.7237,-3.20474 -0.17129,-4.57651 0.55241,-1.3718 1.71297,-2.40182 3.13465,-2.78204 0.91438,-0.24455 1.92632,-0.22679 2.91026,0.0333 0.98393,0.26017 1.93839,0.76049 2.76931,1.43287 1.66185,1.34478 2.78793,3.36471 3.14033,5.39361 0.43214,2.48812 -0.27299,4.946 -1.71556,6.70519 -1.44255,1.75921 -3.57687,2.84119 -5.88953,3.23558 -3.49947,0.5968 -7.34391,-0.33485 -10.83251,-2.03446 -3.48859,-1.6996 -6.67079,-4.13276 -9.71683,-6.68065 -0.52743,-0.44118 -1.05201,-0.88659 -1.5755,-1.33361 -2.51601,-1.34314 -5.03953,-2.72951 -7.77177,-3.82503 -3.29925,-1.32288 -6.94593,-2.21309 -10.72433,-1.96772 -3.63573,0.2361 -7.22454,1.5146 -10.50289,3.23525 -3.28491,1.72411 -6.27011,3.87373 -9.22856,6.00444 -0.79342,0.57143 -1.58718,1.14283 -2.38296,1.70274 -2.22268,1.38893 -4.51864,2.69251 -6.97796,3.72129 -3.36118,1.40606 -7.06011,2.28265 -10.72414,2.03797 -2.49208,-0.16642 -4.96189,-0.86957 -6.95203,-2.25428 -1.99448,-1.38772 -3.46242,-3.48186 -3.84274,-5.87082 -0.19475,-1.22328 -0.10414,-2.50599 0.27381,-3.71231 0.37776,-1.20576 1.04439,-2.33457 1.92989,-3.23706 0.88588,-0.90288 1.99242,-1.57825 3.18017,-1.9155 1.18838,-0.33744 2.45739,-0.33392 3.62066,0.0298 1.65373,0.51708 3.07421,1.78168 3.80679,3.39109 0.73302,1.61037 0.76562,3.54239 0.0603,5.18764 0.51059,-1.65951 0.38316,-3.49677 -0.32774,-5.06069 -0.71055,-1.56316 -1.99828,-2.84191 -3.53938,-3.51804 -1.29672,-0.56893 -2.76508,-0.71603 -4.16668,-0.43256 -1.40091,0.28332 -2.73362,0.99446 -3.80093,2.00618 -1.06656,1.01101 -1.86906,2.32102 -2.29537,3.72693 -0.42658,1.40682 -0.47801,2.90805 -0.15081,4.30405 0.58121,2.47981 2.34624,4.54482 4.60729,5.78669 2.25554,1.23884 4.9528,1.68975 7.59674,1.56887 3.88051,-0.17779 7.62894,-1.53679 10.96743,-3.39322 2.33664,-1.29933 4.48985,-2.83627 6.57347,-4.43799 0.88241,-0.74227 1.76179,-1.49498 2.64693,-2.24443 2.95093,-2.49858 5.98473,-4.97194 9.41304,-6.92548 3.42246,-1.95022 7.26272,-3.35889 11.13424,-3.52753 3.84773,-0.16761 7.5144,0.8958 10.75148,2.44451 2.48313,1.18799 4.74441,2.65623 6.96256,4.13713 0.66611,0.66352 1.33126,1.32798 2.00036,1.98705 2.86262,2.8197 5.83825,5.57376 9.19404,7.67406 3.3558,2.10031 7.14798,3.52348 10.7939,3.42568 2.65554,-0.0712 5.20615,-0.98782 6.95438,-2.80299 0.8741,-0.9076 1.5404,-2.03065 1.90705,-3.29045 0.36665,-1.2598 0.4302,-2.65617 0.14761,-4.03634 -0.46243,-2.25891 -1.89753,-4.4542 -3.86429,-5.77086 -0.98338,-0.65833 -2.08664,-1.09767 -3.19032,-1.25799 -1.10366,-0.16026 -2.20567,-0.0402 -3.1693,0.35803 -1.30357,0.53868 -2.33978,1.59179 -2.87569,2.92261 -0.53592,1.3308 -0.56748,2.92923 -0.0877,4.43594 m -102.21665,2.95681 c -0.68024,-1.33862 -0.74525,-3.00669 -0.19601,-4.50782 0.54866,-1.49959 1.70327,-2.81401 3.10886,-3.5438 0.90548,-0.47013 1.90766,-0.70372 2.88735,-0.68926 0.97968,0.0145 1.93579,0.27522 2.77818,0.73793 1.68163,0.92368 2.87791,2.6578 3.30734,4.58801 0.52765,2.37182 -0.0784,4.98765 -1.4943,7.09771 -1.41507,2.10889 -3.5839,3.70981 -5.9798,4.67442 -3.62114,1.45792 -7.66284,1.47854 -11.28569,0.65051 -0.33725,-0.0771 -0.67141,-0.16112 -1.00258,-0.25159 -3.05522,-1.58149 -5.9019,-3.73204 -8.65969,-5.96738 -3.05269,-2.4744 -6.02545,-5.06744 -9.30078,-7.30458 -3.26814,-2.23223 -6.85279,-4.09341 -10.58294,-4.8634 -3.58287,-0.73958 -7.14227,-0.43724 -10.40768,0.35859 -0.63911,0.15577 -1.26862,0.33001 -1.89012,0.51882 -2.51689,1.78708 -4.92195,3.78057 -7.33136,5.75099 -2.99601,2.45015 -6.0274,4.88523 -9.29427,6.85032 -3.26652,1.9649 -6.80193,3.45423 -10.3027,3.82869 -2.38087,0.25466 -4.74301,-0.0248 -6.6732,-1.05462 -1.93042,-1.02994 -3.39798,-2.84886 -3.8161,-5.13563 -0.21436,-1.17239 -0.15254,-2.45197 0.19812,-3.70682 0.35065,-1.25482 0.99135,-2.4827 1.86108,-3.52855 0.86975,-1.04584 1.96822,-1.9062 3.15447,-2.44805 1.18628,-0.54187 2.45759,-0.76142 3.61773,-0.60534 1.65216,0.22227 3.04969,1.22565 3.7526,2.69424 0.70292,1.4686 0.70003,3.37945 -0.009,5.13066 0.51948,-1.73222 0.42579,-3.53192 -0.25693,-4.95842 -0.68273,-1.42652 -1.94816,-2.46689 -3.48652,-2.86648 -1.29248,-0.33573 -2.76516,-0.22292 -4.16631,0.30329 -1.40109,0.52618 -2.72585,1.46163 -3.77284,2.64625 -1.04697,1.18458 -1.81438,2.61346 -2.20371,4.0734 -0.38934,1.46002 -0.4014,2.94716 -0.0497,4.26628 0.62408,2.34056 2.3814,4.07969 4.56451,4.9209 2.18284,0.84111 4.75831,0.83347 7.28593,0.26889 3.70572,-0.8281 7.30954,-2.80679 10.58081,-5.2172 3.27155,-2.41063 6.25068,-5.25386 9.23016,-8.06767 2.28577,-2.15868 4.59067,-4.3157 7.03501,-6.25207 0.75797,-0.28937 1.53123,-0.55384 2.323,-0.78603 3.40068,-0.99726 7.19656,-1.38109 10.99845,-0.52982 3.7853,0.84754 7.3788,2.87127 10.57717,5.30154 3.20175,2.43283 6.03821,5.26148 8.91888,8.00907 2.6021,2.48188 5.2719,4.92171 8.19685,6.85534 0.31847,0.13095 0.64065,0.25588 0.96675,0.37426 3.46652,1.2583 7.4464,1.7396 11.23073,0.74161 2.75871,-0.72751 5.36418,-2.26722 7.0844,-4.50728 0.86017,-1.12014 1.49034,-2.40148 1.80839,-3.74693 0.31791,-1.34487 0.31985,-2.75037 -0.0201,-4.05414 -0.55586,-2.13185 -2.06966,-3.96435 -4.04887,-4.78403 -0.99203,-0.41085 -2.09202,-0.57388 -3.18681,-0.4593 -1.09464,0.11461 -2.18329,0.50776 -3.1358,1.14288 -1.28695,0.85812 -2.31673,2.1645 -2.84809,3.61936 -0.53182,1.45609 -0.56138,3.05281 -0.0648,4.43225 m -101.0224,1.45093 c -0.72228,-1.49152 -0.85138,-3.17443 -0.36605,-4.54525 0.48511,-1.37021 1.5765,-2.40902 2.94099,-2.80345 0.87872,-0.25401 1.86236,-0.24837 2.83264,-0.002 0.97006,0.2464 1.92616,0.73157 2.77583,1.38828 0.23861,0.18441 0.46804,0.38214 0.68754,0.59132 0,0 0,0 0,0 1.35452,0.7314 2.32525,2.05691 2.73571,3.62757 0.58561,2.24098 0.0536,4.92707 -1.24983,7.24138 -0.35816,0.63596 -0.77105,1.24393 -1.22823,1.81929 -1.23199,1.01634 -2.78937,1.68367 -4.47112,1.99483 -3.51005,0.64944 -7.47756,-0.21024 -11.07659,-1.84273 -3.60609,-1.6357 -6.874,-4.00028 -9.97199,-6.49646 -3.07991,-2.48162 -6.06173,-5.14411 -9.20903,-7.40981 -3.16017,-2.27495 -6.58452,-4.20194 -10.19971,-5.02593 -1.17098,-0.2669 -2.34935,-0.41526 -3.52762,-0.46542 -2.43659,0.30843 -4.85034,0.99121 -7.14448,1.87958 -3.46333,1.34112 -6.6622,3.13149 -9.81524,4.89627 -3.14195,1.75859 -6.26697,3.50518 -9.53812,4.71487 -3.28046,1.21314 -6.76094,1.88447 -10.2355,1.44112 -2.36447,-0.30172 -4.73542,-1.13817 -6.74256,-2.63058 -0.41682,-0.30992 -0.81682,-0.64963 -1.19434,-1.0148 0,0 0,0 0,0 -1.45935,-1.16635 -2.55353,-2.76528 -2.98623,-4.62139 -0.27987,-1.20053 -0.28171,-2.49196 0.01,-3.74006 0.29138,-1.24771 0.87756,-2.45097 1.70163,-3.45458 0.11011,-0.13408 0.22447,-0.26456 0.34277,-0.39114 0.81183,-0.67885 1.80702,-1.166 2.88788,-1.39664 1.24694,-0.26608 2.6027,-0.18686 3.84415,0.24466 1.77215,0.61597 3.26623,1.95455 4.0229,3.60195 0.75593,1.64579 0.7638,3.57109 0.0596,5.16904 0.50963,-1.62385 0.39958,-3.45918 -0.33627,-5.05821 -0.73643,-1.60032 -2.09149,-2.94487 -3.74628,-3.71278 -1.38749,-0.64389 -2.96542,-0.87849 -4.44528,-0.67902 -0.83744,0.11287 -1.64113,0.36371 -2.37066,0.73205 -0.52656,0.37806 -1.01432,0.81924 -1.4473,1.31113 -0.99701,1.13263 -1.70394,2.53156 -2.02704,3.98409 -0.32323,1.45315 -0.26377,2.95759 0.16176,4.31529 0.69717,2.22448 2.36334,3.98962 4.43046,5.0304 0,0 0,0 0,0 0.16895,0.11421 0.34028,0.22385 0.51365,0.3287 2.25126,1.36147 4.81695,1.95803 7.32134,1.98189 3.67128,0.0346 7.2266,-1.11449 10.53898,-2.77427 3.30276,-1.65497 6.42356,-3.82767 9.60237,-5.95339 3.1909,-2.13382 6.48139,-4.24473 10.12454,-5.80422 2.17167,-0.92961 4.47475,-1.65386 6.81186,-2.03174 1.47289,0.005 2.94959,0.17307 4.41137,0.54213 3.60137,0.90924 6.97423,3.00659 10.01733,5.48284 3.03701,2.4713 5.82664,5.35879 8.71406,8.12016 2.89903,2.77247 5.94805,5.46074 9.41908,7.49922 3.46481,2.03481 7.39495,3.38402 11.07869,3.22778 1.60932,-0.0683 3.15868,-0.43714 4.48899,-1.11484 0.86799,-0.81094 1.64421,-1.72365 2.28455,-2.72288 0.79986,-1.2482 1.38108,-2.61922 1.65902,-3.99837 0.27792,-1.37912 0.24915,-2.76458 -0.11799,-3.98969 -0.59681,-1.99176 -2.13029,-3.5215 -4.12415,-3.99233 -0.0133,-0.009 -0.0266,-0.0172 -0.0399,-0.0258 -0.99609,-0.64108 -2.09124,-1.06411 -3.17093,-1.21016 -1.07977,-0.14601 -2.14303,-0.0138 -3.06221,0.39338 -1.24215,0.55028 -2.21055,1.61064 -2.68033,2.93971 -0.46997,1.32956 -0.4373,2.91869 0.10539,4.40899 m -101.96931,-4.79268 c -0.79357,-1.25427 -1.00949,-2.90403 -0.59497,-4.45785 0.41422,-1.55273 1.45279,-2.99013 2.79964,-3.87771 0.86706,-0.5714 1.85282,-0.91903 2.8361,-1.01703 0.98327,-0.0979 1.96288,0.0521 2.84282,0.41698 1.75804,0.72904 3.08183,2.3218 3.65376,4.20078 0.70209,2.30669 0.29076,4.98869 -0.94576,7.24832 -1.23631,2.25932 -3.24543,4.09278 -5.51924,5.31328 -3.43756,1.84517 -7.39364,2.30225 -11.03677,1.87552 -3.64509,-0.42695 -7.01998,-1.6855 -10.23686,-3.10391 -3.21397,-1.41712 -6.32079,-3.0089 -9.61393,-4.14797 -0.96413,-0.33348 -1.94934,-0.62806 -2.95195,-0.86657 -2.4267,-1.35009 -4.95579,-2.41185 -7.54488,-2.92208 -3.52028,-0.69374 -7.03118,-0.34194 -10.33967,0.51295 -3.30484,0.85396 -6.44349,2.20003 -9.61164,3.5107 -3.17015,1.31152 -6.40105,2.59782 -9.85402,3.32655 -2.34566,0.49505 -4.80792,0.72374 -7.26119,0.51878 0,0 0,0 0,0 -1.1398,0.0867 -2.27649,0.0779 -3.39964,-0.0456 -2.38564,-0.26238 -4.70696,-1.06046 -6.5483,-2.52432 -1.83938,-1.4623 -3.17232,-3.6279 -3.41663,-6.03206 -0.12533,-1.23336 0.035,-2.51439 0.48802,-3.70645 0.45311,-1.19231 1.19975,-2.2921 2.16912,-3.15752 0.96918,-0.86524 2.15916,-1.49149 3.41403,-1.77642 1.25455,-0.28486 2.56957,-0.22493 3.73524,0.1895 1.66132,0.59065 2.98327,1.91178 3.55276,3.5495 0.56935,1.63731 0.378,3.56494 -0.50098,5.17682 0.68692,-1.6345 0.76912,-3.47108 0.21557,-5.06165 -0.55366,-1.59092 -1.73816,-2.92008 -3.26735,-3.66467 -1.2839,-0.62516 -2.79564,-0.8377 -4.26845,-0.61635 -1.47316,0.22139 -2.90022,0.87339 -4.05985,1.83987 -1.15998,0.96676 -2.04837,2.24186 -2.55362,3.63369 -0.50511,1.39144 -0.62732,2.89395 -0.37242,4.3063 0.45202,2.50455 2.08301,4.65308 4.18876,5.97977 2.10826,1.32828 4.66441,1.88256 7.2241,1.86399 1.14423,-0.008 2.28913,-0.12693 3.42753,-0.33622 2.62796,-0.0633 5.20845,-0.60987 7.63123,-1.42486 3.48829,-1.17342 6.68592,-2.88659 9.85194,-4.56713 3.1634,-1.67915 6.32858,-3.33988 9.73097,-4.39352 3.4064,-1.05488 7.09316,-1.48422 10.77504,-0.67514 2.26435,0.49758 4.4692,1.44936 6.58006,2.66716 1.30194,0.33211 2.56841,0.77911 3.7895,1.30067 3.19882,1.36628 6.1467,3.24015 9.18681,4.99036 3.04264,1.75167 6.2239,3.39932 9.76216,4.26903 3.53421,0.86871 7.48006,0.91611 11.11531,-0.48875 2.6498,-1.02403 5.09245,-2.84354 6.62243,-5.26821 0.76491,-1.21222 1.2945,-2.56185 1.51151,-3.94045 0.21693,-1.37821 0.11777,-2.78238 -0.31605,-4.04581 -0.70974,-2.06719 -2.35634,-3.722 -4.4059,-4.31309 -1.02616,-0.29595 -2.14289,-0.33191 -3.23169,-0.092 -1.08865,0.23991 -2.14797,0.75637 -3.04804,1.49727 -1.21674,1.00159 -2.13131,2.41678 -2.53265,3.92324 -0.40158,1.50732 -0.28696,3.09685 0.32798,4.41232 m -101.93684,-1.91884 c -0.68665,-1.37505 -0.77202,-3.05866 -0.22099,-4.5455 0.5513,-1.4876 1.73159,-2.75638 3.19245,-3.42967 0.93891,-0.43273 1.98153,-0.62289 2.99589,-0.5649 1.01435,0.058 1.99871,0.36233 2.85396,0.86386 1.71192,1.00391 2.85948,2.78972 3.21035,4.74558 0.42986,2.39638 -0.30885,5.00039 -1.7789,7.05621 -1.47036,2.0563 -3.63016,3.58226 -5.95854,4.45641 -3.52548,1.32359 -7.38852,1.19198 -10.92549,0.2148 -3.31186,-0.915 -6.38275,-2.53393 -9.34722,-4.316 -0.19868,-0.12916 -0.3969,-0.25902 -0.5947,-0.38941 -3.14979,-2.07634 -6.22144,-4.29784 -9.56974,-6.12228 -3.34304,-1.82157 -6.99208,-3.23813 -10.7618,-3.5306 -3.62394,-0.28116 -7.20619,0.49062 -10.4994,1.73418 -3.29646,1.2448 -6.33414,2.95148 -9.35729,4.62312 -0.51549,0.28504 -1.03139,0.56943 -1.54853,0.85048 -2.4972,1.81772 -5.03643,3.56892 -7.73819,4.97656 -3.25871,1.69783 -6.792,2.89061 -10.3366,2.95655 -2.41086,0.0448 -4.82658,-0.44998 -6.84499,-1.6671 -2.01713,-1.21634 -3.6124,-3.19405 -4.15634,-5.54922 -0.27897,-1.20791 -0.28027,-2.4996 0.0186,-3.74018 0.29891,-1.24074 0.89931,-2.42729 1.74789,-3.40917 0.84848,-0.98175 1.94421,-1.75443 3.14675,-2.19656 1.20236,-0.44206 2.50802,-0.54969 3.71298,-0.28676 1.71678,0.37461 3.19679,1.51711 3.97598,3.0687 0.7791,1.55138 0.8456,3.48727 0.18633,5.19794 0.46575,-1.70857 0.30356,-3.54039 -0.45353,-5.04739 -0.75718,-1.50719 -2.10239,-2.67517 -3.70878,-3.21925 -1.34908,-0.45693 -2.86826,-0.47572 -4.29398,-0.069 -1.42594,0.40681 -2.7524,1.23516 -3.77669,2.34162 -1.02446,1.10664 -1.74397,2.48538 -2.07055,3.9308 -0.32653,1.44516 -0.26109,2.9519 0.16794,4.321 0.76098,2.42844 2.64973,4.35121 4.91507,5.39893 2.26695,1.04847 4.88583,1.27136 7.4333,0.9256 3.73292,-0.50703 7.32279,-2.18992 10.57682,-4.33812 2.59683,-1.71432 5.00949,-3.72638 7.39246,-5.78032 0.60746,-0.40999 1.21373,-0.82326 1.82135,-1.23532 3.01278,-2.04313 6.0878,-4.07204 9.51212,-5.53451 3.421,-1.46104 7.23159,-2.33931 11.07019,-1.96741 3.81861,0.36996 7.47312,1.95511 10.74493,3.98946 3.27472,2.03616 6.20746,4.51456 9.18843,6.8918 -0.001,-8.5e-4 0.14432,0.11497 0.14325,0.11412 2.93497,2.19487 5.95999,4.29304 9.3187,5.67613 3.41667,1.40696 7.23656,2.04154 10.91071,1.18677 2.67484,-0.62228 5.25421,-2.06904 7.03764,-4.24444 0.89168,-1.08768 1.57791,-2.3483 1.96084,-3.68251 0.38299,-1.33449 0.4594,-2.74287 0.17906,-4.06377 -0.45896,-2.1628 -1.92173,-4.06001 -3.94942,-4.97338 -1.01273,-0.45619 -2.15124,-0.66901 -3.28931,-0.60264 -1.13814,0.0664 -2.27309,0.41297 -3.26162,1.00958 -1.33802,0.80754 -2.39071,2.07391 -2.92596,3.51699 -0.53505,1.4425 -0.54853,3.04931 -0.0455,4.45818 m -102.4496,4.25572 c -0.83992,-1.35807 -1.09807,-3.03311 -0.71978,-4.52653 0.29832,-1.17775 0.98964,-2.23095 1.91895,-2.9655 0,0 0,0 0,0 0.25359,-0.22539 0.52528,-0.42996 0.8122,-0.6098 0.87591,-0.54902 1.88247,-0.87031 2.89114,-0.94166 1.00867,-0.0713 2.01746,0.10567 2.92348,0.49478 1.81295,0.77862 3.16868,2.40563 3.75794,4.30181 0.72222,2.32412 0.31416,5.0015 -0.89397,7.23019 -1.20824,2.22895 -3.17132,4.01912 -5.38599,5.18503 -0.8838,0.46527 -1.80348,0.83315 -2.74534,1.11317 -2.74784,0.48764 -5.68372,0.27596 -8.44452,-0.39382 -3.755527,-0.91111 -7.21997,-2.61808 -10.503306,-4.47331 -3.270575,-1.84802 -6.428954,-3.87514 -9.729453,-5.46554 -3.312744,-1.5963 -6.844978,-2.77357 -10.521616,-2.82247 -3.536173,-0.047 -7.08851,0.95304 -10.471703,2.4088 -0.592036,0.25475 -1.17978,0.52333 -1.764249,0.80305 -2.719815,0.8052 -5.374337,1.88341 -8.050127,2.93183 -3.248747,1.27294 -6.564451,2.51314 -10.090923,3.19103 -3.52121,0.6769 -7.280823,0.77151 -10.823064,-0.23546 -2.40895,-0.68482 -4.706091,-1.89527 -6.425814,-3.68494 -1.722952,-1.79301 -2.818681,-4.18089 -2.801905,-6.63235 0.0086,-1.25513 0.306225,-2.50871 0.873541,-3.62403 0.567124,-1.11495 1.405105,-2.09023 2.421865,-2.79281 1.017232,-0.7029 2.214024,-1.13099 3.435818,-1.20638 1.222249,-0.0754 2.4679,0.20452 3.54973,0.81636 1.538119,0.86989 2.722181,2.425 3.172855,4.16853 0.451035,1.74493 0.160773,3.65438 -0.803497,5.12611 0.775959,-1.52722 0.957315,-3.36393 0.520133,-5.05856 -0.436888,-1.6935 -1.488286,-3.23361 -2.889491,-4.23608 -1.178837,-0.84339 -2.596653,-1.30905 -4.01966,-1.33363 -1.423006,-0.0246 -2.847046,0.38957 -4.060024,1.16144 -1.212091,0.7713 -2.212375,1.8977 -2.859207,3.20194 -0.647131,1.30484 -0.941277,2.78498 -0.847815,4.24057 0.166052,2.58616 1.557432,5.00797 3.564817,6.71232 2.002961,1.70058 4.564459,2.70877 7.168654,3.14151 3.820317,0.63443 7.71311,0.0771 11.289006,-1.04409 3.581089,-1.12281 6.878421,-2.79168 10.133688,-4.4366 2.559217,-1.29321 5.114717,-2.58056 7.76121,-3.56814 0.721991,-0.4013 1.450979,-0.78301 2.189151,-1.13983 3.474131,-1.67936 7.186781,-2.79772 10.866632,-2.67182 3.658842,0.12517 7.140661,1.47211 10.342325,3.28618 3.193964,1.8097 6.173816,4.09787 9.262687,6.25944 3.098011,2.16795 6.359151,4.23966 10.005512,5.58079 2.71148,0.99728 5.65854,1.56606 8.51809,1.41162 0.93937,-0.15697 1.86824,-0.39836 2.776,-0.73483 2.59019,-0.9601 4.98098,-2.72544 6.48466,-5.11242 0.75184,-1.1935 1.27636,-2.53185 1.49017,-3.9049 0.21384,-1.37323 0.11364,-2.78056 -0.32821,-4.05578 -0.72327,-2.08762 -2.40513,-3.78513 -4.51829,-4.43375 -1.05588,-0.3241 -2.2055,-0.39071 -3.32105,-0.18019 -1.11558,0.21057 -2.19451,0.69886 -3.09994,1.4169 -0.28603,0.22683 -0.55394,0.47662 -0.80115,0.7454 0,0 0,0 0,0 -0.79402,0.78697 -1.37877,1.80205 -1.65905,2.91167 -0.36592,1.44855 -0.211,3.04987 0.44883,4.44476"
id="path42253"
inkscape:original-d="m 732.70662,604.50447 -44.1854,5.16274 -40.79801,4.32719 -48.11851,-9.57512 -41.00772,4.388 -50.77058,2.47425 -41.27956,-7.01907 -43.34114,9.75697 -48.80357,-8.9222 -44.57916,-0.36924 -46.35885,7.51437 -44.00425,-6.79636 -45.09067,0.3342 -42.54137,-1.65007 -42.17766,5.73965 -50.843148,1.3472 -39.684812,-6.62081"
inkscape:path-effect="#path-effect7020"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#666666;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;filter:url(#filter6821);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
inkscape:connector-curvature="0" />
<path
inkscape:original-d="m 734.48343,20.97767 -4.4931,29.52186 2.77217,42.13937 -4.57667,35.00138 2.90695,34.35362 6.63345,39.52084 -7.98986,35.60506 2.40586,38.12252 4.54573,35.4433 -4.21821,40.88133 4.79795,33.77566 -8.53208,31.53668 6.63966,48.95046 -7.2586,34.59807 -0.33302,33.42641 0.96596,39.61492 3.957,31.03532"
inkscape:path-effect="#path-effect7020"
transform="matrix(-1,0,0,1,749.71856,0.05946111)"
inkscape:connector-curvature="0"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#666666;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;filter:url(#filter6821);color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path8587"
d="m 732.35766,33.761865 c -1.41456,0.558306 -3.03298,0.536139 -4.36785,-0.08466 -1.33617,-0.621398 -2.36879,-1.834124 -2.79329,-3.286545 -0.27254,-0.93245 -0.29839,-1.950108 -0.0915,-2.921401 0.20695,-0.971468 0.64435,-1.894046 1.25121,-2.67371 1.21645,-1.562811 3.09091,-2.498805 5.01463,-2.655683 2.3528,-0.191847 4.73432,0.751956 6.47394,2.305512 1.74161,1.555304 2.87154,3.68914 3.35106,5.90821 0.72644,3.361618 0.0115,6.902392 -1.45791,10.124984 -1.46503,3.212994 -3.6588,6.175637 -5.96062,9.059988 -0.2889,0.36201 -0.58012,0.723672 -0.8725,1.085417 -1.46846,2.57592 -3.0038,5.115586 -4.22796,7.840282 -1.39934,3.114629 -2.38988,6.516497 -2.29823,10.078329 0.0882,3.425922 1.17584,6.868188 2.69126,10.085571 1.51571,3.217981 3.45415,6.242013 5.36038,9.267354 1.01712,1.614234 2.02937,3.236881 2.96463,4.892438 0.53793,1.437426 1.01159,2.900093 1.36959,4.404882 0.76786,3.22741 0.98732,6.68116 0.14708,10.04723 -0.5715,2.2894 -1.65017,4.53582 -3.30268,6.33686 -1.65215,1.80068 -3.90636,3.12678 -6.24892,3.42505 -1.20124,0.15295 -2.41074,0.036 -3.49715,-0.35815 -1.08643,-0.39418 -2.047,-1.06665 -2.75382,-1.95247 -0.70677,-0.88577 -1.15635,-1.98417 -1.26945,-3.15266 -0.11311,-1.16849 0.11299,-2.40401 0.66187,-3.51359 0.78181,-1.58045 2.22628,-2.87518 3.8794,-3.47733 1.65296,-0.60208 3.48835,-0.5022 4.92801,0.26575 -1.48656,-0.58503 -3.24827,-0.58627 -4.85389,-0.001 -1.60576,0.58498 -3.04038,1.75077 -3.95352,3.21292 -0.76708,1.22825 -1.16507,2.65293 -1.14093,4.02786 0.0241,1.37498 0.4681,2.69496 1.24743,3.75753 0.77937,1.06265 1.88972,1.86552 3.1603,2.3054 1.27055,0.43987 2.69692,0.51729 4.08656,0.23837 2.46518,-0.49481 4.74218,-2.10283 6.29948,-4.15396 1.55769,-2.05165 2.43339,-4.51521 2.75731,-6.96024 0.47446,-3.5841 -0.19171,-7.12961 -1.38565,-10.386996 -0.51783,-1.412778 -1.13265,-2.778815 -1.79991,-4.118813 -1.20915,-1.760168 -2.49824,-3.476208 -3.77702,-5.193254 -2.25889,-3.033054 -4.50673,-6.102269 -6.23954,-9.440553 -1.73253,-3.337766 -2.93966,-6.983691 -2.95849,-10.591679 -0.0187,-3.58722 1.13518,-6.972954 2.7462,-10.000576 1.31591,-2.473016 2.93428,-4.740477 4.54709,-7.006357 1.38012,-1.460802 0.0428,-0.04522 1.42288,-1.506023 2.57029,-2.730384 5.08387,-5.514419 6.93788,-8.604166 1.85947,-3.098841 3.04729,-6.576214 2.79084,-10.038058 -0.18669,-2.520319 -1.17639,-5.034852 -2.98507,-6.897916 -0.90388,-0.931044 -2.00594,-1.693233 -3.22308,-2.178959 -1.21774,-0.485951 -2.55284,-0.692816 -3.85742,-0.54938 -2.13875,0.235081 -4.16594,1.459518 -5.34347,3.335992 -0.58701,0.935429 -0.96006,2.015228 -1.0666,3.116171 -0.10649,1.100962 0.0549,2.219575 0.47631,3.211217 0.57097,1.343434 1.62027,2.434061 2.91653,3.03805 1.29526,0.603539 2.82529,0.715981 4.24461,0.333157 m -4.03075,97.645483 c -1.25353,0.69215 -2.84463,0.82981 -4.29533,0.34213 -1.45285,-0.4884 -2.7417,-1.59652 -3.49011,-3.00644 -0.21829,-0.41123 -0.39064,-0.845 -0.51564,-1.2889 -0.0398,-0.51333 -0.008,-1.03994 0.0932,-1.56004 0.18578,-0.95341 0.60359,-1.8834 1.19432,-2.69761 1.18168,-1.6287 3.0445,-2.75282 4.96658,-3.13189 2.35664,-0.46475 4.75834,0.1662 6.53709,1.5167 1.77893,1.35062 2.95332,3.37714 3.47994,5.58701 0.0521,0.21854 0.098,0.43861 0.13794,0.66004 1.24947,3.07544 1.34445,6.38577 0.71867,9.4975 -0.66757,3.31944 -2.1173,6.47013 -3.70647,9.57259 -1.59532,3.11447 -3.33529,6.20263 -4.67623,9.57608 -0.76793,1.9319 -1.39815,3.96001 -1.76563,6.03444 -0.152,1.47232 -0.15636,2.95136 0.0368,4.42859 0.43574,3.33244 1.86772,6.55343 3.69302,9.55749 1.81893,2.99354 4.05671,5.84369 6.23441,8.72946 2.19009,2.90218 4.34681,5.87924 6.05151,9.14655 1.2254,2.34865 2.20419,4.84885 2.71883,7.36186 0,0 0,0 0,0 -0.16504,0.94564 -0.40093,1.89173 -0.71821,2.83024 -0.77211,2.28391 -2.04186,4.51828 -3.84181,6.28855 -1.80185,1.77213 -4.15103,3.04092 -6.50275,3.28884 -1.20452,0.12698 -2.39278,-0.0135 -3.43329,-0.42113 -1.04039,-0.40759 -1.93081,-1.08345 -2.54914,-1.95837 -0.61851,-0.8752 -0.96212,-1.94943 -0.96584,-3.08553 -0.004,-1.13627 0.33482,-2.33225 0.98096,-3.40652 0.91924,-1.52833 2.47059,-2.78707 4.16016,-3.37532 1.6907,-0.58864 3.49639,-0.49771 4.85033,0.25715 -1.41691,-0.57472 -3.1592,-0.57039 -4.80139,8.7e-4 -1.64128,0.57095 -3.17078,1.70412 -4.2091,3.1173 -0.87308,1.18826 -1.39952,2.56533 -1.50308,3.90021 -0.10358,1.33481 0.21386,2.62391 0.88808,3.67384 0.67389,1.04944 1.70118,1.85847 2.92011,2.31778 1.21915,0.4594 2.62635,0.56957 4.02935,0.32478 2.49196,-0.43479 4.88881,-1.9811 6.6195,-4.00545 1.72842,-2.02167 2.81692,-4.47755 3.35791,-6.917 0.21076,-0.95075 0.34147,-1.89895 0.40321,-2.83882 -0.82888,-2.6748 -2.15383,-5.26499 -3.71637,-7.65745 -2.13252,-3.26517 -4.68223,-6.16907 -7.22447,-9.023 -2.52907,-2.83914 -5.07924,-5.66415 -7.12868,-8.70798 -2.05542,-3.05274 -3.63062,-6.39948 -4.01953,-9.86739 -0.13096,-1.16775 -0.12655,-2.3346 -0.0132,-3.49547 0.41221,-2.44494 1.23268,-4.81694 2.25815,-7.02711 1.55186,-3.34468 3.55374,-6.34333 5.4548,-9.33592 1.89479,-2.98271 3.70635,-5.99555 4.78832,-9.23537 1.01748,-3.04668 1.36586,-6.34989 0.51793,-9.54842 -0.009,-0.21987 -0.0243,-0.43923 -0.0448,-0.65791 -0.23904,-2.54591 -1.28158,-4.97483 -3.13392,-6.61846 -0.92612,-0.82176 -2.04556,-1.44047 -3.27663,-1.7687 -1.23112,-0.32824 -2.57364,-0.36271 -3.87823,-0.064 -2.13554,0.48885 -4.14638,1.91366 -5.28145,3.83586 -0.56741,0.96087 -0.91716,2.03313 -0.9995,3.0999 -0.047,0.60978 -0.006,1.21708 0.12011,1.79719 0.18782,0.45152 0.42021,0.88623 0.69414,1.29302 0.86658,1.28684 2.14383,2.27175 3.55324,2.74688 1.40775,0.47458 2.93285,0.4358 4.2322,-0.0826 m 3.21157,96.88427 c -1.45642,0.59949 -3.07452,0.62153 -4.37017,0.0691 -1.29537,-0.55227 -2.24997,-1.67041 -2.57726,-3.01633 -0.21066,-0.86627 -0.16855,-1.81836 0.10384,-2.74106 0.2724,-0.92256 0.77306,-1.8149 1.43425,-2.59089 1.32114,-1.55051 3.27532,-2.60308 5.21433,-2.92668 2.38072,-0.39729 4.70162,0.2784 6.34491,1.67052 1.64217,1.39113 2.62494,3.45327 2.94944,5.68785 0.49105,3.38135 -0.48076,7.09001 -2.18006,10.41591 -0.49376,0.96639 -1.04612,1.90464 -1.64295,2.81899 -0.79546,2.18215 -1.89081,4.27298 -3.05676,6.33267 -1.6494,2.9137 -3.44617,5.79134 -4.85446,8.99866 -1.4032,3.1957 -2.40379,6.74214 -2.32435,10.39523 0.0764,3.51412 1.15052,6.94976 2.65664,10.04683 0.3257,0.66973 0.67127,1.3252 1.03227,1.96889 1.46264,2.28231 3.12557,4.47991 4.76011,6.69442 2.09123,2.83321 4.15783,5.72766 5.75495,8.91058 1.59469,3.17805 2.70484,6.66857 2.74093,10.13177 0.0245,2.35549 -0.46522,4.69327 -1.63979,6.58617 -0.75725,1.22036 -1.81174,2.24138 -3.06859,2.91491 -0.77723,0.37081 -1.59161,0.63792 -2.4208,0.77559 -1.19514,0.19843 -2.40584,0.12772 -3.50112,-0.2242 -0.37927,-0.12186 -0.74438,-0.27757 -1.08995,-0.46465 -0.73582,-0.34765 -1.42808,-0.80367 -2.0357,-1.35038 -0.92947,-0.83631 -1.65903,-1.8856 -2.07215,-3.01515 -0.41331,-1.13007 -0.50731,-2.33957 -0.24868,-3.4493 0.36781,-1.57817 1.46819,-2.93413 2.95211,-3.63552 1.48449,-0.70167 3.3304,-0.73677 4.95667,-0.0729 -1.62535,-0.47917 -3.37325,-0.35392 -4.81498,0.32677 -1.44127,0.68047 -2.56533,1.91017 -3.0938,3.38166 -0.44454,1.23779 -0.47234,2.63832 -0.0941,3.97214 0.37801,1.33322 1.15911,2.59785 2.20618,3.60568 0.0926,0.0891 0.18725,0.17624 0.28382,0.26126 0,0 0,0 0,0 0.78635,0.89468 1.82878,1.55673 2.99594,1.91288 1.28037,0.3907 2.70653,0.41398 4.08636,0.0828 1.48455,-0.35631 2.88866,-1.11886 4.09822,-2.13397 0.63496,-0.66422 1.16291,-1.43915 1.56278,-2.2827 1.0157,-2.14269 1.24798,-4.69336 0.93762,-7.19107 -0.45584,-3.66561 -2.03145,-7.20318 -4.05678,-10.3625 -2.02791,-3.16335 -4.49247,-5.97403 -6.9374,-8.75532 -1.82212,-2.0728 -3.64666,-4.14705 -5.25685,-6.33269 -0.49357,-0.77266 -0.96191,-1.56673 -1.39713,-2.3869 -1.72053,-3.24226 -2.91123,-6.94494 -2.91542,-10.70004 -0.004,-3.74037 1.16106,-7.32446 2.77655,-10.47531 1.61951,-3.15869 3.67623,-5.92077 5.62853,-8.68222 1.36252,-1.92724 2.68323,-3.87225 3.74037,-5.91911 0.72045,-0.88825 1.40005,-1.80584 2.02415,-2.76009 2.07998,-3.18032 3.5198,-6.82155 3.50766,-10.33977 -0.009,-2.56206 -0.82496,-5.02297 -2.51291,-6.70414 -0.8443,-0.84089 -1.89743,-1.47961 -3.08828,-1.83203 -1.1907,-0.35237 -2.51822,-0.41502 -3.83909,-0.15191 -2.1598,0.43014 -4.28936,1.77524 -5.59098,3.61121 -0.65166,0.91917 -1.09798,1.95122 -1.27828,2.98721 -0.18025,1.03603 -0.0932,2.07463 0.26276,2.98997 0.48127,1.23753 1.46105,2.23845 2.7176,2.77374 1.25677,0.5354 2.78119,0.60085 4.22983,0.17345 m 3.40605,97.57149 c -1.38443,0.71878 -2.9988,0.87738 -4.36033,0.42724 -1.3616,-0.45015 -2.45137,-1.50285 -2.94361,-2.84373 -0.31658,-0.86235 -0.39118,-1.83337 -0.23149,-2.79128 0.15974,-0.95791 0.55178,-1.90113 1.11959,-2.73545 1.13574,-1.66881 2.96536,-2.86069 4.87401,-3.31156 2.34035,-0.55282 4.75505,-0.0141 6.56755,1.26764 1.81263,1.28184 3.03996,3.26226 3.62562,5.45081 0.88624,3.31181 0.34189,7.03871 -0.96854,10.47213 -1.31027,3.43296 -3.34971,6.6188 -5.5102,9.68332 -2.16116,3.06547 -4.46415,6.049 -6.39798,9.25007 -0.17551,0.29053 -0.34803,0.58321 -0.51701,0.87792 -0.97512,2.92275 -1.53839,6.00917 -1.20363,9.18559 0.35373,3.35651 1.70141,6.70794 3.44472,9.86352 1.73955,3.14876 3.89081,6.16409 5.9873,9.19779 1.30859,1.89357 2.60485,3.80814 3.78789,5.79047 0.25182,1.16082 0.45313,2.3392 0.57575,3.543 0.3245,3.1857 0.0773,6.58166 -1.20435,9.85477 -0.87173,2.22623 -2.23819,4.3919 -4.11141,6.09724 -1.87334,1.70547 -4.27553,2.91895 -6.62856,3.1223 -1.20632,0.10425 -2.38456,-0.0561 -3.40405,-0.48222 -1.01948,-0.42612 -1.87746,-1.11898 -2.45619,-2.00963 -0.57874,-0.89066 -0.87504,-1.97844 -0.82978,-3.12201 0.0453,-1.14357 0.43434,-2.33998 1.12517,-3.40287 0.98374,-1.51358 2.58401,-2.72793 4.29653,-3.2604 1.71261,-0.53249 3.51101,-0.37479 4.82907,0.42432 -1.3889,-0.62178 -3.12786,-0.68093 -4.7914,-0.16373 -1.66348,0.51719 -3.23668,1.60606 -4.3342,2.99981 -0.92215,1.17103 -1.50634,2.54555 -1.66713,3.88707 -0.1608,1.34152 0.10019,2.64514 0.72681,3.7113 0.62659,1.06612 1.61495,1.89255 2.81005,2.37098 1.19511,0.47844 2.59273,0.60925 4.00194,0.38944 2.50053,-0.39002 4.96296,-1.87845 6.77637,-3.83325 1.81324,-1.95463 3.00858,-4.3411 3.65678,-6.72835 0.94987,-3.4996 0.76835,-6.99903 0.0273,-10.22539 -0.25582,-1.11375 -0.57626,-2.19967 -0.93776,-3.26724 -1.4958,-2.09317 -3.10742,-4.0939 -4.71489,-6.08227 -2.44749,-3.02745 -4.91083,-6.06069 -6.8794,-9.29745 -1.97198,-3.24235 -3.46042,-6.75406 -3.76532,-10.25809 -0.24905,-2.86205 0.29641,-5.62984 1.25801,-8.2353 0.35237,-0.58117 0.72199,-1.15286 1.10456,-1.71396 2.13107,-3.12561 4.66756,-5.97087 7.10483,-8.87784 2.43668,-2.9063 4.80147,-5.91456 6.50665,-9.24468 1.70539,-3.33052 2.72441,-7.03607 2.30209,-10.51636 -0.3076,-2.53488 -1.41424,-4.92242 -3.30805,-6.49392 -0.94689,-0.78571 -2.0812,-1.36104 -3.31917,-1.64204 -1.238,-0.281 -2.57926,-0.26439 -3.87368,0.0831 -2.11876,0.56873 -4.08808,2.06634 -5.16934,4.02604 -0.54056,0.97971 -0.86081,2.06223 -0.91422,3.12933 -0.0534,1.06708 0.16124,2.11662 0.62917,3.01738 0.63307,1.21861 1.73367,2.15086 3.0546,2.58762 1.32089,0.43675 2.85204,0.37474 4.24934,-0.17113 m -5.63198,96.54961 c -1.19915,0.61703 -2.75939,0.65552 -4.21283,0.10005 -1.45388,-0.55564 -2.77969,-1.69746 -3.58257,-3.08612 -0.51623,-0.89285 -0.81855,-1.87702 -0.88628,-2.82977 -0.006,-0.0815 -0.01,-0.16275 -0.0123,-0.2437 0,0 0,-1e-5 0,-1e-5 0.31964,-0.83821 0.82314,-1.64324 1.45636,-2.34831 1.38482,-1.54195 3.37529,-2.56727 5.32319,-2.86295 2.38898,-0.36261 4.67448,0.34666 6.24919,1.74046 1.29664,1.14765 2.12697,2.73032 2.50429,4.47721 0.22986,0.38229 0.44251,0.77218 0.63697,1.16695 1.66671,3.3836 2.02041,7.06664 1.54266,10.40638 -0.47761,3.33871 -1.73874,6.38133 -3.15306,9.30247 -1.41445,2.92139 -2.99297,5.75863 -4.15596,8.84478 -1.1625,3.08482 -1.9045,6.4642 -1.56758,10.0065 0.27706,2.913 1.27582,5.83896 2.63518,8.62459 0.071,0.46298 0.15387,0.92262 0.24703,1.37828 0.64153,3.13767 1.76081,6.12693 2.84614,9.14807 1.08596,3.02285 2.14608,6.10742 2.66472,9.39778 0.51805,3.28655 0.47579,6.81226 -0.61656,10.17128 -0.62025,1.90726 -1.59017,3.75574 -2.93214,5.29364 -0.20095,0.30006 -0.41848,0.58918 -0.6531,0.86558 -1.41613,1.66835 -3.50184,2.857 -5.7901,3.00486 -1.17511,0.0759 -2.39081,-0.12128 -3.51678,-0.59975 -1.12657,-0.47872 -2.1587,-1.239 -2.96482,-2.21195 -0.637,-0.76885 -1.12904,-1.66811 -1.43006,-2.62065 -0.0339,-0.23639 -0.0534,-0.47578 -0.058,-0.71688 -0.0219,-1.15171 0.29979,-2.33955 0.93313,-3.38431 0.90066,-1.48574 2.44333,-2.65989 4.13504,-3.14687 1.69319,-0.4874 3.51301,-0.27977 4.88812,0.57641 -1.43567,-0.67692 -3.19022,-0.78412 -4.83477,-0.31142 -1.64335,0.47237 -3.16598,1.52065 -4.18839,2.88188 -0.85999,1.14497 -1.36784,2.50303 -1.45078,3.84821 -0.004,0.0632 -0.007,0.12631 -0.009,0.18938 0,0 0,0 0,0 0.21193,1.37225 0.7917,2.70756 1.64821,3.81254 0.8994,1.16034 2.09567,2.06015 3.41162,2.59198 1.315,0.53145 2.74246,0.69457 4.0902,0.49781 2.38764,-0.34856 4.46203,-1.82234 5.75331,-3.74585 0.30846,-0.4595 0.57554,-0.94382 0.80372,-1.44744 1.07052,-1.6411 1.77743,-3.50368 2.16444,-5.37717 0.74458,-3.60624 0.349,-7.24316 -0.58995,-10.56855 -0.94012,-3.3295 -2.40787,-6.38656 -3.84478,-9.40831 -1.43574,-3.01928 -2.85241,-6.03499 -3.67796,-9.26402 -0.082,-0.32075 -0.15801,-0.64409 -0.22744,-0.9697 -1.65432,-3.04384 -2.84803,-6.31211 -3.08831,-9.54815 -0.2652,-3.5715 0.64039,-6.93748 2.01858,-9.93729 1.37871,-3.00095 3.22316,-5.68599 4.95066,-8.43206 1.72723,-2.74569 3.35466,-5.59023 4.24889,-8.79885 0.89437,-3.20914 1.01598,-6.83705 -0.23226,-10.3532 -0.13773,-0.38795 -0.29275,-0.77398 -0.46446,-1.15577 -0.11985,-2.09501 -0.83253,-4.0576 -2.19669,-5.48571 -0.80388,-0.84155 -1.82569,-1.49051 -2.99689,-1.85907 -1.17119,-0.36855 -2.49178,-0.45343 -3.81971,-0.2117 -2.17325,0.39556 -4.35043,1.70925 -5.72854,3.53906 -0.68629,0.91121 -1.17433,1.93838 -1.4001,2.97156 0,0 0,0 0,0 0,0 0.002,0.0132 0.002,0.0132 0.19844,1.07123 0.65756,2.14538 1.33252,3.08855 0.9133,1.27621 2.22149,2.2977 3.63185,2.8369 1.41003,0.53908 2.91062,0.59164 4.16355,0.14917 m -1.5639,97.07473 c -1.32205,0.64746 -2.92952,0.72542 -4.33735,0.1868 -1.40955,-0.53928 -2.59686,-1.6884 -3.21319,-3.11489 -0.39569,-0.9158 -0.55817,-1.93208 -0.48481,-2.91658 0.0734,-0.98449 0.3808,-1.93528 0.87349,-2.75376 0.98748,-1.64045 2.70462,-2.69782 4.57287,-2.97867 2.28565,-0.34359 4.75448,0.44712 6.68576,1.89276 1.9325,1.44653 3.35395,3.51572 4.15011,5.71182 1.20667,3.32846 1.02469,6.92719 0.0377,10.25302 -0.83457,2.81225 -2.21795,5.46493 -3.76825,8.05373 -0.26458,0.47097 -0.53466,0.93929 -0.8079,1.40533 -1.79007,3.05307 -3.72563,6.03826 -5.26692,9.28007 -1.53874,3.23646 -2.67455,6.75876 -2.72849,10.36697 -0.0519,3.46925 0.90066,6.86975 2.28935,9.97981 1.33781,2.99612 3.07157,5.74845 4.79203,8.4792 -0.10082,-0.13567 0.33652,0.45295 0.23571,0.31727 2.08654,2.8092 4.15935,5.63276 5.74889,8.68368 1.59135,3.05435 2.69629,6.37854 2.72785,9.76102 0.0215,2.30124 -0.47101,4.63328 -1.64657,6.62601 -1.17401,1.99014 -3.07047,3.62457 -5.31469,4.26782 -1.15152,0.33005 -2.38054,0.39745 -3.559,0.17126 -1.17875,-0.22623 -2.30352,-0.74744 -3.2326,-1.52118 -0.92882,-0.77354 -1.65717,-1.79843 -2.07033,-2.94345 -0.41304,-1.14469 -0.50705,-2.40571 -0.24848,-3.58414 0.36858,-1.67986 1.46711,-3.15829 2.95197,-3.97411 1.48433,-0.81554 3.33059,-0.95621 4.9559,-0.39275 -1.6249,-0.37749 -3.37242,-0.14825 -4.81432,0.64455 -1.44234,0.79303 -2.56422,2.14219 -3.09355,3.72231 -0.44437,1.32644 -0.47211,2.80058 -0.0941,4.16378 0.37812,1.36355 1.15798,2.60957 2.20423,3.54666 1.04664,0.93746 2.35313,1.56285 3.72625,1.80386 1.37268,0.24093 2.80647,0.0987 4.11229,-0.38542 2.31517,-0.85827 4.16165,-2.77256 5.17732,-4.9916 1.01718,-2.22234 1.25263,-4.73451 0.94566,-7.1536 -0.45004,-3.54378 -2.0223,-6.90446 -4.04395,-9.94216 -2.01944,-3.03439 -4.49396,-5.79644 -6.93381,-8.58523 3.6e-4,4.1e-4 -0.052,-0.0595 -0.0517,-0.0591 -2.12502,-2.79736 -4.23368,-5.65741 -5.82733,-8.86586 -1.60332,-3.2279 -2.6698,-6.84585 -2.54259,-10.52459 0.12651,-3.65898 1.42432,-7.19245 3.17149,-10.36747 1.74891,-3.17818 3.93873,-6.03777 6.02689,-8.93785 0.23278,-0.3233 0.46452,-0.64754 0.69432,-0.97298 1.91469,-2.58076 3.7094,-5.2185 4.94714,-8.07756 1.39622,-3.22514 2.0572,-6.78782 1.29953,-10.24732 -0.55121,-2.5168 -1.89038,-4.97739 -3.93118,-6.72755 -1.02031,-0.87499 -2.20952,-1.56739 -3.47196,-1.97506 -1.26315,-0.40789 -2.6017,-0.52836 -3.86307,-0.30042 -2.06675,0.37341 -3.89489,1.72961 -4.80214,3.681 -0.45235,0.97296 -0.67552,2.07659 -0.6327,3.18436 0.0429,1.10791 0.35264,2.21641 0.90363,3.18216 0.74643,1.30827 1.93376,2.33424 3.30105,2.85845 1.36595,0.52372 2.89807,0.54157 4.24949,0.0696"
sodipodi:nodetypes="ccccccccccccccccc" />
</g>
</g>
<g
sodipodi:insensitive="true"
inkscape:groupmode="layer"
id="layer23"
inkscape:label="Gribouillis"
style="display:inline;opacity:0.72201">
<g
style="display:inline;opacity:0.95"
inkscape:label="Divers"
id="layer6"
inkscape:groupmode="layer">
<g
style="filter:url(#filter6821)"
transform="matrix(0.42387532,0,0,0.4200606,412.28657,185.23879)"
id="g6464">
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6326"
d="m 628.38218,207.5418 c 0.75929,-0.9498 2.74065,-3.75394 3.88686,-4.31515 0.94263,-0.46154 1.81811,-0.0449 2.51347,-0.86914 1.00787,-0.7684 2.38478,-0.90342 3.46708,-1.49778 0.40625,-0.2231 0.69146,-0.64069 1.11295,-0.83347 0.38416,-0.17571 0.83774,-0.12692 1.24353,-0.24433 0.43725,-0.12652 0.85105,-0.32324 1.27657,-0.48486 1.62247,-0.44146 3.14136,-1.17482 4.84762,-1.25711 0.42783,-0.0206 3.22853,0.21977 3.57336,0.2137 0.48178,-0.008 0.95629,-0.11944 1.43444,-0.17916 0.62436,-0.0885 1.24264,-0.27919 1.8731,-0.26543 0.53368,0.0117 1.03739,0.25816 1.56481,0.34046 5.90905,0.922 -3.38969,-0.86703 3.53136,0.72866 1.24093,0.28611 2.51304,0.41515 3.76557,0.6452 1.85363,0.84859 3.68443,1.74873 5.56452,2.53881 1.44184,0.60592 1.91504,0.67396 3.22901,1.4696 0.61499,0.37239 1.19015,0.80688 1.78522,1.21032 1.95256,0.89365 3.47693,2.42636 5.11548,3.77322 0.60436,0.49679 1.27132,0.92601 1.81291,1.49057 0.61609,0.64222 1.08622,1.41009 1.63891,2.10761 0.48445,0.61141 0.98158,1.21266 1.47237,1.81899 1.22242,2.21222 2.76889,4.23204 4.08302,6.38279 0.45368,0.74249 0.82301,1.53346 1.24949,2.29191 0.80968,1.43995 1.654,2.86015 2.47484,4.29377 1.63242,3.1092 2.13125,6.53736 2.76967,9.93464 1.00904,5.36948 0.3199,0.63559 1.02841,6.15841 0.51954,2.5655 0.97248,5.17626 0.83383,7.80791 -0.0501,0.95074 -0.27533,1.88581 -0.34373,2.8354 -0.46025,6.39006 0.4215,-0.5199 -0.46325,5.64044 -0.44641,2.87805 -1.18967,5.72673 -2.18298,8.46565 -0.25389,0.70007 -0.4672,1.42028 -0.80462,2.08415 -0.39758,0.78227 -0.92713,1.49014 -1.3907,2.23521 -0.94244,2.99626 -3.43649,4.91336 -5.37208,7.22726 -2.56121,3.06178 -0.059,0.75431 -3.03681,3.23579 -2.96591,3.73236 -7.17556,6.08165 -11.31494,8.28608 -2.41712,0.68324 -4.51005,2.12435 -6.80552,3.0817 -0.84124,0.35086 -1.73742,0.56042 -2.57525,0.91937 -7.22464,3.09527 3.11462,-0.81384 -5.02325,2.16602 -2.21358,0.83519 -4.52233,1.29736 -6.65634,2.33957 -0.65831,0.3215 -1.24894,0.78272 -1.9317,1.04836 -1.22964,0.47842 -3.2402,0.77383 -4.54358,1.00503 -5.05243,1.12642 1.28178,-0.18989 -4.74547,0.69564 -0.81234,0.11935 -1.59752,0.38891 -2.4091,0.51335 -0.78882,0.12095 -1.59245,0.11878 -2.38384,0.22155 -0.90016,0.1169 -3.22585,0.5872 -4.09399,0.75704 -2.40429,0.28837 -4.83316,0.65788 -7.25943,0.72924 -7.73973,0.22761 3.22033,-0.28598 -3.73849,0.0633 -1.45673,-0.18224 -2.89918,0.005 -4.3499,0.0303 -0.56224,0.01 -1.12295,-0.0773 -1.68527,-0.0759 -0.85634,0.002 -1.80871,0.10548 -2.67117,0.18585 -0.33849,0.0146 -0.68225,0.10517 -1.01546,0.0439 -0.58873,-0.10828 -1.13598,-0.37897 -1.711,-0.54534 -2.9114,-0.84234 0.27531,0.12264 -2.54031,-0.49049 -3.31562,-0.72201 -0.1779,-0.31791 -3.10213,-0.61989 -1.36377,-0.4051 -2.86362,-0.29077 -4.22084,-0.7032 -0.54773,-0.16645 -1.02934,-0.52081 -1.58325,-0.66536 -0.50893,-0.13281 -1.04669,-0.10501 -1.57003,-0.15752 -0.61514,-0.21144 -1.23027,-0.42288 -1.84541,-0.63432 -1.07533,-0.16065 -2.02328,-0.80145 -3.08394,-1.01792 -0.4922,-0.10045 -1.0271,0.0205 -1.49951,-0.15027 -0.52144,-0.18852 -0.8956,-0.66813 -1.40015,-0.89805 -0.34676,-0.15801 -0.75056,-0.14004 -1.11587,-0.24847 -0.43302,-0.12852 -0.84951,-0.30729 -1.27427,-0.46094 -2.54474,-1.377 -4.8447,-3.11516 -7.43234,-4.41435 -0.88124,-0.68085 -2.01773,-0.81868 -2.97117,-1.33943 -0.83178,-0.4543 -1.54735,-1.09962 -2.36775,-1.57417 -0.374,-0.21634 -0.80072,-0.35351 -1.13289,-0.62981 -0.50433,-0.41948 -0.89869,-0.95583 -1.34803,-1.43375 -0.77806,-0.70089 -1.27367,-1.1986 -2.12919,-1.78321 -0.27679,-0.18915 -0.61587,-0.28617 -0.86958,-0.50531 -0.44783,-0.38682 -0.7985,-0.874 -1.21451,-1.29485 -1.9002,-1.92228 -0.0817,0.1714 -2.15338,-2.35157 -0.32704,-0.30891 -0.65381,-0.6181 -0.98111,-0.92673 -0.4208,-0.3968 -0.87758,-0.75848 -1.2632,-1.18954 -1.20833,-1.35071 -1.01679,-1.56463 -2.14071,-3.0449 -0.731,-0.96276 -1.56507,-1.84418 -2.29766,-2.80573 -1.08617,-1.82196 -2.39714,-3.5135 -3.47334,-5.34121 -0.99618,-1.69181 -1.8624,-3.36483 -2.99587,-4.97627 -0.16678,-0.66924 -0.33356,-1.33848 -0.50034,-2.00772 -0.30608,-0.52814 -0.72622,-1.00499 -0.91824,-1.58442 -0.2162,-0.65238 -0.0609,-1.392 -0.2836,-2.04219 -0.19788,-0.57783 -0.69298,-1.01248 -0.95192,-1.56565 -0.43109,-0.92093 -1.02389,-3.11897 -1.29258,-4.04604 -0.1837,-0.81219 -0.36741,-1.62437 -0.55111,-2.43656 -0.0728,-0.75041 -0.0687,-1.51232 -0.21851,-2.25123 -0.77266,-3.812 -0.47963,0.74114 -0.90324,-3.55775 -0.0346,-0.35123 -0.099,-3.59669 -0.10942,-4.07421 0.64751,-5.87535 -0.1033,1.79433 0.13912,-3.52064 0.0267,-0.58442 0.21408,-1.15605 0.22165,-1.74104 0.007,-0.55096 -0.19909,-1.09283 -0.17788,-1.64344 0.0193,-0.50085 0.53314,-2.98832 0.64564,-3.55316 1.72656,-5.11171 -0.29337,1.18191 0.91465,-3.53211 0.31388,-1.22481 0.76467,-2.41082 1.1842,-3.60357 0.21138,-0.60101 0.37365,-1.22741 0.6787,-1.78672 0.30743,-0.56365 0.76122,-1.03412 1.14183,-1.55118 0.37236,-1.59715 1.25454,-2.96113 1.97002,-4.4043 0.49397,-0.99636 0.6871,-1.80802 1.33274,-2.73326 0.39903,-0.57185 0.89213,-1.07194 1.33819,-1.6079 2.32152,-2.44429 4.37174,-5.12948 6.65942,-7.5981 0.8249,-0.89064 1.2837,-1.36462 2.08616,-2.33255 0.32225,-0.38869 0.56373,-0.84947 0.93487,-1.19179 0.43583,-0.40199 0.98516,-0.66101 1.45956,-1.01667 0.71418,-0.53544 1.37738,-1.13584 2.07571,-1.69179 1.53935,-1.173 3.19801,-1.82787 5.07151,-2.23674 0.48778,-0.10645 0.99437,-0.12332 1.47588,-0.25528 0.58374,-0.15998 1.85766,-0.79318 2.38733,-1.04392 3.92152,-1.44372 -0.52478,0.085 3.0882,-0.8574 0.5471,-0.14271 1.04862,-0.45559 1.60747,-0.54151 0.56413,-0.0867 1.14303,0.0762 1.71202,0.0311 0.51577,-0.0409 1.01684,-0.19186 1.52527,-0.28779 0.59668,-0.0337 1.19337,-0.0675 1.79006,-0.10125 0.69234,0.064 1.39529,0.0554 2.077,0.19211 0.6228,0.12493 1.18772,0.47405 1.81261,0.58809 0.5304,0.0968 1.07891,0.004 1.61704,0.0378 1.94912,0.12073 3.86607,0.32132 5.77865,0.71019 0.22818,0.0161 3.54534,0.24502 3.67168,0.27806 3.14293,0.82203 0.77362,0.84287 3.50394,1.33988 3.45506,0.62894 0.42779,-0.56717 3.70535,1.01703 0.60151,0.32124 1.18233,0.68467 1.80454,0.96372 0.59384,0.26632 1.23524,0.41452 1.83454,0.66832 2.14786,0.90957 4.20354,2.0028 6.38585,2.83985 2.78825,1.47005 5.88512,1.46031 8.94896,1.36179 0.38496,-0.10353 0.76992,-0.20705 1.15488,-0.31057 2.72287,-0.1998 3.00543,3.65092 0.28256,3.85072 v 0 c -0.42136,-0.0538 -0.84272,-0.10767 -1.26408,-0.16151 -0.59556,0.0168 -1.19187,0.0158 -1.78666,0.0503 -0.64038,0.0371 -1.27632,0.18862 -1.91734,0.16456 -1.31793,-0.0495 -1.75531,-0.47397 -3.01329,-0.7381 -3.73508,-0.78423 -0.37731,0.33755 -3.87536,-0.99182 -1.07369,-0.57036 -1.93774,-1.06604 -3.08087,-1.51398 -0.61228,-0.23993 -1.28795,-0.32173 -1.87079,-0.62628 -0.48106,-0.25135 -0.79137,-0.76461 -1.27237,-1.01607 -1.10641,-0.57843 -2.49599,-0.4842 -3.50481,-1.32087 -1.72425,-0.57826 -3.47908,-0.95167 -5.22127,-1.4688 -0.52058,-0.15452 -1.04012,-0.31417 -1.55128,-0.49746 -0.46867,-0.16806 -0.898,-0.459 -1.38637,-0.55593 -0.65738,-0.13047 -1.33811,-0.0784 -2.00717,-0.11758 -1.88887,-0.36391 -1.8136,-0.43449 -3.7594,-0.46314 -0.68517,-0.0101 -1.37368,0.12162 -2.05514,0.0497 -0.59632,-0.063 -1.1533,-0.33431 -1.74156,-0.45048 -3.18933,-0.62983 -0.39846,0.18285 -2.82407,-0.58501 -0.58255,0.14231 -1.15447,0.33894 -1.74767,0.42693 -1.37106,0.20335 -2.93992,0.005 -4.30181,0.34264 -0.47378,0.11748 -0.90808,0.36013 -1.37217,0.5114 -0.37861,0.12341 -0.76883,0.20782 -1.15324,0.31174 -0.98953,0.45149 -2.23442,1.05668 -3.2772,1.38495 -0.48748,0.15346 -0.99557,0.23145 -1.49336,0.34717 -0.38081,0.019 -0.77837,-0.0563 -1.14245,0.0569 -0.88057,0.27393 -1.5537,1.03716 -2.4403,1.30343 -3.71524,2.51162 1.91862,-1.42888 -2.21507,1.99796 -0.2615,0.21678 -0.65798,0.22039 -0.92179,0.43435 -1.02279,0.82953 -2.06152,2.63634 -3.13492,3.48358 -2.0726,1.89511 0.13464,-0.29538 -1.99717,2.58863 -1.29693,1.75454 -3.40374,2.67237 -4.42738,4.64138 -1.5333,1.74599 -0.58752,0.41387 -1.55999,2.58298 -1.72067,3.838 0.36954,-1.06297 -1.50467,2.66021 -0.4802,0.95395 -0.64505,2.05189 -1.30043,2.9282 -0.34162,0.49556 -0.76418,0.94416 -1.02485,1.48669 -0.26439,0.55026 -0.33753,1.17377 -0.53154,1.7526 -0.20569,0.61366 -0.93722,2.36782 -1.06616,2.91594 -0.16163,0.68708 -0.19943,1.39751 -0.29915,2.09627 -0.13198,0.49683 -0.26396,0.99367 -0.39593,1.4905 -0.0883,0.58509 -0.12282,1.18084 -0.26478,1.75526 -0.0911,0.36862 -0.39051,0.67729 -0.42971,1.05497 -0.0598,0.57571 0.1549,1.15208 0.14061,1.73071 -0.0156,0.63146 -0.18838,1.25068 -0.22985,1.88097 -0.46949,7.1357 0.53412,-3.94488 -0.17892,3.51627 -0.0126,0.81134 -0.0555,2.45307 0.005,3.24839 0.15886,2.07751 0.29564,1.46146 0.71209,3.7004 0.25418,1.36653 0.28844,2.76961 0.65498,4.11814 2.09033,5.09235 -0.36527,-1.03672 1.42053,3.87159 0.83666,2.29956 2.01496,4.47612 2.5957,6.86953 0.19343,0.39084 1.40256,2.85017 1.57225,3.12095 0.36713,0.58585 0.86151,1.08444 1.2363,1.66543 0.70899,1.09905 1.12036,2.37208 1.82943,3.47108 0.33302,0.51616 0.7785,0.95039 1.16775,1.42558 1.30612,1.42005 2.48023,2.84732 3.59561,4.42001 0.16978,0.23939 1.50249,2.1794 1.8576,2.49431 0.45177,0.40063 0.99942,0.67791 1.49914,1.01686 0.75194,1.02164 1.61551,2.02415 2.64019,2.78949 1.29863,0.96995 2.54191,1.57555 3.42651,3.04043 1.60773,1.59706 -0.33298,-0.15728 2.14323,1.35668 0.35297,0.2158 0.61426,0.55543 0.94047,0.80988 1.17082,0.91324 2.60703,1.21269 3.87224,1.97107 1.49502,0.69374 2.82946,1.48992 4.23756,2.33529 0.32307,0.19396 0.6777,0.33457 0.99093,0.54405 0.3948,0.26405 0.7304,0.61049 1.12674,0.87222 0.28282,0.18677 0.60178,0.31199 0.90267,0.46798 1.229,0.40886 2.46655,0.82657 3.67185,1.3007 0.41301,0.16247 0.8022,0.38451 1.22182,0.52906 0.52108,0.1795 1.07518,0.25359 1.59356,0.44076 0.46833,0.16909 0.90463,0.41636 1.35695,0.62454 2.72541,0.98621 0.52598,0.3019 3.62227,0.92174 0.40773,0.0816 0.79761,0.24554 1.20853,0.30922 0.4875,0.0756 0.98972,0.0244 1.4761,0.10681 4.57831,0.77605 -3.54137,-0.1254 2.72152,0.48813 0.52268,0.0941 1.04535,0.18821 1.56802,0.28231 0.43865,0.12111 0.86899,0.27784 1.31595,0.36332 0.57207,0.10941 1.16169,0.10876 1.73344,0.21987 1.04127,0.20236 2.00143,0.67513 3.08385,0.65651 0.88787,0.0291 1.77029,0.17274 2.65853,0.18623 2.07603,0.0315 4.15498,-0.60781 6.21547,-0.0332 5.55217,-0.13123 -2.49311,0.009 3.4004,0.0813 2.36476,0.029 4.63984,-0.86773 7.01693,-0.59431 2.69934,-0.35851 1.30556,-0.11789 4.17658,-0.74882 0.74322,-0.10406 1.50043,-0.0628 2.24724,-0.13665 2.41293,-0.23871 4.7108,-0.93934 7.13303,-1.07641 0.64085,-0.21913 1.2817,-0.43825 1.92255,-0.65738 0.58873,-0.0758 1.20391,-0.0372 1.76618,-0.2275 0.7155,-0.24214 1.32098,-0.73638 2.00821,-1.04987 2.22458,-1.01477 4.57525,-1.57995 6.95003,-2.1175 1.64425,-0.78469 3.23797,-1.67497 4.89877,-2.42399 0.75902,-0.34232 1.5623,-0.578 2.33013,-0.90009 2.31024,-0.96909 4.56602,-2.07583 6.90529,-2.97951 3.7842,-1.65923 0.44807,0.031 3.99221,-2.50182 0.65534,-0.46835 1.41902,-0.77377 2.06536,-1.25447 1.55993,-1.16015 2.801,-2.78079 4.34397,-3.96808 0.94902,-1.03811 1.94208,-2.03625 2.86861,-3.09447 0.51135,-0.58404 0.96532,-1.21663 1.47575,-1.80148 1.32257,-1.51539 2.79952,-2.8894 3.57521,-4.80553 1.95948,-3.85497 0.20988,-0.11059 1.66655,-4.19426 0.9064,-2.54104 2.29426,-4.91477 2.54973,-7.66637 0.34427,-2.65963 0.59591,-5.3285 0.51626,-8.01647 -0.0246,-0.82912 -0.15438,-1.65237 -0.19326,-2.48095 -0.30591,-6.51953 0.31162,1.98569 -0.24375,-5.02034 -0.46679,-3.00148 -1.05809,-5.69317 -1.80334,-8.63223 -0.55046,-2.17082 -0.96246,-4.38302 -2.00309,-6.39592 -0.39946,-0.69216 -0.79892,-1.38432 -1.19838,-2.07648 -0.2905,-0.69917 -0.51619,-1.42894 -0.87149,-2.09751 -1.12006,-2.10757 -1.64794,-2.33147 -2.97098,-4.28628 -0.45701,-0.67523 -0.82798,-1.40529 -1.26741,-2.0921 -0.40888,-0.63905 -0.85113,-1.25613 -1.27669,-1.8842 -0.48599,-0.56262 -0.99128,-1.10914 -1.45799,-1.68786 -0.45245,-0.56105 -0.81296,-1.19617 -1.29786,-1.72943 -1.824,-2.00592 -4.2557,-3.41729 -6.46808,-4.93293 -0.52132,-0.31182 -1.04264,-0.62364 -1.56396,-0.93546 -0.47325,-0.24396 -0.95923,-0.46467 -1.41975,-0.73189 -0.53182,-0.30859 -1.00163,-0.72372 -1.55406,-0.99366 -0.60484,-0.29554 -1.27091,-0.44545 -1.89705,-0.69268 -2.85578,-1.1276 -0.28711,-0.31379 -3.38767,-1.1953 -2.89274,-1.11119 -0.22038,-0.23383 -3.6205,-0.85202 -0.48782,-0.0887 -0.94297,-0.33439 -1.43582,-0.38848 -0.58755,-0.0645 -1.18407,0.0883 -1.77285,0.0363 -5.45157,-0.48146 2.95889,-0.21436 -2.4965,-0.32845 -0.69588,0.0966 -1.38644,0.24635 -2.08766,0.28969 -0.53935,0.0333 -1.07963,-0.0625 -1.62001,-0.0605 -1.7974,0.006 -3.52972,0.20248 -5.22586,0.84319 -1.08947,0.62989 -1.36214,0.90235 -2.52677,1.19412 -0.29958,0.0751 -0.63455,-0.002 -0.91898,0.11782 -0.9995,0.42284 -1.7849,1.40883 -2.92278,1.56505 -0.43535,0.25386 -0.83881,0.57273 -1.30605,0.76157 -0.44425,0.17956 -0.92639,0.26404 -1.40309,0.31259 -0.202,0.0206 -0.43974,-0.12004 -0.60908,-0.008 -0.9884,0.65387 -1.96103,2.16434 -2.61715,3.05053 -1.37327,1.83102 -3.96272,-0.11106 -2.58945,-1.94208 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6328"
d="m 620.13516,205.33213 c 0.021,-3.8835 -0.53494,-7.87449 -1.9907,-11.50047 -0.41304,-1.02879 -1.31688,-2.76517 -1.82465,-3.76897 -1.9767,-2.72775 -2.83683,-6.2046 -5.19788,-8.66667 -1.09766,-1.14462 -1.72855,-1.33289 -3.1389,-2.09556 -1.98226,-1.08457 -3.05321,-3.17898 -4.84422,-4.46828 -0.21895,-0.15761 -0.41046,-0.41782 -0.67933,-0.43993 -0.12778,-0.0105 0.004,0.25638 0.006,0.38457 -0.24565,-0.13958 -0.47584,-0.31081 -0.73695,-0.41873 -0.15751,-0.0651 -0.38828,0.0327 -0.50266,-0.0936 -0.2783,-0.30741 0.81329,0.14743 0.85051,0.0863 1.74982,-2.87104 1.83267,-2.25057 0.60664,-3.80715 -6.36363,1.70678 -0.93038,-0.0497 -0.70163,-0.11085 1.07674,-0.28774 0.0681,0.12566 0.9512,0.0682 0.0692,-0.005 0.0915,-0.13617 0.16074,-0.13195 0.18282,0.0112 0.34758,0.11569 0.52137,0.17354 0.5123,0.0296 1.01835,-0.13598 1.5229,-0.16052 0.27843,-0.0136 0.53728,0.24346 0.81239,0.1985 0.21919,-0.0358 0.39153,-0.2098 0.58729,-0.3147 0.12534,0.039 0.25731,0.0609 0.37604,0.11689 1.76184,-0.72064 1.43575,1.24185 2.28165,1.64732 0.21969,0.1053 -0.14158,-0.48963 -0.31726,-0.65841 -0.21472,-0.0884 -0.42945,-0.17685 -0.64417,-0.26527 -0.006,0.0148 -0.011,0.0296 -0.0166,0.0444 0.38785,0.0614 -0.21295,-0.0592 -0.16897,0.16849 1.91862,9.93545 0.67779,0.38646 1.11553,-0.458 0.31355,-0.6049 1.1173,0.78005 1.67595,1.17007 0.20101,0.24566 0.49951,0.43691 0.60304,0.73697 0.16773,0.48615 0.0612,1.03192 0.17991,1.53231 0.0174,0.0735 0.18519,0.0216 0.20604,0.0942 0.13498,0.46999 0.13762,0.96891 0.23681,1.44774 0.23565,1.13765 0.54872,2.25796 0.8064,3.39082 0.69264,1.88468 0.96237,2.71803 1.78493,4.55569 0.40048,0.8947 0.93084,1.73375 1.26043,2.65692 0.35334,0.98974 0.48272,2.04671 0.77881,3.05505 2.33477,7.95113 -0.39247,-2.51125 1.83516,6.32929 3.50503,7.41201 -0.83228,-1.89576 2.34041,5.33714 0.32871,0.74935 0.7572,1.45371 1.06362,2.21245 0.52374,1.29684 0.64365,2.73413 1.17438,4.02813 0.15189,0.37032 0.46405,0.65231 0.69607,0.97846 0.16839,0.41179 0.39123,0.80531 0.50517,1.23536 0.1087,0.41026 0.0222,0.86108 0.15691,1.26356 0.006,0.0175 1.30058,-0.31727 0.0732,-0.64714 -0.91867,-0.24689 -1.94459,-0.5387 -2.84448,-0.23033 -0.53295,0.18263 -0.54057,0.98861 -0.81085,1.48291 0.12947,0.91801 0.68527,1.04075 1.44684,1.75296 -2.84896,0.14996 -3.06104,-3.87907 -0.21209,-4.02904 v 0 c 1.59125,-0.19442 2.85974,0.50668 2.98593,2.19118 -0.22857,0.61276 -0.0927,1.56256 -0.68572,1.83829 -1.74121,0.80954 -2.98529,0.29657 -3.47746,-1.09856 -0.43971,-1.24644 0.20216,-1.14791 -0.386,-2.16519 -0.62612,-2.28506 -0.25304,-1.10819 -1.14442,-3.52255 -0.19534,-0.66309 -0.25277,-1.36227 -0.45555,-2.02312 -0.23105,-0.75301 -0.57826,-1.46566 -0.84263,-2.20763 -0.67608,-1.89745 -1.23054,-3.83701 -1.95503,-5.7179 -1.64197,-5.37722 -0.24372,-1.06905 -2.12446,-6.1847 -1.25308,-3.40838 -2.33336,-6.86745 -4.1538,-10.03851 -0.22011,-0.68603 -0.44022,-1.37205 -0.66033,-2.05808 -0.29017,-0.51813 -0.66725,-0.99641 -0.87051,-1.55439 -0.1063,-0.29182 -0.0233,-0.62071 -0.0349,-0.93107 -0.19929,-0.41535 -0.39859,-0.8307 -0.59788,-1.24605 -0.0916,-0.19858 0.1878,0.578 0.36606,0.54439 2.35895,0.67494 0.68518,0.50015 0.24393,-3.91136 -0.009,-0.092 0.23722,-0.0467 0.2749,0.0377 1.81283,4.06369 2.54334,3.40078 0.47428,4.07452 -0.71907,0.12394 -1.2125,0.30443 -1.95478,-0.0444 -0.44188,-0.20766 -0.75868,-0.61757 -1.16743,-0.88461 -0.0437,-0.0285 -0.008,0.1443 0.0435,0.15036 0.29901,0.0349 0.60356,-0.0774 0.90226,-0.0398 0.12835,0.0161 -0.24882,0.0709 -0.37323,0.10629 -0.12836,-0.0142 -0.79333,-0.10372 -0.98608,-0.0748 -0.12909,0.0194 -0.23985,0.12765 -0.3704,0.12719 -0.51914,-0.002 -1.07886,-0.18148 -1.60695,-0.17991 -0.2338,-0.0129 -0.46725,-0.0411 -0.70139,-0.0387 -0.17753,0.002 -0.35344,0.0341 -0.53013,0.0515 -0.0394,0.004 0.11766,0.0286 0.1182,-0.011 6.4e-4,-0.047 -0.15808,-0.056 -0.11697,-0.0788 0.35222,-0.19539 1.51354,-0.50319 1.11188,-0.47312 -0.89957,0.0673 -1.76112,0.39175 -2.64169,0.58763 -0.30049,-0.28669 -0.93195,-0.44588 -0.90147,-0.86008 0.21587,-2.93348 0.96019,-3.66823 3.10038,-2.9974 0.084,0.0263 0.13274,0.11551 0.19912,0.17327 0.18438,0.0321 0.36877,0.0642 0.55316,0.0964 1.14663,0.64219 1.95015,1.21001 2.79734,2.22398 0.32866,0.39337 0.63378,0.80676 0.92341,1.22969 0.24977,0.36472 0.37958,0.81895 0.69303,1.13065 0.45781,0.45525 1.05074,0.75055 1.5761,1.12582 1.2898,0.79742 3.03102,1.7583 4.04208,2.90489 0.53719,0.6092 0.85,1.38466 1.25197,2.09044 1.3221,2.32139 2.36269,4.79725 3.94197,6.96796 0.45557,0.72512 0.99115,1.40575 1.36671,2.17537 0.69255,1.41921 1.05052,3.28886 1.34316,4.80929 0.62833,3.26449 0.64686,6.56669 1.34718,9.82217 0,2.05241 -2.90256,2.05241 -2.90256,0 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6380"
d="m 677.10536,299.12501 c -4.26677,1.29297 -0.20125,0.12022 -4.81289,1.26202 -0.84514,0.20925 -1.66445,0.52928 -2.52205,0.67952 -0.76237,0.13355 -1.55351,0.0342 -2.31585,0.16798 -0.67279,0.11803 -3.34012,1.02953 -3.99628,1.24738 -2.45017,0.54385 -4.74969,1.58312 -7.1626,2.24906 -0.61545,0.16986 -1.258,0.23135 -1.87109,0.40954 -2.46883,0.71756 -0.22152,0.38221 -2.13646,0.60311 -0.1297,0.0471 -0.37271,0.27836 -0.38909,0.14135 -0.0911,-0.76227 -0.14545,-1.58321 0.1311,-2.29936 0.15348,-0.39743 0.68497,-0.50773 1.04242,-0.73954 1.70185,-1.10368 3.4185,-1.85266 5.31245,-2.56436 1.86616,-0.91239 3.80216,-1.7967 5.56159,-2.91223 0.69141,-0.43837 1.23946,-1.25781 1.47713,-0.892 0.32625,0.50216 0.20721,1.17962 0.31082,1.76943 -0.31525,0.045 -0.63871,0.0506 -0.94574,0.13504 -1.1726,0.32267 -2.26768,0.88832 -3.43451,1.23127 -3.24897,0.95494 -6.63503,1.49747 -9.93705,2.23558 -3.40968,1.01015 -6.92455,1.65955 -10.28568,2.83824 -0.81302,0.28511 -1.57791,0.69608 -2.38925,0.98593 -2.4272,0.70055 -1.30504,0.31502 -3.37928,1.11861 -0.31704,-0.0481 -1.93248,-0.1245 -1.94065,-0.83613 -0.0207,-1.80839 1.30918,-1.94482 2.474,-2.5457 0.72665,-0.37484 1.43662,-0.78118 2.15493,-1.17177 0.86661,-0.44105 1.73322,-0.88209 2.59983,-1.32314 4.6459,-2.3856 9.72268,-3.87819 14.29408,-6.42658 0.52663,-0.99163 0.43258,1.36919 0.0939,1.90873 -0.4778,0.76124 -4.59738,1.55871 -4.79491,1.62183 -2.09707,0.67013 -4.88108,1.95572 -6.86053,2.82182 -2.68995,1.06202 -5.60292,1.28423 -8.35027,2.12032 -1.37939,0.41979 -2.68227,1.06189 -4.04686,1.52756 -1.15675,0.39474 -2.35505,0.6596 -3.51257,1.0521 -2.46856,0.83706 -2.96758,1.16989 -5.23725,2.28705 -0.35412,0.0281 -4.3031,0.74222 -4.39614,0.0232 -0.24916,-1.92533 1.00386,-2.49683 2.2865,-3.30554 0.78906,-0.49751 1.61244,-0.93839 2.41867,-1.40758 5.27341,-3.58544 11.11815,-6.19314 16.50722,-9.601 0.21622,-0.17773 0.5242,-0.78389 0.64867,-0.53319 0.19614,0.39504 -0.03,1.52739 -0.65262,1.68011 -0.83463,0.20474 -1.70322,0.24042 -2.54391,0.41864 -1.41098,0.2991 -6.49067,1.65562 -7.58967,1.9445 -10.10077,3.63876 1.85788,-0.59637 -8.98556,2.9983 -1.43989,0.47734 -2.85115,1.03781 -4.28793,1.52446 -3.34157,1.13184 -6.73467,2.11101 -10.10399,3.15562 -0.49472,0.71356 -6.10992,2.63665 -5.5578,-0.22175 0.15685,-0.81201 2.898,-2.49645 3.41844,-2.85018 2.66161,-1.78165 5.49913,-3.35284 8.36218,-4.79004 1.0223,-0.51317 2.09732,-0.9161 3.12187,-1.42476 5.27463,-2.61872 0.004,-0.32819 4.75229,-2.31151 0.39886,-0.21829 0.82162,-0.91207 1.19657,-0.65487 0.5475,0.37557 0.84506,1.2738 0.61197,1.89547 -0.18598,0.49603 -0.99306,0.37882 -1.50929,0.49772 -0.72307,0.16654 -1.47845,0.17229 -2.19735,0.35602 -1.90146,0.48594 -4.43558,1.53509 -6.22689,2.22817 -3.55311,1.0517 -6.9095,2.62955 -10.31163,4.07195 -1.01184,0.42899 -2.04378,0.81185 -3.04171,1.27227 -4.06454,1.87529 -0.63811,0.69569 -4.44204,1.85278 -1.26155,0.4046 -5.2512,1.25826 -2.53394,-1.8361 0.38767,-0.44146 1.08699,-0.4473 1.61977,-0.69494 0.74902,-0.34817 1.48294,-0.72796 2.22441,-1.09194 1.65504,-0.87145 3.35556,-1.6515 5.02524,-2.49345 0.76146,-0.38396 1.4837,-0.85015 2.27066,-1.17871 0.7107,-0.29672 1.48632,-0.41323 2.20506,-0.68992 1.32871,-0.51152 1.27555,-0.2034 1.21744,-0.89101 -0.0128,0.62703 0.30814,1.35828 -0.0383,1.88109 -0.26893,0.40588 -0.95078,0.21073 -1.42391,0.32571 -0.90097,0.21895 -1.81209,0.403 -2.69817,0.67601 -1.21198,0.37341 -2.37561,0.89395 -3.58946,1.26122 -10.7579,3.25501 2.40651,-1.19242 -8.11458,2.45606 -3.71284,1.20687 -7.45956,2.36097 -11.23484,3.35984 -0.77871,0.20604 -1.58221,0.31025 -2.3598,0.52049 -0.83136,0.22477 -1.87321,0.6385 -2.71643,0.96135 -0.44136,-0.32867 -1.17111,-0.45739 -1.32407,-0.98599 -0.29986,-1.03634 1.59527,-2.3303 2.07362,-2.67505 2.71596,-1.95739 5.76505,-3.44224 8.73085,-4.96296 3.91019,-1.35524 7.47043,-3.48467 11.19342,-5.23971 1.75936,-0.82937 3.60464,-1.41967 5.32575,-2.33071 0.11294,0.60889 0.69294,1.31863 0.33881,1.82665 -0.41333,0.59294 -1.37778,0.43751 -2.06759,0.65335 -1.06159,0.33217 -2.12605,0.65521 -3.1866,0.99069 -4.37983,1.38549 -8.71048,2.86768 -13.11778,4.16734 -4.38405,1.32714 -8.64684,3.01897 -13.03915,4.3203 -1.2614,0.37373 -2.55525,0.63352 -3.81222,1.02187 -1.54252,0.47657 -3.0388,1.09495 -4.58112,1.57215 -0.43659,0.13999 -0.85699,0.49211 -1.30976,0.41997 -1.92274,-0.30633 -1.41867,-1.66689 -0.44266,-2.82747 1.5998,-1.90234 6.96358,-3.65426 9.15401,-4.55027 2.76596,-1.17629 5.61347,-2.15315 8.38124,-3.32477 1.34364,-0.56877 2.6341,-1.26022 3.98715,-1.80624 1.09233,-0.4408 2.24076,-0.73046 3.34104,-1.15102 1.95021,-0.74544 2.40355,-1.01434 4.0023,-1.83012 -0.0886,0.65697 0.22075,1.5207 -0.26585,1.97091 -0.57612,0.53305 -1.55356,0.23717 -2.31712,0.41893 -1.30576,0.31083 -2.60827,0.64448 -3.88539,1.05752 -6.27035,2.02795 -2.5926,1.28614 -9.01532,3.19903 -1.39269,0.41479 -2.81945,0.70519 -4.22917,1.05779 -3.2558,1.30133 -6.64354,2.19585 -9.99422,3.20081 -2.12392,0.63703 -3.10633,0.96923 -5.32668,0.9736 -0.3705,-0.37157 -1.17848,-0.59427 -1.1115,-1.1147 0.20838,-1.61901 2.85936,-2.60978 3.8883,-3.15151 0.93749,-0.49359 1.8826,-0.97287 2.81368,-1.47844 6.84738,-3.718 -0.0723,-0.11972 7.25899,-3.87185 1.65979,-0.79646 5.58931,-2.63813 7.28317,-3.61019 0.81126,-0.46555 1.51517,-1.10826 2.34186,-1.54581 0.49453,-0.26174 1.08772,-0.29079 1.59083,-0.53566 0.0788,-0.0383 -0.20785,-0.21113 -0.23036,-0.12648 -0.1469,0.55239 -0.12615,1.13618 -0.18923,1.70427 -3.81035,0.80514 -7.69575,1.45828 -11.39343,2.71884 -3.19558,1.0894 -6.2223,2.63018 -9.396,3.78177 -1.56544,0.56803 -3.1647,1.03816 -4.74705,1.55724 -3.37446,1.09298 -6.77551,2.1254 -10.18955,3.08623 -0.0122,0.003 -2.52306,0.77037 -3.00287,0.43437 -0.46883,-0.32832 -0.63605,-0.95174 -0.95408,-1.4276 0.34789,-0.59041 0.57574,-1.27057 1.04367,-1.77123 1.15301,-1.23369 3.87518,-2.71561 5.23678,-3.42409 4.66305,-2.42628 3.88138,-1.79851 8.97296,-3.95985 1.63399,-0.69361 3.24477,-1.44069 4.86715,-2.16104 4.07044,-1.63663 7.6526,-4.156 11.38672,-6.39711 0.69678,-0.41819 1.4051,-0.81864 2.12965,-1.18662 0.24049,-0.12214 0.74549,-0.54985 0.75902,-0.28046 0.0372,0.74032 -0.44437,1.41433 -0.66655,2.1215 -6.1393,0.89294 -11.85845,3.44047 -17.73616,5.2862 -14.59807,4.58413 2.78058,-1.31696 -11.76559,3.72181 -4.85515,1.95252 -9.69718,4.05155 -14.70937,5.5876 -2.52663,0.77431 -5.15459,1.25335 -7.71615,1.90318 -0.32235,-0.16056 -1.01102,-0.12424 -0.96705,-0.48166 0.23831,-1.93739 2.4811,-2.36562 3.76156,-3.01693 14.00315,-7.1228 -9.51859,4.56603 7.74071,-4.12785 1.69254,-0.85257 3.41321,-1.64811 5.11981,-2.47217 1.81081,-0.78333 3.60728,-1.60066 5.43242,-2.34998 7.13547,-2.92951 3.38874,-1.11315 9.73499,-3.95985 1.0354,-0.46444 2.05477,-0.96401 3.07462,-1.46167 0.5403,-0.26366 1.16365,-0.41425 1.60537,-0.82208 0.1628,-0.1503 -0.44199,-0.032 -0.66299,-0.048 -0.0273,0.6307 0.38281,1.46481 -0.0819,1.89211 -0.76875,0.70688 -1.97802,0.67848 -2.9908,0.93328 -1.45875,0.36701 -2.94558,0.61185 -4.41574,0.93011 -1.39321,0.3016 -9.79041,2.15139 -11.02159,2.51031 -1.83737,0.53564 -3.6107,1.27053 -5.41604,1.9058 -4.52114,1.29402 -8.75974,3.48212 -13.2893,4.74639 -0.95803,0.2674 -1.96354,0.33159 -2.92827,0.57368 -4.38327,1.09992 -0.0466,0.38008 -3.4656,0.88124 -0.41362,-0.2534 -1.18835,-0.27798 -1.24085,-0.76019 -0.27382,-2.51517 4.75612,-3.62837 6.24206,-4.29431 2.38862,-1.07049 4.82122,-2.45669 7.11185,-3.70423 4.17934,-1.82441 3.12462,-1.44462 7.14017,-2.9099 0.70945,-0.25887 1.43144,-0.4829 2.13834,-0.74867 0.24505,-0.0921 0.65857,-0.57978 0.71536,-0.32422 0.46693,2.10139 -0.89496,1.70273 -2.13487,1.83332 -1.061,0.24444 -2.13861,0.42556 -3.18301,0.73332 -1.31132,0.38641 -2.56651,0.9469 -3.87397,1.34619 -5.45908,1.66719 -3.75767,0.85643 -9.51969,2.35259 -11.17712,2.90222 1.27619,0.0978 -9.38235,2.39984 -5.56974,2.25654 -1.7055,0.907 -6.74938,2.227 -0.73156,0.19145 -1.42774,0.53344 -2.17634,0.6403 -0.92012,0.13135 -2.45293,-0.24941 -2.46475,-0.53732 -0.0307,-0.74889 0.53674,-1.39966 0.8051,-2.0995 2.46368,-0.86473 4.83471,-2.01326 7.1769,-3.16176 1.06772,-0.52355 2.08856,-1.14358 3.17591,-1.62504 1.17615,-0.52077 5.53901,-2.06527 6.82092,-2.52591 0.83377,2.44454 2.92785,-2.42796 3.96183,-1.4712 0.48635,0.45002 0.6238,1.46326 0.20554,1.97718 -0.46849,0.57564 -1.45713,0.28444 -2.18069,0.4497 -3.60855,0.82422 -4.36691,1.07407 -8.10978,2.08952 -1.45009,0.39594 -2.91048,0.7559 -4.35026,1.18781 -1.30181,0.39053 -2.56911,0.89075 -3.87171,1.27869 -1.17087,0.34871 -2.36965,0.59716 -3.54509,0.93019 -0.98769,0.27984 -1.95223,0.63862 -2.94283,0.90801 -4.62201,1.25692 -0.83906,-0.0539 -4.40756,1.26208 -0.99133,0.238 -3.22383,1.4915 -2.2255,-1.44315 0.10534,-0.30966 3.10797,-2.10656 3.18429,-2.15397 1.05651,-0.58381 1.88214,0.91032 0.82563,1.49413 v 0 c -0.54365,0.30547 -1.11114,0.57194 -1.63096,0.9164 -0.29683,0.1967 -0.45551,0.75351 -0.80746,0.69942 -1.00293,-0.15413 -1.92044,-1.73322 0.15511,-1.1351 6.45862,-1.56266 13.03646,-2.7146 19.28274,-5.06206 0.71111,-0.21922 6.91044,-2.11958 7.98092,-2.4864 0.6648,-0.22781 1.29376,-0.98404 1.96288,-0.76927 0.60471,0.19409 1.0311,1.06571 0.8896,1.68484 -0.30112,1.3175 -4.94191,-2.35658 -3.94707,0.92687 -1.11007,0.35095 -2.23462,0.65902 -3.33021,1.05286 -4.60349,1.65482 -8.90914,3.95625 -13.00806,6.60861 -0.21794,-0.32253 -0.36642,-0.70507 -0.65383,-0.9676 -0.0938,-0.0857 -0.49958,-0.0215 -0.38051,0.0228 3.20601,1.19417 6.94876,-1.62019 10.14622,-1.78684 1.50577,-0.31359 3.02755,-0.55828 4.51731,-0.94075 1.63391,-0.41948 3.22239,-1.00042 4.84469,-1.4628 1.64171,-0.46792 3.31483,-0.82487 4.94617,-1.32778 1.46344,-0.45116 2.8737,-1.06216 4.33116,-1.53225 12.76953,-4.11867 -3.43217,1.40874 7.18891,-2.2541 1.22789,-0.33017 3.60885,-1.82779 3.20817,1.23693 -0.0466,0.35639 -0.71531,0.095 -1.06043,0.19534 -0.704,0.20475 -1.38071,0.49465 -2.07911,0.71775 -5.27363,1.68468 -1.41158,0.19311 -7.04608,2.60863 -2.38101,1.286 -4.73283,2.62683 -7.13522,3.87242 -0.944,0.48944 -1.90868,0.93807 -2.86934,1.39393 -0.55683,0.26423 -1.07825,0.64619 -1.68279,0.76619 -0.17615,0.035 -0.27247,-0.23402 -0.4087,-0.35103 -0.24213,0.0691 -0.48426,0.1383 -0.72639,0.20745 2.54214,0.21416 -0.004,0.14388 3.35189,-0.42361 0.95843,-0.16206 1.94644,-0.11695 2.90011,-0.30501 4.6218,-0.91141 8.82615,-3.14456 13.34006,-4.41447 10.79013,-3.73769 0.10478,-0.27581 11.18079,-3.15054 1.76702,-0.45863 3.48285,-1.098 5.24143,-1.58797 1.40915,-0.3926 2.86776,-0.60628 4.25879,-1.05892 0.96994,-0.31563 1.78683,-1.10806 2.79858,-1.23758 0.90504,-0.11587 1.78958,0.3571 2.68436,0.53565 -1.2584,0.89657 -0.18376,0.22002 -2.44135,1.10393 -6.10085,2.38867 -0.0671,0.2752 -7.65839,2.78827 -1.79686,0.67432 -3.54981,1.46033 -5.32257,2.19568 -1.81217,0.7517 -3.62146,1.51032 -5.43219,2.26548 -6.23263,3.19036 -3.64156,1.67709 -9.1791,5.18764 -1.11048,0.70399 -2.19895,1.4431 -3.32288,2.12539 -0.73799,0.448 -1.40878,1.12328 -2.26055,1.26407 -0.50637,0.0837 -0.39331,-1.60099 -1.30298,-0.82035 4.10202,0.0823 8.04201,-1.26593 11.8898,-2.53965 5.59299,-1.85142 4.7389,-1.60578 10.44149,-3.81865 1.96433,-0.64056 3.92567,-1.29034 5.89297,-1.92167 1.94327,-0.62362 3.91777,-1.15361 5.83864,-1.84315 1.85872,-0.66724 3.64283,-1.52885 5.4913,-2.22399 3.93935,-1.48144 7.97252,-2.74006 11.94056,-4.14267 0.54818,0.463 1.18368,0.83901 1.64454,1.389 0.0987,0.1178 -0.3123,-0.0168 -0.46047,0.024 -0.75916,0.20927 -1.53394,0.39327 -2.24912,0.72286 -1.07077,0.49346 -2.04481,1.17488 -3.08265,1.73429 -3.31552,1.78711 -5.13267,2.64229 -8.57514,4.34077 -1.6018,0.76931 -3.20361,1.53862 -4.80541,2.30793 -1.57771,0.7184 -3.16768,1.41044 -4.73311,2.15519 -2.3882,1.13618 -4.60607,2.13796 -6.67258,3.78485 -0.0397,0.0316 -1.85338,1.88752 -2.28732,2.33127 -0.2781,-0.13873 -0.62358,-0.18777 -0.83431,-0.41621 -0.16297,-0.17667 0.43741,0.23957 0.67767,0.2464 0.58593,0.0167 1.16931,-0.0941 1.74953,-0.17741 0.89078,-0.12789 1.7883,-0.23616 2.661,-0.45583 1.19429,-0.30062 2.35105,-0.73444 3.52657,-1.10167 1.37627,-0.31384 2.75253,-0.62768 4.12879,-0.94152 8.5213,-3.34954 0.65747,-0.30033 9.31026,-3.53224 4.11284,-1.53619 5.35148,-2.13963 9.48887,-3.405 1.28561,-0.39319 2.61264,-0.64392 3.89333,-1.05285 0.93315,-0.29796 1.82599,-0.70993 2.73898,-1.06489 0.73587,0.39013 1.67814,0.52745 2.20762,1.17038 0.20624,0.25044 -0.54544,0.35699 -0.84266,0.48706 -0.48901,0.214 -1.01123,0.34369 -1.50712,0.54124 -3.3543,1.3363 -6.63882,2.86732 -9.76925,4.66977 -3.36823,1.72369 -6.65971,3.55653 -9.85074,5.5949 -0.68628,0.43839 -1.25376,1.07951 -2.00282,1.39899 -0.43307,0.18471 -0.92324,-0.70756 -1.40174,-0.17354 0.8928,-0.0763 1.79979,0.0197 2.68571,-0.11468 0.73149,-0.11096 1.42722,-0.39265 2.14888,-0.55574 3.3986,-0.76802 6.8057,-1.47954 10.06302,-2.77545 5.64352,-1.87043 2.73019,-0.9956 8.74717,-2.60043 1.50849,-0.48449 2.96811,-1.10985 4.44659,-1.67941 1.28419,-0.49471 2.56242,-1.00478 3.84119,-1.51334 0.82991,-0.33004 1.61617,-1.21019 2.4848,-1.00245 0.6875,0.16443 0.69556,1.23083 1.04335,1.84625 -2.3602,0.37234 -1.00641,0.0743 -4.16492,1.16669 -5.31698,1.839 -10.384,4.25175 -15.65839,6.20207 -2.68311,1.2924 -4.08773,1.84356 -6.49735,3.43364 -3.4827,2.29819 -0.49336,1.31129 -2.21417,0.99412 -0.23339,-0.043 -0.94589,0.0195 -0.71032,0.0482 0.3916,0.0479 0.789,0.006 1.1835,0.01 2.86303,-0.43449 5.76072,-1.0756 8.53065,-1.91888 1.4058,-0.42798 2.76565,-0.99533 4.1604,-1.45806 16.45759,-5.46012 -8.17649,2.91448 8.85877,-2.90597 1.55423,-0.49888 3.12614,-0.9457 4.66269,-1.49664 1.48549,-0.53263 2.93207,-1.16812 4.39811,-1.75217 1.29927,-0.46608 2.59745,-0.93523 3.89783,-1.39823 1.01307,-0.3607 2.04836,-0.66284 3.0425,-1.07285 0.63181,-0.26058 1.15111,-1.04901 1.8249,-0.9346 0.66451,0.11282 0.91949,0.98576 1.37924,1.47863 -2.9247,1.3027 1.89421,-0.74685 -2.88996,0.75199 -0.94508,0.29609 -1.83475,0.7468 -2.74344,1.14066 -3.7763,1.63676 -7.40349,3.5922 -11.27167,5.01608 -2.81595,1.62879 -5.53518,3.30975 -8.14518,5.25544 -0.32108,0.23935 -0.6243,0.50242 -0.92212,0.77017 -0.0843,0.0758 -0.10834,0.26448 -0.2215,0.25797 -0.39713,-0.0228 -0.76328,-0.22439 -1.14492,-0.33658 1.01186,-0.16297 1.81221,-0.27894 2.85994,-0.53626 0.78522,-0.19285 1.54641,-0.47832 2.33491,-0.65728 3.78567,-0.85922 7.70437,-1.18704 11.24123,-2.95653 2.37162,-0.75418 5.6726,-1.76508 7.99967,-2.65966 11.91922,-4.58205 -3.03032,0.83197 6.15398,-2.39703 0.59676,-0.2098 1.17562,-0.84273 1.78032,-0.65705 0.69312,0.21284 0.95121,1.09458 1.42681,1.64187 -1.18699,0.76974 -2.61854,1.06281 -3.92933,1.55055 -2.70055,1.00487 -2.11564,0.84435 -4.7825,2.27371 -0.79751,0.42745 -1.59977,0.84596 -2.39965,1.26894 -0.71613,0.43308 -1.42336,0.88123 -2.1484,1.29923 -0.44217,0.25492 -0.84517,0.77935 -1.35195,0.71879 -0.34258,-0.0409 -0.19213,-0.70079 -0.44665,-0.93371 -0.18145,-0.16604 -0.71126,0.1073 -0.72479,-0.13828 -0.0401,-0.72767 3.05357,1.72884 2.17449,-0.22707 3.7519,-0.79291 -0.0266,0.13798 4.41427,-1.48967 1.01011,-0.37022 2.07748,-0.57353 3.08089,-0.96153 1.13574,-0.43918 2.20555,-1.03377 3.32405,-1.51516 14.20845,-6.11523 -7.74888,3.55188 6.92653,-2.9383 1.11327,-0.34564 2.25295,-0.61551 3.33981,-1.03692 7.59846,-2.94616 -0.81048,-0.16224 4.98932,-2.18705 0.26693,-0.0932 0.58538,-0.36864 0.8211,-0.21255 0.51809,0.34305 1.09513,0.87317 1.1145,1.49424 0.0112,0.35987 -0.70779,0.13255 -1.06169,0.19883 -6.98295,3.18682 3.69146,-1.72676 -4.75378,2.33198 -3.84332,1.84708 -7.84343,3.41163 -11.17474,6.16498 -0.87592,0.75648 -1.87549,2.17839 -3.17239,1.18791 -0.12753,-0.0974 0.32091,0.004 0.48137,0.006 2.13636,0.0214 0.95952,0.14253 3.53353,-0.61443 3.90237,-0.98109 1.85094,-0.43461 6.14885,-1.65968 1.35448,-0.34526 2.75642,-0.51066 4.08672,-0.93975 1.44931,-0.46748 2.80314,-1.1925 4.22382,-1.74083 3.40192,-1.31302 5.56195,-1.98579 8.99041,-3.12303 14.07486,-4.6063 -4.14164,1.23502 7.59382,-2.20033 0.27223,-0.0797 3.85214,-1.62898 4.582,-1.11296 1.35841,0.96041 -0.53864,1.98544 -0.91224,2.2579 -2.75751,1.3855 -1.21897,0.60513 -4.61084,2.35051 -1.11236,0.56054 -2.26151,1.05038 -3.34894,1.65787 -2.92949,1.63657 -5.67493,3.62537 -8.6501,5.19098 -0.6842,0.59632 -1.3692,1.19174 -2.0526,1.78897 -0.45315,0.39601 -0.76007,1.11477 -1.35706,1.19075 -0.38423,0.0489 -0.3927,-0.69048 -0.69771,-0.92923 -0.0801,-0.0627 -0.31822,0.17274 -0.22296,0.20853 0.71252,0.26773 2.15214,-0.0962 2.70736,-0.18327 4.36968,-1.42052 8.69048,-3.0127 13.13522,-4.19421 1.36695,-0.36336 2.77296,-0.57496 4.13012,-0.97331 1.35658,-0.39819 2.66615,-0.94188 3.99922,-1.41281 2.30255,-0.93671 4.59146,-1.90763 6.90716,-2.81136 0.89937,-0.351 1.84669,-0.58573 2.71646,-1.00475 0.63389,-0.30538 1.06355,-1.17842 1.76678,-1.15507 4.64185,0.15407 2.0754,1.21477 1.47709,1.50002 -4.15057,1.14474 2.12262,-0.68426 -3.05529,1.25531 -0.86125,0.32261 -1.79561,0.42332 -2.65479,0.7514 -2.95642,1.12893 -5.64773,2.93683 -8.6854,3.88605 -3.72936,2.23204 -1.31785,0.73569 -4.61672,2.89698 -0.40959,0.26834 -0.74694,0.77265 -1.23615,0.79363 -0.26176,0.0112 -0.10865,-0.54531 -0.29653,-0.7279 -0.21251,-0.20654 -0.6098,-0.14023 -0.81585,-0.35321 -0.13145,-0.13587 0.37342,0.0593 0.56013,0.0889 2.03655,-0.24174 3.84607,-0.82862 5.82408,-1.3563 1.06141,-0.28315 2.14721,-0.4709 3.20518,-0.76666 2.39133,-0.6685 4.70267,-1.60687 7.1284,-2.16194 3.36171,-0.62797 3.67092,-0.59464 6.93829,-1.56504 3.40449,-1.01112 1.81595,-0.63996 4.74191,-1.77882 0.80679,-0.31402 1.65052,-0.52714 2.44939,-0.86382 0.33903,0.59498 0.80668,1.13327 1.0171,1.78493 0.0434,0.13429 -0.2593,0.11294 -0.38151,0.18349 -0.37072,0.21398 -0.71943,0.46563 -1.09591,0.66931 -1.90909,1.03284 -4.01611,1.63878 -5.79853,2.91494 -0.64545,0.20181 -1.32707,0.31199 -1.93634,0.60544 -0.44444,0.21407 -3.6641,2.69516 -3.98322,2.61986 -3.29257,-0.77687 -0.30264,-1.34953 -1.14686,-1.17625 1.48938,0.17502 0.20597,0.13667 2.17962,-0.33072 0.56078,-0.1328 1.14601,-0.15063 1.70272,-0.29957 2.40082,-0.64232 4.706,-1.67024 7.09564,-2.3533 1.42922,-0.4458 2.82583,-1.01414 4.28758,-1.33773 3.60126,-0.79723 1.02968,0.15155 4.69754,-0.57087 1.45891,-0.28734 3.03703,-0.90984 4.43852,-1.4163 1.0899,-0.54495 1.86058,0.9964 0.77068,1.54135 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6382"
d="m 553.93975,246.01443 c -1.58656,3.43494 -0.31168,0.81094 -1.87155,3.72492 -0.2034,0.37997 -0.31803,0.81475 -0.58519,1.15294 -0.21661,0.27417 -0.55381,0.42621 -0.83071,0.63931 -1.14863,0.82045 -2.30892,-0.80395 -1.16029,-1.6244 v 0 c 1.93315,-1.18573 1.95508,-2.77699 3.156,-4.66782 0.54804,-0.91339 1.83978,-0.13835 1.29174,0.77505 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6384"
d="m 557.20163,248.74908 c -1.14661,2.58713 -0.87087,2.3715 -2.54929,4.5972 -0.39132,0.51893 -0.87853,0.96116 -1.26544,1.4834 -0.27936,0.37707 -0.45017,0.82667 -0.72686,1.20571 -1.59849,2.1898 0.11103,-0.68459 -1.16058,1.56603 -0.0586,0.85574 -0.12326,0.46974 0.12333,1.16765 0.0817,1.42982 -1.94037,1.54537 -2.02207,0.11555 v 0 c 0.0643,-1.43619 -0.0402,-0.70976 0.33665,-2.17583 0.18823,-0.35619 0.33235,-0.73946 0.56469,-1.06858 0.19396,-0.27476 0.47715,-0.47464 0.70156,-0.72514 1.013,-1.13079 2.89499,-3.00931 3.56716,-4.2581 0.42271,-0.78531 0.60999,-1.67616 0.91499,-2.51424 0.42875,-1.07188 1.94461,-0.46553 1.51586,0.60635 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6386"
d="m 560.12286,256.15739 c -0.93233,2.52026 -1.77705,5.14549 -3.48943,7.27344 -1.6034,1.99252 -0.57587,0.38721 -2.11983,1.68379 -0.0449,0.0377 0.0754,0.0898 0.11313,0.13466 -1.03704,1.03704 -2.50363,-0.42956 -1.46659,-1.4666 v 0 c 0.18348,-0.15828 0.34518,-0.34606 0.55045,-0.47484 0.78979,-0.4955 0.65635,0.1317 1.59053,-0.80962 1.75644,-1.76985 2.60859,-4.55038 3.33874,-6.83516 0.34954,-1.04864 1.83254,-0.55431 1.483,0.49433 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6388"
d="m 563.67533,258.69247 c -0.60439,1.2124 -1.98207,4.04538 -2.67401,5.12943 -0.49481,0.77521 -1.14868,1.43896 -1.66445,2.20038 -0.41065,0.60625 -0.69182,1.29456 -1.11007,1.89559 -1.04249,1.4981 -1.24979,1.49437 -2.63398,2.54942 -0.26919,0.3487 -0.53837,0.6974 -0.80755,1.04611 -0.96743,0.84123 -2.15712,-0.52691 -1.18969,-1.36815 v 0 c 0.34564,-0.31946 0.69129,-0.63891 1.03693,-0.95837 1.75364,-1.12457 0.68554,-0.25298 2.20974,-2.19204 2.16338,-2.75223 4.59157,-5.34766 5.29228,-8.91869 0.4358,-1.08952 1.9766,-0.47319 1.5408,0.61632 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6390"
d="m 565.58909,264.68093 c -1.31858,1.96707 -1.82234,4.30701 -3.21614,6.23239 -0.35347,0.48828 -0.88171,0.83274 -1.23431,1.32164 -0.27824,0.3858 -0.41217,0.85783 -0.63907,1.27589 -0.20552,0.37869 -0.43827,0.74195 -0.65741,1.11292 -0.12026,0.38733 -0.24053,0.77465 -0.3608,1.16197 -0.7476,1.26519 -2.53684,0.20791 -1.78923,-1.05727 v 0 c 0.22124,-0.28262 0.44248,-0.56524 0.66372,-0.84785 0.47044,-0.92441 0.85599,-1.78235 1.49008,-2.61519 0.35326,-0.46399 0.8029,-0.84824 1.16338,-1.30666 1.40539,-1.78723 2.46706,-3.80847 3.30395,-5.91576 0.45107,-0.90215 1.7269,-0.26423 1.27583,0.63792 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6392"
d="m 571.36787,266.03399 c -3.92045,7.96354 0.85941,-1.39929 -3.46834,6.04514 -1.4783,2.54292 -0.63158,2.13302 -2.46556,4.10201 -0.70971,0.76196 -1.55945,1.3831 -2.28582,2.12921 -0.24098,0.16911 -0.48196,0.33822 -0.72295,0.50734 -1.02963,0.70787 -2.03072,-0.74825 -1.00108,-1.45612 v 0 c 0.22617,-0.16294 0.45234,-0.32588 0.67851,-0.48881 1.18175,-1.00198 2.47364,-1.81146 3.3557,-3.13182 0.50149,-0.75068 0.80345,-1.62086 1.28918,-2.38183 2.92766,-4.58667 1.2052,-0.52801 2.99922,-5.8655 0.3821,-1.14632 2.00324,-0.60594 1.62114,0.54038 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6394"
d="m 577.83458,266.91458 c -0.98536,1.45695 -1.79843,3.02128 -2.75442,4.49613 -0.49547,0.76438 -1.07197,1.47448 -1.56178,2.2425 -0.40355,0.63274 -0.69788,1.33211 -1.11562,1.95557 -2.86526,4.27627 0.0819,-0.79175 -2.02178,2.94567 -0.18856,0.33889 -0.37711,0.67778 -0.56567,1.01666 -0.76623,1.02165 -2.21106,-0.062 -1.44483,-1.08362 v 0 c 0.20883,-0.28524 0.41766,-0.57047 0.62649,-0.85571 2.27346,-3.87126 -0.8462,1.26997 2.04985,-2.88587 0.45154,-0.64797 0.74987,-1.39674 1.22183,-2.03 0.51508,-0.69113 1.25449,-1.20394 1.72608,-1.92544 0.49488,-0.75714 1.71539,-3.79788 2.10686,-4.74238 0.61271,-1.2254 2.34569,-0.35891 1.73299,0.86649 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6396"
d="m 581.98804,269.69842 c -1.62952,3.13912 -3.49211,6.16715 -5.05073,9.34349 -1.36385,2.77941 -0.13881,1.00063 -1.98429,3.30128 -0.30778,0.38607 -0.61556,0.77214 -0.92334,1.15821 -0.77159,0.95531 -2.1226,-0.13589 -1.35101,-1.0912 v 0 c 0.30361,-0.38594 0.60722,-0.77189 0.91082,-1.15783 1.38226,-1.6147 2.29916,-3.29573 3.29612,-5.17794 0.87615,-1.65412 1.82815,-3.26875 2.65842,-4.94636 0.35114,-0.7095 0.6335,-1.45102 0.95025,-2.17653 0.52812,-1.05625 2.02188,-0.30937 1.49376,0.74688 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6398"
d="m 586.18253,272.78651 c -1.51817,2.68843 -2.5663,5.68161 -4.21794,8.2973 -1.02457,1.62262 -2.44134,3.07051 -3.58303,4.61908 -0.9702,1.27995 -0.63816,0.7011 -1.12003,1.65935 -0.72567,1.22457 -2.45748,0.19831 -1.73181,-1.02626 v 0 c 1.02299,-0.8698 0.46405,-0.31247 1.5534,-1.78725 1.91394,-1.75172 0.48054,-0.25903 2.09972,-2.5448 0.43418,-0.61292 0.94508,-1.1696 1.3713,-1.78809 1.71507,-2.48875 2.99921,-5.23789 4.20154,-8.00006 0.40357,-1.00894 1.83042,-0.4382 1.42685,0.57073 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6400"
d="m 591.25314,274.24907 c -0.3836,0.78893 -2.48182,5.08117 -2.76139,5.75661 -0.37472,0.90533 -0.55165,1.88834 -0.9664,2.77605 -1.11955,2.39622 -1.46826,1.99101 -2.82018,4.15196 -0.37473,0.59898 -0.62967,1.26505 -0.94451,1.89757 -0.45076,1.41005 -1.06007,2.7578 -1.67455,4.10122 -0.71242,1.19686 -2.40504,0.18935 -1.69262,-1.00751 v 0 c 0.80012,-1.21403 1.39988,-2.52705 2.09762,-3.80229 1.03087,-1.91813 1.07175,-2.07488 2.24265,-3.92657 0.44331,-0.70106 0.96622,-1.35302 1.36747,-2.07897 1.48182,-2.68095 2.5875,-5.61311 3.53146,-8.51625 0.45833,-1.14583 2.07878,-0.49765 1.62045,0.64818 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6402"
d="m 596.41003,284.22452 c -1.5773,2.4367 -2.34456,5.28427 -3.90616,7.72759 -0.89162,1.39508 -2.09382,2.68364 -3.10471,4.00373 -0.95646,0.95646 -2.30909,-0.39618 -1.35263,-1.35263 v 0 c 3.56129,-2.83402 5.17287,-7.18926 6.91089,-11.25026 0.61629,-1.02714 2.0689,-0.15558 1.45261,0.87157 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6404"
d="m 605.6216,279.28628 c -3.44532,5.39723 -7.0766,10.68116 -11.29781,15.50354 -1.33072,0.98802 -1.83987,2.47529 -2.82322,3.72076 -0.72937,1.08056 -2.2575,0.0491 -1.52813,-1.03149 v 0 c 1.05248,-1.24921 1.88171,-2.66362 3.18634,-3.69172 1.17655,-1.30568 2.43462,-2.54038 3.5492,-3.89934 2.89897,-3.53458 5.16597,-7.53888 7.55123,-11.41918 0.57801,-0.96335 1.9404,-0.14592 1.36239,0.81743 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6406"
d="m 607.74795,284.52292 c -1.16399,2.95673 -3.07661,5.47404 -4.77055,8.11918 -0.38023,0.59375 -0.67147,1.24111 -1.04637,1.83824 -0.71018,1.13117 -1.03915,1.46766 -1.84454,2.43083 -1.21911,1.6038 -0.45905,1.51627 -2.46929,-0.14103 0.25366,-1.39514 2.22669,-1.03641 1.97303,0.35873 v 0 c -2.4755,-0.47821 -1.95962,0.10533 -0.92128,-1.33991 3.29153,-3.46554 5.78517,-7.58619 7.6674,-11.97184 0.49907,-0.99816 1.91068,-0.29235 1.4116,0.7058 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6408"
d="m 614.02394,284.0819 c -1.3847,3.12574 -2.84514,6.16366 -5.0009,8.83929 -0.58668,0.72816 -1.28705,1.35887 -1.88257,2.07983 -2.93451,3.55265 0.0567,0.48948 -2.94272,3.40463 -0.66461,0.61016 -1.0192,1.46683 -1.78464,1.94861 -1.30624,0.65312 -2.22989,-1.19419 -0.92365,-1.84731 v 0 c -0.46573,0.93074 2.12687,-1.88974 1.5316,-1.14351 1.62041,-1.78134 3.28511,-3.52079 4.89325,-5.31339 0.6806,-0.75867 1.45758,-1.44435 2.02479,-2.29115 1.05457,-1.57438 2.12066,-4.49888 2.81268,-6.22221 0.38553,-0.89956 1.65768,-0.35435 1.27216,0.54521 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6410"
d="m 619.01825,286.92942 c -0.50598,0.98106 -2.77543,5.44241 -3.46045,6.55279 -0.5262,0.85294 -1.18594,1.61697 -1.73693,2.45412 -0.41468,0.63005 -0.72782,1.32446 -1.15788,1.94411 -0.78627,1.13289 -1.20712,1.45848 -2.12811,2.32895 -1.73355,1.60785 -1.46163,1.39286 -2.49954,-0.75281 0.76739,-1.22783 2.5038,-0.14257 1.73641,1.08525 v 0 c -1.34023,-1.51419 -1.5534,-0.93532 -0.5128,-1.60838 1.43054,-1.19798 2.08038,-2.54369 3.30105,-3.96702 0.60984,-0.71109 1.37485,-1.29184 1.91357,-2.05823 0.79659,-1.13325 2.80907,-5.41148 3.33677,-6.49646 0.36605,-0.85412 1.57397,-0.33644 1.20791,0.51768 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6412"
d="m 625.50476,287.90844 c -0.0472,2.33571 0.17519,3.28941 -0.94535,5.51985 -0.78976,1.57202 -2.43761,3.03158 -3.65435,4.24658 -2.08188,2.07889 -1.17797,1.06939 -2.74053,2.95452 -0.73243,0.84889 -1.50375,2.35232 -2.77233,0.63874 -0.24485,-0.33074 0.0289,-0.82252 0.0433,-1.23378 0.24885,-1.37997 2.20041,-1.02804 1.95156,0.35192 v 0 c -1.13356,0.46471 -2.35388,-0.19483 -0.65199,-1.08776 0.44817,-0.4253 0.87821,-0.87057 1.34452,-1.27589 2.45141,-2.13082 5.45099,-3.93869 5.94867,-7.48413 0.10689,-0.76148 -0.11428,-1.53364 -0.17143,-2.30047 -0.23305,-1.16526 1.41488,-1.49485 1.64794,-0.32958 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6414"
d="m 633.13103,289.74527 c -7.27087,12.39883 3.19674,-5.28332 -3.77391,5.97863 -0.44374,0.7169 -0.73461,1.5236 -1.20045,2.22633 -0.93004,1.40299 -2.16672,2.31334 -3.59948,3.11844 -1.07904,0.0278 -0.52169,0.1118 -1.65744,-0.33476 -1.15025,-0.94111 0.18069,-2.56781 1.33093,-1.6267 v 0 c -0.51185,-0.0823 -0.42574,-0.21418 -0.43708,0.17975 2.08305,-0.75716 3.23544,-2.61475 4.51888,-4.32913 2.60409,-3.47845 1.44853,-1.69586 3.61128,-5.72996 0.36586,-0.85367 1.57313,-0.33627 1.20727,0.5174 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6416"
d="m 639.68892,288.22721 c -0.9367,5.6079 -4.46547,6.98479 -8.18542,10.40655 -1.44753,1.76054 -1.04542,1.45006 -2.31741,-0.77469 0.60319,-1.2667 2.39458,-0.41366 1.79139,0.85304 v 0 c -0.5156,-0.30499 -1.0312,-0.60997 -1.54679,-0.91496 0.0737,0.0163 0.1537,0.0828 0.221,0.0487 0.29686,-0.15036 0.54439,-0.38285 0.81659,-0.57428 2.62778,-1.84067 5.7837,-3.76132 6.97193,-6.93989 0.29234,-0.78203 0.32783,-1.63728 0.49175,-2.45592 0.24847,-1.24236 2.00543,-0.89097 1.75696,0.3514 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6418"
d="m 647.03798,285.23519 c -0.83186,4.22456 -3.2447,6.78855 -5.92016,9.91382 -2.15845,2.52132 -0.64504,1.09949 -2.94146,3.02277 -0.51755,0.47869 -1.7122,2.32602 -2.76443,1.69059 -0.48811,-0.29476 -0.61702,-0.95907 -0.92553,-1.4386 -0.36477,-1.2995 1.47299,-1.81536 1.83777,-0.51586 v 0 c -0.21244,-0.0206 -0.42896,-0.10795 -0.63731,-0.0617 -0.097,0.0215 -0.27311,0.25198 -0.17425,0.2419 0.68032,-0.0693 1.02508,-1.27837 1.69157,-1.16073 0.32931,-0.33486 2.69831,-2.74541 2.79951,-2.83947 0.60725,-0.56438 1.34158,-0.99556 1.88769,-1.61929 1.78607,-2.03989 2.88828,-4.60856 3.43256,-7.23345 0,-1.21201 1.71404,-1.21201 1.71404,0 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6420"
d="m 648.9482,287.88665 c -0.0121,1.32878 0.12371,3.22843 -0.49015,4.49511 -0.96053,1.98205 -1.57439,1.68533 -3.03013,2.93573 -1.24115,1.06607 0.24343,0.5469 -1.45635,0.90965 -2.32956,-1.46261 -0.98348,-1.2223 0.049,-3.14689 0.74621,-1.1815 2.4171,-0.1262 1.67089,1.0553 v 0 c -1.1424,1.77324 -0.25724,1.05101 -0.80171,0.69695 -0.36136,-0.23499 -0.76051,-0.40602 -1.14077,-0.60902 -0.12619,0.54507 -0.10941,0.23804 0.65895,-0.29694 1.48579,-1.03452 2.54736,-1.80444 2.85215,-3.7416 0.10188,-0.64755 0.0189,-1.31089 0.0284,-1.96634 -0.23472,-1.17363 1.42505,-1.50558 1.65977,-0.33195 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6422"
d="m 655.98036,287.89443 c 0.0626,1.57534 0.44888,3.88394 -0.82631,5.20142 -0.48688,0.50303 -2.00115,0.91596 -2.36836,-0.18975 -0.18958,-0.57088 0.38298,-1.14049 0.57447,-1.71074 1.18251,-2.49385 3.62157,-4.1346 5.79885,-5.72245 0.40518,-0.17572 0.78356,-0.43527 1.21553,-0.52715 1.14849,-0.24429 2.51001,0.10412 2.92682,1.33705 0.0976,0.28858 -0.29133,1.62017 -0.37182,1.92635 -0.23174,0.39124 -0.48448,0.77078 -0.69522,1.17373 -0.17257,0.32996 -0.63941,1.58808 -0.83907,1.86347 -0.33027,0.45552 -0.98377,0.687 -1.16796,1.21865 -0.0202,0.0582 0.11404,0.0469 0.17107,0.0703 1.65866,-4.2601 -1.5289,-0.4292 -1.56216,-1.05704 -0.0437,-0.82497 2.46341,-3.40425 3.05681,-4.05461 1.06929,-1.27249 2.54141,-2.00755 3.96373,-2.79907 0.40305,-0.2243 0.77623,-0.51601 1.21149,-0.66867 0.68167,-0.23908 1.42926,-0.21177 2.14138,-0.3331 2.03135,0.46502 1.82678,1.84178 1.46447,3.46691 -0.0434,0.19454 -0.0161,0.41777 -0.12499,0.58475 -0.19204,0.29461 -0.49592,0.49877 -0.74388,0.74815 -0.70484,-0.48737 0.0592,0.78209 -0.0808,0.62535 -1.87873,-2.10277 -1.25449,-1.35448 0.67746,-2.7214 1.07801,-0.69441 2.06006,0.83012 0.98205,1.52453 v 0 c -1.64356,1.15126 -0.28666,0.12498 -1.30157,1.03932 -0.28367,0.25556 -0.50474,0.84791 -0.87183,0.74293 -2.05911,-0.58891 -1.37299,-1.63987 -0.72093,-2.54885 0.48888,0.0934 0.19617,-0.55833 0.43294,-1.13952 0.22926,-0.56276 0.76087,-0.38654 0.57241,-0.28729 -0.10818,0.057 -0.24435,-0.009 -0.36653,-0.014 -0.99595,-0.49164 -1.46223,0.19491 -2.33312,0.67883 -1.24698,0.69288 -2.69052,0.84486 -3.48822,2.17733 -0.30599,0.3959 -0.59357,0.80675 -0.91797,1.18772 -0.75299,0.8843 -0.80321,0.65297 -1.38566,1.64529 -0.29748,0.5068 -0.59237,1.94792 -1.34113,1.94296 -0.57502,-0.004 -0.80887,-0.81756 -1.2133,-1.22634 0.2531,-0.46388 0.35998,-1.01499 0.69137,-1.42661 0.16403,-0.20374 0.46616,-0.24868 0.66034,-0.42392 0.72817,-0.65714 0.71863,-1.61269 1.17165,-2.43014 0.0982,-0.27143 0.19648,-0.54286 0.29471,-0.8143 -0.0259,0.0477 -0.13143,0.15147 -0.0778,0.14301 0.18512,-0.0292 0.42892,-0.0493 0.52039,-0.21283 0.0655,-0.11712 -0.27192,0.0327 -0.40257,0.002 -1.0645,-0.2494 0.64367,-0.33883 -1.24385,-0.0546 -1.42764,1.2141 -0.64995,0.65178 -2.34814,1.66591 -0.38035,0.32301 -0.62931,0.77509 -0.96233,1.1467 -0.67782,0.75637 -1.34776,1.45592 -1.73214,2.4296 -0.32805,-0.36771 -0.42324,-0.56379 -1.23124,-0.30626 -0.14998,0.0478 -0.21808,0.51957 -0.0697,0.46707 0.76905,-0.27205 0.76939,-3.51864 0.5931,-4.0073 -0.23583,-1.17913 1.43172,-1.51265 1.66755,-0.33351 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6424"
d="m 550.58521,248.68424 c 0.22409,0.92323 0.42565,1.85221 0.67226,2.76967 0.25245,0.93916 0.56985,1.85999 0.8245,2.79856 0.65824,2.42617 1.14608,4.82738 2.28003,7.08237 0.58158,1.20404 1.29709,2.34215 1.8852,3.54094 0.0435,0.0887 -0.24625,-0.29463 -0.15774,-0.25081 0.20513,0.10157 0.35393,0.29038 0.53089,0.43557 0.11565,0.13757 0.2313,0.27515 0.34695,0.41272 0.57874,1.40551 -1.40895,2.22397 -1.98769,0.81846 v 0 c 0.0364,0.0314 0.0728,0.0628 0.10925,0.0942 -0.44423,-0.54457 -1.10743,-1.24506 -1.37996,-1.93454 -0.11939,-0.30203 -0.10417,-0.64684 -0.22691,-0.94752 -0.20053,-0.49126 -0.49069,-0.94097 -0.73603,-1.41145 -0.36518,-0.74342 -1.19608,-2.32299 -1.36582,-3.13401 -0.12819,-0.61248 10e-4,-1.25761 -0.10432,-1.87435 -0.47769,-2.78543 -1.93989,-5.30694 -2.16798,-8.15353 -0.17411,-1.04465 1.30326,-1.29088 1.47737,-0.24623 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6426"
d="m 555.84023,262.30321 c 0.19887,0.99009 0.39775,1.98018 0.59662,2.97026 0.25506,0.87511 0.56923,1.73511 0.76519,2.62532 0.1723,0.78271 0.18799,1.59314 0.33676,2.38067 0.3517,1.86177 0.90327,3.71595 1.48759,5.5154 0.0489,0.37773 0.0978,0.75547 0.14666,1.1332 0.0206,0.0856 0.14888,0.26975 0.0618,0.25674 -1.88762,-0.28206 -1.78788,-1.29221 -2.12173,-2.97582 -0.317,-1.17205 1.34054,-1.62036 1.65753,-0.4483 v 0 c 0.14781,0.49856 0.2844,1.00059 0.44344,1.49568 0.16912,0.5265 0.49369,1.01738 0.54083,1.56836 0.17789,2.07944 -3.58613,1.76944 -2.40405,-0.6676 -0.11611,-0.53172 -0.19419,-1.0732 -0.34834,-1.59517 -0.19903,-0.67396 -0.57647,-1.29528 -0.70905,-1.98539 -0.13177,-0.68591 0.002,-1.39979 -0.0747,-2.09404 -0.28529,-2.58648 -1.09543,-5.11432 -1.87606,-7.58033 -0.42354,-1.05885 1.0739,-1.65783 1.49744,-0.59898 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6428"
d="m 555.85963,264.11527 c 0.90271,2.59589 1.72446,5.26483 2.93353,7.74297 0.57207,1.17254 1.38598,2.23056 1.99881,3.38569 0.13024,0.34452 0.19425,0.72201 0.39072,1.03354 0.16265,0.25792 1.89923,1.24576 0.61849,1.32873 -0.37144,0.0241 -0.46888,-0.5912 -0.77289,-0.80595 -0.0986,-0.0697 -0.3037,0.10974 -0.36223,0.004 -0.0859,-0.15496 0.0485,-0.35102 0.0727,-0.52653 0.1055,-1.26604 1.89595,-1.11684 1.79045,0.14921 v 0 c -0.0208,0.54259 0.16416,1.13435 -0.0625,1.62778 -0.53008,1.15397 -1.85182,0.51798 -2.52823,0.15009 -0.32781,-0.17829 -0.50272,-1.66888 -0.76396,-2.01748 -0.35711,-0.75866 -0.84736,-1.45082 -1.19139,-2.21551 -0.22473,-0.49953 -0.31768,-1.0504 -0.52857,-1.55594 -0.29894,-0.71662 -0.70397,-1.38612 -0.99842,-2.10459 -0.76716,-1.87194 -1.29377,-3.83659 -2.07803,-5.70229 -0.34919,-1.04759 1.13232,-1.54142 1.48152,-0.49384 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6430"
d="m 560.58003,268.08363 c 0.47323,2.85665 1.06178,5.83636 2.49909,8.39763 0.40653,0.72444 1.04247,1.29998 1.47137,2.0114 0.54417,0.90264 0.87989,1.91718 1.38078,2.84453 -0.10586,-0.0993 0.58339,1.41552 1.10659,1.23625 0.55263,-0.18935 -0.50999,-0.33432 -0.57174,-0.57485 -0.11794,-0.45949 -0.0931,-0.94419 -0.1396,-1.41629 -0.12657,-1.30792 1.72311,-1.48692 1.84968,-0.179 v 0 c 0.20456,1.31769 0.5523,2.0498 -0.20218,3.31522 -0.17963,0.30126 -0.52891,0.52576 -0.87462,0.58504 -1.55555,0.26675 -2.19632,-0.94071 -2.69295,-2.11924 -1.15171,-2.84259 0.27131,0.45201 -1.5037,-2.83483 -1.84433,-3.41519 -3.02702,-7.18748 -3.91155,-10.9481 -0.22469,-1.12347 1.36413,-1.44123 1.58883,-0.31776 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6432"
d="m 565.7769,273.87575 c 0.79225,1.76555 1.22369,3.67755 2.01492,5.44302 0.34226,0.76368 0.821,1.45872 1.21428,2.19742 0.34648,0.65076 0.62991,1.33551 1.0047,1.97039 0.35887,0.60792 1.83797,2.66245 2.29314,3.30189 0.20232,0.40387 0.83817,1.87734 1.33891,2.27524 0.0726,0.0577 0.29871,-0.1291 0.21742,-0.17382 -1.07795,-0.59301 -1.03788,0.78191 -1.17887,-1.53308 -0.61374,-3.26973 0.12802,-0.21697 -1.21335,-3.47507 -0.28056,-0.68146 -0.46223,-1.39956 -0.69334,-2.09934 -0.44833,-1.03579 1.01649,-1.66981 1.46482,-0.63403 v 0 c 0.77854,1.99626 1.62314,3.96458 2.35182,5.9799 0.12953,0.8962 0.51365,2.60728 -0.0955,3.39982 -0.63378,0.82458 -1.9324,-0.063 -2.32637,-0.48215 -0.61898,-0.6585 -0.73107,-1.70309 -1.49724,-2.26032 -1.34808,-2.68952 -3.02473,-5.19219 -4.23868,-7.95751 -0.40018,-0.91161 -0.68793,-1.86934 -1.07565,-2.78632 -0.34341,-0.8122 -0.74434,-1.59887 -1.11651,-2.3983 -0.54288,-1.08575 0.99261,-1.85349 1.53549,-0.76774 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6434"
d="m 570.06441,275.4081 c 0.27836,1.08572 0.45512,2.2027 0.83509,3.25717 0.38647,1.07253 0.9508,2.07268 1.45406,3.09562 1.13464,2.30625 1.67565,3.3417 3.03961,5.4411 2.55506,3.93274 0.75163,0.72068 2.62625,4.24345 2.6835,3.1426 -0.42082,-0.54412 1.91837,2.38146 0.21112,0.26405 0.39699,0.55983 0.66526,0.76555 0.0898,0.0689 0.44835,-0.0258 0.33944,0.005 -2.1044,0.59392 -1.59429,0.8452 -1.94481,-0.95903 0.0361,-2.58909 0.16553,-1.26392 -0.45429,-3.96851 -0.21178,-1.1007 1.34484,-1.4002 1.55662,-0.2995 v 0 c 0.70745,2.80425 0.43356,1.48068 0.8632,3.9619 0.20063,1.6609 0.58169,1.70144 -1.4309,2.80352 -0.14607,0.08 -0.17246,-0.28525 -0.26807,-0.4216 -0.82996,-1.18362 -1.74897,-2.3077 -2.4276,-3.59284 -0.83418,-1.41557 -1.50321,-2.92764 -2.38782,-4.31225 -0.54069,-0.84629 -1.29516,-1.54562 -1.81403,-2.40546 -0.5933,-0.9832 -1.0023,-2.06644 -1.50696,-3.09795 -2.09376,-4.27962 -1.14895,-1.99559 -2.68548,-6.35687 -0.38233,-1.14698 1.23974,-1.68767 1.62206,-0.54069 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6436"
d="m 575.83603,278.74568 c 1.33251,4.20786 0.21152,1.1664 2.24813,5.41667 1.46338,3.05398 1.90448,4.4382 4.35008,6.77466 0.57906,0.36784 0.97014,0.96987 1.52882,1.36184 0.0315,0.0221 0.11711,-0.0869 0.0788,-0.0842 -0.49155,0.0344 -1.03837,0.42431 -1.4671,0.18141 -0.29292,-0.16595 0.0532,-0.67686 0.005,-1.01 -0.077,-0.5272 -0.25253,-1.03523 -0.37879,-1.55285 -0.11768,-0.61918 -0.23536,-1.23836 -0.35304,-1.85754 -0.28504,-1.21791 1.43735,-1.62102 1.72239,-0.40311 v 0 c 0.14581,0.59628 0.29161,1.19255 0.43742,1.78882 0.44262,1.85445 1.4417,3.71535 -1.11838,4.51857 -1.13226,0.35524 -0.0347,-2.68227 -1.67813,-1.7195 -0.36619,-0.40204 -0.76569,-0.77609 -1.09856,-1.20612 -1.42868,-1.8457 -2.36887,-4.03678 -3.39444,-6.10881 -0.47394,-0.95754 -0.9824,-1.89782 -1.45046,-2.85824 -0.38643,-0.79293 -0.74174,-1.60064 -1.11261,-2.40096 -0.59443,-1.18886 1.08687,-2.02951 1.6813,-0.84065 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6438"
d="m 580.61968,282.36426 c 0.46125,0.8119 0.95471,1.60633 1.38375,2.4357 0.43797,0.84663 0.76326,1.74933 1.21532,2.58853 0.23986,0.44526 2.09692,3.40578 2.54818,4.0058 0.6145,0.81707 1.34681,1.53862 2.00763,2.3187 -2.56417,0.0938 1.30724,1.06249 0.99805,0.77613 -0.2025,-0.18754 -0.5241,-0.20015 -0.73914,-0.37316 -0.0505,-0.0406 0.0401,-0.12575 0.0385,-0.19053 -0.007,-0.29378 -7.4e-4,-0.59243 -0.0648,-0.87923 -0.10594,-0.47407 -0.29466,-0.92577 -0.44199,-1.38865 -0.14238,-0.62616 -0.28477,-1.25231 -0.42716,-1.87847 -0.35229,-1.12537 1.23923,-1.62359 1.59152,-0.49821 v 0 c 0.24282,0.65097 0.48565,1.30194 0.72847,1.95291 0.0935,0.55919 0.4941,2.69524 0.40561,3.24904 -0.46502,2.91036 -2.3412,1.79048 -3.59707,0.39021 -2.5504,-3.8265 -4.65731,-7.92303 -7.32334,-11.67052 -0.59274,-1.18547 1.08377,-2.02372 1.67651,-0.83825 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6440"
d="m 586.918,285.34659 c 1.94677,3.98134 3.57065,8.49096 7.06466,11.40707 0.021,-0.0139 0.47081,-0.24415 0.39297,-0.40663 -0.0435,-0.0909 -0.24684,-0.029 -0.27501,-0.12583 -0.0777,-0.26685 0.0579,-0.56288 -0.004,-0.83376 -0.1082,-0.47147 -0.33318,-0.90826 -0.49977,-1.36239 -0.1293,-0.58775 -0.25861,-1.1755 -0.38791,-1.76324 -1.93319,-5.7737 0.46236,1.80303 -0.88914,-3.85805 -0.2081,-0.87164 -1.18503,-2.19218 -0.99579,-3.1822 0.0625,-0.32694 0.27445,-0.60651 0.41167,-0.90976 0.63413,0.38357 1.43699,0.57395 1.90238,1.1507 0.26617,0.32986 -0.0671,0.86357 0.0514,1.27054 0.16879,0.57986 0.5448,1.07845 0.7927,1.62915 0.26478,0.58821 0.44447,1.21522 0.7447,1.78615 0.74714,1.42079 1.71047,2.71693 2.56882,4.07343 0.71604,1.17472 1.74728,2.10323 2.55317,3.20653 0.31837,0.43586 0.53014,0.9453 0.86358,1.36974 0.22722,0.28925 0.50453,0.54264 0.8052,0.75452 0.0568,0.04 0.23906,0.0162 0.20374,-0.0435 -0.11655,-0.19727 -0.33665,-0.3109 -0.50498,-0.46635 0.0588,-0.166 0.11756,-0.332 0.17633,-0.49801 0.36346,-1.25569 2.13928,-0.74168 1.77582,0.51401 v 0 c -0.19252,0.48031 -0.38505,0.96061 -0.57757,1.44091 -0.54307,0.274 -1.02278,0.77463 -1.62921,0.822 -0.59585,0.0465 -1.33856,-1.25149 -1.56341,-1.55877 -1.1324,-1.54747 -2.31858,-3.05955 -3.28029,-4.72498 -1.63072,-2.27148 -3.6148,-5.14604 -4.65748,-7.76257 -0.18513,-0.46457 -0.71966,-1.05338 -0.40732,-1.44394 0.3245,-0.40577 1.03914,0.003 1.55871,0.004 0.0696,-0.2368 0.0758,-0.50245 0.20875,-0.71041 0.0732,-0.11447 -0.0269,0.27198 -0.015,0.40732 0.029,0.33027 0.069,0.66068 0.13744,0.9851 0.11334,0.53752 0.30147,1.05786 0.40699,1.59697 0.63656,3.25206 -0.29101,0.22133 0.93043,3.67787 0.37767,1.10462 1.47832,4.0736 1.22448,5.19051 -0.37999,1.6719 -1.96556,1.6203 -3.2025,1.24626 -3.26293,-3.57597 -5.13068,-8.15655 -7.36688,-12.38835 -0.34945,-1.04835 1.13314,-1.54254 1.48259,-0.49419 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6442"
d="m 602.22964,295.3406 c 1.08304,2.61652 1.63992,3.04941 3.96456,4.31724 0.23487,0.1281 0.42187,0.36382 0.68316,0.42126 0.10869,0.0239 0.0737,-0.24879 0.18026,-0.28099 -0.14227,0.0265 -0.26105,0.30952 -0.37802,0.22194 -0.3905,-0.29236 -0.0222,-0.98295 -0.13742,-1.45696 -0.0861,-0.35448 -0.3169,-0.65848 -0.44198,-1.00117 -0.13763,-0.37707 -0.22972,-0.76924 -0.34457,-1.15386 -0.13217,-0.3991 -0.19511,-0.82826 -0.39649,-1.19731 -0.17169,-0.31463 -0.46707,-0.54381 -0.70152,-0.81492 -0.0831,-0.0961 -0.37517,-0.25878 -0.25121,-0.28681 0.40529,-0.0916 0.85743,0.21183 1.24503,0.0621 0.73881,-0.28542 0.14152,-1.54736 0.63905,0.017 0.24209,1.22569 1.08072,1.67912 1.95298,2.48659 0.38925,0.36034 0.70592,0.79747 1.11397,1.13638 0.80116,0.66543 1.41671,0.88758 2.3307,1.31438 0.60607,0.52316 1.25969,0.94744 2.06227,0.53987 0.0662,-0.0336 -0.21036,0.0231 -0.21677,-0.0508 -0.0181,-0.2089 0.12677,-0.40137 0.15965,-0.60846 0.0375,-0.23624 0.0337,-0.4772 0.0506,-0.7158 -0.5318,-1.0369 -0.94844,-2.14121 -1.47587,-3.18183 -0.0675,-0.13314 -0.38354,-0.26119 -0.26957,-0.35758 0.54306,-0.45928 1.25448,-0.67058 1.88172,-1.00587 1.36839,1.06807 2.80447,3.01092 4.54245,3.45339 0.3746,0.0954 0.76627,0.10256 1.14941,0.15384 0.67762,0.0731 1.161,0.89718 1.85616,0.99493 0.69537,0.0978 -0.34761,-0.3362 -0.43881,-0.50381 -0.10545,-0.19381 -0.0841,-0.43341 -0.13768,-0.64745 -0.0698,-0.27916 -0.15482,-0.55431 -0.23224,-0.83146 -0.20507,-0.93211 -0.30474,-1.885 -0.72786,-2.75656 -0.11145,-0.22958 -0.27869,-0.42806 -0.43162,-0.63237 -0.0462,-0.0618 -0.2245,-0.1155 -0.16397,-0.16334 0.5223,-0.41276 1.13265,-0.69983 1.69898,-1.04974 2.11617,2.10474 4.38399,3.94945 7.0591,5.29543 -1.42727,0.24639 2.82598,1.00263 2.10528,0.6708 -1.0121,-0.46599 -0.35001,0.56539 -0.94423,-1.22876 -0.60267,-0.82254 -0.312,-0.37047 -0.85209,-1.36881 -0.66548,-1.21327 1.05035,-2.15441 1.71583,-0.94113 v 0 c 0.51222,1.17204 0.17022,0.53486 1.12272,1.85638 0.0668,0.47441 0.33516,2.04261 0.16276,2.44404 -0.85133,1.98237 -3.01701,0.93135 -4.18072,0.055 -0.99997,-0.52579 -1.90833,-0.96583 -2.83451,-1.65021 -0.52726,-0.38961 -0.98208,-0.86911 -1.48717,-1.28707 -2.32789,-1.92636 -0.3773,-0.28559 -2.34708,-1.71439 -0.29094,-0.21104 -0.55962,-0.45119 -0.83943,-0.67678 0.33486,-0.57975 0.49237,-1.30812 1.00458,-1.73926 0.17437,-0.14678 0.32732,0.32318 0.44816,0.51643 0.20175,0.32263 0.36054,0.67117 0.51259,1.01998 0.40849,0.93706 0.9368,1.92778 0.94206,2.95693 0.0515,0.36113 0.10182,0.72243 0.15446,1.0834 0.0668,0.45798 0.3186,0.92506 0.20382,1.37343 -0.25804,1.00805 -1.25279,1.79625 -2.29848,1.78316 -0.60587,-0.008 -0.8722,-1.11669 -1.63958,-0.78483 -1.5538,-0.84475 -0.73937,-0.49808 -2.44556,-1.03468 -1.15699,-0.6105 -1.18138,-1.0083 -2.1006,-1.78601 -0.30926,-0.26166 -0.66921,-0.4579 -0.98659,-0.70965 -0.25124,-0.19929 -0.47792,-0.42773 -0.71688,-0.6416 0.34216,-0.47452 0.53211,-1.11075 1.02647,-1.42356 0.1849,-0.117 0.23568,0.37412 0.30298,0.58233 0.31975,0.98908 0.0991,1.06019 0.56013,1.86653 0.16682,0.29175 0.45046,0.51482 0.57916,0.82526 0.18598,0.44864 0.23289,0.94299 0.34934,1.41449 -0.0282,0.93852 0.11778,1.56169 -0.57384,2.34125 -0.89086,1.00415 -2.58056,1.18895 -3.74612,0.53722 -0.26622,-0.14885 -0.35556,-0.49567 -0.53335,-0.74351 -2.45355,-1.58213 -4.81805,-3.43494 -6.41545,-5.91584 -0.50148,-1.28437 -0.45746,-2.43298 1.45484,-2.03499 0.5018,0.10444 1.69399,2.63572 1.71772,3.17093 0.59084,1.56335 1.63774,3.54038 0.8659,5.23493 -0.0923,0.20257 -0.31572,0.31387 -0.47358,0.47081 -0.6405,0.2068 -1.25798,0.52029 -1.96444,0.25251 -0.32113,-0.12173 -0.5349,-0.43143 -0.78995,-0.66142 -0.40815,-0.36806 -0.80079,-0.75299 -1.19881,-1.132 -2.32627,-2.21512 -1.29759,-1.05367 -3.24298,-3.76368 -0.66109,-1.10181 0.89711,-2.03674 1.5582,-0.93492 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6444"
d="m 629.74305,292.5309 c 2.46355,1.89523 0.85981,0.81881 3.53335,2.26428 0.52579,0.28427 1.00483,0.66455 1.56238,0.87995 0.66057,0.25521 1.40119,-0.09 1.91238,0.51271 -0.62135,-0.5169 -0.57669,-1.50416 -0.7676,-2.31035 -0.004,-0.37887 0.12018,-0.74723 0.1298,-1.1244 0.005,-0.20221 -0.2504,-0.51542 -0.0681,-0.603 1.47982,-0.71079 1.23525,-0.64992 2.30058,-0.45327 0.26436,0.0205 0.52829,0.0474 0.79306,0.0616 1.01323,0.0544 1.77322,0.31946 2.7238,0.66595 0.24065,0.0877 0.45876,0.26054 0.71376,0.28458 0.2978,0.0281 0.59156,-0.0891 0.88734,-0.13366 0.42423,-0.31136 1.03649,0.12552 1.4714,-0.10385 0.14037,-0.074 -0.4179,0.0586 -0.46707,-0.0923 -0.0517,-0.15883 0.22446,-0.25062 0.30824,-0.39513 0.0497,-0.0857 0.13374,-0.37126 0.0858,-0.28455 -0.0744,0.13457 -0.11089,0.28683 -0.16634,0.43024 -1.07851,0.21128 0.89701,-1.55624 0.96002,-1.62576 0.11442,-0.12624 0.1534,-0.31429 0.28147,-0.42665 0.0767,-0.0673 0.20237,-0.0379 0.29547,-0.0795 0.29241,-0.13082 0.571,-0.29058 0.8565,-0.43587 0.19344,-0.0679 0.37636,-0.1829 0.58031,-0.20377 0.69583,-0.0712 1.0431,0.22724 1.74098,0.31189 0.98546,0.11953 1.73356,-0.19675 2.72013,-0.0639 0.0393,-0.36987 1.11126,0.13417 1.21414,-0.1706 0.22417,-0.66405 -0.0931,-0.263 0.59621,-0.79141 0.24066,-0.20282 0.6676,-1.08376 0.89603,-1.17843 0.34576,-0.14329 0.74967,-0.0895 1.10179,-0.21636 0.10082,-0.0363 -0.37154,0.0233 -0.31438,-0.0673 0.13122,-0.20811 0.4097,-0.27251 0.61455,-0.40876 0.32568,-0.0841 0.64307,-0.29225 0.97704,-0.25225 0.76594,0.0917 1.5286,0.66163 2.217,0.9849 0.64453,0.30268 1.42525,0.26356 2.12293,0.39487 -0.67503,0.47382 1.51204,0.0662 1.17532,0.28834 -0.15954,0.10526 -0.46902,0.14743 -0.57326,-0.0128 -0.11025,-0.16943 1.12851,-0.77061 0.4378,-0.58797 -0.10004,0.0265 -0.11891,0.16939 -0.17837,0.25409 0.0163,-1.44564 2.06078,-1.42252 2.04444,0.0231 v 0 c -0.0802,0.32347 -0.12571,0.65761 -0.24072,0.97042 -0.11095,0.30174 -0.36413,0.54749 -0.6265,0.73328 -1.08322,0.76703 -1.65443,0.89452 -2.77181,0.25627 -0.69061,-0.43652 -1.49974,-0.36674 -2.27165,-0.61244 -2.99809,-0.95429 0.28482,0.16757 -0.99394,-0.70467 -0.0933,-0.0637 -0.22589,-10e-4 -0.33883,-0.002 -0.99125,0.74687 -1.08391,0.22316 -1.79238,1.44933 -0.14989,0.22448 -0.25435,0.48715 -0.44968,0.67345 -0.1638,0.15623 -0.40714,0.20048 -0.59656,0.32441 -0.35094,0.22962 -0.63708,0.56698 -1.02163,0.73433 -0.0962,0.0419 -0.15699,-0.16045 -0.26068,-0.17628 -0.0996,-0.0152 -0.19192,0.0617 -0.28787,0.0926 -0.22155,-0.0412 -0.44309,-0.0824 -0.66463,-0.12352 -1.26965,0.11529 -2.54343,-0.22867 -3.80922,-0.11755 -0.0825,0.007 -0.11339,0.15467 -0.19621,0.15253 -0.13454,-0.003 -0.24504,-0.11139 -0.36756,-0.16708 -1.20057,0.5908 0.84688,-0.4419 -0.87036,0.55344 -0.0304,0.0176 0.0526,-0.12971 0.0345,-0.0996 -0.0391,0.0653 -0.0367,0.25092 -0.0983,0.20615 -0.11913,-0.0866 -0.18152,-0.55265 -0.17575,-0.40546 0.007,0.18553 0.12034,0.3513 0.18051,0.52694 -0.11167,0.34136 -0.18767,0.69653 -0.33502,1.02407 -0.0229,0.0509 -0.11555,0.0243 -0.15456,0.0642 -0.0924,0.0945 -0.12993,0.23533 -0.22662,0.32549 -1.03288,0.96308 -1.32247,0.93267 -2.65404,1.00404 -0.8214,-0.094 -1.65931,-0.0615 -2.47032,-0.22215 -0.24351,-0.0482 -0.45296,-0.2033 -0.67944,-0.30495 -0.13805,-0.11242 -0.24306,-0.28805 -0.41415,-0.33727 -0.0389,-0.0112 -1.88847,-0.10206 -1.9157,-0.10344 -0.25364,-0.0646 -0.82122,0.0607 -0.76092,-0.19397 0.0942,-0.39784 0.67134,-0.46923 0.9811,-0.73606 0.0223,-0.0192 -0.0203,-0.11033 -0.0305,-0.0827 -0.0341,0.0921 -0.0934,0.73355 -0.094,0.74549 -0.004,0.0767 0.007,0.15351 0.0112,0.23027 0.046,0.40695 0.0245,0.82168 0.0966,1.22483 0.0558,0.31221 0.25718,0.59862 0.25817,0.91577 0.004,1.38758 -0.94863,1.84791 -2.06882,2.33166 -0.97227,-0.16064 -1.37607,-0.53536 -2.27757,-1.02515 -1.7295,-0.93964 -3.46909,-1.85351 -5.17332,-2.8429 -1.14317,-0.57158 -0.33483,-2.18826 0.80834,-1.61667 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6446"
d="m 650.422,295.83211 c -2.81766,-0.74216 -2.10095,-0.41267 -4.50838,-1.52447 -0.33252,-0.15356 -0.63184,-0.38157 -0.9784,-0.50012 -0.0557,-0.0191 -0.1686,0.16434 -0.1281,0.12161 0.40316,-0.4208 0.80632,-0.8416 1.20947,-1.2624 -0.003,-0.0195 -0.006,-0.039 -0.009,-0.0585 0.81926,3.88728 0.32478,-0.17642 -0.16399,2.2313 -0.12103,0.59619 0.39691,0.22695 0.53793,0.45389 0.0979,0.15762 0.0603,0.36668 0.1058,0.54658 0.0699,0.27634 0.16015,0.54715 0.24023,0.82073 0.13235,1.0395 -0.66646,2.11436 -1.74922,2.2296 -0.0415,0.004 -1.37796,-0.25618 -1.48858,-0.27753 -0.69131,-0.38173 -2.33775,-1.40197 -3.20916,-0.86815 -0.0577,0.0353 0.14323,0.11057 0.11093,0.17004 -0.10993,0.20243 -0.31703,0.33426 -0.47555,0.50139 -0.0784,0.0858 -0.27866,0.3652 -0.23533,0.25734 0.0735,-0.18295 0.42031,-0.66623 0.32934,-0.49131 -0.4936,0.94904 -0.4714,0.69691 -0.59279,1.40538 0.1942,1.40255 -1.50505,1.64635 -2.32948,1.23632 -1.20564,-0.80938 -0.62642,-0.49754 -1.70626,-0.99163 -0.73268,-0.61677 -0.77011,-0.8739 -1.7493,-0.89329 -0.30016,-0.006 -0.58982,0.19553 -0.88726,0.15478 -0.1949,-0.0267 -1.85766,-0.62715 -2.21022,-0.78901 -0.0213,0.0993 -0.0987,0.39309 -0.0638,0.29776 0.21911,-0.5987 0.41732,-1.20489 0.61732,-1.81024 0.009,-0.0273 -0.0143,-0.10254 0.009,-0.0858 0.24956,0.17784 0.44876,0.42118 0.70252,0.59299 0.43846,0.29685 0.95659,0.45485 1.42647,0.69898 1.20476,0.73423 2.39003,0.97959 3.77644,1.02325 0.43009,0.0136 0.8695,0.11848 1.29057,0.0298 0.31545,-0.0664 0.56025,-0.31908 0.84038,-0.47862 0.37484,-0.19415 0.72703,-0.44032 1.12452,-0.58245 0.43067,-0.15399 0.90441,-0.1567 1.33924,-0.29851 1.43765,-0.46887 1.28096,-0.60912 2.55492,-1.21021 0.65175,-0.30751 1.70454,-0.66244 2.36762,-0.89882 1.3829,-0.5923 2.69247,-1.30141 3.89008,-2.21202 0.35409,-0.26923 0.64711,-0.63053 1.04427,-0.83086 0.78819,-0.39756 1.68751,-0.5205 2.52086,-0.81175 1.38058,-0.45562 2.78616,0.0535 4.179,0.0709 0.59977,0.008 1.19772,-0.0886 1.79751,-0.0836 0.9753,-0.0809 1.69325,0.34119 2.37789,0.96705 0.0782,0.0715 -0.2164,-0.0579 -0.31697,-0.0246 -0.31939,0.10601 -0.62239,0.25617 -0.93358,0.38425 -0.41223,-0.47711 0.0207,-0.0214 -0.65542,-0.24325 -0.13076,-0.0429 -1.46935,-0.66493 -1.71328,-0.77765 -1.42943,0.68355 -3.02794,1.10388 -4.55922,1.51304 -0.5991,0.16008 -1.249,0.15439 -1.81527,0.40718 -0.55234,0.24657 -0.98166,0.70701 -1.4725,1.06051 -0.9839,0.57715 -2.94323,1.77154 -3.98112,2.18939 -1.54532,0.62213 -3.01211,0.78637 -4.59912,1.24904 -5.27643,1.53827 1.19932,-0.0228 -4.67953,1.3089 -1.06984,0.10314 -4.23374,0.43484 -5.27431,0.42403 -0.83997,-0.009 -1.67293,-0.15415 -2.50939,-0.23122 -1.09808,-0.0662 -1.00449,-1.61911 0.0936,-1.55292 v 0 c 2.44989,0.22036 4.87662,0.55369 7.26226,-0.29338 1.58188,-0.33306 3.19419,-0.54595 4.74495,-1.00248 0.72672,-0.21395 1.39999,-0.58548 2.12391,-0.80871 0.71153,-0.21941 1.47157,-0.26729 2.17326,-0.51638 1.57254,-0.55824 2.35115,-1.22881 3.70239,-2.16359 0.62129,-0.41503 1.1871,-0.9285 1.86388,-1.24508 0.60866,-0.28472 1.30494,-0.32621 1.94336,-0.53585 0.57216,-0.18789 1.11185,-0.46625 1.68365,-0.65521 0.34662,-0.11454 0.72289,-0.12719 1.06548,-0.25327 0.40497,-0.14902 0.7421,-0.47533 1.16375,-0.56707 0.54239,-0.118 1.10969,-0.0322 1.66454,-0.0482 1.18593,0.34844 2.7691,0.74591 3.56571,1.77201 0.0986,0.12704 0.13257,1.06435 0.13453,1.09326 -0.34917,0.46565 -0.5862,1.04208 -1.04752,1.39696 -0.45419,0.34941 -1.08291,-0.39299 -1.24792,-0.60887 -0.079,-0.1034 0.24927,-0.21093 -0.0699,-0.27822 -0.2229,-0.047 -0.45537,-0.0143 -0.68305,-0.0215 -1.806,-0.0627 -3.61296,-0.14224 -5.40625,-0.13579 -0.51573,0.13461 -1.51881,0.36416 -2.02175,0.61252 -0.39402,0.19456 -0.74253,0.47084 -1.12481,0.68755 -1.39118,0.78863 -2.79387,1.55102 -4.13457,2.42889 -0.97498,0.39245 -1.51257,0.63772 -2.49556,0.93202 -0.36185,0.10834 -0.74389,0.14942 -1.09739,0.28251 -3.94373,1.48475 0.83151,-0.14496 -2.70606,1.46654 -0.36235,0.16506 -0.76964,0.2045 -1.15446,0.30675 -2.41905,0.85103 -0.39272,0.32863 -2.88489,0.45797 -0.47921,0.0249 -0.94745,0.21374 -1.42679,0.19141 -1.04088,-0.0485 -2.40036,-0.69436 -3.26302,-1.24678 -0.59732,-0.46082 -1.12619,-0.69939 -1.77451,-1.02141 -0.11723,-0.0582 -0.36837,0.0196 -0.37666,-0.11108 -0.13834,-2.17999 -0.34817,-1.99558 0.74192,-2.09526 3.17564,0.79178 -1.49431,-0.47745 1.35307,0.63351 0.2156,0.0841 0.46083,0.0448 0.69193,0.0571 1.21486,0.0645 2.36282,0.11033 3.27702,1.04873 0.44741,0.22829 0.8694,0.53173 1.3555,0.6582 0.18244,0.0475 0.38892,-0.0143 0.56241,0.0595 0.0569,0.0242 -0.11133,0.0656 -0.14206,0.11921 -0.2051,0.35798 -0.28018,0.80018 -0.55896,1.10432 -0.11349,0.12382 0.006,-0.33588 0.009,-0.50382 0.0543,-0.27082 0.20487,-1.77704 0.5649,-1.91691 0.16448,-0.0639 9.3e-4,0.66283 0.10338,0.51916 1.13513,-1.59183 -0.27558,-0.79579 0.59498,-1.23026 0.85447,-1.21541 1.0211,-1.33805 2.44171,-1.17686 1.12038,0.12712 1.86103,0.15297 2.68458,0.96136 0.0844,-0.005 0.75783,-0.16085 0.95248,0.0613 0.12057,0.13763 0.072,0.48081 -0.10134,0.53949 -0.15053,0.051 0.005,-0.53711 0.18398,-0.43983 -0.18215,-1.2364 -0.85775,-1.00154 -0.71323,-2.70152 0.0196,-0.23121 0.0233,-0.61501 0.25286,-0.64859 0.22785,-0.0333 0.27818,0.36704 0.41727,0.55056 -0.73226,-0.8551 -1.07868,-0.89423 0.55691,-2.2162 0.17117,-0.13835 0.36453,0.24724 0.55392,0.35937 1.63836,0.96993 2.65862,2.18688 4.79123,2.14141 1.02061,0.1701 0.78005,1.61345 -0.24056,1.44335 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6452"
d="m 634.81376,205.34366 c -0.75383,0.53466 -1.82139,1.17645 -2.39876,1.96401 -0.83234,1.13533 0.8164,-0.27692 -0.25848,0.82545 -0.36323,0.37252 -0.82474,0.6354 -1.2184,0.9756 -0.36744,0.30483 -0.47052,0.82816 -0.81749,1.14274 -0.22553,0.20448 -0.54703,0.26923 -0.8068,0.42795 -0.78801,0.48147 -1.583,0.96182 -2.35946,1.46497 -1.04012,0.99474 -2.29054,1.69731 -3.66596,2.13087 -0.32959,0.10389 -0.73408,0.0141 -1.01374,0.21714 -0.11326,0.0822 0.16064,0.22924 0.24096,0.34385 -0.57954,0.61742 -1.50273,0.36931 -2.24337,0.48003 -0.14449,0.0216 -0.26625,0.12405 -0.40747,0.16148 -0.87778,0.23264 -1.57872,0.33524 -2.46933,0.49025 -1.98752,0.0248 -3.9623,-0.40878 -5.93878,-0.0488 -0.9356,0.13519 -1.90773,-0.20269 -2.81641,0.0707 1.2919,-1.06614 1.65947,-1.71907 0.61296,0.18303 -0.08,0.14534 -0.23344,0.25009 -0.28555,0.40758 -0.04,0.12083 0.0353,0.25419 0.0246,0.38101 -0.005,0.0588 -0.0281,-0.11468 -0.0422,-0.17202 -1.7641,-1.03295 -1.34523,-0.44282 -1.82042,-1.18302 0.78699,-1.38037 2.73913,-0.26741 1.95214,1.11297 v 0 c -0.80228,0.41942 -0.13245,0.12876 -2.1531,-0.40314 0.13838,-0.2174 0.61245,-1.26776 0.72107,-1.32526 0.14096,-0.0746 -0.0487,0.59883 0.0525,0.47558 0.40139,-0.48871 0.73563,-2.32996 0.96433,-1.63391 0.33055,0.0592 0.13757,0.0572 0.57333,-0.0808 0.12246,0.0137 0.19138,0.19157 0.31458,0.19416 0.21248,0.004 0.40074,-0.16802 0.61316,-0.17473 0.42013,-0.0133 0.80699,0.33864 1.24797,0.18106 1.91473,0.036 3.79637,0.0327 5.70559,0.0771 1.201,-0.10688 0.92947,-0.0242 2.12925,-0.38047 0.39708,-0.11793 0.77468,-0.30573 1.18083,-0.3871 1.25267,-0.25094 -0.45843,0.51371 0.64458,0.0974 0.82693,-0.62028 1.5517,-0.90713 2.54099,-1.23713 0.23739,-0.0792 0.516,-0.0533 0.72679,-0.18815 0.32032,-0.20497 0.52522,-0.55207 0.81496,-0.79838 0.28086,-0.23877 0.59496,-0.43542 0.89244,-0.65313 0.82935,-0.4298 1.34254,-0.81725 2.08496,-1.37332 0.73068,-0.54728 1.17067,-0.53938 1.61224,-1.51467 1.14742,-1.34992 2.4022,-2.74962 4.02777,-3.63432 0.97832,-0.73374 2.01598,0.64981 1.03766,1.38355 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6454"
d="m 612.70906,173.33476 c 0.81107,1.83796 2.58466,2.72486 3.3357,4.58116 0.35299,0.87245 0.31005,1.96536 0.51691,2.88625 0.35443,1.15248 1.09684,2.49082 1.25037,3.68272 0.0405,0.31455 -0.161,0.83794 -0.25866,1.13709 -0.0824,-0.41291 -0.12217,-0.8367 -0.24733,-1.23873 -0.11325,-0.36376 -1.13683,0.43898 -0.8198,0.36835 2.84675,-0.63429 0.96541,-0.56667 0.68117,-0.56613 0.085,-0.45882 -0.56578,-0.67311 -0.76269,-1.10007 -0.15473,-0.3355 -0.15923,-0.72156 -0.23884,-1.08234 -0.60559,-0.96953 -0.39336,-2.32823 -0.65606,-3.33014 -0.0782,-0.29814 -0.31755,-0.53483 -0.40963,-0.82898 -0.47043,-1.5029 0.25504,-0.55352 -0.62548,-1.48172 -0.0876,-0.39593 -0.25141,-1.33926 -0.5141,-1.66634 -0.0696,-0.0867 0.0222,0.32761 -0.0889,0.32153 -0.1378,-0.008 -0.15106,-0.23149 -0.2371,-0.33939 -0.21173,-0.26555 -0.39469,-0.56248 -0.6555,-0.78002 -0.11634,-0.097 -0.29033,-0.0867 -0.4355,-0.13001 -0.21361,-0.14177 -0.43048,-0.27874 -0.64083,-0.4253 -1.72988,-1.20526 3.50483,1.81853 -1.30165,-0.93349 -0.40757,-0.77396 2.28815,-0.94639 2.13935,-0.1751 0.43821,1.54664 -1.74908,2.16636 -2.18729,0.61972 v 0 c 0.58335,-0.46794 1.10212,-0.76029 2.063,-1.01555 -0.49498,-0.0769 -1.02662,-0.0287 -1.48492,-0.23085 -0.12305,-0.0543 0.1254,-0.28488 0.25739,-0.31072 0.39898,-0.0781 0.81663,-0.0332 1.21946,0.0217 0.053,0.007 0.0146,0.11442 0.0531,0.15158 0.30591,0.29504 0.76978,0.39983 1.00902,0.77944 0.2951,0.27624 0.53559,0.61331 0.8585,0.85647 0.63072,0.47495 1.0715,0.483 1.45707,1.26439 0.0564,0.11436 -0.0719,0.24473 -0.10777,0.36709 0.10823,0.19537 0.21646,0.39073 0.32469,0.5861 0.20537,0.33284 0.45992,0.63996 0.61609,0.99851 0.72685,1.66878 0.25667,3.64459 1.24406,5.21584 -0.0228,0.17909 -0.14012,0.3716 -0.0684,0.53727 0.0753,0.17379 0.32986,0.20007 0.4508,0.34581 1.07134,1.29111 0.81678,1.56925 0.26978,2.98729 -0.31603,0.27548 -0.55268,0.68713 -0.94811,0.82644 -0.28678,0.10102 0.45393,-0.42511 0.58612,-0.69892 0.11219,-0.23238 -0.31495,0.41848 -0.52386,0.56995 -0.13815,0.10017 -0.31747,0.13299 -0.48564,0.16196 -1.30639,0.22506 -0.81947,0.0397 -1.64736,-1.4256 0.31451,-0.0687 0.2577,-0.31658 0.1758,-0.75746 -0.19958,-1.07447 -1.22065,-1.69188 -1.1482,-2.82292 -0.0558,-0.37339 -0.13883,-0.74372 -0.16728,-1.12017 -0.0179,-0.23733 0.0796,-0.48094 0.0287,-0.71345 -0.0581,-0.26551 -0.2684,-0.4778 -0.34622,-0.73822 -0.10694,-0.3579 -0.0168,-0.77849 -0.20363,-1.10195 -0.70107,-1.21373 -2.137,-1.89893 -2.70866,-3.21636 -0.73306,-0.97741 0.64921,-2.01412 1.38227,-1.03671 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6456"
d="m 613.0818,175.62353 c 1.04691,1.79968 0.81147,1.54314 2.0114,3.08259 0.23032,0.29548 0.52664,0.54181 0.72139,0.86186 0.19097,0.31386 0.27255,0.68259 0.42247,1.01801 0.31313,0.70055 0.40698,0.804 0.81921,1.48249 0.51351,0.56258 0.3782,1.17147 0.79131,1.81803 0.29413,1.47064 -1.78568,1.8866 -2.07981,0.41596 v 0 c 0.16586,-0.52897 -0.41072,-1.11533 -0.62066,-1.51805 -0.38198,-0.8716 -0.14347,-0.37819 -0.75516,-1.46039 -0.59371,-1.30006 0.16373,-0.2227 -0.64955,-1.60481 -0.31341,-0.53262 -0.67416,-1.03592 -1.01125,-1.55387 -0.34707,-0.6153 -0.69414,-1.23059 -1.04121,-1.84589 -0.4921,-0.9842 0.89976,-1.68013 1.39186,-0.69593 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6458"
d="m 613.8075,177.02845 c 0.12022,0.20182 1.98025,3.31366 2.06261,3.49617 0.25379,0.56242 0.35628,1.1819 0.55917,1.76463 0.1674,0.48082 0.46203,0.92321 0.55116,1.42448 0.10871,0.61138 -0.007,1.24295 0.0333,1.86261 0.0349,0.53621 0.12802,1.06703 0.19203,1.60055 0.5773,1.43551 0.39035,2.9427 0.47744,4.44894 -0.0208,1.2684 -1.81457,1.23899 -1.79378,-0.0294 v 0 c -0.0525,-1.39647 -0.0787,-2.79337 -0.14038,-4.18953 -1.74479,-6.6234 0.52085,2.60599 -0.43869,-3.27564 -0.0748,-0.45873 -0.35987,-0.85981 -0.48355,-1.30785 -0.13537,-0.49039 -0.0976,-1.02764 -0.29102,-1.49819 -0.34605,-0.84203 -1.76951,-2.80437 -2.2703,-3.52576 -0.54518,-1.09036 0.99683,-1.86136 1.54201,-0.771 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6460"
d="m 617.33,182.70471 c -0.1704,2.03272 0.98504,3.73323 1.03807,5.72275 0.0144,0.53858 -0.14134,1.07663 -0.0958,1.61348 0.0392,0.46249 0.27218,0.89044 0.34707,1.34851 0.10003,0.61177 0.1174,1.23421 0.17609,1.85131 0.58904,1.88144 0.89766,3.80305 1.43053,5.70282 0.27001,1.22147 -1.4574,1.60332 -1.72741,0.38185 v 0 c -0.48012,-1.94329 -0.87247,-3.89443 -1.28008,-5.8539 -0.25694,-1.14388 -0.68072,-2.26204 -0.77552,-3.43059 -0.0376,-0.46362 0.1393,-0.92417 0.13124,-1.38925 -0.008,-0.45793 -0.12464,-0.90753 -0.17893,-1.3623 -0.37066,-3.10452 -0.0103,-1.04364 -0.79658,-4.58468 0,-1.22423 1.73132,-1.22423 1.73132,0 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6462"
d="m 621.21343,198.82272 c 0.68007,2.70868 1.35594,5.42423 2.14688,8.10345 0.18012,0.61012 0.44974,1.19498 0.58491,1.8166 0.17937,0.82493 0.15794,1.68105 0.24821,2.52041 -0.0738,1.40138 -2.05561,1.29707 -1.98185,-0.10431 v 0 c 0.48435,-1.41979 0.025,-2.45665 -0.32854,-3.89179 -0.67182,-2.72712 -1.34139,-5.45565 -2.12761,-8.15276 -0.20619,-1.03096 1.25181,-1.32256 1.458,-0.2916 z"
inkscape:connector-curvature="0" />
</g>
<g
style="filter:url(#filter6821)"
id="g6606">
<path
id="path6114"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 131.32081,563.60699 c -0.75284,0.0117 -1.52488,0.0493 -2.31346,0.1076 -3.0815,0.22777 -6.36267,0.76541 -9.70269,1.27992 -2.77683,0.42775 -5.55182,0.83207 -8.17283,1.0027 m 16.13191,-3.60581 c -0.16829,0.0122 -0.33683,0.0253 -0.5056,0.0391 -3.30368,0.27075 -6.6347,0.83102 -9.88727,1.3616 -3.23543,0.52778 -6.34758,1.01772 -9.15075,1.12094 -2.17645,0.0801 -4.16826,-0.0727 -5.88851,-0.61758 m 12.91985,-8.71395 c -0.0405,3.45263 0.4142,6.71302 0.97185,9.81873 0.8229,4.58294 1.86426,8.82737 2.02329,13.18416 -4.68569,2.40621 -6.95824,5.87551 -9.47206,9.73453 -0.10303,0.15817 -0.20509,0.31409 -0.30621,0.46783 0,0 0,0 0,0 -2.36424,3.59467 -4.17149,6.50944 -5.46044,8.46004 -0.67572,1.0226 -1.20168,1.78083 -1.61253,2.31971 -0.20376,0.26725 -0.37564,0.47573 -0.51814,0.62968 -0.14246,0.15389 -0.2549,0.25255 -0.3395,0.30043 -0.04227,0.0239 -0.07746,0.0351 -0.105828,0.0342 -0.02835,-8.7e-4 -0.04981,-0.0138 -0.06441,-0.0377 -0.02922,-0.0479 -0.03096,-0.13998 -0.0068,-0.27113 0.04831,-0.26229 0.200024,-0.68142 0.440304,-1.22063 0.48273,-1.08332 1.3128,-2.63067 2.3867,-4.3865 1.91124,-3.12491 4.50618,-6.7643 7.28212,-9.86625 m -7.48044,15.56097 c 0.38173,-0.94112 0.88223,-2.05518 1.48728,-3.28831 1.87343,-3.81815 4.70026,-8.65522 7.61125,-12.45534 1.44342,-1.88432 2.89114,-3.48753 4.21821,-4.51478 0.66453,-0.5144 1.29914,-0.88488 1.89155,-1.07827 0.59232,-0.19337 1.14059,-0.20891 1.62974,-0.0173 1.42717,0.55904 3.16543,1.79436 4.95137,3.32072 1.14319,0.97703 2.30505,2.07249 3.42958,3.19811 0.62435,0.62497 1.29387,1.30059 1.92894,1.94013 0.78586,0.79139 1.54968,1.55851 2.311,2.31179 m -15.41488,-29.5933 c 0.15093,2.40739 0.49056,4.66504 0.89809,6.80676 0.87909,4.61982 2.07137,8.75321 2.48607,12.81624 -4.36358,2.07647 -6.28898,5.18345 -8.20362,8.5997 -0.53796,0.95987 -1.02837,1.82114 -1.48319,2.6053 -1.15731,1.99534 -2.40827,3.84763 -3.36218,5.15618 -0.67834,0.93053 -1.25494,1.65487 -1.6938,2.15399 -0.22063,0.25093 -0.40897,0.44797 -0.56442,0.59278 -0.15553,0.1449 -0.27832,0.23777 -0.36962,0.28173 -0.0456,0.022 -0.0834,0.0317 -0.11385,0.0297 -0.0304,-0.002 -0.0535,-0.0158 -0.0702,-0.0409 -0.0334,-0.05 -0.0418,-0.14583 -0.0283,-0.28195 0.027,-0.27275 0.1421,-0.70757 0.32357,-1.26476 0.35672,-1.09529 0.99345,-2.72789 1.70415,-4.46604 1.36183,-3.33062 3.31231,-7.88026 5.02077,-10.87513 0.9122,-1.59903 1.86059,-2.96772 2.81076,-3.84421 0.12554,-0.1158 0.25087,-0.22276 0.37581,-0.32019 0.34655,-0.27025 0.70308,-0.46529 1.05431,-0.56981 0.47777,-0.14217 0.94557,-0.11674 1.36106,0.11547 0.41496,0.23191 0.86807,0.54546 1.35987,0.92417 m -10.94109,12.8271 c 1.7706,-2.78098 3.71106,-5.60034 5.55748,-7.84369 1.43208,-1.73995 2.82556,-3.15731 4.10435,-4.02092 0.6389,-0.43147 1.25018,-0.72525 1.81961,-0.84852 0.5686,-0.12308 1.09919,-0.0767 1.56597,0.18046 1.37438,0.75708 2.99961,2.26957 4.6851,4.1904 1.69645,1.93331 3.3895,4.20258 4.99026,6.49758 0.25772,0.36949 0.51167,0.73764 0.76165,1.10319 m -13.92284,-66.78862 c -2.32061,-0.15069 -4.52547,0.47894 -6.61798,1.54257 -2.80081,1.42367 -5.42634,3.6431 -7.76395,5.74908 -1.97106,1.77576 -3.284874,3.50396 -4.053231,5.18716 -0.766164,1.6784 -0.980163,3.29491 -0.754132,4.8027 0.452532,3.01871 2.657073,5.57204 5.747963,7.31364 0.0302,0.017 0.0606,0.034 0.091,0.0509 3.06719,1.70309 7.09724,2.88693 11.1405,3.15139 4.09798,0.26805 8.23787,-0.40604 11.51894,-2.47262 3.604,-2.26997 5.37098,-5.18775 5.7477,-8.27211 0.011,-0.0904 0.0209,-0.18101 0.0296,-0.27173 m -10.0378,12.13365 c 2.20011,-0.48525 4.24564,-1.23607 6.02888,-2.31643 3.73562,-2.26318 5.52287,-4.98656 5.91993,-7.80214 0.39592,-2.80744 -0.61207,-5.65719 -2.54275,-8.0413 -1.93057,-2.38398 -4.77974,-4.29917 -8.0429,-5.27116 -1.42251,-0.42372 -2.92404,-0.6681 -4.46142,-0.69214 -0.99984,-0.0156 -2.0115,0.0518 -3.0253,0.21542 m -5.22081,-7.59731 c -1.1188,0.30198 -2.20885,0.77483 -3.27103,1.3678 -2.69144,1.50253 -5.23507,3.79997 -7.514205,5.97704 -1.922982,1.83687 -3.205473,3.61071 -3.949231,5.33921 -0.741194,1.72254 -0.935475,3.37768 -0.689311,4.92618 0.492475,3.09792 2.738235,5.74114 5.901987,7.60173 0.9085,0.53429 1.89355,1.00506 2.93753,1.4066 2.59092,0.99651 5.51566,1.66971 8.42075,1.87624 4.0825,0.29023 8.15615,-0.33756 11.35499,-2.30932 3.5114,-2.16441 5.1986,-4.95307 5.50182,-7.88136 0.28667,-2.76848 -0.6671,-5.64581 -2.49006,-8.24409 0,0 0,0 0,0 -0.10563,-0.15055 -0.2136,-0.29951 -0.32385,-0.4468 -2.01317,-2.68964 -4.77683,-4.81516 -7.83734,-5.85107 -0.63786,-0.2159 -1.28896,-0.38465 -1.94919,-0.50149"
inkscape:path-effect="#path-effect5585-05"
inkscape:original-d="m 137,562 c -10.72867,-1.95642 -27.40223,5.29888 -36,1 m 16,-13 c -0.6979,11.02662 3,19.77355 3,29 -4.86566,2.74259 -7.35089,6.58482 -10,11 -21.232283,35.38714 1.94201,-14.45343 10,-11 5.89376,2.5259 17.0214,16.34047 19,17 m -22,-74 c -6.74819,-2.23562 -12.44596,2.44596 -17,7 -15.25458,15.25458 11.66535,29.00079 25,21 14.66028,-8.79617 -0.0562,-27.64794 -14,-23"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccssccssc" />
<path
d="m 122,543 c -4.43754,2.3351 -7.85697,4 -12,4 m 0,-10 v 5 m 6,-10 v 6 m -10,-6 -1,4"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6602"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccc" />
</g>
<g
style="filter:url(#filter5433)"
transform="matrix(0.67409333,0,0,0.67409333,107.70726,6.7659767)"
id="g6632">
<g
transform="matrix(1.1633817,0,0,1.1633817,-95.596672,153.12675)"
id="g4023"
style="display:inline;opacity:0.95">
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path4005"
d="m 424.2278,79.957919 c -0.6404,-0.08155 -1.64394,-0.242201 -2.31299,-0.210173 -0.2461,0.01178 -0.47984,0.14446 -0.72613,0.13798 -0.17287,-0.0045 -0.31877,-0.146906 -0.49015,-0.169978 -0.44176,-0.05947 -0.81406,0.185813 -1.19968,0.348524 -0.56794,-0.05588 -0.78359,-0.14255 -1.36986,0.145344 -0.25299,0.124236 -0.43025,0.367156 -0.66851,0.517723 -1.29507,0.818402 -0.42133,0.09314 -1.73802,0.858456 -0.24667,0.143374 -0.4618,0.335193 -0.6927,0.502789 -0.85808,0.591226 -0.75739,0.327376 -1.0829,1.431115 -0.10432,0.353697 -0.0638,0.751389 -0.2246,1.083236 -0.13336,0.2752 -0.44712,0.422738 -0.62555,0.671099 -0.50777,0.706775 -0.48582,1.01098 -0.69374,1.869205 -0.0875,1.916137 -0.055,0.105429 0.0662,2.114152 0.0538,0.891516 -0.0603,1.250713 0.16483,2.126604 0.10113,0.393557 0.2894,0.759669 0.41798,1.145135 0.156,0.467687 0.29032,0.94233 0.43548,1.413495 1.01717,2.227664 0.23232,0.660681 1.45866,2.747388 0.57488,0.978193 1.11696,2.095362 2.03795,2.815723 0.29023,0.227011 0.6318,0.379349 0.9477,0.569024 0.61943,-0.101627 1.065,0.52907 1.64242,0.55697 0.24669,0.0119 0.45871,-0.19563 0.70238,-0.23586 0.37158,-0.0614 0.76387,0.0303 1.12788,-0.0663 0.91922,-0.24397 1.93127,-1.005002 2.68764,-1.496597 0.55505,-0.337811 1.15034,-0.616993 1.66515,-1.013434 0.50238,-0.38687 0.91766,-0.875401 1.36769,-1.322079 1.44566,-1.434857 2.88583,-2.895258 4.03497,-4.586805 0.34964,-0.514672 0.6437,-1.06498 0.96555,-1.597469 0.95717,-3.237753 0.15337,0.04528 0.4272,-2.792765 0.087,-0.901742 0.43637,-1.107421 0.34724,-2.030292 -0.0537,-0.555902 -0.31332,-1.009709 -0.5504,-1.489729 -0.018,-0.101088 1.6e-4,-0.216077 -0.0541,-0.303264 -0.0399,-0.06418 -0.27947,0.19667 -0.53838,0.25252 -0.16048,0.03462 -0.3291,-0.04155 -0.49204,-0.02151 -1.05628,0.129937 -0.97638,0.188193 -1.89972,0.657446 -1.18676,0.500176 -1.89412,-1.178153 -0.70736,-1.678329 v 0 c 1.89675,-1.15192 0.3727,-0.387962 2.12607,-0.93071 0.39826,-0.123281 0.75968,-0.38048 1.17321,-0.433451 1.07836,-0.138136 2.20416,1.001434 2.82816,1.690457 -0.29945,2.784345 -0.0317,-0.56788 0.0429,2.280949 0.0213,0.813059 -0.1757,1.793391 -0.31147,2.588861 -0.0826,0.483635 -0.0619,0.997909 -0.25228,1.450106 -0.21814,0.518195 -0.63066,0.93097 -0.94599,1.396455 -0.33367,0.568725 -0.70438,1.11728 -1.001,1.706174 -0.33219,0.65951 -0.48486,1.409625 -0.88198,2.032197 -0.57999,0.909256 -2.31805,2.537834 -3.17698,3.184237 -4.01699,3.023062 0.44826,-0.91371 -3.2186,2.454002 -1.39241,0.93776 -2.79769,2.07267 -4.51526,2.33576 -0.5022,0.0769 -1.01638,0.0242 -1.52414,0.007 -0.44504,-0.015 -0.91266,0.047 -1.33188,-0.10314 -0.43635,-0.15625 -0.76519,-0.52321 -1.14779,-0.78481 -0.36462,-0.26754 -0.78089,-0.47614 -1.09385,-0.80261 -0.32655,-0.34064 -1.13494,-1.790356 -1.40194,-2.202866 -0.25614,-0.39572 -0.59726,-0.739928 -0.803,-1.164037 -0.23906,-0.492771 -0.2643,-1.073931 -0.51814,-1.559253 -0.27186,-0.519802 -0.69328,-0.946461 -1.03992,-1.419691 -0.13142,-0.535799 -0.22634,-1.081898 -0.39428,-1.607397 -0.11867,-0.371325 -0.93442,-2.126964 -0.98597,-2.5386 -0.0493,-0.393671 0.14126,-0.783791 0.153,-1.180363 0.013,-0.440148 -0.0527,-0.879103 -0.0791,-1.318655 0.0248,-0.42757 0.0495,-0.855141 0.0743,-1.282711 0.11908,-0.406036 0.23816,-0.812072 0.35724,-1.218107 0.22314,-0.319323 0.53119,-0.593757 0.66942,-0.957969 0.14747,-0.388548 0.0421,-0.838516 0.16331,-1.23604 0.36833,-1.207949 1.50502,-1.824988 2.04212,-2.936897 1.84198,-1.382648 0.0617,-0.136995 1.99914,-1.240328 0.27871,-0.158717 0.51353,-0.391947 0.8029,-0.53028 0.3138,-0.150011 0.67858,-0.173943 0.99081,-0.327198 0.34595,-0.169808 0.59053,-0.551147 0.96694,-0.63376 0.33495,-0.07351 0.67275,0.13338 1.00912,0.20007 0.15094,-0.05051 0.89145,-0.317217 1.10715,-0.32662 0.21725,-0.0095 0.43133,0.08046 0.64855,0.07043 0.3007,-0.01388 0.5918,-0.165146 0.89189,-0.141532 0.39957,0.03144 0.77569,0.202183 1.16353,0.303275 0.44793,0.02235 0.89586,0.0447 1.3438,0.06704 1.52776,0.254627 1.16766,2.415215 -0.3601,2.160587 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path4007"
d="m 437.31592,95.819845 c 0.0504,1.157613 0.0425,1.898185 0.26069,3.050169 0.28791,1.520326 0.4597,0.921965 0.47322,2.561406 0.004,0.46705 -0.0816,0.93056 -0.12245,1.39583 0.0199,0.55574 0.0398,1.11149 0.0597,1.66723 0.13336,1.20076 0.0849,2.41087 0.16764,3.61399 0.0465,0.6766 0.201,1.34617 0.20367,2.02436 0.003,0.66448 -0.2177,1.32077 -0.18789,1.98459 0.0274,0.61088 0.26218,1.19528 0.35786,1.79925 0.082,0.51764 0.11647,1.04169 0.1747,1.56253 0.28956,1.94258 0.0403,0.74109 0.48942,2.28957 0.0642,0.2213 0.0831,0.45769 0.17635,0.6684 0.0964,0.21772 0.37657,0.36335 0.38559,0.60128 0.008,0.20332 -0.14094,0.48716 -0.34367,0.50446 -0.86839,0.0741 -1.73492,-0.1687 -2.60238,-0.25305 0.12606,-0.23402 0.25211,-0.46804 0.37816,-0.70206 -0.10743,-1.64305 2.21619,-1.79498 2.32362,-0.15193 v 0 c -0.0623,0.12153 -0.12464,0.24305 -0.18696,0.36457 -0.73581,0.0587 -1.48285,0.0353 -2.20744,0.17617 -0.10952,0.0213 0.23354,0.30716 0.26767,0.20094 0.0401,-0.12472 -0.24328,-0.18853 -0.22979,-0.31883 0.0286,-0.27613 0.33562,-0.48207 0.34143,-0.75961 0.0172,-0.82011 -0.75088,-1.53855 -0.60659,-2.38494 -0.0368,-0.55703 -0.0697,-1.11433 -0.11044,-1.67109 -0.0439,-0.59984 -0.1388,-1.19722 -0.14324,-1.79865 -0.005,-0.68605 0.15437,-1.37008 0.11477,-2.05501 -0.0383,-0.66294 -0.25502,-1.30404 -0.34698,-1.96169 -0.17471,-1.24955 -0.18781,-2.5192 -0.44929,-3.75836 0.0129,-0.52783 0.067,-1.05624 0.0389,-1.58347 -0.12021,-2.25042 -0.29991,-0.24241 -0.27681,-2.54036 0.005,-0.462705 0.0718,-0.92269 0.11346,-1.383537 0.0453,-0.500848 0.23352,-1.006002 0.14737,-1.501458 -0.0858,-0.493423 -0.42966,-0.904827 -0.64448,-1.35724 -0.20044,-1.403053 1.78378,-1.686513 1.98421,-0.28346 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path4009"
d="m 434.18641,97.104223 c -0.0357,-0.636521 -0.15934,-1.955591 -0.001,-2.600012 0.30333,-1.238314 0.63596,-1.368151 1.25718,-2.354413 0.20314,-0.322508 0.30591,-0.714142 0.56381,-0.994795 0.29743,-0.323673 0.71,-0.518479 1.06499,-0.777719 0.81094,-0.134002 1.08723,-1.212705 1.83093,-1.424416 1.37328,-0.390936 3.1282,0.676124 4.09335,1.528792 0.38585,0.340874 0.71032,0.745474 1.06548,1.118211 -0.22327,1.259367 0.89072,2.048085 1.15193,3.128098 0.12349,0.510585 -0.018,1.050794 -0.004,1.575916 0.0129,0.485827 0.0299,0.972626 0.0847,1.455536 0.0524,0.462282 0.32333,0.918636 0.23603,1.375609 -0.0859,0.44989 -0.48143,0.779341 -0.72215,1.16901 -0.65513,0.57232 -0.35824,1.82671 -1.01312,2.39426 -0.32259,0.27957 -0.83307,0.18745 -1.24638,0.29422 -0.41866,0.10816 -0.81822,0.31287 -1.24899,0.35041 -0.94565,0.0824 -1.31442,-0.2652 -2.1041,-0.68597 -0.7784,-0.54314 -0.75421,-0.58335 -1.56854,-0.95297 -0.21159,-0.096 -0.45389,-0.12847 -0.64881,-0.25497 -0.26614,-0.17271 -0.47598,-0.41962 -0.71396,-0.62943 -0.9983,-1.116904 0.58125,-2.528702 1.57954,-1.411794 v 0 c 0.27234,0.219768 0.4973,0.50155 0.7946,0.686144 0.24391,0.15143 1.09898,0.41005 1.36543,0.4963 0.20128,0.0953 1.54742,0.83133 1.72209,0.79606 0.18992,-0.0384 0.2691,-0.27937 0.41401,-0.40798 0.82134,-0.72889 0.35119,-0.12262 0.94541,-1.084521 0.0538,-0.188187 0.59294,-2.069463 0.59197,-2.090312 -0.0195,-0.418366 -0.41013,-0.757191 -0.44658,-1.174423 -0.0415,-0.474565 0.27618,-0.938861 0.22063,-1.411984 -0.0646,-0.550519 -0.85898,-1.708451 -1.14914,-2.169476 -0.16044,-0.311759 -0.259,-0.664149 -0.48132,-0.935278 -0.43163,-0.526404 -1.13935,-0.891229 -1.81683,-0.829172 -0.29698,0.0272 -0.61419,-0.01496 -0.88897,0.100961 -0.30952,0.130584 -0.53385,0.407952 -0.80077,0.611928 -0.19373,0.204177 -0.36911,0.427485 -0.58118,0.612532 -0.40283,0.351485 -1.01735,0.608301 -1.27235,1.128343 -0.13579,0.276946 -0.14013,0.601473 -0.18537,0.906586 -0.18847,1.271244 -0.17316,0.900912 0.09,2.025133 0.30801,1.540031 -1.86993,1.975618 -2.17793,0.435586 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path4011"
d="m 449.32151,98.198593 c 0.1658,0.0152 1.16754,0.204698 1.47011,-0.02175 0.0889,-0.06656 0.018,-0.229503 0.0754,-0.324597 0.0638,-0.105617 0.22607,-0.136451 0.27206,-0.250927 0.0633,-0.157526 0.004,-0.341017 0.0329,-0.508223 0.0386,-0.219982 0.11337,-0.432065 0.17005,-0.648098 -0.26338,-0.480802 0.28033,-0.665888 0.35487,-1.017163 0.0557,-0.262697 -0.14473,-0.71821 -0.29518,-0.940072 -0.0884,-0.01647 -0.18182,-0.01561 -0.26511,-0.04942 -0.13801,-0.05603 -0.24672,-0.178764 -0.39072,-0.216843 -0.0496,-0.01311 -0.0811,0.07592 -0.13229,0.07854 -0.063,0.0032 -0.1156,-0.06462 -0.17867,-0.0626 -1.23541,0.03958 0.008,0.111558 -0.58377,0.07065 0.0456,0.123015 0.18064,0.245388 0.13681,0.369044 -0.0339,0.09561 -0.25037,-0.01512 -0.29463,0.07615 -0.0572,0.117988 0.30926,1.72317 0.30848,1.901297 -0.001,0.277231 -0.10525,0.544387 -0.15787,0.816581 1.8122,1.992288 -0.1598,-0.484163 0.72632,1.587788 0.1152,0.269382 0.403,0.426115 0.58797,0.653331 0.6296,0.773429 0.58254,0.937839 1.53603,1.284879 0.41584,0.0644 0.82967,-0.32729 1.25168,-0.26552 0.85761,0.12554 0.41315,0.58715 1.32064,0.11551 0.0547,-0.0284 0.91656,-0.78732 1.01693,-0.875217 0.27987,-0.471141 0.2641,-1.049603 0.49266,-1.536465 0.16136,-0.343747 0.53463,-0.579424 0.63541,-0.945544 0.10128,-0.367941 -0.0757,-0.761961 -0.0604,-1.143281 0.004,-0.109374 0.27707,-1.528588 0.29394,-1.617753 0.3057,-1.176842 0.19647,-0.198808 -0.0212,-1.111024 -0.03,-0.125651 0.01,-0.259311 -0.006,-0.38749 -0.004,-0.03425 -0.0722,-0.05962 -0.0535,-0.08866 0.46771,-0.72788 1.7234,-0.193511 2.58859,-0.190489 -0.10642,-0.182579 -0.16259,-0.689568 -0.31926,-0.547736 -0.16692,0.151117 0.1049,0.444674 0.2181,0.639312 1.82323,3.134808 -0.25531,-1.462502 0.47119,1.766458 0.0591,0.262633 0.38033,0.389994 0.51109,0.625301 0.14649,0.263606 0.20595,0.566893 0.30893,0.850339 0.13266,0.314318 0.435,1.089155 0.6506,1.387961 0.13415,0.18593 0.33756,0.312937 0.48029,0.492369 1.18884,1.494542 -0.16522,-0.197822 0.40658,1.012296 0.022,0.04652 0.0792,-0.06566 0.11885,-0.09849 -2.62822,-0.932317 -0.33734,-0.545401 -1.6535,0.0508 -0.092,0.0417 -0.0104,-0.207771 0.0261,-0.302023 0.0473,-0.122241 0.19886,-0.197894 0.21733,-0.327643 0.0215,-0.15128 -0.10257,-0.292952 -0.10728,-0.445683 -0.006,-0.191497 0.0507,-0.379814 0.076,-0.569721 0.0316,-0.312023 0.0631,-0.624046 0.0947,-0.936069 0.11552,-0.218844 0.30354,-0.412839 0.34656,-0.656533 -0.0701,-0.223136 -0.21268,-0.525308 -0.15497,-0.782244 0.31781,-0.966662 0.19229,-0.487856 0.3853,-1.434096 0.51709,-0.129923 1.03105,-0.506498 1.55128,-0.38977 1.43058,0.320989 0.88106,0.817559 1.1037,1.544283 0.2349,0.766752 0.37975,0.524408 0.74306,1.274243 0.13974,0.28841 0.21,0.605583 0.315,0.908375 0.53845,0.472148 0.65508,1.268211 1.15226,1.764451 0.22531,0.224884 0.60036,0.24664 0.8374,0.459133 0.2218,0.198839 0.30084,0.519279 0.50055,0.740301 0.34939,0.386689 0.79887,0.669519 1.19532,1.007799 0.49123,-0.17954 0.79195,-0.41935 1.16769,-0.76991 1.39013,-0.924118 2.69704,1.04182 1.30691,1.96594 v 0 c -1.2074,0.54978 -2.27413,1.00313 -3.62946,0.62463 -1.8518,-0.84279 -0.0149,0.2041 -1.37656,-1.30416 -0.2532,-0.28046 -0.64287,-0.40595 -0.91813,-0.66479 -0.30458,-0.28639 -0.5295,-0.64749 -0.80855,-0.958799 -1.02394,-1.142318 -0.46032,-0.190267 -1.15239,-1.856914 -0.22866,-0.299688 -0.4411,-0.612489 -0.686,-0.899065 -0.24019,-0.281064 -0.85096,-0.712123 -0.89721,-1.170943 -0.0195,-0.193897 0.002,-0.502862 0.1907,-0.552664 0.19978,-0.05281 0.33113,0.247311 0.49669,0.370967 0.27426,-0.163017 0.54851,-0.326035 0.82277,-0.489052 -0.0214,-0.08128 -0.0464,-0.161692 -0.0642,-0.243842 -0.007,-0.03366 0.0259,0.06424 0.0327,0.09802 0.0416,0.209212 0.1498,0.420055 0.11218,0.630024 -0.0346,0.193127 -0.26519,0.307735 -0.31422,0.497713 -0.66847,2.590235 0.61075,-0.852338 -0.17771,1.159399 0.0835,0.265629 0.25416,0.518477 0.25041,0.796887 -0.004,0.275276 -0.21107,0.511393 -0.2717,0.779934 -0.14051,0.62227 0.28004,1.999095 -0.75239,2.195725 -0.54591,0.10396 -1.08385,-0.24613 -1.62577,-0.36919 -0.73633,-1.339774 0.54416,0.89419 -0.73453,-0.877008 -0.48933,-0.677794 -0.10491,-0.593861 -0.46347,-1.35718 -0.90862,-1.934285 -0.15012,0.667749 -0.70775,-1.5868 -0.0924,-0.290423 -0.18487,-0.580845 -0.27731,-0.871268 -0.11586,-0.261392 -0.25155,-0.514863 -0.34757,-0.784177 -0.0855,-0.239737 -0.1351,-0.490857 -0.19517,-0.738184 -0.0361,-0.148693 0.0184,-0.344853 -0.0933,-0.449473 -0.14257,-0.133574 -0.44749,-0.0069 -0.56243,-0.164863 -0.21685,-0.298056 -0.21749,-0.704379 -0.32624,-1.056568 0.81437,-0.100393 1.62528,-0.234523 2.4431,-0.301177 0.0406,-0.0033 -0.0412,0.07032 -0.0591,0.106874 -0.0541,0.110417 -0.17232,0.211854 -0.15696,0.333863 0.0255,0.202798 0.23584,0.349548 0.2684,0.551338 0.0367,0.227562 -0.22895,1.363644 -0.25423,1.483579 -0.94127,2.495008 0.54611,-1.801286 -0.0826,1.946355 -0.0643,0.383368 -0.40068,0.667881 -0.56498,1.020181 -0.56196,1.205008 -0.61495,2.552478 -1.48143,3.618448 -0.29626,0.28666 -0.53198,0.65348 -0.88877,0.85997 -0.31491,0.18226 -0.71285,0.153 -1.05839,0.26697 -0.37049,0.1222 -0.70366,0.3556 -1.08458,0.43985 -0.91405,0.20219 -1.87623,-0.18421 -2.71481,-0.4838 -1.81127,-0.63104 -0.14892,0.0917 -1.77391,-1.09524 -0.34223,-0.24997 -0.82408,-0.31651 -1.09927,-0.63881 -0.25334,-0.29672 -0.26044,-0.73558 -0.38881,-1.104009 -0.44672,-1.282058 -0.2864,-0.653747 -0.48658,-2.062332 -1.36523,-2.140089 -0.2656,0.142249 -0.31474,-1.949889 -0.009,-0.386994 -0.32815,-0.717847 -0.36189,-1.103475 -0.0978,-1.118125 0.65762,-1.728425 1.3878,-2.403809 0.246,-0.254526 0.40035,-0.657349 0.73802,-0.763577 0.24373,-0.07668 0.45225,0.250933 0.70059,0.310995 0.23774,0.0575 0.49933,-0.03691 0.73289,0.03569 0.27268,0.08476 0.4745,0.330901 0.74459,0.423576 0.42018,0.144177 0.94762,-0.211004 1.30477,0.271352 0.55422,1.160571 0.32993,0.576763 0.69118,1.768098 0.23291,0.768076 0.33871,0.829612 0.21262,1.672363 -0.0372,0.248745 -0.0655,0.523644 -0.22075,0.721528 -0.11715,0.149324 -0.3484,0.150662 -0.52261,0.225993 0.0159,0.277469 0.10768,0.561 0.0478,0.832407 -0.18468,0.837521 -1.3847,2.027935 -2.12834,2.339569 -0.19853,0.0832 -1.72759,0.0935 -1.93346,0.0975 -1.52794,0 -1.52794,-2.160838 0,-2.160838 z"
inkscape:connector-curvature="0" />
<g
transform="translate(-18.44912,0.81996088)"
id="g4105">
<path
inkscape:connector-curvature="0"
d="m 426.01145,116.33606 c -0.84972,0.54257 -1.83627,0.089 -2.72279,0.30901 -0.45068,0.11187 -0.81858,0.44163 -1.24632,0.62238 -0.34894,0.14746 -0.75367,0.16406 -1.07798,0.35983 -0.26585,0.16049 -0.42653,0.45145 -0.6398,0.67717 -0.34828,0.15053 -0.69656,0.30107 -1.04484,0.45161 -2.74959,2.53525 1.23446,-0.95583 -1.72268,1.05835 -0.23388,0.1593 -0.32418,0.46929 -0.53114,0.66228 -0.2028,0.18911 -0.44774,0.32849 -0.68509,0.47185 -0.20671,0.12485 -0.47974,0.15447 -0.64437,0.33114 -0.13684,0.14686 -0.13004,0.37982 -0.19507,0.56973 -0.0602,0.11156 -0.0541,0.32659 -0.18067,0.33468 -0.22768,0.0145 0.1252,-0.75726 0.0633,-1.15306 -0.15426,-0.98615 -0.45735,0.0147 -0.26736,0.008 0.14241,-0.005 0.19078,-0.21176 0.28617,-0.31763 0.15166,-0.022 0.30333,-0.044 0.45499,-0.0661 0.21684,0.016 0.43462,0.0739 0.65051,0.0481 0.36514,-0.0437 0.70786,-0.21512 1.07351,-0.2543 0.64618,-0.0692 2.42155,0.0229 2.99857,0.1187 0.6079,0.10097 1.19705,0.29327 1.79558,0.4399 0.77316,0.0651 3.01711,0.22143 3.758,0.41783 1.26753,0.336 3.01603,1.19864 4.0843,1.93093 0.64598,0.44281 1.19622,1.01198 1.81568,1.4912 0.59062,0.4569 1.20862,0.87726 1.81293,1.31589 0.47175,0.56915 1.01772,1.0842 1.41525,1.70746 0.40442,0.63405 0.68149,1.34234 0.97235,2.03586 0.7485,1.78474 1.18629,3.60702 0.83672,5.55341 -0.10865,0.60497 -0.36073,1.17517 -0.5411,1.76275 -0.23948,0.50314 -0.39375,1.05657 -0.71842,1.50944 -0.62812,0.87612 -1.84838,1.69315 -2.85791,1.99934 -0.58346,0.17696 -1.21388,0.1188 -1.81818,0.19983 -2.81464,0.37743 -1.12867,0.44753 -3.89839,-0.004 -0.86877,-0.24426 -3.2668,-0.89019 -4.08885,-1.237 -0.6628,-0.27963 -1.25796,-0.70042 -1.90833,-1.00784 -0.62964,-0.29763 -1.34398,-0.42577 -1.92782,-0.80546 -5.35677,-3.48366 2.37462,0.48989 -2.89005,-2.08142 -0.33672,-0.29583 -0.64064,-0.6338 -1.01015,-0.88748 -0.30217,-0.20747 -0.69337,-0.26509 -0.98739,-0.48396 -0.45709,-0.34026 -1.02716,-1.15442 -0.94604,-1.77105 0.0713,-0.54206 0.42523,-1.00739 0.63785,-1.51109 1.80557,-1.00398 3.22541,1.54949 1.41983,2.55347 v 0 c 0.11815,-0.39032 0.40039,-0.76574 0.35445,-1.17096 -0.0192,-0.16965 -0.41313,-0.25884 -0.49987,-0.11178 -0.0835,0.14165 0.3401,0.0676 0.45876,0.1815 0.26197,0.2514 0.37369,0.63649 0.64504,0.87775 0.36459,0.32417 0.82104,0.5272 1.23157,0.79079 1.70025,1.13279 0.89548,0.45202 2.37491,2.08798 0.5176,0.39391 1.13911,0.62939 1.7235,0.91498 0.62756,0.30669 1.25326,0.62431 1.91044,0.86096 1.19289,0.42956 2.48898,0.53382 3.64493,1.08723 0.58637,-0.0686 1.17273,-0.13716 1.7591,-0.20574 0.56603,0.17542 1.10651,0.56074 1.6981,0.52627 0.48324,-0.0282 0.81847,-0.532 1.27267,-0.69937 0.42659,-0.15719 0.94174,-0.0405 1.33834,-0.26272 0.69982,-0.39215 0.74806,-1.54978 1.61448,-1.78471 0.0404,-0.45015 0.0734,-0.90102 0.1211,-1.35044 0.0524,-0.49369 0.19431,-0.98233 0.1793,-1.47857 -0.0388,-1.28132 -0.46161,-2.04174 -0.80772,-3.25787 -0.17219,-0.60506 -0.16134,-1.27598 -0.4576,-1.83094 -0.31192,-0.58429 -0.87668,-0.99306 -1.31502,-1.48959 -0.56746,-0.39247 -1.16322,-0.74691 -1.70238,-1.17743 -0.55404,-0.44239 -0.95586,-1.08051 -1.5697,-1.43528 -0.6136,-0.35463 -1.37008,-0.376 -2.0265,-0.64316 -0.6102,-0.24834 -1.12445,-0.72669 -1.76056,-0.89812 -0.61516,-0.16578 -1.27277,-0.0606 -1.90915,-0.0909 -0.54096,-0.20295 -1.08192,-0.4059 -1.62288,-0.60886 -2.63172,-0.43124 -0.60271,-0.2634 -3.09664,-0.0582 -0.38438,0.0316 -0.77801,-0.0619 -1.15701,0.01 -0.92599,0.17479 -0.94119,0.6673 -1.95033,0.65692 -0.23308,-0.002 -0.42347,-0.19492 -0.63521,-0.29238 -0.30306,0.0581 -1.09697,0.24642 -1.3807,0.13025 -1.41016,-0.57739 -1.13038,-2.04948 -0.10783,-2.78042 0.62272,-0.75858 0.22073,-0.45252 1.26594,-0.83355 0.21168,-0.20661 0.0918,-0.64433 0.32567,-0.82546 0.29883,-0.23148 0.7648,-0.10228 1.0993,-0.27832 0.60223,-0.31692 0.87928,-1.09379 1.56668,-1.30906 0.78532,-0.63475 1.12069,-1.04577 2.13272,-1.30755 0.4132,-0.10689 0.86239,-0.007 1.27518,-0.1155 0.48307,-0.12692 0.90789,-0.42108 1.38064,-0.58227 1.34638,-0.45906 1.70479,-0.43499 3.10149,-0.61583 1.42199,0 1.42199,2.011 0,2.011 z"
id="path4013"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 445.42875,131.53884 c -0.69068,-0.46371 -0.63469,-0.58888 -1.43966,-0.57525 -0.15534,0.003 -0.34326,-0.007 -0.45491,0.10145 -0.0584,0.0565 0.17358,0.085 0.17838,0.16614 7.6e-4,0.0128 -0.35329,0.59686 -0.36882,0.62266 0.3146,0.53716 -0.46979,0.67355 -0.48334,1.06236 -0.008,0.23641 0.24067,0.42107 0.27175,0.65558 0.0397,0.29988 -0.12993,0.60975 -0.0649,0.90519 0.0531,0.24146 0.26758,0.41582 0.40137,0.62373 0.0293,0.26861 0.0586,0.53723 0.088,0.80584 0.98897,1.11795 -0.14918,-0.0628 1.11555,0.90606 0.18297,0.14016 0.26607,0.43021 0.48895,0.48889 0.31113,0.0819 0.64169,-0.15974 0.95917,-0.10762 0.34409,0.0565 0.62764,0.30799 0.9571,0.42224 0.29163,0.10113 0.59941,0.14765 0.89912,0.22148 0.5316,-0.33353 1.67155,-0.5701 2.01025,-1.14616 0.14526,-0.24705 0.0804,-0.57677 0.20452,-0.83509 0.34455,-0.71701 0.61754,-0.13278 0.16075,-0.7435 0.43586,-0.94238 -0.077,-0.96133 -0.65545,-1.59003 -0.20195,-0.21947 -0.36506,-0.47215 -0.53374,-0.71812 -0.22851,-0.33325 -0.35994,-0.7449 -0.65719,-1.01861 -0.29209,-0.26897 -0.70218,-0.37094 -1.05328,-0.55641 -1.53714,-1.20664 -0.10506,-0.22836 -1.56631,-0.89845 -0.1721,-0.0789 -0.29629,-0.25378 -0.47807,-0.30671 -0.0248,-0.007 -0.79867,0.30819 -0.0967,0.1575 0.27388,0.93718 -0.20526,-0.46383 0.26099,-3.6e-4 0.12993,0.12916 0.0509,0.3656 0.11359,0.53775 0.0581,0.1597 0.14113,0.3126 0.24495,0.44714 1.42441,1.84581 -0.28521,-0.71041 0.99168,1.26619 1.31756,0.43896 2.2869,1.9934 3.71351,2.14181 0.32553,0.0339 0.63913,-0.15229 0.96526,-0.17985 0.26477,-0.0224 0.53102,0.0207 0.79653,0.031 0.61549,-0.28176 1.38873,-0.0422 2.00665,-0.31953 0.20956,-0.0941 0.29001,-0.36594 0.4812,-0.49326 0.25229,-0.16802 0.59632,-0.18145 0.82708,-0.37801 0.46711,-0.39791 0.45416,-0.86965 0.54457,-1.40562 0.0173,-0.76274 1.0569,-0.80896 1.25986,-1.40414 0.11996,-0.35178 -0.60792,-0.94863 -0.66659,-1.29074 -0.0251,-0.14664 0.0492,-0.29345 0.0738,-0.44018 0.13164,-1.25451 -0.78889,-1.42257 2.01896,0.13853 0.0588,0.0327 -0.0739,0.11605 -0.0868,0.18202 -0.0278,0.14198 -0.0466,0.28865 -0.0334,0.43272 0.0196,0.21464 0.0872,0.42215 0.13086,0.63322 -0.27627,1.32473 0.0728,2.40633 0.51129,3.63262 0.1318,0.36855 0.30505,0.72453 0.39769,1.10481 0.0944,0.38732 0.10679,0.79012 0.16018,1.18517 0.18656,0.28922 0.37311,0.57844 0.55967,0.86765 0.20432,0.20411 0.44523,0.37722 0.61298,0.61232 0.11849,0.16607 0.11415,0.39893 0.2289,0.56761 0.0466,0.0686 0.49129,0.60817 0.76018,0.58737 0.14852,-0.0115 0.2784,-0.10612 0.41759,-0.15918 -0.0791,-0.0484 -0.30047,-0.0771 -0.23741,-0.14509 0.0766,-0.0826 0.25327,0.116 0.33564,0.0392 0.54209,-0.50562 -0.22494,-0.64473 -0.21931,-1.11028 0.004,-0.33822 0.30427,-0.61031 0.38547,-0.93866 0.0812,-0.32817 0.0642,-0.67306 0.0963,-1.00959 0.43729,-1.95508 0.19727,-0.32286 0.15378,-2.1257 -0.0219,-0.90881 0.16284,-1.01067 -0.0384,-1.87616 -0.37412,-0.98937 -0.23509,-0.4991 -0.4333,-1.4661 0.004,-1.76121 1.74183,-2.33161 2.77273,-0.82876 0.3356,0.48924 0.34263,1.25519 0.40724,1.79127 0.11731,0.3722 0.25921,0.73752 0.35193,1.11659 0.0913,0.3733 0.0546,0.77943 0.19895,1.13562 0.47465,1.17156 1.52713,1.99165 2.24094,2.9907 0.19058,0.26674 0.31883,0.57293 0.47824,0.8594 0.80541,0.0804 1.32245,0.73082 2.12767,0.79419 0.19651,0.0155 0.3903,-0.0556 0.58545,-0.0834 0.23079,0.0351 0.46158,0.0702 0.69237,0.10536 1.57596,-0.12123 1.74739,2.10751 0.17144,2.22873 v 0 c -3.33383,-0.96312 1.29229,0.25643 -1.9941,-0.23826 -1.16568,-0.17547 -1.8986,-1.22256 -3.10184,-1.30408 -1.46151,-3.0489 0.5898,0.87411 -1.58293,-2.08137 -0.30275,-0.41182 -0.44649,-0.91961 -0.67327,-1.37767 -0.18967,-0.3831 -0.37995,-0.76594 -0.57607,-1.14578 -0.83347,-1.6142 -0.54046,-0.7159 -0.8731,-2.32235 -0.12856,-0.26284 -0.25644,-0.52601 -0.38568,-0.78852 -0.0698,-0.14173 -0.20806,-0.26624 -0.21137,-0.42418 -0.001,-0.0702 0.13379,0.0606 0.20361,0.0535 0.48506,-0.0494 1.04768,0.0599 1.44586,-0.22146 0.17408,-0.12303 0.24476,-1.38874 -0.052,-0.6374 0.10196,0.18009 0.25183,0.3405 0.30588,0.54026 0.084,0.31032 0.0753,0.63871 0.0999,0.95925 0.0702,0.9148 0.11669,1.56688 0.0203,2.47294 -0.0351,0.32984 -0.12614,0.65151 -0.17496,0.97959 -0.0477,0.3206 -0.0763,0.64375 -0.11448,0.96563 0.0177,0.45621 0.10624,1.94375 0.001,2.40369 -0.10023,0.43891 -0.30998,0.84754 -0.51275,1.2495 -0.59394,1.17735 -1.14256,1.44139 -2.41488,1.63502 -0.22743,-0.084 -0.45251,-0.17472 -0.68227,-0.25211 -0.28301,-0.0953 -0.617,-0.0862 -0.85552,-0.26589 -0.25929,-0.19533 -0.33043,-0.56653 -0.55749,-0.79855 -0.24366,-0.24898 -0.6279,-0.34733 -0.83676,-0.62615 -0.45731,-0.61049 -0.2437,-1.58592 -0.93132,-2.09027 -0.45197,-0.92712 -0.65339,-1.2324 -0.92932,-2.24061 -0.10648,-0.38905 -0.14073,-0.795 -0.23832,-1.18637 -0.0987,-0.39574 -0.34466,-0.76467 -0.34989,-1.1725 -0.005,-0.35885 0.30365,-0.66903 0.32171,-1.02745 0.0162,-0.32161 -0.14838,-0.62671 -0.22258,-0.94006 -0.0218,-0.23903 -0.25797,-2.51752 -0.0231,-2.53343 0.85029,-0.0576 1.64926,0.43463 2.48527,0.60012 0.0647,0.0128 -0.0966,-0.18318 -0.14307,-0.13647 -0.0525,0.0527 0.0447,0.14193 0.067,0.2129 0.74384,0.82818 0.12425,-0.0935 0.14269,1.17556 0.005,0.31563 0.25153,0.59846 0.24746,0.9141 -0.0131,1.01876 -0.95862,1.7611 -1.22199,2.69335 -0.91082,1.51278 -0.1856,0.58993 -1.59154,1.74162 -0.72367,0.59281 -0.89101,0.97691 -1.83965,1.34995 -0.7542,0.29658 -1.64287,0.12924 -2.36809,0.5506 -1.09758,0.0384 -1.59887,0.12677 -2.70523,-0.14385 -1.64243,-0.40174 -2.97376,-1.44095 -4.15311,-2.60357 -0.40419,-0.20308 -0.89213,-0.28998 -1.21258,-0.60923 -0.24128,-0.24039 -0.19094,-0.66041 -0.35909,-0.95659 -0.206,-0.36286 -0.60283,-0.61099 -0.75206,-1.00064 -0.1074,-0.28041 0.0465,-0.60108 0.0239,-0.9005 -0.1333,-1.77098 -0.49181,-0.87427 0.22922,-2.02752 0.6236,-0.2964 1.9962,-1.0014 2.73704,-0.66134 0.28582,0.13119 0.31414,0.5791 0.58354,0.74135 2.38918,1.43893 -0.206,-1.25185 1.8606,1.19118 0.34308,0.21178 0.71428,0.38364 1.02923,0.63536 0.70898,0.56664 2.06638,2.15119 2.50492,2.95374 0.36898,0.67525 0.4599,1.42562 0.60751,2.16322 -0.24927,0.68916 -0.44181,1.40012 -0.90751,1.99019 -0.24078,0.30507 -0.56404,0.53482 -0.84715,0.80107 -0.62902,0.59157 -1.17668,1.25966 -2.07557,1.46834 -0.41738,0.0969 -0.85683,-0.0147 -1.28524,-0.022 -0.37661,-0.0629 -0.7505,-0.14508 -1.12983,-0.18858 -0.38249,-0.0439 -0.77557,0.004 -1.15267,-0.0731 -0.4101,-0.0844 -0.79398,-0.26629 -1.18783,-0.40834 -0.99239,-0.35792 -1.46325,-0.39966 -2.13728,-1.24054 -0.25026,-0.3122 -0.38355,-0.70233 -0.57532,-1.0535 -0.15901,-0.31894 -0.35501,-0.62197 -0.47702,-0.95681 -0.44294,-1.21554 -0.50152,-2.93636 -0.0518,-4.16061 0.10458,-0.28471 0.29171,-0.53188 0.43756,-0.79782 0.58373,-1.01234 0.24299,-0.65104 1.09518,-1.316 0.29149,-0.22745 0.51218,-0.63948 0.8802,-0.67493 0.31178,-0.03 0.49304,0.40452 0.78636,0.5144 0.57562,0.21564 1.6672,0.0852 2.19467,0.0596 1.53649,0.76825 0.45003,2.94117 -1.08646,2.17293 z"
id="path4015"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 473.61352,136.90516 c 1.03638,-1.19715 0.0523,0.11241 0.72219,-1.41492 0.0996,-0.22706 0.32957,-0.38394 0.41696,-0.61598 0.16624,-0.44141 0.0857,-1.13078 0.0429,-1.59291 -0.0808,-0.22885 -0.25867,-0.4444 -0.24238,-0.68655 0.0227,-0.33732 0.32661,-0.61392 0.35257,-0.95101 0.0179,-0.23278 -0.1758,-0.43467 -0.22835,-0.66215 -0.15634,-0.67684 0.0676,-1.03845 -0.81143,-1.15563 -0.0185,-0.0166 -0.0481,-0.0262 -0.0556,-0.0499 -0.042,-0.13319 0.0217,-0.32453 -0.0892,-0.40937 -0.14648,-0.11204 -0.36337,-0.0815 -0.54774,-0.0778 -0.15687,0.003 -0.6125,0.0597 -0.46036,0.0981 0.36079,0.091 1.32994,-0.10348 1.65291,-0.15481 -1.99638,-1.20608 -2.65398,-0.68594 -1.31866,-2.34328 0.64432,-0.79971 0.16115,0.13998 0.71637,-0.26978 0.20876,-0.15408 0.35408,-0.37936 0.53113,-0.56904 0.85244,-0.23533 1.66059,-0.57784 2.43394,-1.00311 0.28552,-0.157 0.55004,-0.35421 0.84769,-0.4868 0.14329,-0.0638 1.59906,-0.52988 1.82961,-0.60429 1.4761,-0.19697 0.69695,-0.26348 1.98104,0.16506 0.41831,0.13961 0.9957,0.0493 1.2604,0.40206 0.29494,0.39303 0.0112,0.99372 0.14243,1.46726 0.83829,3.0257 0.41731,-1.10495 0.62003,2.23419 -0.96026,1.05037 -0.0219,2.06126 -0.28154,3.21994 -0.0724,0.32303 -0.36919,0.5525 -0.51062,0.85181 -0.42761,0.90497 -0.33049,0.7505 -0.18775,1.63125 -0.25544,0.66921 -0.30458,0.42962 -0.0119,1.08606 0.0554,0.12428 0.16068,0.22661 0.19627,0.35795 0.0585,0.21591 -0.69514,-1.03371 0.24768,-0.24514 0.0786,0.0658 -0.0554,0.19747 -0.083,0.2962 0.19676,-0.084 0.30733,0.16672 0.47512,0.1663 0.0987,-2.4e-4 0.17863,-0.1346 0.27445,-0.111 0.27499,0.0677 0.49011,0.30391 0.76613,0.36728 2.2424,0.5148 -0.78253,-0.64162 1.26122,0.20581 0.53875,-0.21143 1.08499,-0.0871 1.64103,-0.0736 1.17973,-0.34108 1.66211,1.32732 0.48237,1.66841 v 0 c -0.27823,0.19482 -0.51414,0.47213 -0.83468,0.58448 -0.0456,0.016 -1.39291,-0.12903 -1.40377,-0.13015 -0.25411,0.005 -0.50866,-0.002 -0.76231,0.0137 -0.24693,0.0154 -0.50579,0.16522 -0.73792,0.0797 -0.22951,-0.0846 -0.27283,-0.44782 -0.50088,-0.53624 -0.27055,-0.10491 -0.58079,0.0205 -0.87052,0.004 -1.00947,-0.056 -0.7037,0.002 -1.47009,-0.62601 -0.0761,-0.13611 -0.13059,-0.28682 -0.22832,-0.40833 -0.40058,-0.49801 -0.4826,0.15238 -0.75195,-0.96709 -0.0433,-0.17992 0.20215,-0.34478 0.17298,-0.52752 -0.33872,-2.12252 -0.5932,0.67913 -0.24681,-1.61058 0.20091,-3.42442 -0.21537,1.15716 0.44502,-1.53971 0.0834,-0.34069 -0.0499,-0.70816 0.019,-1.05207 0.0622,-0.31028 0.27107,-0.57396 0.36724,-0.87544 0.32924,-1.0321 0.24735,-0.97517 0.21159,-2.00189 0.0307,-0.21781 0.0893,-0.43348 0.0921,-0.65342 10e-4,-0.10615 -0.17483,-0.83643 -0.21719,-0.88886 -0.0467,-0.0578 -0.15688,0.0777 -0.21969,0.0379 -0.11489,-0.0726 -0.16053,-0.21939 -0.24079,-0.32908 -0.11747,-0.0717 -0.23494,-0.14344 -0.35241,-0.21515 -2.51892,0.90836 0.71854,-0.31177 -1.7471,0.7904 -0.24605,0.10999 -0.50714,0.18436 -0.767,0.25586 -0.25245,0.0695 -0.5406,0.036 -0.76766,0.16642 -1.84871,1.0616 0.70238,0.24615 -1.18251,0.75757 -0.4135,0.96118 0.11205,0.12492 -0.93032,0.58533 -0.17597,0.0777 -0.29868,0.24857 -0.41227,0.40383 -0.0194,0.0265 0.0418,0.10678 0.0591,0.0789 0.17066,-0.2753 0.65078,-0.63202 0.43167,-0.87055 -0.52814,-0.57496 -1.41911,-0.65127 -2.12867,-0.97691 0.97132,-0.20699 0.95241,-0.2781 1.95997,-0.18722 0.21651,0.0195 0.0192,0.45169 0.12907,0.63926 0.0941,0.16071 1.20091,0.63938 1.20282,0.64027 0.33443,0.60939 0.52249,0.8461 0.67384,1.5268 0.0515,0.23171 0.0237,0.4759 0.0703,0.70864 0.0663,0.33066 0.20232,0.64486 0.26744,0.97576 0.10708,0.54404 0.0638,1.11068 0.18782,1.65281 0.003,0.32326 0.0738,0.65291 0.01,0.96978 -0.056,0.27697 -0.2406,0.51139 -0.36091,0.76708 -0.11795,0.22712 -0.30221,0.43069 -0.35386,0.68135 -0.0733,0.35595 0.10784,0.74684 -0.0111,1.09024 -0.15941,0.46004 -1.29741,1.63261 -1.58758,1.95076 -1.20605,0.90453 -2.48526,-0.80108 -1.2792,-1.70562 z"
id="path4017"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 494.76468,125.95231 c -0.32345,0.42731 -1.31966,1.77335 -1.70077,2.15745 -0.26847,0.27058 -0.62192,0.4466 -0.89179,0.7158 -0.38895,0.38795 -0.71531,1.13423 -0.98616,1.62015 -0.026,0.55678 -0.37586,1.02156 -0.48317,1.55296 -0.0458,0.22682 0.007,0.4634 -0.0106,0.69411 -0.0285,0.37144 -0.19703,0.9686 -0.0798,1.34766 0.048,0.15532 0.20838,0.2496 0.31257,0.3744 0.0924,0.38322 0.18999,1.07275 0.53482,1.35579 0.17516,0.14377 0.44921,0.0905 0.65263,0.19034 0.2407,0.11817 0.41812,0.34635 0.66302,0.45555 0.2397,0.10687 0.54158,0.0457 0.7661,0.18165 0.3365,0.20368 0.57549,0.53637 0.86324,0.80456 1.91585,0.41143 -0.20102,0.0151 2.03731,0.22194 0.34678,0.032 0.68472,0.21287 1.03054,0.17179 0.34893,-0.0414 0.64594,-0.27692 0.9713,-0.40962 1.27918,-0.5217 0.59615,-0.12201 1.72132,-0.96351 0.94885,-0.25841 1.6807,-0.92318 2.4536,-1.49693 0.23202,-0.17224 0.51891,-0.29478 0.68509,-0.53117 0.16407,-0.2334 0.1441,-0.88828 0.14994,-1.16825 0.5352,-0.58881 0.39254,-0.68678 0.43867,-1.44739 0.0123,-0.20281 -0.0422,-0.28532 0.14424,-0.20142 0.66326,0.29841 1.32023,0.61059 1.98035,0.91588 -0.49312,-0.53426 -0.98625,-1.06853 -1.47937,-1.60279 0.0354,0.0424 0.0511,0.12459 0.10631,0.12719 0.22921,0.0108 0.45759,-0.0445 0.68247,-0.0901 0.19566,-0.0397 0.39487,-0.0807 0.57568,-0.16538 0.94306,-0.44168 -0.23733,-0.13714 0.66711,-0.33095 0.22967,-0.4654 0.76907,-0.65297 1.07203,-1.04607 0.33965,-0.44071 -0.17946,-0.10693 0.21082,-0.66701 -0.0967,-0.009 -0.19344,-0.0189 -0.29016,-0.0284 -0.0225,-0.0568 -0.008,-0.1571 -0.0675,-0.17053 -0.146,-0.0329 -0.30504,0.10643 -0.44558,0.055 -0.14748,-0.054 -0.17123,-0.33067 -0.3281,-0.33811 -0.26443,-0.0125 -0.49355,0.19166 -0.74032,0.28749 -0.33048,-0.0159 -0.66096,-0.0317 -0.99144,-0.0476 -0.72036,0.35172 -1.73833,0.46564 -2.41168,0.9174 -0.19507,0.13088 -0.31882,0.34515 -0.48238,0.51378 -0.17498,0.18041 -0.39182,0.32534 -0.53312,0.5332 -0.15068,0.22166 -0.21886,0.48933 -0.3283,0.734 0.45029,1.37484 0.0467,-0.008 0.31649,1.42417 0.0585,0.31064 0.16617,0.61087 0.22171,0.92207 0.0524,0.29357 0.007,0.60589 0.10149,0.88886 0.0901,0.27076 0.30753,0.48167 0.43863,0.73512 0.12862,0.24864 0.22605,0.51222 0.33908,0.76833 0.36497,0.13931 0.72994,0.27861 1.09492,0.41792 0.29345,0.28939 0.50873,0.68996 0.88036,0.86816 0.39798,0.19084 0.88242,0.0791 1.31142,0.18285 1.26485,0.30592 1.22656,0.63386 2.56663,0.69702 0.46184,0.0218 0.92038,-0.0894 1.38057,-0.13415 2.21091,0.20386 0.80833,0.18895 2.97722,-0.0596 0.4729,-0.0542 0.94815,-0.0855 1.42189,-0.13178 0.47364,-0.0462 0.95976,-0.0254 1.42022,-0.14562 0.4212,-0.10993 0.79393,-0.35725 1.1909,-0.53588 1.45187,-0.25953 1.8189,1.79372 0.36703,2.05325 v 0 c -0.4374,0.14629 -0.85853,0.35575 -1.31219,0.43887 -0.98234,0.17998 -2.02639,-0.0436 -3.00716,0.0214 -0.5059,0.0335 -0.99906,0.17506 -1.50151,0.24295 -0.54618,0.0738 -1.0956,0.12134 -1.6434,0.18202 -0.52787,0.0112 -1.0568,0.069 -1.58361,0.0337 -1.57342,-0.10539 -3.03453,-0.74855 -4.45878,-1.36629 -0.49011,-0.21257 -0.99759,-0.39217 -1.46279,-0.6548 -0.40242,-0.2272 -0.75136,-0.53823 -1.12705,-0.80734 -0.34478,-0.51192 -1.15801,-1.66101 -1.38715,-2.23824 -0.18009,-0.45365 -0.30937,-1.68233 -0.41237,-2.16593 -0.40075,-1.88156 -0.41849,-0.6121 -0.10477,-2.59525 0.0983,-0.14081 1.41369,-2.03027 1.47334,-2.09073 0.26378,-0.26736 0.63293,-0.40611 0.93121,-0.63433 0.27481,-0.21026 0.4685,-0.53962 0.78524,-0.67893 0.27868,-0.12257 2.1069,-0.25278 2.36838,-0.27508 0.35956,-5.7e-4 0.71999,0.0235 1.07867,-0.002 0.73925,-0.0519 1.42413,-0.32491 2.17192,-0.0647 0.30698,0.10682 0.5358,0.36854 0.79471,0.56505 0.95057,0.72148 0.63082,0.40929 1.20774,1.52202 -0.33547,1.6951 -0.72344,3.08569 -2.44898,3.80183 -0.52859,0.31218 -0.89437,0.61598 -1.52385,0.67455 -0.0987,0.009 0.0848,-0.3813 0.13508,-0.26489 -1.33662,0.38942 1.15791,1.31297 -2.35971,-1.2856 0.87788,0.30365 1.77647,0.553 2.63365,0.91093 0.0625,0.0261 -0.14105,0.0566 -0.16353,0.1205 -0.0365,0.10386 0.003,0.22018 0.005,0.33028 -0.0449,-0.007 -0.10733,-0.0558 -0.13471,-0.0196 -0.28694,0.37929 -0.32105,0.92361 -0.76256,1.20594 -0.0891,0.27165 -0.14029,0.55884 -0.26736,0.81494 -0.45136,0.90968 -1.30022,1.6822 -2.02381,2.36665 -0.29646,0.28042 -0.56455,0.6005 -0.90742,0.82178 -0.34474,0.22249 -0.7522,0.32801 -1.12831,0.49202 -1.56537,0.95019 -0.4571,0.44899 -2.35954,0.85144 -0.47308,0.10008 -0.9267,0.30012 -1.40757,0.35094 -0.42024,0.0444 -0.84519,-0.0286 -1.26589,-0.0684 -1.52238,-0.14393 -1.06028,-0.0637 -2.401,-0.71963 -3.45518,-1.05247 1.47049,0.52539 -1.98926,-0.84886 -0.32095,-0.12748 -0.71658,-0.0587 -1.00619,-0.24676 -0.33636,-0.21845 -0.51861,-0.61196 -0.78189,-0.91451 -1.00847,-1.15887 -0.61841,-0.48723 -1.14585,-1.76584 -0.0737,-0.31269 -0.13474,-0.62867 -0.22123,-0.93808 -0.0821,-0.29364 -0.24095,-0.56764 -0.28405,-0.86948 -0.0509,-0.35624 -0.0668,-0.72709 0.006,-1.07955 0.068,-0.33001 0.28266,-0.61209 0.4071,-0.9252 0.37454,-0.94239 0.30969,-0.8384 0.50037,-1.80117 0.14753,-0.19556 0.8389,-1.09673 1.02107,-1.38608 0.17119,-0.27191 0.24752,-0.61353 0.47874,-0.83663 0.2814,-0.27153 0.70348,-0.35448 1.00884,-0.59876 0.97596,-0.78074 1.04569,-1.12597 1.66915,-2.18906 0.99708,-0.99708 2.40717,0.41301 1.41009,1.41009 z"
id="path4019"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
</g>
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path4021"
d="m 501.22109,71.190999 c -0.37511,-0.08973 -0.73981,-0.280887 -1.12532,-0.269179 -0.28298,0.0086 -0.51307,0.244336 -0.78379,0.32716 -0.28137,0.08608 -0.57366,0.134269 -0.86476,0.177184 -1.00766,0.148554 -2.0056,0.03953 -3.01884,0.033 -0.82517,0.05515 -1.65519,0.01183 -2.47991,0.07323 -0.58096,0.04325 -1.15386,0.192186 -1.7364,0.198608 -0.60628,0.0067 -1.2065,-0.127097 -1.81196,-0.159492 -1.34101,-0.07175 -2.68505,-0.06794 -4.02707,-0.117154 -3.13101,0.31941 -1.38292,0.22544 -4.61908,0.203986 -0.84292,-0.0056 -1.69036,-0.09479 -2.52881,-0.0079 -0.86759,0.08989 -1.69161,0.469634 -2.56137,0.535286 -0.94163,0.07108 -1.8864,-0.09252 -2.83003,-0.128327 -0.98915,-0.03753 -1.97878,-0.06111 -2.96818,-0.09166 -0.98924,0.0776 -1.97687,0.179525 -2.96771,0.23279 -1.03701,0.05575 -2.07746,0.03176 -3.11409,0.09415 -2.17867,0.131118 -4.34034,0.487613 -6.51976,0.605474 -7.19814,0.38927 0.57013,-0.424917 -6.51326,0.424053 -3.39379,0.03 -6.80197,0.01172 -10.1904,0.245483 -1.12206,0.07741 -2.2342,0.283514 -3.35794,0.330841 -1.14651,0.04829 -2.29487,-0.02963 -3.44231,-0.04444 -1.16924,0.06485 -2.33849,0.129711 -3.50773,0.194566 -2.28627,-0.12535 -4.53268,0.366577 -6.8038,0.463862 -1.10504,0.04734 -2.21344,-0.08566 -3.31803,-0.0289 -1.13232,0.05819 -2.2498,0.294728 -3.3809,0.373148 -2.89813,0.200932 -3.6072,0.07953 -6.44617,-0.07124 -2.93619,-0.285051 -5.88029,-0.0701 -8.82222,-0.06317 -0.89383,0.0021 -1.78779,-0.02882 -2.68148,-0.01246 -0.86293,0.01579 -1.72425,0.134891 -2.58692,0.108879 -0.83007,-0.02503 -1.6517,-0.174389 -2.47755,-0.261584 -2.19654,-0.478355 -4.42312,-0.178271 -6.64273,-0.242401 -0.56116,-0.01621 -1.11945,-0.103084 -1.68084,-0.105943 -2.44103,-0.01243 -0.46317,0.334823 -2.81086,-0.250665 -0.98886,-0.137015 -2.01976,-0.211726 -3.0172,-0.09068 -0.13075,0.01587 -0.92302,0.291481 -1.13303,0.125443 0.78465,0.149097 -0.76603,0.682144 -0.92865,0.475377 -0.40939,-0.520513 -0.49891,-1.232414 -0.65134,-1.876851 -0.0218,-0.09203 0.0608,-0.210485 0.15052,-0.240504 0.46108,-0.154339 0.95325,-0.192333 1.42987,-0.288499 0.0969,-0.425021 -0.59571,-0.07532 -0.47202,0.02221 0.33921,0.267478 0.84883,0.23741 1.20036,0.488481 0.37887,0.2706 0.37877,0.89004 0.47066,1.269875 0.0488,0.201606 0.11995,0.39712 0.17993,0.59568 0.63346,0.349004 -0.11556,0.404914 -0.10094,0.610735 0.0358,0.504365 0.14966,1.000674 0.19631,1.504155 0.0885,0.955515 0.0629,0.803496 0.0769,1.880407 -0.1538,1.434358 0.79571,2.632707 1.02735,3.981668 0.10233,0.595954 -0.0122,1.212672 0.0599,1.81304 0.47353,3.945794 0.38435,-0.62303 0.34381,3.542089 0.43059,1.379071 0.20815,2.861988 0.52956,4.254479 0.17208,0.745528 0.60721,1.414455 0.77233,2.161556 0.26788,1.212062 0.22314,3.610896 0.27226,4.805043 0.0364,0.884119 0.10288,1.766742 0.15432,2.650112 0.19833,1.87051 0.41324,3.55529 0.46297,5.44139 0.0246,0.93188 -0.0698,1.86486 -0.0344,2.79639 0.0355,0.9347 0.20721,1.86071 0.24683,2.79524 0.0407,0.96022 -0.0734,1.92452 -0.006,2.88324 0.0649,0.92475 0.26768,1.83463 0.40153,2.75194 0.10287,0.87669 0.30203,1.74738 0.30862,2.63006 0.0298,4.00028 -0.58319,1.06127 -0.37472,4.88125 0.0394,0.72275 0.28871,1.4219 0.34942,2.14318 0.54651,6.49297 -0.55331,-1.79773 0.27987,4.0257 0.0596,0.59331 0.17276,1.18366 0.17886,1.77993 0.006,0.55065 -0.15527,1.09521 -0.14382,1.64578 0.0102,0.4893 0.14723,0.96778 0.20826,1.45337 0.10144,0.80703 0.24883,2.15324 0.24877,2.97945 -4e-5,0.39169 -0.0547,0.78147 -0.0821,1.1722 0.10987,0.30824 0.29144,0.59973 0.32962,0.92473 0.0392,0.33381 -0.14084,0.66903 -0.10318,1.00301 0.0384,0.3401 0.27959,0.63453 0.32607,0.97361 0.0298,0.21758 -0.12674,0.4323 -0.10342,0.65067 0.0228,0.21306 0.17214,0.39333 0.23672,0.59763 0.0695,0.21985 0.10967,0.4479 0.16451,0.67185 -0.0421,0.23277 -0.15235,0.46322 -0.12624,0.69832 0.0195,0.17539 0.37727,0.10662 0.45966,0.26267 0.1579,0.29909 0.0636,1.08923 0.05,1.43422 1.87323,0.72225 -0.62769,-1.10159 -0.23687,-1.16294 0.13607,-0.0214 0.74593,0.67254 0.38101,0.49105 -0.11705,-0.0582 -0.32708,-0.29869 -0.20187,-0.33626 0.22814,-0.0684 0.4592,0.12677 0.6888,0.19016 0.12792,0.0389 0.26221,0.0611 0.38378,0.11679 0.21592,0.0989 0.40589,0.24973 0.6236,0.34464 0.14398,0.0628 0.30635,0.0724 0.45424,0.12525 0.27975,0.10008 0.54076,0.25265 0.8268,0.33303 0.12743,0.0358 1.8465,0.34128 2.04516,0.37692 3.97997,0.12855 -1.93437,-0.28047 2.06425,0.79403 0.43284,0.11631 0.8891,-0.14764 1.33725,-0.14039 0.48397,0.008 0.96043,0.12145 1.44024,0.18531 2.43084,0.32358 0.95464,0.16965 3.38599,0.37471 5.22183,-0.40653 -1.76071,-0.005 3.73405,0.16732 0.64809,0.0203 1.30116,-0.0561 1.93621,-0.18705 0.72045,-0.14853 1.37917,-0.56171 2.10981,-0.64708 0.77419,-0.0905 1.55548,0.1378 2.33488,0.12773 0.76864,-0.01 1.53233,-0.12506 2.29849,-0.1876 0.83642,0.0655 1.67307,0.26493 2.50927,0.19658 0.81678,-0.0668 1.56978,-0.51322 2.38504,-0.5966 0.88114,-0.0901 1.7708,0.11249 2.65598,0.081 0.9084,-0.0323 1.80798,-0.19082 2.71334,-0.27184 6.50203,-0.58185 -0.80016,0.15438 5.79358,-0.53228 2.22082,-0.20819 3.79824,-0.37468 6.03623,-0.50717 1.03122,-0.061 2.06547,-0.0652 3.09613,-0.13504 1.04211,-0.0706 2.07644,-0.25237 3.12038,-0.28628 5.964,-0.1937 0.47284,0.57798 6.42675,-0.5023 1.14575,-0.0673 2.29149,-0.13464 3.43724,-0.20196 1.14014,0.0662 2.27911,0.23988 3.42043,0.19859 7.06569,-0.2556 -0.50313,-0.74251 6.65568,-0.5558 5.99492,0.15635 0.71683,0.67258 6.59479,-0.18413 4.99352,-0.10531 1.74005,-0.1306 6.73524,0.14062 1.08904,0.0591 2.17949,0.09 3.26854,0.14889 1.00845,0.0546 2.01379,0.19245 3.02371,0.19154 1.00274,-9e-4 2.00016,-0.14919 3.00176,-0.19698 0.99285,-0.0474 1.98707,-0.059 2.98061,-0.0885 0.95872,0.0896 1.91745,0.17924 2.87617,0.26886 0.89583,-0.0844 1.7885,-0.2915 2.68748,-0.25327 0.90612,0.0385 1.7724,0.43011 2.67788,0.48139 0.84418,0.0478 1.68422,-0.1911 2.52974,-0.1865 1.84033,0.01 2.89939,0.31228 4.6777,0.67264 0.7349,-0.12705 1.45957,-0.34923 2.20468,-0.38116 0.69644,-0.0298 1.3853,0.17114 2.08188,0.19749 0.63431,0.024 1.26898,-0.0525 1.90372,-0.0467 1.5421,0.0141 3.05038,0.22151 4.567,0.47508 0.78362,0.60883 1.19129,-0.50906 1.81726,-0.48085 0.36913,0.0166 0.62986,0.41288 0.98857,0.50157 0.33798,0.0836 1.20876,-0.12871 1.62689,-0.14739 0.61318,0.22528 0.13108,0.0388 1.46239,0.85224 0.0251,0.0153 0.0796,0.0861 0.0574,0.0668 -0.11653,-0.1011 -0.25019,-0.44193 -0.33859,-0.3155 -0.51139,0.7313 -0.75729,1.6161 -1.13594,2.42416 0.17853,-0.95275 -0.43172,-0.0283 -0.32348,-0.0281 0.37073,6.1e-4 0.70532,-0.22874 1.05918,-0.33933 0.0226,-0.007 0.0884,-0.0279 0.0697,-0.0135 -0.86919,0.66797 -0.4832,0.56657 -1.39631,0.45624 -0.93767,0.11818 -0.20485,0.16527 -1.20149,-0.82963 -0.57093,-0.56993 -0.65131,0.12816 -0.75685,-1.1612 -0.14475,-1.76827 0.54964,-0.25857 -0.1723,-1.53313 0.0447,-0.32114 0.14031,-0.63925 0.13408,-0.96343 -0.008,-0.41355 -0.18308,-0.81474 -0.17621,-1.22831 0.0168,-1.01068 0.50259,-1.9821 0.48871,-2.99283 -0.0573,-4.16918 -0.89179,0.97375 0.12264,-3.74353 -0.0921,-0.77027 -0.28178,-1.53508 -0.2763,-2.31082 0.006,-0.81225 0.28001,-1.60533 0.30968,-2.41706 0.033,-0.90283 -0.13058,-1.80415 -0.12238,-2.70755 0.009,-0.9838 0.16031,-1.96266 0.1737,-2.94642 0.16791,-12.32928 -0.43333,6.57239 0.0205,-6.21238 -0.62153,-4.88681 -0.27489,-1.58915 -0.61631,-6.66746 -0.0762,-1.1339 -0.17179,-2.26641 -0.25384,-3.3999 -0.0801,-1.1066 -0.27294,-2.21159 -0.23262,-3.32035 0.31549,-8.676888 0.86918,1.80581 0.22637,-6.71416 -0.87999,-6.401537 -0.19213,-0.37068 -0.51042,-6.738065 -0.0545,-1.090321 -0.23062,-2.172276 -0.28554,-3.262575 -0.0563,-1.118078 0.0538,-2.24329 -0.048,-3.358143 -0.0965,-1.056771 -0.39054,-2.086638 -0.54528,-3.136466 -0.14421,-0.978455 -0.23418,-1.964141 -0.35127,-2.946212 -0.024,-0.934161 -0.004,-1.870464 -0.0721,-2.802484 -0.063,-0.86819 -0.23903,-1.725059 -0.31933,-2.591819 -0.13415,-1.447884 -0.0715,-2.912166 -0.25242,-4.354945 -0.16845,-1.343033 -0.39881,-1.878415 -0.79713,-3.104323 -0.46675,-2.204174 0.0764,-0.299806 -0.88056,-2.25238 -0.10559,-0.215429 -0.13163,-0.462165 -0.21893,-0.685629 -0.0834,-0.213489 -0.29551,-0.393301 -0.29209,-0.622476 0.007,-0.498997 0.68044,2.04e-4 0.0703,-0.363845 -1.04009,0.297623 1.22853,-0.86368 1.94311,-1.020592 0.19121,-0.04199 0.12169,0.372137 0.18254,0.558205 0.32136,1.661092 -2.02778,2.115561 -2.34914,0.454469 v 0 c 0.0809,0.01769 0.16891,0.09056 0.24277,0.05307 1.2063,-0.612351 2.92456,-1.803838 1.91995,-1.111589 0.47659,0.212977 0.25228,0.02588 0.40294,0.803175 0.10043,0.518143 0.22906,1.031717 0.29939,1.554796 0.25666,1.908842 -0.16431,0.368969 0.45818,2.218028 0.24984,2.480188 0.0516,0.64664 0.38933,3.382966 0.0829,0.671478 0.20433,1.339723 0.24192,2.015251 0.0433,0.777528 -0.0407,1.558541 2.3e-4,2.336194 0.0191,0.36305 0.52658,5.17437 0.55488,5.445366 -0.24765,8.89033 -0.058,-3.344486 0.32298,6.111401 0.0453,1.124542 -0.19768,2.249379 -0.14113,3.373412 0.0546,1.085987 0.39544,2.143 0.47319,3.227577 0.72465,10.107933 -0.87694,-3.384987 0.44177,6.785613 0.15095,2.1256 0.34258,4.54353 0.41281,6.67207 0.0363,1.09974 0.0101,2.20086 0.0417,3.30075 0.0973,3.39327 0.32459,6.78552 0.67482,10.16178 -0.7149,11.66272 0.0811,-5.09768 0.2911,6.21018 0.0184,0.98929 -0.35316,1.95544 -0.37448,2.94468 -0.0195,0.90579 0.18283,1.80293 0.25269,2.70624 0.19194,2.48198 0.14417,2.29245 0.13622,4.74162 -0.43691,6.58474 0.0781,-1.93405 -0.12427,3.76553 -0.005,0.14912 -0.24262,2.59623 -0.17534,2.8826 0.0897,0.38191 0.39641,0.67711 0.59461,1.01566 0.0332,0.27646 0.0663,0.55292 0.0995,0.82938 0.16449,1.64964 0.0135,0.2992 0.16576,1.39809 0.01,0.0695 -6.3e-4,0.14282 0.0216,0.20938 0.0327,0.0981 0.24378,0.27165 0.14051,0.27651 -0.54575,0.0256 -0.60305,-0.0933 -0.79204,-0.35155 -0.0784,0.0337 -0.77358,0.29953 -0.7191,0.43956 0.0569,0.14619 0.25878,-0.17872 0.39769,-0.25159 1.35205,-0.70936 1.07989,-0.98656 1.4353,-0.23936 -0.24809,0.7041 -0.40121,1.44928 -0.74429,2.11231 -0.0885,0.17098 0.0883,-0.44241 -0.051,-0.57528 -0.11172,-0.10657 -0.30885,0.1479 -0.45354,0.094 -0.0898,-0.0335 -0.14845,-0.29 -0.0529,-0.28264 2.10865,0.16248 1.33976,0.32634 0.79756,0.50234 -0.41009,-0.053 -0.81194,-0.16414 -1.22339,-0.20534 -0.22974,-0.023 -0.46355,0.0265 -0.69265,-0.002 -0.21546,-0.0269 -0.41389,-0.15016 -0.63063,-0.1632 -0.31417,-0.0189 -0.62979,0.11062 -0.94171,0.0686 -0.37606,-0.0506 -0.72395,-0.22769 -1.08592,-0.34153 -5.47277,-0.56719 3.08519,0.27286 -2.83055,-0.13924 -0.56852,-0.0396 -1.12578,-0.19945 -1.69524,-0.2218 -0.63239,-0.0248 -1.26408,0.0893 -1.8969,0.0808 -1.49217,-0.0201 -2.7196,-0.23359 -4.20539,-0.43201 -0.77637,0.0293 -1.55288,0.12095 -2.3291,0.088 -1.62507,-0.0691 -3.21707,-0.56458 -4.84334,-0.59389 -0.90884,-0.0164 -1.81025,0.18132 -2.71873,0.2118 -2.3976,0.0805 -3.16816,-0.0729 -5.58353,-0.30144 -0.97212,-0.04 -1.94677,-0.0395 -2.91637,-0.12014 -2.93861,-0.24434 -3.11509,-0.57964 -6.08019,-0.52288 -1.10211,0.0211 -2.1939,0.29705 -3.29588,0.27011 -2.22202,-0.0543 -4.38909,-0.92338 -6.64685,-0.53148 -1.08056,-2e-5 -2.16491,-0.0905 -3.24167,-7e-5 -4.12061,0.34617 -2.48432,0.88986 -6.68416,0.7124 -1.11165,-0.047 -2.19564,-0.46703 -3.30808,-0.44544 -2.26803,0.044 -4.43668,1.21944 -6.76042,0.78095 -1.08687,0.0904 -2.17374,0.1807 -3.26061,0.27105 -1.06763,0.13275 -2.13158,0.29943 -3.20287,0.39827 -10.91764,1.00727 4.51879,-0.57797 -6.17969,0.24983 -2.02933,0.15702 -4.021,0.67725 -6.06547,0.70395 -0.98041,-0.0297 -1.96343,-0.16645 -2.94124,-0.0892 -0.93666,0.074 -1.83404,0.42468 -2.76648,0.54031 -0.91289,0.1132 -1.8406,0.0523 -2.75586,0.14447 -0.89188,0.0898 -1.76467,0.34242 -2.65916,0.40075 -0.82309,0.0537 -1.64975,-0.10562 -2.47364,-0.066 -0.82302,0.0395 -1.63553,0.20187 -2.45329,0.30281 -3.8491,0.73407 -0.79559,0.29536 -4.55914,0.46415 -5.95298,0.26698 1.63957,8.7e-4 -4.19698,0.59401 -1.24188,0.12621 -2.6562,-0.0706 -3.88856,-0.19014 -1.1281,-0.11523 -2.26038,-0.18773 -3.38788,-0.30873 -0.51352,-0.0551 -1.01871,-0.19798 -1.53502,-0.21056 -1.29966,-0.0317 -1.23525,0.39452 -2.53433,0.0401 -0.35339,-0.0964 -0.64966,-0.3386 -0.97449,-0.5079 -0.43292,0.0967 -0.85579,0.31311 -1.29877,0.28996 -0.33995,-0.0178 -0.61137,-0.30667 -0.93673,-0.40677 -0.27887,-0.0858 -0.58721,-0.0513 -0.86291,-0.14687 -0.26116,-0.0905 -0.45519,-0.34128 -0.72456,-0.40316 -0.16544,-0.038 -0.32783,0.15744 -0.49409,0.12323 -0.16545,-0.0341 -0.2684,-0.20516 -0.4026,-0.30773 -0.54382,0.14766 -0.38028,0.15111 -1.27227,-0.23181 -0.0627,-0.0269 -0.0416,-0.14336 -0.1,-0.1788 -0.39518,-0.23993 -0.31777,0.39306 -0.7131,-0.40597 -0.20218,-0.40865 -0.25233,-0.87627 -0.3785,-1.3144 -0.11054,0.18373 -0.34102,0.43951 0.2916,0.18879 0.0513,-0.0203 -0.1039,-0.0521 -0.1327,-0.0992 -0.085,-0.13907 -0.15283,-0.29011 -0.20047,-0.44598 -0.12885,-0.4216 -0.18003,-0.79923 -0.24747,-1.2215 0.22043,-0.90982 0.0943,-1.95046 -0.10271,-2.85873 -0.071,-0.32742 -0.21044,-0.63922 -0.26287,-0.97012 -0.0624,-0.39402 -0.0534,-0.79609 -0.0801,-1.19413 0.78443,-2.39749 0.13153,0.33747 -0.10549,-2.44112 -0.0452,-0.53019 0.18183,-1.05097 0.21176,-1.58224 0.0929,-1.64867 -0.24055,-3.28672 -0.2951,-4.92905 0.058,-0.62101 0.16214,-1.23943 0.17401,-1.86304 0.007,-0.3497 -0.20224,-4.12873 -0.21382,-4.43503 -0.0903,-2.38921 -0.0417,-2.37637 -0.0602,-4.81757 -0.006,-0.85447 -0.0233,-1.70883 -0.0349,-2.56325 -0.51375,-10.86828 0.29552,5.78751 -0.3361,-5.63086 -0.15322,-2.7699 -0.0121,-2.82952 -0.37102,-5.56213 -0.12376,-0.94234 -0.39104,-1.86534 -0.46772,-2.81267 -0.0717,-0.8863 0.0161,-1.77832 0.0242,-2.66747 -0.004,-0.0817 -0.2503,-4.876591 -0.26843,-5.007974 -0.10477,-0.75951 -0.34312,-1.494521 -0.5128,-2.242211 -0.16642,-0.733284 -0.36993,-1.459328 -0.49547,-2.200703 -0.26486,-1.564097 -0.27276,-2.746787 -0.3462,-4.323154 -0.39189,-1.380431 -0.65666,-2.085331 -0.81688,-3.49643 -0.0606,-0.533973 0.0124,-1.079885 -0.0721,-1.610599 -0.0839,-0.52695 -0.29512,-1.025678 -0.43003,-1.541932 -0.53393,-2.043097 -0.0663,-0.745713 -0.84314,-2.603205 -0.052,-3.049775 0.0834,1.184258 -0.22745,-1.904371 -0.0199,-0.198274 0.0821,-0.397788 0.0553,-0.595261 -0.0269,-0.198284 -0.1178,-0.385065 -0.21199,-0.561607 -0.15923,-0.298469 -0.50041,-0.521013 -0.54452,-0.856412 -0.0203,-0.154636 0.26662,-0.161905 0.39994,-0.242858 -0.10386,-0.06658 -0.29329,-0.07775 -0.31157,-0.199757 -0.0172,-0.114908 0.15339,-0.176299 0.24437,-0.248569 0.0233,-0.01853 -0.064,0.07554 -0.035,0.08225 0.34607,0.08008 0.74872,-0.02708 1.05452,0.153663 0.13667,0.08078 -0.26636,0.190966 -0.42246,0.21991 -0.17597,0.03263 -0.35683,-0.02822 -0.53525,-0.04233 1.56303,-0.509778 2.27226,-0.361734 0.46457,-2.404474 -0.16553,-0.187053 -0.51528,-0.147812 -0.74729,-0.05529 -0.10682,0.0426 -0.0871,0.378504 0.0227,0.344266 0.20435,-0.06373 0.28197,-0.322158 0.42296,-0.483237 0.2479,-0.05506 1.79564,-0.399945 2.04892,-0.370929 0.33726,0.03864 0.6294,0.272906 0.96457,0.326758 0.35105,0.0564 0.7111,-2.67e-4 1.06665,-4.01e-4 0.38982,0.08779 0.77965,0.175574 1.16947,0.263361 1.74629,0.233726 0.8155,0.215154 2.79271,-0.03344 0.58577,0.03921 1.13116,0.326205 1.71121,0.416793 0.66078,0.103195 1.33476,0.09163 1.99975,0.162758 4.03202,0.431267 0.41738,0.216562 4.552,0.383608 0.82715,0.04371 1.65405,0.09247 2.48146,0.131138 0.82933,0.03876 1.66186,0.02568 2.48866,0.10114 0.90124,0.08225 1.78539,0.329955 2.68942,0.371451 0.95672,0.04391 1.91368,-0.149777 2.87082,-0.116228 0.98156,0.03441 1.95274,0.213018 2.92911,0.319527 1.00801,0.0051 2.01603,0.01025 3.02405,0.01537 4.18077,-0.0075 2.05193,0.05853 6.38604,-0.212861 1.13264,-0.0097 2.26277,0.190009 3.39474,0.149791 1.11641,-0.03966 2.21499,-0.30207 3.32874,-0.388668 1.83732,-0.142856 4.98367,-0.157482 6.82477,-0.18317 1.1554,-0.121237 2.30601,-0.303564 3.4662,-0.363709 6.51864,-0.337938 0.30017,0.357855 6.8077,-0.0039 1.15001,-0.06393 2.28977,-0.251992 3.43562,-0.368736 4.06459,-0.414115 2.62338,-0.29334 6.72972,-0.453785 1.08143,-0.05539 2.16222,-0.124946 3.24428,-0.166165 1.086,-0.04137 2.17416,-0.02244 3.25933,-0.08158 6.28867,-0.342742 0.30184,-0.104531 6.47781,-0.844351 0.92975,-0.111375 5.19389,-0.281785 6.18206,-0.32521 0.97281,-0.03323 1.94529,-0.07802 2.91842,-0.09968 0.92953,-0.0207 1.86086,0.02509 2.78913,-0.02739 0.87706,-0.04959 1.7495,-0.16527 2.62063,-0.278483 0.82223,-0.106857 1.62916,-0.359005 2.45799,-0.381535 6.39196,-0.173753 -1.56169,0.876671 4.7683,-0.124948 7.62125,0.507038 -2.89677,-0.03826 3.98715,-0.145579 0.5825,-0.0091 1.14988,0.224428 1.73241,0.230736 1.49401,0.01618 2.8943,-0.681394 4.39668,-0.5001 1.21848,0.342471 0.57924,0.277066 1.76301,0.19264 0.26901,-0.01919 0.54708,0.01877 0.80744,-0.05155 0.30435,-0.0822 0.55387,-0.314608 0.85783,-0.398215 0.3748,-0.103094 1.88258,-0.218334 2.27493,-0.252797 1.68981,0 1.68981,2.38975 0,2.38975 z"
inkscape:connector-curvature="0" />
</g>
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6548"
d="m 91.050781,22.400391 c -1.349668,0.522876 -1.30547,2.558456 -0.230469,3.341797 3.602829,4.925767 4.541468,11.159754 5.016124,17.092413 1.771883,21.353824 1.243306,42.836866 -0.360017,64.182519 -0.820512,7.26917 -2.51457,14.41901 -4.763528,21.3735 -0.475781,2.33696 1.417904,4.61778 3.674578,5.0362 5.491056,2.23024 11.604681,1.61636 17.269241,0.45619 10.98556,-1.94123 22.07441,-3.23017 33.05934,-5.17633 8.68382,-1.38432 17.40681,-2.90222 26.22536,-2.93129 6.59181,0.13768 13.07412,1.51201 19.48282,2.93666 1.04645,0.24125 1.66134,-0.92504 1.13569,-1.7547 -0.51817,-0.98147 -1.37839,-1.74511 -1.79555,-2.7951 -2.9882,-5.52909 -3.15427,-11.98821 -3.26701,-18.1231 -0.29107,-18.402216 2.7845,-36.616713 4.03367,-54.932926 0.50349,-6.348928 0.86742,-12.707787 1.2092,-19.067162 0.28174,-1.061977 1.57671,-1.615 1.58399,-2.783203 -0.70962,-1.38717 -3.21125,-0.444926 -2.84766,1.0625 -0.62458,18.177612 -2.51462,36.276076 -4.2301,54.373808 -0.9075,10.485603 -1.77664,21.081213 -0.50703,31.573903 0.48415,3.09211 1.38792,6.11373 2.62776,8.98588 0.10381,1.05477 -1.32722,1.70219 -2.13867,1.11719 -11.336,-2.49207 -23.17276,-2.34314 -34.52699,-0.0435 -13.2936,2.21844 -26.69431,3.71563 -40.00651,5.80659 -5.07768,0.86584 -10.50859,1.74292 -15.454786,-0.20454 -1.040987,-0.42561 -2.038862,-0.94767 -2.996093,-1.53711 -1.13024,-1.94056 -0.02353,-4.15278 0.564453,-6.07421 3.667587,-13.1415 3.836053,-26.887419 4.163799,-40.428502 0.279164,-17.472405 0.598889,-35.078037 -2.308331,-52.374236 -0.439358,-1.629674 -1.05973,-3.205939 -1.818359,-4.712891 -1.030024,-0.624798 -0.137846,-2.51877 1,-2.113281 28.685787,1.817188 57.412817,2.896264 86.096567,4.748136 2.15725,0.11391 4.31536,0.209305 6.47375,0.298739 0.96508,-0.537429 0.0826,-2.277013 -0.92579,-1.826172 -15.00173,0.240732 -29.94499,-1.369165 -44.92376,-1.897009 -16.69888,-0.800937 -33.44204,-1.385843 -50.025454,-3.638147 -0.163239,0.01112 -0.330465,-0.02423 -0.490235,0.02734 z m 0.625,1.027343 c 0.410157,0.275059 -0.279526,-0.02051 0,0 z m 0.08789,0.660157 c 0.294719,0.233462 -0.255436,-0.08772 0,0 z m 0.748047,0.138671 c -0.214755,0.03472 -0.236504,-0.331223 0,0 z"
inkscape:connector-curvature="0" />
<path
sodipodi:nodetypes="cccccccccccccccccccccccc"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6550"
d="m 198.32227,34.333984 c -2.48583,0.575857 -4.95184,1.232003 -7.42188,1.871094 -0.81082,0.830263 0.68363,2.250816 1.49219,1.4375 1.86898,-0.648931 3.86234,-0.736139 5.78906,-1.125 1.54691,0.355043 1.70426,2.216941 2.11156,3.473456 1.14399,5.109656 0.95888,10.381648 1.31056,15.576686 0.85525,21.368238 0.84251,42.819292 3.5383,64.06741 0.48921,5.13037 0.94269,10.26698 1.15091,15.4176 -1.08164,3.50744 -5.00969,5.54542 -8.53906,5.07422 -14.28132,0.26518 -28.54331,-2.30631 -42.81209,-0.83601 -12.83812,1.45978 -25.62979,3.53776 -38.56096,4.00008 -2.25321,-0.15484 -3.26298,-2.3417 -3.77231,-4.33482 -0.45445,-1.41492 -0.88513,-3.28367 -1.34076,-4.13652 -0.87734,-0.79837 -2.02554,0.69107 -1.31961,1.51279 1.83579,4.62557 1.58607,5.74881 2.31744,9.08159 4.03624,0.36394 7.9064,-1.24475 11.92008,-1.32114 9.32825,-1.00685 18.65327,-2.06098 27.94129,-3.39183 11.6788,-1.37559 23.48781,-0.86875 35.15537,0.35432 6.16856,0.4934 12.59199,0.78809 18.50084,-1.37182 1.34237,-0.60828 1.57046,-2.15141 1.8906,-3.42071 0.93072,-4.31916 -0.10432,-8.71323 -0.54915,-13.02623 -1.8496,-13.75569 -3.71318,-27.576338 -3.53696,-41.486979 -0.25328,-14.645024 -0.3668,-29.308059 -1.54863,-43.915687 -0.34431,-1.750244 -1.73197,-3.682571 -3.71679,-3.5 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6552"
d="m 209.07422,45.722656 c -1.48373,0.294271 -2.96745,0.588542 -4.45117,0.882813 -0.55697,0.897059 0.70203,2.141346 1.58984,1.548828 1.45638,-0.228516 2.91276,-0.457031 4.36914,-0.685547 2.95257,14.24457 2.22943,28.86354 2.67981,43.313283 1.20924,21.360517 5.74256,42.326577 8.5775,63.490147 0.25532,2.84842 -0.78651,6.15794 -3.53367,7.46066 -3.01865,1.69925 -6.60444,1.01589 -9.84427,0.5217 -13.65065,-1.63825 -27.3953,-3.67831 -41.17622,-2.59004 -9.1483,0.66176 -18.19287,2.25445 -27.2012,3.92534 -1.82495,0.72291 -3.25396,2.39721 -5.29492,2.55469 -2.14441,-1.05176 -2.50198,-3.65611 -3.05692,-5.72349 -1.28196,-4.72232 -2.50419,-9.47259 -3.23995,-14.31557 -0.63357,-0.98018 -2.4095,0.0855 -1.84961,1.10547 1.55481,7.10726 3.35178,14.25076 6.66015,20.77344 1.5257,0.88832 3.65368,0.40714 4.69727,-1.00196 5.84193,-3.66611 12.84642,-4.45335 19.5293,-5.38867 13.49103,-1.9017 27.28426,-1.78615 40.70716,0.59966 6.63018,0.95404 13.30595,1.63258 20.00377,1.83393 3.9545,-1.42373 5.97872,-6.01061 5.3884,-10.00456 -1.2502,-8.15743 -3.34931,-16.15555 -4.64606,-24.30545 -3.34318,-18.82758 -4.91607,-37.971655 -4.60571,-57.093086 0.006,-8.115488 -0.0717,-16.264214 -1.2167,-24.313697 -0.48675,-1.718251 -2.36423,-2.759402 -4.08594,-2.587891 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6554"
d="m 127.53985,93.721063 c 1.60936,-1.253009 2.6578,-1.884159 3.87577,-3.535004 0.48731,-0.660502 0.8428,-1.409776 1.22378,-2.136813 1.57471,-3.005015 2.74114,-6.171042 3.91231,-9.346751 2.79874,-7.785077 0.38688,-0.544642 2.52782,-8.668758 0.36444,-1.382905 0.88458,-2.72192 1.24198,-4.106659 0.86223,-3.34069 1.33059,-6.788973 1.9162,-10.185126 0.0658,-3.902565 -0.16467,-0.470484 0.45136,-3.633967 0.0515,-0.264327 -0.19314,-0.943139 0.0392,-0.806926 0.37231,0.21831 0.32841,0.80468 0.56858,1.163281 0.0661,0.09873 0.29338,0.04452 0.31819,0.160732 0.0826,0.386945 -0.0204,0.791061 -0.0306,1.186591 -0.32855,4.097811 0.0159,-1.144763 -0.01,3.70894 -0.005,0.887735 -0.16982,1.771763 -0.14658,2.659206 0.0264,1.007112 0.26567,2.000909 0.29502,3.00794 0.0731,2.510011 -0.14498,5.020074 -0.2068,7.530389 0.4211,7.350852 -0.0458,0.764225 0.75098,8.247477 0.13807,1.29663 0.15159,2.606935 0.34227,3.896878 0.17625,1.192368 0.50606,2.356934 0.75644,3.535965 0.80506,3.790973 0.49799,2.125029 1.05204,5.69299 -0.2197,1.757451 0.79241,3.233673 1.02608,4.898694 0.0226,0.161122 -0.17241,1.597053 0.33742,0.906762 0.0602,-0.08149 -0.14033,-0.146155 -0.21049,-0.219233 -0.36714,0.01468 -0.77041,-0.115435 -1.10143,0.04405 -0.21725,0.10467 -0.14063,0.493149 -0.32819,0.644731 -0.11255,0.09096 0.091,-0.287879 0.0621,-0.429684 -0.0273,-0.133876 -0.2558,-0.213932 -0.22005,-0.345797 0.30831,-1.137244 1.17355,-1.433108 0.23952,-1.009077 -0.22179,-0.300224 -0.24288,-0.929189 -0.34039,-1.329113 -0.006,-1.594482 2.24906,-1.602793 2.25494,-0.0083 v 0 c -0.56749,0.271365 0.37033,0.856149 0.28951,1.366748 -0.0815,0.267919 -0.1068,0.559958 -0.24461,0.803755 -0.0347,0.06132 -0.0931,-0.251631 -0.10656,-0.182493 -0.1039,0.532194 0.3809,1.450061 -0.14417,1.913993 -0.33774,0.298406 -0.86642,0.248529 -1.29963,0.372794 -1.39531,-1.270241 -0.90311,-1.675603 -1.1897,-3.340107 -0.50939,-2.958607 -0.2714,-0.386498 -0.44853,-3.849203 -0.50589,-3.111611 -0.76231,-6.236031 -1.33681,-9.339007 -0.24235,-1.308947 -0.66865,-2.587333 -0.80579,-3.911443 -0.14505,-1.400511 -0.0245,-2.815899 -0.0368,-4.223848 -0.19377,-1.381335 -0.38753,-2.76267 -0.58129,-4.144005 0.0595,-1.353394 0.17708,-2.705482 0.17845,-4.060181 0.004,-4.39063 -0.83815,-8.765893 -0.59365,-13.15233 0.0962,-0.585135 0.0231,-1.225119 0.2885,-1.755404 0.92962,-1.857556 1.62099,-1.863049 2.47927,-0.0057 0.10469,0.226552 -0.14269,0.478332 -0.21758,0.716401 -0.14482,0.460358 -0.34186,0.906635 -0.44153,1.378829 -0.1537,0.728127 -0.2107,1.473357 -0.31605,2.210035 -1.63373,7.771493 -3.69162,15.445916 -5.83219,23.092026 -0.48015,1.243542 -0.98044,2.479494 -1.44046,3.730625 -0.90461,2.460334 -1.13886,3.809061 -2.44314,6.020026 -0.44803,0.759482 -1.03307,1.429338 -1.55451,2.140424 -0.54563,0.744072 -1.0009,1.565972 -1.64668,2.225006 -0.65438,0.667808 -1.47809,1.14541 -2.21713,1.718115 -0.88281,0.662109 -1.81918,-0.586376 -0.93637,-1.248485 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6556"
d="m 137.36914,41.380859 c -4.39802,0.770466 -8.62375,2.424847 -12.49985,4.614322 -4.0934,2.829413 -7.4751,6.600386 -10.26837,10.69089 -3.02997,5.273361 -4.61573,11.247066 -5.59926,17.209432 -0.57987,4.194268 -0.7528,8.607451 0.64678,12.663091 1.1675,2.981513 2.83248,5.731721 4.28515,8.576172 2.06531,3.552383 5.16292,6.514274 8.90087,8.252134 6.59768,3.56932 13.94343,5.7198 21.40662,6.39743 4.69745,0.29498 9.42608,-0.15902 14.04076,-1.03535 6.2748,-1.3793 11.95257,-5.56953 14.7553,-11.400463 2.81416,-5.699944 4.261,-12.080673 4.00801,-18.442717 -0.16236,-5.798049 -1.47891,-11.645742 -4.47097,-16.662216 -3.0084,-5.137126 -7.29485,-9.709882 -12.78886,-12.181435 -5.33702,-2.484178 -11.27816,-3.436546 -17.12827,-3.538212 -2.46509,-0.0078 -4.92799,0.197511 -7.36017,0.597157 -1.20709,-0.510817 -1.01117,1.848379 0.14295,1.067619 3.84736,-1.238248 7.94554,-0.646054 11.89628,-0.417743 7.48653,0.678547 15.07465,3.493609 20.25259,9.117209 3.55272,3.947664 5.99561,8.823526 7.46994,13.902293 1.12073,4.085983 1.07515,8.378801 0.873,12.576716 -0.42352,6.780861 -3.10311,13.401814 -7.50391,18.574222 -2.27185,2.6141 -5.42234,4.34124 -8.77465,5.12854 -6.91949,1.96119 -14.32592,2.28532 -21.34445,0.63855 -4.32331,-0.97613 -8.56606,-2.35844 -12.6158,-4.15638 -2.67944,-1.39092 -5.17271,-3.13582 -7.5426,-4.994362 -3.22658,-2.988572 -4.82716,-7.202685 -6.64968,-11.099638 -1.26024,-2.896269 -1.94976,-6.068006 -1.69063,-9.233199 0.23596,-6.351058 2.06326,-12.535825 4.42836,-18.394843 1.95388,-4.266935 5.33894,-7.653072 8.80348,-10.725277 2.40271,-2.094189 5.21078,-3.706827 8.2704,-4.61936 2.06342,-0.624735 4.14151,-1.293753 6.27964,-1.59091 3.02035,-0.193297 5.57326,1.662147 8.06104,3.095258 0.69697,0.742025 2.29329,0.431637 1.51992,-0.769703 -0.49214,-0.818316 -1.54584,-0.79423 -2.27266,-1.309873 -2.3563,-1.201009 -4.78317,-2.674271 -7.53096,-2.529354 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6558"
d="m 245.73047,63.5625 c -5.52252,0.364137 -11.24662,0.497278 -16.37891,2.814453 -1.14269,0.892161 -2.37573,1.715689 -3.25195,2.892578 0.0857,1.136848 2.08058,1.002667 2.10156,-0.105469 2.0781,-2.403913 5.45075,-2.671665 8.35999,-3.287998 13.95174,-2.441565 28.36684,-0.542291 41.75681,3.78679 9.35901,2.961247 17.97558,7.790783 26.31601,12.885313 0.86961,0.436054 1.75257,1.254886 2.77227,1.117849 1.18171,-0.467997 1.25452,-2.291466 0.15538,-2.900023 -0.98761,-1.113021 -2.32184,-1.823268 -3.43663,-2.791384 -1.20207,-0.336192 -2.27034,1.211908 -3.4375,0.46875 -9.68136,-5.069783 -19.74444,-9.678408 -30.48885,-11.955971 -7.99281,-1.974496 -16.22644,-3.078802 -24.46818,-2.924888 z m 61.99219,18.322266 c -0.0685,0.206901 -0.37893,-0.386224 0,0 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6560"
d="m 292.24353,65.282777 c -0.46241,-0.365542 -0.87931,-0.797536 -1.38724,-1.096628 -0.30416,-0.179105 -0.65945,-0.282094 -1.01085,-0.315477 -0.0783,-0.0074 0.0138,0.282628 0.0683,0.225938 0.40763,-0.423506 1.06982,-1.834314 1.22589,-1.267607 0.21885,0.321569 0.47255,0.622007 0.65656,0.964708 0.0808,0.150434 0.0423,0.348229 0.12778,0.49605 0.57703,0.998085 1.64219,1.628094 2.26131,2.626633 0.31124,0.501966 0.52134,1.059974 0.78201,1.589961 1.7725,2.810896 4.01767,5.214552 6.41607,7.496902 1.47158,1.386094 3.07324,2.600586 4.37948,4.15287 0.69989,1.658074 -0.13212,2.713181 -1.97245,2.237796 -0.36542,-0.09439 -0.70782,-0.26525 -1.0719,-0.364708 -0.35111,-0.01258 -0.70223,-0.02515 -1.05335,-0.03773 -0.36937,0.09211 -0.72744,0.27541 -1.10812,0.27634 -0.43819,0.0011 -0.84843,-0.25759 -1.28642,-0.27049 -0.48016,-0.01414 -0.94876,0.165151 -1.42845,0.190528 -1.0797,0.05712 -1.47343,-0.13536 -2.56071,-0.401898 -0.35665,-0.176527 -1.44266,-0.618105 -1.93772,-0.471655 -0.16247,0.04806 -0.26485,0.230894 -0.42911,0.272414 -0.0722,0.01824 -0.11659,-0.114123 -0.19101,-0.115664 -0.17278,-0.0036 -0.339,0.06745 -0.5085,0.101176 -0.11003,0.01367 -0.3007,0.147925 -0.3301,0.04101 -0.70399,-2.559773 -0.1412,-2.856493 1.17259,-0.716969 0.0843,0.137297 -0.008,0.322135 -0.0118,0.483203 -0.22851,1.427028 -2.24664,1.103859 -2.01812,-0.32317 v 0 c 0.0396,-0.09463 0.0195,-0.309276 0.11892,-0.283897 0.46823,0.119534 0.86386,0.433475 1.29805,0.645634 0.0223,0.01089 0.0774,0.04707 0.0707,0.02319 -0.47387,-1.680779 -0.93645,-2.690034 -0.5492,-1.829006 1.28619,-0.499752 2.66662,-0.158051 3.88435,0.377005 0.28194,0.102635 0.54842,0.26814 0.84581,0.307905 0.37319,0.0499 0.75218,-0.04695 1.12868,-0.04389 0.90152,0.0073 1.7993,0.18696 2.70025,0.154172 3.27421,-0.119155 -0.99468,-0.3251 2.32302,-0.09772 0.61936,-0.02412 1.51422,-0.08765 1.5132,0.09568 -0.003,0.471114 -0.49061,0.643916 0.049,1.049148 -1.42782,-1.381887 -2.77275,-2.84484 -4.23162,-4.201172 -1.30401,-1.31929 -2.69641,-2.630558 -3.87831,-4.060863 -0.34447,-0.416856 -0.58947,-0.909789 -0.93516,-1.325627 -0.3708,-0.446042 -0.88589,-0.770107 -1.20804,-1.252462 -0.26891,-0.402657 -0.35422,-0.90129 -0.53134,-1.351935 -0.58805,-0.752688 -1.10848,-1.561097 -1.74788,-2.270679 -0.54779,-0.607911 -2.01737,-1.741017 -1.97827,-2.723988 0.006,-0.161965 0.23561,0.22267 0.35342,0.334005 -1.26741,-0.452813 -1.52951,-1.132784 -0.33949,-2.528172 0.48529,-0.569038 1.90303,0.814987 1.91116,0.820983 0.47422,0.349828 0.9506,0.696723 1.42589,1.045084 0.9497,0.712271 -0.0576,2.055342 -1.0073,1.343071 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6562"
d="m 371.41268,25.172478 c -5.02601,-1.011797 -0.44948,-0.145998 -5.46951,-0.936733 -0.864,-0.136093 -1.71503,-0.359165 -2.58475,-0.451907 -2.4373,-0.2599 -4.9876,0.04722 -7.42966,0.09671 -4.28393,0.07118 -8.58124,0.131363 -12.86703,0.05761 -5.44525,-0.09371 -0.91487,-0.249449 -6.05493,0.03044 -3.15501,-0.09746 -2.26445,-0.155218 -5.40162,0.08663 -0.7652,0.05899 -1.54171,0.05429 -2.29252,0.213331 -0.57944,0.122739 -1.09487,0.458825 -1.66348,0.624643 -2.38987,0.696933 -0.55959,-0.107928 -1.7856,0.463157 -0.4008,0.433539 -1.0221,0.204367 -1.4865,0.428567 -0.0711,0.03432 0.064,0.215544 0.13922,0.191601 0.21511,-0.06847 0.21706,-0.274755 0.19729,-0.07997 -0.038,-0.100858 -0.15133,-0.403748 -0.11413,-0.302575 0.62366,1.696218 0.17036,0.05957 0.24231,1.607802 0.0397,0.85496 0.28591,0.635704 -0.0578,1.592951 0.55324,0.408983 0.93406,1.325316 0.97131,2.004893 0.0179,0.326549 -0.18691,0.640877 -0.16484,0.967171 0.0199,0.294502 0.22661,0.548808 0.2869,0.83776 0.10067,0.482472 0.12917,0.977226 0.19375,1.46584 0.0689,0.552165 0.13777,1.104331 0.20665,1.656496 0.009,0.55321 -0.0283,1.109087 0.0267,1.65963 0.0451,0.451695 0.20932,0.884772 0.27231,1.334323 0.25853,1.84501 0.35628,3.710142 0.3799,5.569665 -0.31891,1.578224 0.0829,2.902219 0.57485,4.372851 0.10692,0.319608 0.27032,0.622128 0.34214,0.951402 0.20033,0.918359 -0.21158,0.646971 0.12735,0.842782 -0.2835,0.554633 0.48785,0.536434 0.55155,0.875384 0.0521,0.277075 -0.0471,0.561974 -0.062,0.843508 -0.009,0.17801 0.0202,0.35913 -0.0109,0.534665 -0.16064,0.908471 -0.1276,-0.354322 -0.1259,0.471109 -1.3113,-3.507449 -1.28388,1.3796 -1.02022,1.033818 0.10438,-0.136886 0.25988,-0.338226 0.17274,-0.486678 -0.95887,-1.633377 -1.61281,-0.651351 -0.77651,-1.565336 0.29857,-0.142524 0.57418,-0.34963 0.89571,-0.427573 0.23458,-0.05686 0.48397,0.06679 0.72325,0.03512 0.15432,-0.02042 0.27783,-0.145461 0.42773,-0.187427 1.27594,-0.357218 2.54304,-0.72567 3.83445,-1.041868 0.69757,2.42e-4 1.39684,0.04923 2.09272,7.24e-4 0.73274,-0.05108 1.45193,-0.229796 2.1832,-0.2988 1.98148,-0.186979 3.40687,-0.149296 5.38615,-0.296015 9.32162,-0.690985 -3.54973,0.08726 6.17644,-0.46999 5.86947,-0.207453 11.74922,-0.176066 17.61347,0.168286 2.87068,-0.494533 1.29891,-0.3452 4.0049,-0.373338 0.6247,-0.0065 1.25261,-0.09763 1.87391,-0.03229 1.1539,0.121342 2.43509,0.542675 3.58561,0.802258 1.14667,-0.572042 -0.1588,0.410941 -0.23422,0.306794 -0.25999,-0.359029 0.79301,-1.183229 0.99446,-1.361606 -0.94502,0.729295 0.63345,-0.213552 0.60271,-0.593159 -0.01,-0.119016 -0.15146,-0.163699 -0.17171,-0.272512 -0.34147,-0.39722 -0.20852,-1.393347 -0.31722,-1.738548 -0.0911,-0.289275 -0.34042,-0.515273 -0.41669,-0.808801 -1.28416,-4.941598 0.77957,1.372765 -0.46564,-2.304106 -0.51214,-0.954026 -0.2672,-2.062416 -0.55031,-3.059032 -0.207,-0.728717 -0.6831,-1.362585 -0.88856,-2.091737 -0.1951,-0.692338 -0.16931,-1.429752 -0.30292,-2.136535 -0.25509,-1.349392 -0.63256,-2.672789 -0.93656,-4.012008 -3.67101,-7.893736 1.76607,4.064421 -1.56042,-4.178877 -0.23988,-0.594456 -0.64881,-1.107298 -0.92852,-1.684087 -0.78592,-1.620647 -0.28017,-1.190666 -1.32476,-2.034124 -1.20747,-0.61232 -0.34152,-2.319939 0.86595,-1.707618 v 0 c 2.66904,2.219128 3.05889,6.184223 4.41176,9.177395 0.1749,0.701491 0.3498,1.402981 0.52471,2.104472 0.12183,0.674875 0.21054,1.356577 0.36548,2.024627 0.55563,2.395553 1.85797,4.574758 1.93977,7.079827 0.16102,0.399802 0.32205,0.799603 0.48307,1.199404 0.003,0.316901 -0.0893,0.649388 0.009,0.950703 0.09,0.276082 0.40138,0.431841 0.527,0.693637 1.27165,2.65007 0.0385,0.170774 0.28346,1.677936 0.0183,0.112462 0.1369,0.182175 0.20534,0.273262 0.38376,1.064941 0.0948,1.81663 -0.6668,2.630734 -0.0577,0.06166 0.11658,-0.314537 0.0718,-0.242929 -0.19039,0.304647 -0.34167,0.632053 -0.5125,0.948079 -0.0779,-0.995997 -0.13109,0.22461 -0.78854,1.006309 -0.0947,0.112653 -0.29782,-0.03055 -0.4416,10e-4 -1.17145,0.257304 -0.14085,0.363556 -1.36663,0.07519 -1.42964,-1.115305 -3.13246,-0.91609 -4.8542,-0.960993 -3.91729,-0.102164 0.2604,-0.188537 -4.01833,-0.0305 -3.88169,-0.02809 -7.76902,-0.114095 -11.64864,-0.233862 -0.95008,-0.02933 -1.89778,-0.160125 -2.84811,-0.140807 -1.00237,0.02038 -1.99767,0.173078 -2.9965,0.259617 -10.60181,0.536844 4.23784,-0.306505 -6.24926,0.589579 -0.85989,0.07347 -1.72652,0.01258 -2.58846,0.05584 -2.26956,0.113907 -4.46445,0.548648 -6.72225,0.742975 -1.60602,0.418191 -3.10508,1.15477 -4.7302,1.501581 -0.0651,0.01389 0.37201,-0.416153 -0.14033,-0.141994 -0.15013,0.17051 -0.22444,0.487895 -0.45039,0.51153 -0.73468,0.07685 -1.53449,0.07889 -2.20367,-0.233911 -0.20979,-0.09806 0.72934,-2.163832 1.28782,-1.699991 0.22697,0.188519 -0.30873,0.502917 -0.46309,0.754375 0.26398,-0.834195 0.43732,-0.748945 -0.14679,-1.460827 -0.12665,-0.49063 -0.36534,-0.964643 -0.38322,-1.47104 -0.0112,-0.316162 0.11149,-0.632548 0.0716,-0.946377 -0.20717,-1.628127 -1.15153,-3.070703 -0.50383,-4.771366 -0.0508,-0.608214 -0.1224,-1.215047 -0.15238,-1.824641 -0.0274,-0.557396 0.0397,-1.119195 -0.0197,-1.674094 -0.1233,-1.151666 -0.57689,-2.253145 -0.68704,-3.406142 -0.048,-0.502419 0.037,-1.008949 0.0375,-1.513656 4.8e-4,-0.501652 -0.0231,-1.003039 -0.0346,-1.504559 -0.40161,-1.136423 -0.5556,-1.410192 -0.75148,-2.594072 -0.0315,-0.190523 0.0358,-0.952702 -0.0162,-1.098379 -0.0949,-0.265796 -0.30569,-0.474488 -0.45853,-0.711733 -0.10426,-0.399621 -0.20851,-0.799242 -0.31277,-1.198863 -0.0361,-0.292107 -0.12562,-0.869849 -0.10493,-1.190045 0.009,-0.134124 0.0676,-0.261193 0.0816,-0.394862 0.0152,-0.145015 -0.11214,-0.351576 0.006,-0.437399 0.0944,-0.06871 0.28431,0.370135 0.20797,0.281805 -0.13176,-0.152452 -0.24967,-0.316335 -0.37451,-0.474503 -0.26256,-1.082578 -0.0826,-2.476805 1.19808,-2.83061 0.14138,-0.03906 0.26371,0.128496 0.39557,0.192744 0.23427,-0.07895 0.46855,-0.15789 0.70282,-0.236835 1.35381,-0.57795 2.54836,-0.690637 4.02639,-0.862631 2.63344,-0.306448 5.26676,-0.341065 7.9159,-0.350574 6.27998,0.215078 12.57039,0.241506 18.84736,-0.03941 0.90378,0.0018 1.80797,0.03254 2.71135,0.0055 0.84294,-0.02526 1.68143,-0.165373 2.52474,-0.162352 3.5825,0.01283 7.08906,1.006821 10.64947,1.257554 1.16645,0.233291 0.83653,1.882906 -0.32992,1.649615 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6564"
d="m 372.82482,62.659481 c -0.80283,-0.156723 -1.5916,-0.427911 -2.4085,-0.470167 -1.46501,-0.07578 -3.46651,0.417512 -4.89166,0.667533 -2.72371,0.477837 -5.44704,0.959102 -8.17309,1.424723 -4.51309,0.278201 -9.01469,0.907265 -13.54289,0.882136 -5.95193,-0.03303 -0.6086,-0.340368 -6.46108,0.135266 -2.52845,0.13841 -5.04872,0.63021 -7.58277,0.699412 -1.57492,0.04301 -3.15837,-0.155317 -4.73547,-0.156164 -1.52003,0.173397 -0.30572,0.08419 -1.45748,0.07157 -0.0137,-1.5e-4 -0.63219,0.3183 -0.31872,0.08904 0.7248,-0.530085 0.70093,-0.598159 0.6645,-0.253289 0.0457,-0.03313 0.10813,-0.147819 0.13714,-0.09939 0.41674,0.695643 -0.65826,1.719776 -0.97517,1.921887 -0.20884,0.133189 -0.72041,0.155157 -0.73737,-0.09196 -0.0168,-0.243959 0.48148,-0.08576 0.72223,-0.128642 0.0768,-0.366901 -0.0978,-0.919605 0.2304,-1.100703 0.24933,-0.137578 0.29377,0.488818 0.46166,0.718834 0.10405,0.142552 0.28142,0.233824 0.35182,0.395663 0.12909,0.296777 0.19984,0.620968 0.23052,0.943147 0.0482,0.506461 -0.11081,1.137545 -0.20853,1.630627 -0.0511,0.242313 -0.14283,0.479518 -0.15325,0.726938 -0.01,0.238261 0.0937,0.470907 0.0928,0.709377 -10e-4,0.350397 -0.0953,0.696065 -0.1,1.046434 -0.0196,1.47534 0.11021,2.929034 0.39655,4.371652 0.11767,0.627764 0.23649,1.255313 0.353,1.883293 0.13033,0.702435 0.20418,1.417449 0.38752,2.107945 0.50097,1.886662 1.57231,3.543938 2.18142,5.388932 0.15212,0.460776 0.22785,0.94335 0.34177,1.415025 0.7272,1.336352 0.72931,2.911506 1.44403,4.254375 0.0944,0.177327 0.77946,0.930232 0.80273,0.956679 0.12476,0.799882 0.14571,1.649841 -9e-5,2.451222 -0.019,0.104418 -0.11455,0.19215 -0.11149,0.298238 0.002,0.0592 0.16008,0.174241 0.12378,0.127445 -0.32858,-0.423656 -0.6675,-0.839197 -1.00125,-1.258795 0.70064,0.117418 1.31133,0.672211 1.98616,0.883326 0.0832,0.02602 1.57711,-0.379651 1.70265,-0.41346 0.46266,-0.151105 0.90796,-0.372841 1.38796,-0.453316 2.15086,-0.360602 4.60024,-0.121727 6.75394,0.06721 0.77254,0.06777 1.5352,0.250936 2.31038,0.273737 0.84544,0.02487 1.68936,-0.0875 2.53404,-0.131245 3.00837,0.07524 6.02266,0.111151 9.0323,0.09779 1.08534,-0.0048 2.16952,-0.09812 3.25483,-0.08912 7.13403,0.0592 -0.94964,0.297522 5.81649,0.03064 4.26407,-0.878574 8.57171,-0.03414 12.87079,-0.104397 0.25035,-0.06346 0.4983,-0.137293 0.75105,-0.19039 0.19481,-0.04093 1.25875,-0.273788 1.27885,-0.09994 0.29422,2.545497 0.4737,2.618705 -0.21879,1.960968 -0.36942,-0.355368 -0.81396,-0.646406 -1.10826,-1.066104 -0.10407,-0.148414 0.0144,-0.365509 -0.0204,-0.543417 -0.006,-0.0323 -0.0762,-0.006 -0.0925,-0.03457 -0.42672,-0.751639 -0.61502,-1.569563 -1.0716,-2.304807 -0.0459,-0.294954 -0.0627,-0.595919 -0.13761,-0.884861 -1.04505,-4.029929 0.46511,2.869757 -0.78973,-2.572218 -0.3568,-1.547364 -0.6804,-3.079904 -1.09825,-4.616112 -0.10141,-0.625165 -0.27796,-1.242703 -0.30421,-1.875494 -0.0827,-1.994307 0.36774,-2.481756 0.27368,-4.498478 -0.0398,-0.854115 -0.25335,-1.691317 -0.36419,-2.539145 -0.30988,-2.370205 -0.30263,-2.56804 -0.5034,-4.884464 0.18198,-1.945051 -0.0746,-3.898118 -0.0736,-5.837722 1.6e-4,-0.338021 0.0872,-0.670708 0.11318,-1.007728 0.0131,-0.169532 -0.11406,-0.632537 0.004,-0.510092 0.25368,0.26328 0.30851,0.662954 0.46276,0.994431 0.0901,0.02821 0.18013,0.05641 0.2702,0.08462 0.0133,-0.01234 0.0265,-0.02468 0.0398,-0.03701 -0.87416,1.18644 -2.55204,-0.04982 -1.67788,-1.236258 v 0 c 0.78728,-0.748351 0.29705,-0.390368 1.55211,-0.952484 0.45376,0.387763 1.03806,0.661506 1.36127,1.163289 0.11116,0.172566 -0.22991,0.358758 -0.24923,0.563114 -0.0322,0.341063 0.11156,0.680579 0.0993,1.022943 -0.0671,1.872308 -0.50931,3.749793 -0.25954,5.638931 -1.6e-4,0.763535 -0.0343,1.527819 -4.8e-4,2.290605 0.16259,3.668758 0.25261,1.529305 0.53342,5.28823 0.10446,1.398344 -0.14175,2.81524 0.0326,4.206597 0.0704,0.56152 0.31489,1.087139 0.47233,1.630709 0.13449,0.53153 0.29677,1.056794 0.40348,1.59459 0.0989,0.498559 0.0791,1.019489 0.21254,1.509951 0.14823,0.544981 0.45695,1.03554 0.62632,1.574325 0.31419,0.999515 0.36156,2.100555 0.94763,3.015522 0.1044,0.342513 0.20881,0.685026 0.31322,1.027539 0.0972,0.173876 0.22262,0.334732 0.29151,0.521626 0.0796,0.216064 0.0723,0.45749 0.14935,0.674479 0.451,1.269651 1.02251,1.629601 -0.57695,0.556605 1.56642,2.353798 0.8751,2.107416 -0.22602,2.134261 -1.47567,0.03598 0.61939,0.25874 -1.41493,-0.04175 -2.30698,0.213625 -0.33126,0.159968 -2.94348,-0.215482 -3.27676,-0.470963 -6.63874,-0.122437 -9.93132,-0.131256 -3.01427,0.121399 -6.04053,0.226129 -9.05791,0.169703 -1.10392,-0.02064 -2.20533,-0.141381 -3.30945,-0.138654 -1.92146,0.0047 -3.83488,0.326887 -5.76089,0.2015 -2.41339,-0.01138 -4.82158,-0.08941 -7.23404,-0.153329 -0.71623,-0.01898 -1.43298,-0.118556 -2.14812,-0.07492 -1.11706,0.06816 -1.85803,0.378642 -2.87992,0.719854 -1.07989,0.347088 -2.16382,0.784946 -3.30836,0.402031 -0.13719,-0.0459 -0.22581,-0.18381 -0.35355,-0.25172 -0.20482,-0.10889 -0.53494,-0.06851 -0.63887,-0.27589 -0.067,-0.133659 0.25792,-0.15128 0.38688,-0.22692 -1.1616,-0.599417 -1.97244,-0.463881 -1.53121,-1.595164 0.0337,-0.08645 0.162,-0.124315 0.17546,-0.216128 0.0384,-0.261726 -0.16162,-0.529148 -0.0342,-0.792835 -0.13475,-0.960852 0.0681,-0.03979 -0.60182,-1.264904 -0.735,-1.344052 -0.88045,-2.981686 -1.55414,-4.353041 -0.12597,-0.477731 -0.27712,-0.949524 -0.37793,-1.433193 -0.11039,-0.529708 -0.1034,-1.083683 -0.25488,-1.603135 -1.61597,-5.541225 0.0716,1.683841 -1.60107,-3.904724 -0.21323,-0.712409 -0.24195,-1.469061 -0.42102,-2.190811 -0.14956,-0.602802 -0.37546,-1.184052 -0.56319,-1.776078 -0.74322,-3.091733 -0.32208,-0.471388 -0.26224,-3.337578 0.01,-0.467789 -0.082,-0.932491 -0.10217,-1.39995 -0.0159,-0.369555 0.0298,-0.7415 -0.006,-1.109677 -0.0277,-0.286608 -0.18979,-0.556309 -0.18325,-0.844182 0.007,-0.28796 0.14761,-0.556838 0.22141,-0.835256 -0.007,-0.383416 -0.19974,-0.840663 0.0267,-1.150148 0.0453,-0.06195 0.2215,0.09042 0.22986,0.01411 0.0803,-0.733254 -2.16068,-1.08802 -1.00747,-2.284963 0.73168,-0.498855 1.69827,-1.554176 0.76446,0.331025 -0.16671,0.336558 -0.27511,-1.227909 -0.30218,-0.975288 0.23645,-0.987564 0.0807,-0.754114 1.16739,-1.772342 0.0376,-0.03521 0.079,0.06861 0.12626,0.08902 0.0803,0.03468 0.16624,0.05587 0.2518,0.07419 0.20896,0.04475 0.41731,0.104018 0.63074,0.114805 0.31083,0.01571 0.622,-0.02384 0.93301,-0.03577 3.95024,-0.05319 -1.49498,-0.03683 2.86472,0.156431 0.6,0.0266 1.20162,-0.05509 1.80156,-0.02717 0.6621,0.03082 1.31526,0.198514 1.97806,0.203107 1.84349,0.01277 3.67296,-0.428617 5.51527,-0.411571 3.42772,-0.281792 3.14061,-0.344894 6.54245,-0.28614 1.16591,0.02014 2.3304,0.167437 3.49585,0.129293 1.976,-0.06467 4.64173,-0.608517 6.61207,-0.765536 1.07549,-0.08571 2.15663,-0.07058 3.23495,-0.105873 3.57081,-0.685298 7.08387,-1.626135 10.69684,-2.05326 0.93852,-0.110951 1.87287,-0.310182 2.81793,-0.312169 0.85033,-0.0018 1.6888,0.20061 2.5332,0.300916 1.24403,0.248805 0.89217,2.008126 -0.35186,1.759321 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6566"
d="m 371.13844,109.20211 c -2.05965,-0.74009 -4.17582,-1.85722 -6.44812,-1.61944 -0.65403,0.0685 -1.26034,0.39101 -1.90962,0.49534 -0.79655,0.12798 -1.61118,0.10216 -2.4121,0.19906 -0.79553,0.0963 -1.58251,0.25332 -2.37376,0.37997 -6.31059,0.95609 1.06151,-0.024 -5.62888,0.41115 -0.96866,0.063 -1.9218,0.28 -2.88777,0.37584 -2.6873,0.26664 -5.31246,0.28332 -8.00264,0.1373 -3.12158,0.30942 -6.32469,-0.22613 -9.42879,0.25438 -1.7196,0.58098 -1.33454,-4.25132 0.71614,-0.88338 0.10925,0.17943 -4e-5,0.42014 -6e-5,0.63021 0.27492,-0.0392 -0.55133,0.81118 -0.25352,0.94061 0.11487,0.0499 0.15391,-0.36683 0.24704,-0.28309 0.2099,0.18873 0.18,0.53788 0.31315,0.78678 0.11284,0.21094 0.38681,0.46853 0.56442,0.6468 0.9089,1.94732 -0.13137,-0.54241 0.48075,2.23789 0.32586,1.48009 0.54686,0.37979 0.69757,1.8796 0.29444,2.9301 -0.51988,-0.31949 0.29671,2.46982 0.83695,4.09353 -0.14551,-1.10973 0.39219,3.16854 0.13623,1.08395 0.52501,2.12445 0.68351,3.20536 0.24057,1.64052 0.15072,1.88133 0.0612,3.47437 0.74148,4.69586 -0.45057,-2.50828 0.57172,2.49 0.11572,0.5658 0.0356,1.39686 0.26906,1.95573 0.90495,2.16676 0.32539,-0.49854 0.70395,1.72316 -0.19943,0.50917 -0.0802,1.11865 -0.12781,1.6249 -0.0265,0.28162 -0.25282,0.10569 -0.0406,0.48842 -0.0377,0.70815 0.47454,2.97035 -0.55818,0.54302 -0.0304,0.0347 -0.13461,0.11929 -0.0911,0.10411 0.7138,0.3322 0.54104,-0.49969 0.87485,-0.63578 0.32457,-0.13231 0.7088,-0.0531 1.03636,-0.17784 0.44423,-0.16918 1.01868,-0.7902 1.34039,-1.10054 0.38322,-0.27931 0.72939,-0.6183 1.14967,-0.83793 3.34957,-1.75043 7.29436,-2.12149 10.96019,-2.71157 1.21392,-0.32584 3.97417,-1.10917 5.18812,-1.25486 0.84958,-0.10196 1.71192,-0.004 2.56667,-0.0435 0.83527,-0.0389 1.6692,-0.10842 2.50111,-0.19275 4.01653,-0.40712 0.73603,-0.27808 4.58061,-0.33298 3.50139,0.61265 7.10795,-0.27891 10.58712,0.24313 0.006,0.0168 1.80789,-0.41015 1.93367,-0.36844 0.54695,0.18135 -0.50798,0.39138 0.48824,0.0745 1.05179,-0.25664 -0.29233,0.96679 -0.6694,0.77559 -1.17996,-0.59833 1.62018,-1.8164 0.88412,-1.33851 -0.0811,0.0196 -0.18488,0.11836 -0.24335,0.0588 -0.0617,-0.0628 0.0676,-0.17478 0.0458,-0.26005 -0.0703,-0.27489 -0.23641,-0.5182 -0.31451,-0.79098 -0.11806,-0.41234 -0.14,-0.84957 -0.27206,-1.25764 -1.30434,-4.03027 0.24779,2.20736 -1.0082,-3.27793 -0.50414,-4.0999 -1.42616,-8.13397 -1.98408,-12.22248 -1.07854,-1.05043 0.11831,-2.96208 -1.12776,-3.83124 -0.0523,-0.0365 0.0556,0.13819 0.11815,0.15026 0.44003,0.0849 0.89204,0.0871 1.33806,0.13066 -0.11356,0.11893 -0.22712,0.23785 -0.34068,0.35677 -0.73912,1.25557 -2.51476,0.2103 -1.77564,-1.04527 v 0 c 0.12431,-0.24783 0.24861,-0.49567 0.37292,-0.7435 0.50239,-0.0739 1.00625,-0.30511 1.50716,-0.22176 0.67889,0.11297 1.01997,1.66051 1.07942,2.19301 0.0451,0.40415 -0.0186,0.81741 0.0443,1.21918 0.0815,0.5208 0.25779,1.02229 0.38668,1.53344 0.26936,1.33268 0.60965,2.6529 0.80943,3.99777 0.10587,0.71266 0.10782,1.43755 0.19833,2.15232 0.25562,2.01862 0.57172,4.04279 0.98223,6.035 0.008,0.0215 1.0388,2.86442 1.08377,3.00212 0.11954,0.36598 0.17172,0.75404 0.31632,1.11087 0.17041,0.42056 0.46987,0.78308 0.62408,1.20985 0.096,0.26561 0.01,0.99439 -0.0107,1.25674 -0.16683,0.30221 -0.33367,0.60442 -0.50051,0.90663 -0.0245,-0.0893 -0.14373,-0.54109 -0.17113,-0.50948 -2.7664,3.19168 0.0107,1.22554 -1.37837,1.43043 -0.73829,0.19253 -1.6227,-0.11786 -2.39737,-0.039 -1.0067,0.0109 -1.6982,0.0408 -2.71744,-0.0472 -0.59004,-0.0509 -1.17168,-0.19432 -1.76352,-0.21609 -2.01755,-0.0742 -4.06511,0.22374 -6.07815,-0.14142 -8.73565,0.57821 5.04407,-0.37482 -4.48231,0.43323 -0.86021,0.073 -1.72375,0.10588 -2.5868,0.12672 -0.79167,0.0191 -1.58939,-0.10085 -2.37569,-0.007 -0.91005,0.10879 -4.27564,1.07164 -5.13032,1.30698 -0.86817,0.17407 -1.73017,0.3824 -2.6045,0.52222 -0.7295,0.11666 -1.47215,0.13564 -2.20255,0.2465 -2.26467,0.34372 -4.56131,1.21876 -6.2953,2.73615 -1.10047,0.77382 -2.25877,1.63083 -3.51888,2.13902 -0.0313,0.0126 -0.002,-0.11019 -0.0326,-0.0958 -0.17209,0.081 -0.31025,0.22009 -0.46537,0.33013 -1.20224,0.0791 -0.9221,0.24292 -2.0953,-1.07953 -0.0612,-0.069 0.0681,-0.17349 0.079,-0.26501 0.0162,-0.13536 -0.0339,-0.27732 0.002,-0.40895 0.0306,-0.11379 0.17933,-0.18134 0.18897,-0.29878 0.0117,-0.14268 -0.0872,-0.2727 -0.13088,-0.40905 -0.0689,-0.63571 0.0497,-1.4859 0.19335,-1.98322 0.067,-1.02441 -0.35539,-1.67415 -0.61203,-2.65534 -0.079,-0.30191 -0.0553,-0.62327 -0.12099,-0.92835 -1.01304,-4.70801 0.31268,2.49836 -0.6444,-2.91099 7.8e-4,-0.25846 0.012,-3.01428 -7.6e-4,-3.16887 -0.0268,-0.32319 -0.49725,-2.98633 -0.55109,-3.35628 -0.069,-0.47444 -0.0773,-0.95791 -0.17067,-1.42817 -0.0944,-0.47505 -0.26064,-0.93295 -0.39097,-1.39943 -0.20275,-1.10591 -0.31736,-2.27886 -0.5943,-3.37142 -0.1106,-0.43634 -0.29293,-0.85353 -0.38752,-1.29362 -0.0832,-0.38687 -0.008,-0.79591 -0.10596,-1.1824 -0.19145,-0.19324 -0.42566,-0.35194 -0.57436,-0.57973 -0.0712,-0.10908 0.005,-0.27163 -0.0565,-0.38667 -0.81408,-1.53271 -0.007,1.35469 -0.99647,-1.64886 -0.0854,-0.25938 0.45853,-0.52772 0.0871,-0.81462 0.30484,-0.26881 0.88811,0.92908 1.07802,0.56973 0.7406,-1.40136 -1.00696,-2.60651 0.29536,-2.15328 1.70829,8.9e-4 3.4119,0.16215 5.12239,0.17408 0.70138,0.005 1.40225,-0.0851 2.10327,-0.0621 0.75303,0.0247 1.50064,0.13675 2.25096,0.20512 4.97995,0.27664 -0.11556,0.15112 4.9089,-0.21002 0.97418,-0.07 1.95448,0.01 2.92976,-0.0427 0.99651,-0.0537 1.98476,-0.21978 2.98115,-0.27569 4.92578,-0.27636 0.69214,0.30775 5.38511,-0.48755 0.82589,-0.21315 1.6369,-0.49584 2.47768,-0.63943 0.7843,-0.13396 1.58669,-0.12161 2.37939,-0.19011 0.94079,-0.0813 3.52987,-0.38488 4.44262,-0.26471 1.34715,0.17737 3.80672,1.23866 4.99844,1.70639 1.00861,0.60517 0.15277,2.03156 -0.85584,1.42639 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6568"
d="m 334.81506,31.867026 c -0.54128,0.0901 -3.1087,-0.462115 -3.01871,0.917537 0.009,0.138878 0.22832,0.174358 0.29269,0.297752 0.19889,0.3813 0.22199,0.831111 0.34542,1.243075 0.0127,0.805432 0.33855,1.580418 0.36725,2.38392 0.0112,0.314644 -0.13338,0.62539 -0.10366,0.93883 0.0103,0.109235 0.74598,1.130754 0.84516,1.263593 -0.24413,0.08473 1.74399,-0.145929 1.29022,-0.379644 -0.4392,-0.226211 -0.97679,1.158248 -0.0349,-0.581514 0.87409,-0.824908 0.95487,-1.769648 1.20986,-2.849814 0.20541,-0.870121 0.48347,-1.600781 0.45817,-2.504414 -0.18273,-0.4636 -0.3575,-0.752595 0.3359,-1.311863 1.00702,-0.812212 1.77389,-0.605118 2.22727,0.477343 0.13715,0.327443 0.0316,0.709307 0.0482,1.063925 0.0145,0.310357 0.0301,0.620665 0.0451,0.930998 0.0511,0.1591 0.0873,0.323787 0.15328,0.477298 0.10622,0.247024 0.28868,0.462199 0.36195,0.720917 0.27255,0.962338 0.21041,2.143315 0.61937,3.076754 0.14388,0.328396 0.38872,0.602557 0.58308,0.903835 -0.0165,0.206524 0.47146,1.576837 1.13073,1.245823 0.0488,-0.02448 0.0544,-0.09459 0.0816,-0.141887 0.19115,0.0015 0.38229,0.003 0.57344,0.0044 1.29555,0.09804 2.51324,-0.567054 3.61331,-1.189848 1.1796,-0.650149 2.09905,1.018051 0.91945,1.668201 v 0 c -2.65667,1.34754 0.42082,-0.100358 -2.22743,0.814766 -1.91717,0.662493 -0.62267,0.593534 -1.95555,0.567264 -0.48722,0.07577 -0.9626,0.294454 -1.45492,0.267089 -0.22242,-0.01236 -0.42263,-0.14565 -0.62087,-0.247273 -0.97992,-0.502343 -1.54456,-1.136464 -1.82854,-2.217513 -0.26926,-0.64038 -0.59892,-1.259718 -0.79762,-1.925381 -0.20605,-0.69031 -0.23437,-1.429108 -0.47317,-2.108783 -0.10245,-0.291584 -0.32217,-0.535568 -0.40855,-0.832308 -0.11785,-0.404862 -0.13163,-0.832996 -0.19744,-1.249494 -0.0688,-0.643529 -0.15778,-0.996231 0.0489,-0.946751 0.18202,0.04357 0.26122,0.386943 0.44348,0.344374 1.47178,-0.343759 0.61844,-1.513925 0.65493,-0.169973 -0.0288,0.494176 -0.0677,1.409313 -0.18141,1.812683 -0.0702,0.248923 -0.29444,0.43397 -0.3729,0.680414 -0.36897,1.15894 -0.43037,2.441097 -1.11513,3.503365 -0.54814,1.361097 -1.91597,2.587656 -3.52949,1.940692 -0.36724,-0.147251 -0.62295,-0.487983 -0.93443,-0.731974 -0.27864,-0.227261 -0.62633,-0.389621 -0.83593,-0.681782 -0.15155,-0.211251 -0.10105,-0.51278 -0.19499,-0.75521 -0.14668,-0.378584 -0.44545,-0.70129 -0.52371,-1.099685 -0.0483,-0.246076 0.16056,-0.483607 0.16344,-0.734369 0.0259,-2.253543 -0.46192,0.648933 0.0581,-1.82099 -2.00931,-3.714821 0.49855,-4.827849 3.93902,-4.764277 1.20198,0 1.20198,1.699857 0,1.699857 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6570"
d="m 334.1874,69.410312 c 0.22111,0.806656 0.44221,1.613312 0.66331,2.419968 0.18778,0.777098 0.35689,1.558943 0.56333,2.331294 0.0915,0.342402 0.81081,2.601416 0.89852,3.096856 0.18024,1.018057 0.20689,2.057519 0.32941,3.084123 -0.28429,0.766567 0.48784,2.185871 0.47405,2.88107 -10e-4,0.0702 -0.41183,1.035753 -0.4674,1.030784 -0.66728,-0.05967 -1.24811,-0.487401 -1.87216,-0.731101 0.0924,-0.204855 0.26045,-0.390466 0.27712,-0.614567 0.0632,-0.849826 -0.39614,-0.526171 -0.0996,-1.233387 0.33456,-0.797757 0.87167,-1.628301 1.35475,-2.344149 0.42981,-0.642853 0.21932,-0.480449 0.9668,-0.890879 0.30626,-0.168168 0.59241,-0.405966 0.93527,-0.473266 1.08393,-0.21277 2.23032,0.528557 3.17509,0.941087 0.91432,0.784557 2.37427,1.078414 2.80407,2.348595 0.22849,0.675287 0.0259,1.583307 -0.0735,2.261399 -0.66489,0.360435 -0.0824,0.96768 -0.26383,1.410114 -0.22972,0.560155 -0.97231,1.275 -1.53751,1.506867 -1.5188,0.623063 -0.81866,-0.151104 -1.2618,0.384585 -0.7419,0.617069 -1.61995,0.424727 -2.48372,0.423584 -0.11319,-1.5e-4 -0.22937,0.08883 -0.33581,0.05034 -0.0824,-0.0298 -0.0934,-0.148283 -0.14005,-0.222425 -1.40142,-0.08329 -1.28364,-2.065194 0.11778,-1.981906 v 0 c 0.42275,0.03854 0.71423,0.08802 1.10753,0.187407 0.008,0.0021 0.005,0.01648 0.008,0.02472 0.0778,0.04974 0.15555,0.09948 0.23332,0.149223 0.15132,-0.03458 0.24475,-0.190956 0.36712,-0.286434 0.68332,-0.381335 0.76663,-0.514778 1.4268,-0.653253 0.15226,-0.03194 0.31653,-0.103958 0.46365,-0.05337 0.0859,0.02955 0.0922,0.339517 0.10847,0.250112 0.40789,-2.24164 -0.47963,0.474094 0.27523,-1.608392 0.18055,-1.910033 -0.16983,0.42661 0.38745,-0.933004 0.0557,-0.135879 -2.01611,-1.291778 -2.25208,-1.479524 -0.28835,-0.249424 -1.05597,-0.989675 -1.55117,-1.00012 -0.0863,-0.0018 -0.075,0.162846 -0.14314,0.215782 -0.13497,0.104805 -0.30021,0.163346 -0.45032,0.24502 -0.12217,0.106891 -0.24434,0.213781 -0.36651,0.320672 -0.0961,0.247458 -0.15315,0.513855 -0.28822,0.742374 -0.19106,0.323236 -0.80404,0.643437 -0.82006,0.990878 -0.0111,0.241288 0.10486,0.471569 0.1573,0.707353 -0.0184,0.11973 -0.0368,0.23946 -0.0552,0.359189 -0.8541,-0.1627 -1.81354,-0.942009 -1.92391,0.09759 -0.0206,0.193588 0.19158,-0.362748 0.1762,-0.556815 -0.0585,-0.737453 -0.29139,-1.454699 -0.31306,-2.19711 -0.1186,-0.558267 -0.29125,-1.107738 -0.35579,-1.674802 -0.0455,-0.400098 0.083,-2.208987 0.0267,-2.606713 -0.31866,-2.248038 -1.2612,-4.422046 -1.84317,-6.599563 -0.22641,-1.132077 1.37459,-1.452276 1.601,-0.3202 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6572"
d="m 347.36111,116.43891 c -0.69289,-0.1425 -1.37183,-0.39973 -2.07868,-0.42748 -0.45883,-0.018 -0.90302,0.17218 -1.34602,0.29303 -1.01792,0.2777 -1.94386,0.61925 -1.896,1.79877 -0.61538,2.52179 -0.69165,3.08977 0.77411,5.18883 1.50457,1.16701 -0.052,0.13581 1.09124,0.54747 0.27074,0.0975 0.48998,0.32665 0.77109,0.38814 0.30208,0.0661 0.61921,-0.0403 0.92752,-0.0166 0.31127,0.0239 0.61676,0.21912 0.92303,0.15863 0.19992,-0.0395 0.29149,-0.28486 0.43723,-0.42729 0.939,-0.37309 1.98461,-0.82038 2.79579,-1.44483 0.0388,-0.0299 -0.13351,-0.0595 -0.10706,-0.10075 0.24777,-0.38648 0.54952,-0.43722 0.94121,-0.59564 1.36761,-0.41814 1.95896,1.51595 0.59135,1.93409 v 0 c 0.12927,-0.0267 0.33916,0.0427 0.38783,-0.08 0.0411,-0.1036 -0.2307,-0.13719 -0.32514,-0.078 -0.27953,0.17515 -0.41432,0.52667 -0.68705,0.71224 -0.21436,0.14585 -0.50107,0.14291 -0.73477,0.25517 -2.83967,1.36409 0.55743,-0.028 -2.07555,1.00833 -0.41338,0.20026 -0.79252,0.49771 -1.24014,0.60077 -0.38268,0.0881 -0.78684,-0.002 -1.17725,-0.0442 -1.55302,-0.168 -2.901,-0.54608 -3.93322,-1.79908 -1.88249,-2.45353 -1.97877,-3.5491 -1.12131,-6.4853 0.44622,-2.36232 1.03786,-2.9416 3.45789,-3.31354 2.36252,-0.36309 1.45984,-0.31568 3.95589,0.26735 1.17375,0.23475 0.84176,1.89469 -0.33199,1.65994 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6574"
d="m 331.61448,153.28162 c -2.04438,6.49715 -4.40098,12.90194 -6.22976,19.46626 -5.00974,17.98231 1.73066,-4.93163 -3.5011,12.63192 -1.86804,5.93431 -3.40196,11.96881 -5.26978,17.90303 -1.28893,4.09506 -2.76454,8.13697 -4.21189,12.17805 -0.40435,2.13021 -1.63774,3.73351 -2.78745,5.47897 -0.27165,0.41243 -0.4446,0.8704 -0.74524,1.26346 -1.75295,0.2303 -1.82435,0.63063 -2.284,-1.1732 -0.14459,-0.56741 -0.0278,-1.0382 0.0268,-1.60039 0.0359,-0.0814 0.17523,-0.18624 0.10776,-0.24428 -0.0659,-0.0566 -0.1191,0.16918 -0.20549,0.16022 -0.0665,-0.007 0.062,-0.11988 0.10566,-0.17057 0.34586,-0.38588 0.69171,-0.77176 1.03757,-1.15763 -0.0544,-0.0595 -0.17127,-0.0984 -0.16316,-0.1786 0.006,-0.0601 0.11845,0.0234 0.17768,0.035 -0.43023,0.0196 -0.25399,-0.0643 -0.24245,-0.58813 -0.25557,-1.31294 1.60121,-1.67437 1.85678,-0.36143 v 0 c 0.36158,0.64389 0.11122,1.31146 0.15949,2.04392 -0.49543,0.44512 -2.00748,2.22615 -0.79322,0.0318 0.002,-0.004 0.0108,1.62876 -0.11497,0.82909 0.0145,1.38509 -0.20049,0.50578 -0.40711,0.50698 -0.33266,0.002 0.54717,1.75589 -0.85604,0.51305 0.0473,0.0199 0.10657,0.0969 0.14184,0.0597 0.1098,-0.11597 0.12187,-0.29739 0.20961,-0.43084 0.16011,-0.24351 0.34291,-0.47193 0.53057,-0.6949 1.2709,-1.51003 2.42571,-2.88208 2.9575,-4.87577 2.29436,-4.82872 0.76456,-1.34506 2.8996,-7.12935 1.42836,-3.86973 2.52482,-6.33963 3.72451,-10.37239 0.58915,-1.98044 0.9465,-4.0252 1.54095,-6.00405 0.62465,-2.07935 1.40898,-4.10734 2.11347,-6.16101 3.98242,-15.20436 -0.79976,2.74543 3.55048,-12.61128 1.87169,-6.60722 3.34885,-13.32249 5.20318,-19.93489 0.41526,-1.03816 1.88344,-0.45088 1.46818,0.58727 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6576"
d="m 304.25075,206.39279 c -0.12395,1.06066 -0.32621,2.11507 -0.37183,3.18198 -0.0453,1.06021 0.1311,2.12126 0.0997,3.18198 -0.006,0.18777 -0.49356,4.91237 -0.55454,5.23829 -0.29888,1.59723 -0.84718,3.13755 -1.27213,4.70596 -0.46516,2.44286 -0.80039,4.91716 -0.98333,7.39796 -0.12674,1.71853 -0.0917,3.3789 -0.39194,5.07812 -0.0351,0.23039 -0.27903,1.56241 -0.20388,1.91961 0.0165,0.0786 0.27924,0.14824 0.22345,0.0904 -1.09099,-1.13097 -1.35356,-0.61851 -0.45737,-1.85064 1.24897,-1.20893 2.79088,-2.08612 4.10134,-3.21072 0.61713,-0.52961 1.14958,-1.15081 1.73872,-1.71138 2.30944,-2.19742 1.77076,-1.67727 4.29629,-3.64627 0.96457,-0.67971 2.72766,-2.0059 3.85272,-2.4815 0.6765,-0.28599 1.4188,-0.38131 2.12227,-0.59245 1.5406,-0.46238 2.98573,-1.06629 4.5466,-1.45451 0.21162,0.79477 1.02753,-1.27756 1.25554,-0.79935 0.92861,1.94763 0.34072,2.20638 -1.04144,2.33268 -0.26221,-0.058 -0.52442,-0.11592 -0.78663,-0.17388 -1.37001,-0.0687 -1.27279,-2.00623 0.0972,-1.93748 v 0 c 0.21545,0.003 0.43089,0.005 0.64634,0.008 1.12819,-0.13183 0.69954,0.59001 1.65241,1.73534 0.0579,0.0696 0.3227,-0.15544 0.23395,-0.13776 -0.21855,0.0435 -0.42841,0.12715 -0.6323,0.21709 -0.35297,0.15569 -0.68987,0.34551 -1.0348,0.51827 -3.48493,0.81184 1.53397,-0.39335 -2.75068,0.78454 -2.62913,0.72277 -5.19592,1.16002 -7.17396,3.26229 -0.72691,0.5316 -1.49176,1.01486 -2.18073,1.59478 -1.07893,0.90815 -2.81654,2.82771 -3.87487,3.77363 -0.87854,0.78522 -1.94383,1.35601 -2.7697,2.19646 -0.31645,0.32204 -0.54288,0.72159 -0.81433,1.08238 -0.14694,0.12915 -0.30933,0.24259 -0.44082,0.38744 -0.31239,0.34414 -0.43117,0.98614 -0.88725,1.0756 -0.85671,0.16806 -1.95869,-0.16303 -1.85368,-1.06282 0.0392,-0.33598 0.22545,-0.64413 0.26176,-0.98044 0.0462,-0.42808 -0.011,-0.86106 -0.0165,-1.2916 0.21911,-1.78878 0.04,-0.86803 0.57314,-2.75505 0.5365,-3.24097 0.14408,-6.63792 1.34706,-9.76723 0.16876,-0.68781 0.93947,-3.74078 1.05344,-4.53077 0.11879,-0.82345 0.0516,-1.66927 0.19992,-2.48791 0.15598,-0.86081 0.62219,-1.65642 0.70881,-2.52694 0.21018,-2.11237 -0.50618,-4.2494 -0.23746,-6.36396 0,-1.21584 1.71946,-1.21584 1.71946,0 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6578"
d="m 367.09939,149.14346 c 2.05897,6.43519 -0.35404,-0.70322 2.29069,5.86256 0.45341,1.12563 0.75809,2.30751 1.21321,3.43244 0.4899,1.21088 1.14264,2.35231 1.61922,3.56849 3.05321,7.7914 -0.4278,0.67447 3.49018,8.12382 2.31239,4.39952 3.88582,9.1464 6.13965,13.57202 0.73846,1.45004 1.64285,2.81034 2.40983,4.2455 7.4071,13.86003 -3.21513,-5.39321 3.81194,7.26427 0.67128,0.94328 1.36469,1.8712 2.01384,2.82984 0.58785,0.86814 1.10528,1.78272 1.69605,2.64887 1.59331,2.33604 3.37384,4.4308 4.63532,6.97574 0.32632,0.512 1.16808,1.31941 0.85184,2.04925 -0.072,0.16612 -1.19099,0.78668 -1.57627,0.45439 -0.36157,-0.31182 -0.5635,-0.77092 -0.84525,-1.15638 -0.0304,-0.18715 -0.2511,-0.66317 -0.0911,-0.56145 0.22286,0.14168 0.5294,0.53718 0.3363,0.71734 -0.0632,0.0589 -1.35255,-1.24504 -1.04043,-1.48792 0.53097,-0.41318 1.25732,-0.4793 1.88598,-0.71895 0.0551,0.0619 0.11021,0.12384 0.16531,0.18577 0.9805,1.0506 -0.50527,2.43723 -1.48577,1.38663 v 0 c -0.0153,0.0228 -0.0307,0.0456 -0.046,0.0685 1.2662,-0.85031 1.69678,-0.47825 1.43549,-1.47241 -0.0286,-0.10881 0.0301,0.23179 0.0946,0.32399 0.81128,1.16022 0.73661,0.63169 0.77979,1.30604 -0.55113,-0.44577 -1.22212,-1.05382 -1.47949,0.19581 -0.0629,0.30554 0.20772,0.6317 0.11322,0.929 -0.16102,0.50653 -0.83048,-2.92624 -0.76193,-1.40068 -0.78364,-1.67239 -1.7699,-3.19723 -2.70505,-4.79044 -1.58377,-2.69826 -3.23534,-5.34842 -4.93168,-7.97854 -3.23882,-5.80956 -0.65275,-0.99392 -3.73957,-7.28749 -1.28075,-2.61126 -3.21846,-6.24444 -4.41198,-8.88962 -0.67641,-1.49912 -1.19359,-3.06776 -1.89141,-4.55703 -0.70209,-1.4984 -1.53609,-2.93139 -2.30413,-4.39708 -6.75689,-13.42287 2.49894,5.27297 -3.62582,-8.10613 -0.55739,-1.21756 -1.3532,-2.31801 -1.89093,-3.54439 -0.47125,-1.07478 -0.6772,-2.25139 -1.12581,-3.33582 -0.43125,-1.04247 -1.00511,-2.02007 -1.50766,-3.0301 -0.37943,-0.92645 -0.75886,-1.85291 -1.13829,-2.77936 -0.4571,-1.14276 1.159,-1.7892 1.6161,-0.64644 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6580"
d="m 399.71246,198.96816 c -0.16828,2.55573 0.71812,4.95755 1.19239,7.41729 0.28476,1.47688 0.26718,2.81618 0.66492,4.26836 0.17793,0.64963 0.47113,1.26205 0.70669,1.89308 1.39125,1.42045 0.8748,3.41731 1.52258,5.10321 0.12922,0.33633 0.46375,0.55743 0.63657,0.87358 0.68566,1.25424 0.0285,0.92815 0.66478,1.18238 2.13048,4.01055 -3.36514,0.92449 -4.04469,0.39521 -0.46407,-0.36144 -0.83274,-0.83098 -1.2491,-1.24647 -0.4327,-0.38256 -0.83851,-0.79788 -1.2981,-1.14768 -0.58757,-0.4472 -1.2558,-0.78253 -1.83677,-1.23827 -1.23482,-0.96862 -2.20305,-2.26007 -3.48392,-3.16692 -0.54509,-0.38592 -1.19161,-0.60359 -1.78741,-0.90538 -0.52228,-0.41436 -1.04456,-0.82871 -1.56684,-1.24307 -0.9826,-0.0792 -1.54501,-1.12922 -2.34208,-1.47407 -0.24503,-0.10601 -0.45833,-0.40056 -0.72046,-0.34991 -0.0563,0.0109 0.0783,0.0838 0.11739,0.12574 0.16754,-2.9377 1.85323,-1.03588 1.72383,-0.45578 -0.0322,0.14422 -0.13434,-0.26682 -0.23184,-0.37784 -0.0562,-0.064 -0.14509,-0.0893 -0.21763,-0.13397 1.43051,-0.14825 1.64017,1.87479 0.20967,2.02304 v 0 c -2.67984,-0.50148 -1.94387,-1.11613 -0.76347,-3.13509 1.24421,0.57255 2.09673,1.58736 2.98352,2.62682 0.68672,0.41288 2.99774,1.78294 3.57578,2.21608 0.57685,0.43225 1.06742,0.96977 1.62274,1.42933 1.68225,1.39216 3.49187,2.60917 5.2966,3.83346 1.02232,1.10352 0.67244,0.96978 1.86765,1.50402 0.35002,0.15646 0.75346,0.20666 1.06903,0.4244 0.0943,0.0651 0.0518,0.22731 0.0408,0.34139 -0.0509,0.52937 -0.0623,1.07329 -0.22563,1.5794 -0.033,0.10238 -0.13544,-0.16719 -0.20316,-0.25078 -1.40749,-1.87284 -0.0158,0.2477 -0.76758,-1.76471 -0.16528,-0.4424 -0.50786,-0.80483 -0.66982,-1.24845 -0.6078,-1.66486 -0.40047,-3.53645 -1.58864,-5.00131 -0.37217,-1.29531 -0.85431,-2.81094 -1.05462,-4.15101 -0.10883,-0.72804 -0.066,-1.47384 -0.18066,-2.20097 -0.13436,-0.85179 -0.41541,-1.67528 -0.56476,-2.52457 -0.99618,-5.6648 0.40648,0.34623 -0.99064,-5.22054 0,-1.33842 1.89283,-1.33842 1.89283,0 z"
inkscape:connector-curvature="0" />
<path
transform="matrix(1.6105118,0,0,1.6105118,-167.25672,-142.51744)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6582"
d="m 282.29712,243.53624 c -0.96759,-0.72746 -2.90469,-2.27858 -4.05122,-2.77195 -1.42529,-0.61332 -4.03,-0.47938 -5.589,-0.46329 -1.31619,0.21753 -2.52709,-0.48585 -3.80776,-0.52568 -0.54348,-0.0169 -1.07323,0.17556 -1.61001,0.26225 -2.05358,0.33165 -3.67266,0.65401 -5.64379,1.34639 -0.93236,0.55447 -2.08649,0.54175 -3.04246,1.02204 -0.30867,0.15509 -2.62134,1.95491 -2.86836,2.12886 -3.05846,2.15373 -0.65357,0.17955 -3.47028,2.6448 -0.5264,0.45783 -1.11991,0.84838 -1.57921,1.3735 -1.0893,1.24543 -2.46096,3.90181 -3.16146,5.4222 -0.30713,0.6666 -0.49777,1.38292 -0.80596,2.04903 -0.313,0.67647 -0.70297,1.3146 -1.05446,1.9719 -0.99149,1.68827 -2.01511,3.53782 -2.44111,5.47644 -0.12016,0.54679 -0.0422,1.12244 -0.14012,1.67365 -0.68001,3.82865 -0.47414,0.18771 -0.54238,3.74986 0.0171,1.89004 -0.89012,3.7505 -0.76522,5.64545 0.0369,0.55952 0.26528,1.08967 0.39233,1.63583 0.69916,3.00554 0.17539,1.03181 1.05688,4.10219 2.52998,7.13891 -1.39633,-3.68064 1.54739,3.55635 0.98986,2.43354 0.19826,1.78669 1.64598,4.12612 0.89575,1.44748 1.84979,2.21524 3.06698,3.39261 3.08435,3.91405 7.16539,7.06703 11.56382,9.40184 0.95779,0.50841 1.96811,0.911 2.95216,1.36651 3.76923,2.05828 7.74551,3.61531 11.98294,4.38317 1.88502,0.34158 3.80039,0.48869 5.69523,0.77076 2.79555,-0.38278 5.39665,-1.38746 8.00126,-2.41012 1.91668,-0.75256 2.80506,-0.97618 4.51612,-2.06204 0.64851,-0.41156 1.23257,-0.91683 1.84886,-1.37524 2.10253,-1.45206 3.52573,-3.42899 4.87009,-5.54876 0.99296,-1.56567 1.60447,-2.39047 2.17945,-4.15319 0.25894,-0.79381 0.38541,-1.62487 0.57811,-2.4373 0.525,-3.45622 1.8002,-6.78835 1.4063,-10.33411 -0.24478,-2.20342 -0.64439,-2.88398 -1.41452,-4.99556 -0.84788,-2.91253 -1.76413,-6.01534 -3.46733,-8.57479 -0.56056,-0.84237 -1.30254,-1.54917 -1.97728,-2.3032 -2.29641,-2.56628 -1.64869,-1.86402 -4.34354,-4.02652 -2.66281,-1.95122 -5.33612,-4.34804 -8.34478,-5.77015 -0.92094,-0.4353 -1.92857,-0.65701 -2.89911,-0.96635 -1.97111,-0.62824 -3.63574,-1.09262 -5.61879,-1.66338 -2.75793,-0.16422 -5.61531,-0.3661 -8.36134,0.11489 -2.18153,0.38211 -4.10123,1.349 -6.00675,2.41237 -2.26494,2.22778 -4.79724,5.31715 -5.45437,8.51698 -0.12695,0.61816 -0.0812,1.25951 -0.12186,1.88926 0.0496,0.68172 0.0992,1.36343 0.1488,2.04515 0.12137,0.5921 0.31692,1.17373 0.3641,1.7763 0.0488,0.62367 -0.16097,1.25502 -0.0782,1.8751 0.0851,0.63738 0.39727,1.22344 0.57423,1.84164 0.85231,2.97745 0.0955,1.13802 1.38346,3.78303 1.82727,3.40103 4.4211,6.05596 7.73179,8.00447 0.50033,0.28949 0.95724,0.6723 1.50097,0.86845 0.66399,0.23953 1.38021,0.29825 2.07521,0.42162 0.7076,0.12559 1.41304,0.30203 2.13133,0.32504 1.65715,0.0531 4.03857,-0.38694 5.76315,-0.52926 2.88322,-0.49182 6.05866,-1.49025 8.13452,-3.69895 0.32954,-0.35062 0.55378,-0.78704 0.83067,-1.18056 0.25752,-0.86827 0.6411,-1.86687 0.60249,-2.80393 -0.0618,-1.50015 -0.65019,-3.45635 -1.527,-4.69039 -0.32505,-0.45748 -0.77628,-0.81068 -1.16441,-1.21601 -1.58206,-2.08954 -3.08245,-4.22663 -5.4652,-5.46851 -1.06862,-0.55696 -2.2274,-0.9208 -3.33299,-1.40018 -1.65169,-0.20519 -3.26104,-0.10279 -4.90608,0.0595 -0.57574,0.0568 -1.17077,0.005 -1.72821,0.16024 -0.4323,0.12005 -1.29111,0.90725 -1.62759,1.19302 -1.05883,0.81812 -1.99227,2.77962 -2.06444,4.09066 -0.0188,0.34049 0.1321,0.67006 0.16712,1.00925 0.0411,0.39843 0.0406,0.80005 0.061,1.20008 0.38805,1.67998 1.80063,2.43271 2.87269,3.60405 1.11163,1.21458 0.14848,0.91697 1.45369,1.06849 1.00066,0.0244 2.12019,0.22956 3.11155,0.008 0.36858,-0.0824 0.68355,-0.32709 1.04352,-0.4414 1.9716,-0.62608 0.26461,0.24818 1.99752,-0.76767 0.1792,-0.13905 0.43024,-0.21734 0.53758,-0.41715 0.0472,-0.0878 -0.20113,-0.13262 -0.18909,-0.23154 0.0853,-0.70091 0.52924,-0.58443 0.39458,-1.31921 -0.0217,-0.11863 -0.18802,-0.1551 -0.25917,-0.25249 -0.14926,-0.20433 -0.26511,-0.43109 -0.39767,-0.64663 -0.15378,-0.19504 -0.25424,-0.44803 -0.46135,-0.58512 -0.12954,-0.0857 -0.31608,0.0154 -0.46519,-0.0282 -0.67937,-0.19856 -1.31053,-0.53899 -1.94187,-0.85895 -0.31394,-0.1591 -0.56774,-0.46343 -0.91341,-0.52966 -0.25626,-0.0491 -0.50267,0.14015 -0.75401,0.21023 -1.39921,0.39382 -2.29254,-1.33826 -2.05409,-0.5115 -1.35414,-0.15741 -1.13153,-2.07245 0.22261,-1.91504 v 0 c 1.386,-0.14663 0.65779,0.89535 2.04244,0.44749 0.35954,0.0437 0.73081,0.03 1.07862,0.13098 0.34377,0.0999 3.99196,1.61964 4.23986,1.82014 0.28324,0.22908 0.4234,0.5929 0.6351,0.88935 0.84619,1.24183 1.20472,2.45416 0.49672,3.85752 -0.18749,0.37164 -0.35356,0.76925 -0.63703,1.07406 -0.23639,0.25418 -0.58657,0.37132 -0.87985,0.55698 -2.90422,0.72648 1.47508,-0.46076 -2.22754,0.96011 -0.39358,0.15104 -0.82683,0.16515 -1.24128,0.24227 -0.54567,0.10153 -1.08439,0.27202 -1.639,0.29365 -0.82266,0.0321 -1.60925,-0.53426 -2.45713,-0.25043 -0.45033,-0.23097 -0.93278,-0.40788 -1.35099,-0.69291 -0.93456,-0.63697 -2.92052,-2.9766 -3.44121,-3.91709 -0.27407,-0.49504 -0.41984,-1.05093 -0.62976,-1.5764 -0.0926,-0.4642 -0.26355,-0.91946 -0.27765,-1.39258 -0.0472,-1.58521 0.96283,-4.53627 1.87333,-5.79482 0.2603,-0.3598 0.64526,-0.61032 0.96788,-0.91548 0.38577,-0.30084 0.71374,-0.6962 1.1573,-0.90254 0.43468,-0.2022 0.93629,-0.20811 1.40848,-0.29099 2.47607,-0.43461 4.94106,-0.72739 7.45047,-0.33549 4.00472,2.07154 -1.02042,-0.50551 3.48044,1.72263 0.67827,0.33577 1.41159,0.58635 2.02036,1.03602 1.3286,0.98139 2.81436,3.35235 3.89211,4.63841 2.75176,3.53832 4.08817,6.32516 2.14185,10.70835 -0.54391,0.74462 -1.66529,2.39023 -2.41025,2.96061 -0.47744,0.36554 -1.07559,0.53812 -1.61862,0.79634 -0.63717,0.30297 -1.2526,0.6634 -1.92173,0.8871 -1.36756,0.4572 -2.85723,0.47527 -4.20325,1.02272 -1.98338,0.19544 -4.03369,0.56962 -6.03082,0.48684 -2.28654,-0.0948 -4.56654,-0.65887 -6.64243,-1.60398 -1.73214,-1.22024 -2.91977,-2.34825 -4.37461,-3.88384 -0.45267,-0.4778 -0.94132,-0.92584 -1.34456,-1.44604 -0.88801,-1.14555 -1.40644,-2.5563 -2.50251,-3.55598 -0.3122,-0.63558 -0.69329,-1.24172 -0.93659,-1.90672 -1.16561,-3.18587 -1.04786,-6.95028 -1.59403,-10.27314 0.0926,-0.75346 0.0896,-1.52496 0.27794,-2.26037 0.27632,-1.07917 1.25994,-2.88228 1.80709,-3.83657 1.18364,-2.06441 2.51768,-3.92778 4.4154,-5.40893 0.70395,-0.41153 1.36593,-0.90518 2.11185,-1.2346 0.69242,-0.30579 1.44655,-0.44669 2.17342,-0.6579 0.79005,-0.22957 1.56775,-0.51648 2.37708,-0.66435 2.90001,-0.52985 5.93276,-0.37543 8.84154,-0.0889 2.94157,0.81133 6.03733,1.58621 8.78454,2.9534 3.08034,1.53297 5.8608,3.70216 8.59556,5.7576 1.49657,1.17855 3.51013,2.65752 4.77591,4.09388 2.82693,3.2079 4.36145,7.39897 5.61319,11.40858 0.44908,1.39386 1.37011,3.96632 1.49944,5.46969 0.0749,0.87085 -0.0905,1.74585 -0.14919,2.61795 -0.0652,0.96861 -0.0741,1.9445 -0.22234,2.90392 -0.26953,1.74421 -1.00002,3.39796 -1.13042,5.17266 -0.472,1.74081 -0.78475,3.3246 -1.6537,4.92428 -0.40307,0.74204 -0.96708,1.38472 -1.43844,2.08538 -0.47262,0.70253 -0.88201,1.449 -1.39329,2.12391 -0.91519,1.20807 -2.63127,2.92818 -3.65679,3.9968 -0.67725,0.48912 -1.30702,1.0518 -2.03174,1.46735 -0.91766,0.52619 -3.83442,1.61692 -4.78628,1.96398 -2.79805,1.0202 -5.62083,2.04684 -8.59579,2.40909 -1.34718,-0.11584 -4.63657,-0.35666 -5.93101,-0.64285 -1.07016,-0.23659 -2.09381,-0.64874 -3.14113,-0.97177 -3.14202,-0.9691 -6.19515,-2.07676 -9.15732,-3.52358 -2.92177,-1.54698 -5.89632,-3.09211 -8.58268,-5.03636 -2.4129,-1.74634 -4.46842,-3.91722 -6.60793,-5.97143 -0.68631,-0.85715 -2.40064,-2.9442 -2.98304,-3.88634 -1.52367,-2.46487 -2.38316,-5.23813 -3.50428,-7.88491 -0.55768,-2.00664 -1.3613,-4.16922 -1.48723,-6.26687 -0.11476,-1.91166 0.53328,-3.80466 0.71977,-5.68759 0.2121,-2.88764 -0.005,-0.84698 0.50529,-3.85361 0.11304,-0.66568 0.14265,-1.34769 0.31068,-2.00166 0.15897,-0.61871 0.44504,-1.1976 0.66538,-1.7972 1.02972,-2.80205 0.37298,-1.43583 1.85033,-3.9378 0.34522,-0.57705 0.73415,-1.1301 1.03565,-1.73114 0.34832,-0.69438 0.59466,-1.43555 0.90917,-2.14589 1.21984,-2.75507 2.70885,-5.36924 5.08442,-7.30276 1.56476,-1.48209 3.1658,-2.78036 4.93943,-4.00687 0.58751,-0.40628 1.14995,-0.85818 1.78386,-1.1874 0.12895,-0.067 3.02418,-1.0919 3.24307,-1.16976 2.51801,-0.50917 1.20778,-0.17665 3.91927,-1.04149 0.1539,-0.0329 3.83453,-0.37458 3.97798,-0.37109 1.15106,0.0279 2.26987,0.4629 3.43407,0.37233 1.49168,-0.0429 3.11765,-0.26677 4.57449,0.18733 2.32369,0.72431 4.01582,2.50984 6.33002,3.2681 1.0572,0.7929 -0.0641,2.28801 -1.12134,1.49511 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.48347px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 351.07852,28.555429 c -0.42512,1.75632 0.15231,-0.719338 1.23743,-0.176776 0.47793,0.238965 0.77901,0.831445 1.23744,1.06066 0.79115,0.395574 1.37797,-0.871802 1.94454,-1.06066 0.65926,-0.219753 1.39697,0.892509 2.12133,0.53033 0.458,-0.229004 0.5629,-0.811784 1.06066,-1.06066 0.57227,-0.28614 1.4079,0.88704 2.12132,0.53033 0.63792,-0.318964 0.85093,-0.779023 1.41421,-1.060661 0.39071,-0.195356 1.2326,0.44436 1.76777,0.176777 0.40587,-0.202937 0.66503,-0.68607 1.06066,-0.883883 0.72725,-0.363626 1.65255,0.587937 2.47487,0.176776"
id="path6610"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.48347px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 351.43207,35.096167 c 0.93825,0.876559 0.92786,0.243176 1.76777,-0.176777 0.8386,-0.419303 1.69545,0.849062 2.65165,0.53033 0.49792,-0.165972 0.80701,-0.668671 1.23743,-0.883883 0.72556,-0.362778 1.58704,0.532309 2.2981,0.176777 0.37126,-0.185629 0.41635,-0.561725 0.70711,-0.707107 0.56273,-0.281367 1.07408,0.258453 2.65165,-0.53033 0.78273,-0.391366 1.68118,1.148449 2.47487,0.883883 0.41986,-0.139952 0.50814,-1.690474 0.70711,-1.59099 1.09647,0.548236 2.05762,1.59099 3.35876,1.59099"
id="path6612"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.48347px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 352.49273,42.167235 c 2.15663,-2.811896 3.28326,-0.334679 5.48008,-0.883884 0.78313,-0.195782 0.90326,-1.361747 1.59099,-1.59099 1.12037,-0.373459 2.00759,1.000703 3.18198,0.707107 0.64647,-0.161619 0.86325,-0.961955 1.41421,-1.237437 0.65776,-0.328879 1.5892,0.619615 2.12132,0.353553 1.1081,-0.554049 3.4509,-1.191367 4.77297,-0.53033"
id="path6614"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.48347px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 354.43727,46.233099 c 1.02694,0.480539 0.94457,-0.432706 1.76777,-0.707107 0.89647,-0.298822 1.66296,0.504129 2.47488,0.707107 0.27709,0.06927 6.8401,-1.387121 7.24784,-1.59099 0.59461,-0.297305 4.56565,-0.07312 5.48008,-0.530331"
id="path6616"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.48347px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 348.9572,71.158613 c 1.17418,-1.311008 2.71887,-0.611664 4.06586,-1.06066 0.67278,-0.224261 1.20449,-1.167529 1.94454,-1.414214 0.6085,-0.202833 1.49028,0.403909 1.94455,0.176777 0.54189,-0.270946 1.19363,-0.692506 1.76777,-0.883884 1.13473,-0.378246 2.1335,0.938748 3.35875,0.53033 1.46483,-0.488275 1.22875,-0.799839 2.82843,0 0.48255,0.241274 1.461,-0.860491 2.12132,-0.53033"
id="path6618"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.48347px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 349.6643,77.345797 c 1.39494,1.027212 1.3614,-1.414213 2.65165,-1.414213 0.66917,0 1.46927,0.883883 2.12132,0.883883 0.9051,0 1.3604,-1.210529 2.12132,-1.59099 0.73795,-0.368975 2.32253,0.789388 3.35876,0.53033 0.61136,-0.152841 0.89303,-0.623293 1.41422,-0.883883 0.51854,-0.259273 1.42599,0.259272 1.94454,0 1.79224,-0.896121 2.62596,-0.883884 4.77297,-0.883884"
id="path6620"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.48347px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 350.72496,84.947195 c 0.8704,-0.137079 0.50604,-1.700743 1.23744,-1.944543 1.29911,-0.433037 2.574,0.970123 3.88909,0.707106 1.02354,-0.204709 1.47075,-1.000539 2.2981,-1.414213 0.70529,-0.35265 1.68893,0.438755 2.47487,0.176776 0.56424,-0.188079 0.87679,-0.791948 1.41421,-1.06066 0.56561,-0.282805 1.51534,0.201994 2.12132,0 1.18469,-0.394895 2.73187,-1.387474 4.24264,-0.883883"
id="path6622"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.48347px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 350.19463,90.250496 c 0.62213,0.40303 0.61867,0.397772 1.06066,0.176777 0.64973,-0.324861 0.75907,-1.263415 1.41422,-1.590991 0.8813,-0.440651 3.10396,2.140826 4.59619,1.767767 0.9181,-0.229523 1.01299,-1.390378 1.76777,-1.767767 1.16377,-0.581884 2.91553,0.751943 4.06586,0.176777 0.83614,-0.418068 0.99801,-1.559665 1.76777,-1.944543 0.36414,-0.182071 0.78853,0.262843 1.06066,0.353553 1.01824,0.339413 1.84926,-0.679943 2.82843,-0.353553 0.86454,0.288182 1.25593,1.06066 2.29809,1.06066"
id="path6624"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.48347px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 356.02826,113.23147 c 0.78327,0.2534 0.73612,-0.89356 1.23744,-1.06066 1.19766,-0.39922 2.44282,1.40353 3.53554,1.76776 0.78209,0.2607 1.06869,-1.24011 1.59099,-1.41421 1.11098,-0.37033 2.07887,0.98288 3.18198,0.70711 0.87486,-0.21872 1.51087,-1.15181 2.29809,-1.41422 1.09745,-0.36581 2.30171,0.17498 3.71231,-0.53033"
id="path6626"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.48347px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 357.08892,118.53477 c -1.40358,0.23778 0.40637,0.91834 0.35356,0.7071 -0.0639,-0.25565 -0.53989,-0.52076 -0.35356,-0.7071 0.18634,-0.18634 0.44871,0.30187 0.70711,0.35355 0.20735,0.0415 1.05648,-0.70711 1.41422,-0.70711 1.23065,0 2.42274,1.55983 3.71231,1.23744 0.77619,-0.19405 1.11382,-1.08724 1.76776,-1.41421 0.93787,-0.46894 1.88697,0.84415 2.82843,0.53033 0.80438,-0.26813 1.00081,-1.20752 1.76777,-1.59099 0.63979,-0.3199 2.69873,-0.35356 3.0052,-0.35356"
id="path6628"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.48347px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 357.79603,125.42906 c 1.56716,-2.17332 3.62274,0.38341 5.3033,-0.17678 0.78144,-0.26048 1.24334,-1.35725 1.94455,-1.59099 0.81504,-0.27168 1.60729,0.53441 2.29809,0.70711 1.11001,0.2775 1.33563,-0.49104 2.12132,-0.88389 1.15239,-0.57619 2.4063,0.84427 3.18198,-0.7071"
id="path6630"
inkscape:connector-curvature="0" />
</g>
<path
transform="matrix(0.22060366,-0.11577511,0.11577511,0.22060366,39.914798,122.13879)"
inkscape:connector-curvature="0"
d="m 295.13011,-44.977993 c 2.24102,-0.0055 4.39799,-0.63948 6.60568,-0.889011 0.65194,-0.07369 1.33949,0.111495 1.96657,-0.08142 0.19655,-0.06047 0.0517,-0.439552 0.19771,-0.584383 0.59997,-0.59522 1.53694,-0.704434 2.31821,-1.026729 0.2676,-0.21601 0.47006,-0.561161 0.80281,-0.648031 0.32572,-0.08503 5.99644,-0.582144 6.05716,-0.583915 0.91092,-0.02657 1.83079,0.255257 2.73144,0.116324 0.72795,-0.112292 1.35916,-0.568109 2.03873,-0.852163 0.8998,-0.07344 1.79959,-0.14688 2.69938,-0.22032 3.98957,-0.828869 7.91538,-0.301771 11.90814,-0.113985 2.32484,0.109341 4.65484,-0.0032 6.98225,0.0019 4.14379,0.889481 8.39281,2.156494 12.69423,1.697342 2.13623,-0.22803 4.16398,-1.060061 6.24055,-1.610798 5.18663,-0.927972 10.34526,-0.256244 15.5363,0.02367 2.64619,0.142692 5.00914,0.06655 7.66281,0.03307 1.17612,0.01374 2.3589,0.166899 3.52836,0.04122 1.14444,-0.12299 2.23014,-0.580378 3.36339,-0.781861 5.20681,-0.925725 10.54723,-1.199355 15.81667,-1.527341 5.12857,-0.594728 10.26598,-0.986256 15.43228,-0.769396 1.43849,0.06038 2.87019,0.362002 4.3087,0.302045 1.40447,-0.05854 2.77723,-0.436844 4.16585,-0.655266 3.96633,-0.403557 7.90789,0.403447 11.84971,0.524551 1.25877,0.03867 2.51715,-0.10493 3.7765,-0.109301 2.12359,-0.0074 4.24623,0.09455 6.36967,0.120917 1.04536,0.146446 2.11087,0.187999 3.13607,0.439336 4.8136,1.180091 0.27551,0.901934 5.0139,1.254531 1.67618,1.196609 3.05545,-0.577733 4.59451,-0.505586 0.7952,0.03728 1.50478,0.520148 2.25717,0.780222 0.46273,0.238597 0.88202,0.593925 1.38817,0.715792 0.28271,0.06807 0.56443,-0.154836 0.85445,-0.175833 1.12214,-0.08124 2.13229,-0.157906 3.254,-0.388536 0.19835,0.06695 0.55608,-0.0048 0.59504,0.200854 0.24974,1.318449 -0.7494,3.076726 0.20455,4.020479 0.88008,0.87068 0.34191,-2.496975 0.10682,-3.712439 -0.0585,-0.302259 -0.66243,-0.06373 -0.87945,-0.282096 -0.0999,-0.100469 0.20012,-0.200518 0.30017,-0.300777 -0.14928,-0.104973 -0.29857,-0.209946 -0.44786,-0.314919 -0.3603,-1.471224 0.32188,-2.776002 -0.17949,-4.266499 -0.10287,-0.305836 -0.47927,-0.467912 -0.58135,-0.774013 -0.51605,-1.547371 -0.6543,-3.196045 -0.99156,-4.791953 -0.0802,-2.890252 0.55323,-5.709049 0.52352,-8.599488 -0.0102,-0.993075 -0.17315,-1.980473 -0.18708,-2.973502 -0.0134,-0.958823 0.23916,-1.92534 0.10506,-2.874833 -0.11613,-0.822193 -0.56149,-1.56291 -0.84223,-2.344365 -1.65216,-6.2095 -0.9136,-12.700122 -0.41783,-19.017347 -0.30977,-6.118624 -0.0351,-12.234004 -0.0721,-18.356214 -0.47519,-7.28378 -0.002,2.05805 0.0692,-5.37836 0.009,-0.94023 -0.28386,-1.87895 -0.18939,-2.81447 0.16076,-1.59182 1.27232,-5.67851 1.80008,-7.45536 -0.0354,-1.35725 -0.21148,-2.14454 0.55136,-3.46057 0.1783,-0.3076 0.68626,-0.2962 0.89034,-0.58733 0.083,-0.1184 -0.41499,-0.30233 -0.40392,-0.15816 0.0285,0.37117 0.0679,0.74141 0.10183,1.11212 7.94979,-1.51681 1.0324,1.08391 0.6405,1.07429 -0.54924,-0.0135 -2.17944,-1.50641 -3.00757,-1.90157 -1.34314,-0.86114 -2.31083,-2.38524 -3.68616,-3.18321 -0.55281,-0.32075 -1.25733,-0.35577 -1.76975,-0.73775 -0.88083,-0.65661 -1.53686,-1.57127 -2.33729,-2.32382 -0.77499,-0.72862 -1.59138,-1.41193 -2.38707,-2.1179 -3.8536,-2.26493 -5.42104,-6.88946 -8.98038,-9.43365 -1.12534,-0.80439 -2.42356,-1.33422 -3.63535,-2.00133 -1.21099,-0.95386 -2.42198,-1.90772 -3.63297,-2.86158 -2.36427,-2.32212 -4.24037,-5.10613 -6.59365,-7.43875 -1.06801,-1.05865 -2.32389,-1.9133 -3.41301,-2.95022 -2.40874,-2.29329 -3.2318,-3.9002 -6.08901,-5.66152 -1.04904,-0.64668 -2.26056,-0.98213 -3.39083,-1.4732 -3.28647,-2.31217 -6.45854,-4.84062 -9.81968,-7.04502 -1.16701,-0.76539 -2.43677,-1.36658 -3.59979,-2.13803 -7.76637,-5.15156 1.65855,0.49709 -5.48189,-3.68068 -1.03047,-0.54778 -2.14392,-0.96204 -3.09142,-1.64336 -1.94265,-1.39691 -2.52315,-2.95004 -4.19698,-4.62604 -2.32111,-2.32411 -5.39708,-3.69732 -8.26797,-5.17189 -1.60569,-1.99166 -4.11975,-2.768 -6.01268,-4.36516 -3.35385,-2.82983 -0.6867,-1.84679 -3.97886,-3.92857 -1.39293,-0.88082 -2.9678,-1.43423 -4.44313,-2.16874 -2.31973,-1.1155 -3.2753,-3.85444 -5.64576,-4.88303 -0.81161,-0.35218 -0.3792,0.89464 -1.92607,-0.97401 0.23098,0.2128 0.46195,0.4256 0.69293,0.6384 -0.0227,0.0412 -0.11397,0.11355 -0.068,0.12369 1.34157,0.29616 -1.35789,-4.3892 -0.0103,-4.12162 5.15673,1.02393 0.52535,4.35583 -0.23242,4.98244 -0.46024,0.28438 -0.98385,0.48546 -1.3807,0.85315 -0.2754,0.25517 -0.3511,0.66814 -0.58131,0.96472 -0.25124,0.32367 -0.61926,0.54832 -0.85387,0.88424 -1.5398,2.2048 -2.83636,4.69854 -4.19755,7.01808 -1.48633,1.36127 -1.70411,3.44894 -2.77667,5.03864 -0.71688,1.06253 -1.74859,1.88232 -2.50727,2.91543 -0.71045,0.96741 -1.16653,2.10666 -1.88624,3.06721 -1.91429,2.5549 -3.3654,3.61081 -5.75597,5.72014 -0.66043,0.97014 -1.23196,2.00717 -1.98129,2.9104 -9.95263,11.99679 5.0932,-7.35888 -5.1335,5.49464 -1.46717,1.84403 -2.34627,4.1375 -3.95415,5.86024 -0.85715,0.91838 -2.00665,1.51192 -3.00998,2.26788 -2.1899,2.06458 -4.10625,4.40003 -6.23651,6.52131 -0.75852,0.75532 -1.61619,1.41051 -2.34148,2.19779 -4.90651,5.32588 1.87761,-1.02378 -4.08169,4.3322 -0.66195,0.65461 -1.32391,1.30921 -1.98586,1.96381 -0.44056,0.59952 -0.81328,1.25538 -1.32167,1.79857 -0.41236,0.44058 -0.97208,0.71907 -1.41663,1.12715 -1.32595,1.21719 -2.53692,2.62599 -3.8205,3.89289 -1.15748,0.89996 -1.99536,1.81369 -3.36456,2.32178 -0.39646,0.14712 -1.48236,0.63751 -1.23377,0.29541 2.74095,-3.77204 1.90178,-0.53176 2.20309,-1.76249 -0.24969,0.90092 -0.49937,1.80183 -0.74905,2.70275 -0.36187,0.3009 -0.85625,0.49175 -1.08561,0.90271 -0.0962,0.1723 0.24374,0.3225 0.29555,0.51289 0.0148,0.0543 -0.14244,0.0174 -0.16523,-0.034 -0.21243,-0.47927 -0.0414,-1.25173 -0.50935,-1.48797 -0.80271,-0.40519 -1.79629,-0.0862 -2.69443,-0.12927 -0.0937,0.13757 -0.43348,0.34533 -0.28125,0.41271 1.30449,0.57735 2.82643,0.60249 4.08641,1.27142 0.24503,0.13009 -0.10501,0.54489 -0.14951,0.81872 -0.15702,0.96618 -0.0378,1.73774 -0.0754,2.70096 0.28077,3.1535 -0.37737,6.25342 -0.28251,9.42307 0.0317,1.05984 0.22506,2.10865 0.3376,3.16298 -0.95367,4.08873 0.21245,8.27094 -0.0905,12.38367 -0.60384,8.19878 -0.89542,-1.5311 -0.36282,7.31022 -0.22931,1.50269 -0.35135,3.02573 -0.68794,4.50809 -0.28513,1.25577 -0.93448,2.41556 -1.17155,3.681286 -0.64757,3.457401 -0.0616,3.541511 0.3369,6.800494 0.20388,1.667407 0.1985,3.636753 0.22956,5.31587 0.0375,0.886273 0.0749,1.772545 0.1124,2.658817 -0.0836,0.924511 -0.26706,1.845386 -0.25091,2.773531 0.0167,0.959408 0.43595,1.90184 0.34891,2.857438 -0.23067,2.532487 -1.16801,2.612139 -1.74392,4.856646 -0.13537,0.527617 -0.0503,1.088258 -0.0754,1.632387 0.009,0.344414 -0.0507,0.697683 0.0274,1.033242 0.0762,0.327129 0.34312,0.587703 0.42582,0.913244 0.60765,2.392099 -0.49554,4.579363 -1.56104,6.644121 -0.002,0.345806 -0.42888,1.925119 -0.23214,2.264585 0.13109,0.2262 0.40995,0.339628 0.54652,0.562567 0.28068,0.458217 -0.10378,1.06997 -0.17699,1.602312 0.0788,0.240576 0.39245,0.522484 0.2363,0.721728 -3.57947,4.567351 -2.17539,1.906782 -1.9815,0.716607 0.87854,2.525649 -0.0334,-0.487951 0.39625,2.72953 0.0473,0.354098 0.35418,0.657815 0.34429,1.01492 -0.0684,2.469048 -0.7103,-0.298234 -0.26705,1.300666 -0.56842,-0.226791 -5.11732,0.271485 -4.07203,-1.367196 0.453,-0.710163 0.77611,-1.54007 1.40506,-2.100404 0.36771,-0.327604 0.94751,-0.269357 1.41805,-0.41474 0.43475,-0.134326 0.86499,-0.282855 1.29748,-0.424282 1.36973,1.982334 2.37229,2.016939 0.82859,4.004579 -0.19442,0.250338 -0.67713,0.667819 -0.85887,0.408128 -2.56563,-3.666045 -2.12786,-3.289921 -0.46844,-5.284701 0.94337,-0.367217 1.50086,-1.495666 2.29974,-2.007827 1.06605,-0.683444 2.46021,-0.803222 3.44714,-1.596656 0.47928,-0.385317 0.76978,-0.959253 1.15468,-1.43888 1.98389,-2.444609 3.9868,-4.977876 6.66361,-6.723003 1.34029,-0.873796 2.87404,-1.412775 4.25763,-2.216256 15.41907,-8.954171 -8.6716,4.363026 7.91309,-4.711055 1.41565,-0.943465 2.84253,-1.870297 4.24695,-2.830396 1.44952,-0.990923 2.78837,-2.153591 4.31429,-3.022276 0.71578,-0.407491 9.32898,-4.271095 10.24724,-4.610837 10.40546,-3.849844 0.74961,0.704782 10.1497,-4.053029 3.25308,-1.410923 5.80458,-2.642296 9.25217,-3.608331 1.59071,-0.445728 3.28196,-0.498152 4.8507,-1.015931 0.59689,-0.19701 7.77942,-3.720998 8.37855,-3.958468 1.63166,-0.64672 3.33346,-1.1001 5.00018,-1.65016 2.95155,-1.55737 6.40268,-1.59666 9.45321,-2.82576 1.38423,-0.55773 2.53255,-1.60923 3.91421,-2.1733 1.63947,-0.66932 3.47815,-0.78235 5.09494,-1.50473 1.62371,-0.72546 2.97384,-1.96001 4.54106,-2.80059 1.4842,-0.79604 3.06374,-1.39989 4.59561,-2.09983 3.84314,-2.675 8.25895,-4.19828 12.46232,-6.14047 3.433,-1.58624 6.66657,-3.65883 10.00935,-5.42604 2.79661,-1.24091 5.56846,-2.2744 8.59875,-2.71888 0.71719,-0.10519 1.45853,-0.0672 2.16033,-0.2486 1.24821,-0.32263 2.38504,-0.98305 3.6014,-1.41035 1.17048,-1.43868 2.6606,-1.34891 4.2559,-1.82522 0.29738,-0.0888 0.49309,-0.39803 0.78714,-0.49729 1.09669,-0.37022 2.27192,-0.44447 3.40756,-0.66834 0.37308,-0.0421 0.76737,0.005 1.11925,-0.12622 1.17383,-0.0118 -0.92467,-0.008 -0.72471,-0.15281 2.1058,-1.52477 2.20459,-1.76575 4.41811,-0.75919 -0.14189,3.23016 0.35997,4.49025 -2.99962,3.77795 -0.32805,-0.0695 -0.55858,-0.45234 -0.89379,-0.46173 -5.88283,-0.16468 2.775,1.22289 -3.37538,0.063 -3.38236,0.94273 -6.68647,0.0663 -10.02218,-0.60551 -5.25242,-1.05785 -2.36722,-0.26083 -7.56865,-2.04612 -4.65005,-0.71888 -9.25676,-1.66814 -13.93172,-2.22586 -1.72446,-0.20572 -3.46621,-0.26728 -5.18327,-0.52765 -1.59244,-0.24146 -3.1549,-0.65059 -4.73234,-0.97588 -1.74446,-0.22349 -3.48892,-0.44697 -5.23338,-0.67045 -1.86376,-0.48804 -3.70349,-1.07934 -5.59127,-1.46413 -4.79079,-0.97652 -7.35966,-0.82625 -12.28708,-1.61056 -14.00399,-2.22904 0.72621,-0.27801 -12.59846,-2.91245 -1.82865,-0.36154 -3.69881,-0.46627 -5.54821,-0.6994 -9.43494,-1.08238 -18.33299,-3.58907 -27.89403,-3.75925 -4.79316,1.07271 -9.73066,0.29928 -14.54775,0.77896 -0.37705,-0.0496 -0.75127,-0.16667 -1.13114,-0.14873 -4.67763,0.22089 2.76867,0.38857 -2.34897,0.2716 -0.49755,-0.0114 -0.98289,-0.32393 -1.47354,-0.24055 -0.19101,0.0325 -0.28898,0.25816 -0.43348,0.38723 0.64985,-0.21063 -1.65294,0.0451 -1.2924,-0.19988 3.58939,-2.43941 1.17728,0.034 0.6705,0.68552 -0.76807,0.9875 -0.90296,1.40187 -0.4516,0.38618 -0.17881,0.23483 -1.39911,2.38198 -2.35495,1.99931 -0.13819,-0.0553 2.96317,-1.16879 1.13091,-1.74788 -0.90518,-0.28608 -1.89373,-0.13608 -2.8406,-0.20412 2.18729,0.70566 4.25012,0.99621 3.38183,3.26939 -0.25788,0.67512 -0.35029,0.45714 -0.10157,1.01197 -0.0471,0.41301 0.20805,3.10499 0.002,2.84534 -0.35924,-0.45284 -1.07258,-1.15122 -0.69487,-1.58877 0.34081,-0.39481 0.80681,0.66118 1.21022,0.99177 0.35077,0.13738 0.83818,0.1022 1.05233,0.41213 0.10734,0.52564 0.21467,1.05129 0.32201,1.57693 -0.0953,-0.14589 -0.45777,-0.40958 -0.2858,-0.43769 0.30652,-0.0501 1.85617,1.61306 2.12486,1.94736 0.31811,0.30311 0.59795,0.65231 0.95434,0.90932 0.7153,0.51583 1.70821,0.51391 2.4586,0.97721 0.66868,0.41284 1.19115,1.02631 1.81027,1.51032 2.18866,1.71103 2.26134,1.64393 4.78463,3.16962 0.95943,0.63357 1.83338,1.42106 2.87831,1.90072 1.21028,0.55556 2.57998,0.68502 3.81885,1.17351 2.90298,1.14467 6.177,3.03474 8.96745,4.40632 3.86127,1.8979 5.65605,2.62236 9.61204,4.34175 1.83393,0.85627 3.65155,1.74838 5.50178,2.56882 13.24682,5.87393 -0.13919,-0.35685 13.25904,5.7157 2.09516,0.9496 4.18484,1.91292 6.24732,2.93155 2.09511,1.03476 4.08977,2.27371 6.22301,3.22741 2.24496,1.00363 4.59371,1.75679 6.89056,2.63519 7.58528,3.295458 14.40508,7.967157 21.70755,11.807262 2.39876,1.261422 4.95238,2.238927 7.26084,3.658888 15.71737,9.667976 -3.43119,0.018 12.6314,7.675789 1.96632,0.974175 3.95482,1.904806 5.89896,2.922525 9.89778,5.181298 1.7385,1.278096 10.5509,5.61074 4.51027,2.21749 8.67681,3.960999 12.98202,6.598051 5.37575,1.862387 10.00937,5.490175 13.93123,9.553351 2.58759,2.03853 2.90664,2.098955 -1.05292,4.485929 -0.13041,0.07862 -1.24518,-0.394619 -2.29684,-0.845177 -0.58897,-0.63167 -1.17794,-1.263339 -1.76691,-1.895009 -2.0377,-1.628862 0.26586,-4.510591 2.30355,-2.88173 v 0 c 0.41218,0.43609 0.82435,0.87218 1.23652,1.30827 3.31059,0.943734 4.84582,0.605877 0.57698,4.482988 -0.61723,0.56059 0.26948,-4.509433 -1.58847,-1.932311 -0.6933,-0.794948 -1.88,-2.219683 -2.68299,-2.849035 -0.69084,-0.54146 -1.56576,-0.832053 -2.21775,-1.419722 -0.62587,-0.564126 -0.90631,-1.458293 -1.56216,-1.987273 -0.93571,-0.754706 -5.53447,-2.889261 -6.41672,-3.315004 -2.6282,-1.522173 -5.17344,-3.195145 -7.8745,-4.583921 -1.59158,-0.818326 -3.31097,-1.373019 -4.89376,-2.208234 -1.61025,-0.849707 -3.08969,-1.928461 -4.66744,-2.837086 -4.07787,-2.348433 -7.4072,-4.015347 -11.59529,-6.187935 -4.20087,-2.559901 -8.28566,-5.308924 -12.51339,-7.824211 -12.09682,-7.197 -2.03867,-0.74748 -14.45584,-7.64579 -15.41785,-8.565325 1.07892,-0.451077 -14.31538,-7.739209 -15.33773,-6.131536 1.20801,0.706795 -13.21815,-5.919636 -2.06484,-0.94845 -4.2206,-1.68919 -6.28943,-2.62889 -2.19656,-0.99771 -4.28108,-2.23662 -6.50118,-3.1808 -2.19623,-0.93404 -4.4992,-1.5953 -6.72909,-2.44588 -1.89475,-0.72274 -3.762,-1.51558 -5.64301,-2.27337 -1.73709,-0.69396 -3.50966,-1.30499 -5.21128,-2.08188 -3.05846,-1.39638 -5.85068,-3.33972 -9.02452,-4.50498 -7.37861,-3.29567 -1.36587,-0.42867 -8.3703,-3.31698 -1.11571,-0.46007 -2.19407,-1.00596 -3.29111,-1.50894 -0.97471,-0.5994 -1.92272,-1.24458 -2.92414,-1.7982 -0.84167,-0.46529 -1.80373,-0.7125 -2.59808,-1.25463 -0.48187,-0.32888 -0.69594,-0.95712 -1.16024,-1.31037 -1.26913,-0.96559 -3.22561,-1.0301 -4.18167,-2.4823 -0.80336,-0.74439 -1.8453,-1.35552 -2.47163,-2.26553 -0.42052,-0.61097 -0.58736,-1.42665 -1.15871,-1.89958 -0.27795,-0.23007 0.30583,1.99535 0.51206,0.95365 -0.24991,-1.35064 0.15616,0.53961 -2.10176,-2.44969 -0.37011,-0.49 0.0495,-1.23487 0.0563,-1.6976 0.002,-0.1498 -0.11355,-0.27728 -0.17033,-0.41592 0.0193,-0.15361 0.0387,-0.30722 0.058,-0.46083 0.18342,-2.90937 -0.75781,-2.97015 3.67204,-1.71055 -1.12092,-0.0199 -2.2926,0.27449 -3.36275,-0.0596 -2.32914,-0.72716 0.68901,-4.09566 1.03438,-4.52102 0.1281,-0.15777 -1.10484,1.16527 -0.11284,0.59915 0.34206,-0.59271 0.68412,-1.18542 1.02617,-1.77813 0.15606,0.069 0.34541,0.32548 0.46818,0.20698 3.01086,-2.90619 0.83868,-2.33765 3.2226,-2.35073 1.0345,-0.22693 -0.4325,0.0305 1.1633,0.10863 0.2435,0.0119 0.47776,-0.14731 0.72056,-0.1253 1.26928,0.11504 2.36639,0.55894 3.65906,0.0355 2.67147,0.48522 0.065,0.11006 3.32962,0.20583 2.03471,0.0597 2.81565,0.34977 4.85639,0.18112 6.34403,-0.52429 -1.19581,-0.58106 6.27314,-0.30303 2.40918,0.16527 6.26953,0.39692 8.64849,0.69684 4.78274,0.60298 9.43105,1.76991 14.15395,2.67226 1.79758,0.34344 3.61196,0.59217 5.41794,0.88826 7.70765,1.3697 3.827,0.58814 11.69206,2.37051 2.13407,0.48362 4.24119,1.10699 6.40213,1.45119 5.97552,0.9518 12.17933,0.72443 17.98091,2.76159 9.84631,1.26982 19.68245,2.57518 29.49242,4.10497 5.05702,1.50307 2.1002,0.77794 7.48306,1.73028 0.91321,0.16156 1.81015,0.44874 2.73577,0.50607 2.10601,0.13042 4.29829,-0.37667 6.41876,-0.21101 1.92079,-0.14108 3.58567,-0.62624 5.45562,0.0581 0.24542,0.0898 -0.54206,-0.19567 -0.77928,-0.086 -0.16978,0.0785 -0.18792,0.3436 -0.18256,0.53055 0.0271,0.94663 0.18581,1.88489 0.27871,2.82734 1.1399,0.21233 0.81234,0.3936 1.35042,0.10187 0.16455,-0.0892 0.62602,-0.40153 0.4918,-0.27106 -0.90542,0.8801 -2.28138,1.84979 -3.51579,2.02339 -2.48157,-0.30724 -5.6639,1.5761 -7.83298,2.72512 -2.7004,0.44909 -1.27882,0.0467 -4.20817,1.39151 -0.63613,0.1497 -1.3101,-0.14185 -1.95935,-0.0675 -2.69207,0.30844 -5.43553,1.10627 -7.83482,2.33619 -2.23537,1.15915 -4.50064,2.26175 -6.71189,3.46628 -1.23621,0.67339 -2.37243,1.53946 -3.66282,2.1021 -1.29619,0.56516 -2.74092,0.72726 -4.05036,1.26098 -2.10926,0.85972 -6.38197,3.37399 -8.27386,4.44714 -4.78506,2.0851 -9.44079,4.40146 -14.16504,6.61956 -1.48922,0.69921 -2.9142,1.55663 -4.4686,2.09563 -3.05165,1.05819 -6.4239,0.99992 -9.38844,2.397605 -1.5679,0.561736 -3.16832,1.03985 -4.70369,1.685209 -3.50325,1.472513 -5.17533,2.829737 -8.77968,4.184765 -1.5002,0.563991 -3.1053,0.808012 -4.62007,1.331653 -15.61371,5.397539 6.57625,-1.600034 -9.13167,3.252351 -18.76071,8.618475 8.94668,-3.837376 -10.19586,3.864426 -1.68327,0.677245 -3.19822,1.720127 -4.84953,2.471953 -1.60177,0.729273 -3.341,1.149977 -4.8999,1.966878 -2.96623,1.55437 -5.882,4.087484 -8.47467,6.16055 -5.33419,3.301104 -2.83496,1.808063 -8.04783,4.83221 -1.15091,0.667679 -2.38503,1.208638 -3.45383,2.001146 -2.60003,1.927918 -4.83039,4.632175 -6.54935,7.335943 -2.24874,1.419302 -4.59975,2.966872 -6.35988,4.965671 -0.14915,0.07935 -0.3253,0.121338 -0.44744,0.238058 -0.22848,0.218344 -0.3022,0.891112 -0.58358,0.747219 -1.11841,-0.571947 -1.77633,-1.803545 -2.82734,-2.49154 -0.91042,-0.59597 -1.87127,4.791093 0.71746,3.371282 0.20425,-0.04084 0.41361,-0.06148 0.61276,-0.122525 0.29947,-0.09179 -0.0233,-1.240824 0.0567,-0.937973 0.65057,2.464077 -2.55145,1.4129 -4.3113,1.397097 0.16601,-0.247551 -0.004,-2.419441 0.40315,-2.589832 -0.27657,-0.570124 -0.78799,-1.078079 -0.82973,-1.710372 -0.0298,-0.451007 1.94624,-4.281414 2.86089,-3.455232 0.2357,0.212903 -1.62,2.43964 -0.66298,1.272722 -0.58182,-0.405606 -0.14297,-0.669817 -0.16361,-1.30131 -0.0557,-1.704668 -0.68377,-3.311866 0.25695,-4.980743 0.2355,-0.487023 0.38714,-1.024428 0.70651,-1.46107 0.14311,-0.195665 0.55011,-0.135725 0.62907,-0.364925 0.21672,-0.629126 -0.47673,-4.895559 -0.41457,-5.674207 0.0635,-0.271832 0.96274,-4.14837 1.01874,-4.271392 0.26761,-0.587819 1.06112,-0.902395 1.17935,-1.53735 0.17266,-0.927261 -0.35708,-1.862105 -0.37074,-2.805205 -0.0252,-1.741212 0.67728,-3.453879 0.30645,-5.215186 -0.0536,-0.870489 -0.0414,-1.747524 -0.16065,-2.611466 -0.13598,-0.985055 -0.58274,-1.927397 -0.60312,-2.921583 -0.0236,-1.1497 0.38952,-2.270325 0.47319,-3.417219 0.0952,-1.304923 -0.0572,-2.621762 0.0624,-3.924678 0.13217,-1.44003 1.17189,-6.31712 1.44395,-7.64792 0.004,-2.43705 -0.20184,-4.87311 -0.14988,-7.3096 0.0246,-1.15483 0.28839,-2.29702 0.30288,-3.45203 0.0118,-0.94229 -0.21966,-1.87585 -0.22417,-2.81821 -8.8e-4,-0.18311 0.40919,-6.03903 0.41458,-6.11666 -1.33774,-9.85603 0.23783,3.0671 -0.33721,-6.03189 -0.0478,-0.75718 -0.34263,-1.4827 -0.41483,-2.23795 -0.13594,-1.42211 0.13228,-2.95137 0.46027,-4.32531 -0.46543,-1.50145 -0.23518,-0.41621 -0.29859,-1.74853 -0.1172,-2.46236 -0.19811,-2.63256 4.0748,-1.49502 0.3201,0.0852 -0.46687,0.47004 -0.7003,0.70506 -0.9991,0.18326 -2.04013,0.88978 -2.99731,0.54977 -2.2242,-0.7901 0.1395,-5.07413 0.66549,-4.8357 0.20138,0.0913 0.15329,0.41478 0.22993,0.62217 -0.1389,-0.39649 -0.58871,-0.80618 -0.41668,-1.18946 0.45038,-1.00344 1.51454,-1.61503 2.0948,-2.5494 0.10215,-0.16449 -0.45883,-0.0586 -0.57252,0.0981 -0.0818,0.11275 0.27065,0.23433 0.38695,0.15769 3.31835,-2.18681 -0.46948,-0.5359 2.12312,-1.56717 0.47529,-0.44076 0.95059,-0.88152 1.42588,-1.32229 0.36336,-0.48655 0.66205,-1.0289 1.09009,-1.45964 0.40927,-0.41186 0.9581,-0.66054 1.39584,-1.04201 1.70919,-1.48946 3.26385,-3.18829 4.97778,-4.6773 8.86794,-9.13285 -3.91231,3.82026 4.33474,-3.91863 3.07635,-2.88679 5.00362,-6.89184 8.62853,-9.25008 2.84349,-2.39796 4.57148,-4.68003 6.88149,-7.55935 1.5314,-1.90883 3.35075,-3.57706 4.85259,-5.50923 0.78206,-1.00613 1.41656,-2.11873 2.12484,-3.17809 0.99505,-0.84076 2.06358,-1.60155 2.98513,-2.52227 2.20104,-2.19904 2.61851,-3.35019 4.41133,-5.84753 0.65687,-0.915 1.48266,-1.71264 2.053,-2.68394 0.54037,-0.92027 0.8353,-1.96414 1.25295,-2.94621 0.51766,-0.83201 1.03532,-1.66402 1.55298,-2.49603 2.01947,-3.04773 1.0431,-1.42537 2.89658,-4.88651 0.39642,-0.63509 0.95595,-1.15765 1.35581,-1.79059 0.44134,-0.69862 0.65537,-1.53643 1.15959,-2.19111 0.21615,-0.28064 0.70304,-0.24467 0.92749,-0.51871 0.34539,-0.4217 0.4704,-0.98347 0.7056,-1.47521 0.24461,-0.0742 0.53627,-0.3847 0.73381,-0.2225 0.80625,0.66201 1.43133,3.33451 1.96339,2.43717 0.67918,-1.14547 -1.02434,-2.50278 -1.13775,-3.82964 -0.0147,-0.17213 3.45432,-0.44481 3.89855,-0.12436 -0.15263,0.15491 -0.486,0.24908 -0.4579,0.46473 0.0248,0.19012 0.37078,0.10533 0.54313,0.18931 0.42332,0.20629 0.86775,0.38912 1.23884,0.67903 1.81423,1.41738 3.48623,3.13485 5.11236,4.75742 2.33709,1.41402 5.027,2.41093 7.08117,4.25097 0.68981,0.61791 1.17088,1.4413 1.83951,2.08207 2.47854,2.37526 2.86051,2.36507 5.81662,4.09723 0.97609,0.65684 1.9234,1.35862 2.92827,1.97052 1.03356,0.62937 2.18859,1.05699 3.18089,1.74958 0.95966,0.6698 1.75868,1.54448 2.6407,2.31364 0.74359,0.64844 1.57089,1.21056 2.23612,1.93917 0.57965,0.63487 0.83932,1.53471 1.4695,2.11947 0.74786,0.69395 1.72226,1.09421 2.58339,1.64132 3.14225,1.91677 6.03518,4.12464 9.11384,6.12602 1.20187,0.78132 2.53883,1.34999 3.70427,2.18466 1.00571,0.72027 1.76506,1.75106 2.77954,2.45893 1.06587,0.74373 2.28151,1.24563 3.42227,1.86845 1.26692,0.70968 2.6083,1.30033 3.80077,2.12905 1.70704,1.18633 4.85475,4.4012 6.29209,5.75762 1.1864,1.11961 2.50693,2.10528 3.5939,3.32166 11.68204,13.07287 -6.53787,-5.55883 5.87621,6.90708 1.21659,0.87421 2.38962,1.81245 3.64976,2.62261 1.28507,0.82621 2.76559,1.34774 3.97588,2.28006 0.98793,0.76103 1.67132,1.85229 2.54443,2.74272 2.227,2.27118 4.34612,4.63232 6.80568,6.65376 4.83931,4.4958 -0.49223,-0.25702 4.35985,3.50644 0.48784,0.37839 0.83626,0.92942 1.35802,1.25946 0.62688,0.39654 1.41088,0.49629 2.03967,0.88978 0.62894,0.39359 0.98019,1.13474 1.61464,1.53205 0.35345,0.2237 2.4758,1.5625 2.52156,1.61731 0.12695,0.15205 -0.39871,0.0708 -0.56862,0.17266 -0.64857,0.38869 -1.20635,0.92077 -1.86765,1.28737 -0.21514,0.11927 0.27291,-0.46551 0.5091,-0.53423 1.1643,-0.33873 2.38551,-0.43661 3.57827,-0.65491 0.21064,1.63078 0.57024,2.94163 -0.30256,4.50406 -0.0981,0.17557 -1.0522,0.28543 -0.49088,-0.35079 -0.0563,0.69597 -0.11269,1.39195 -0.16904,2.08792 -0.21385,0.78789 -0.4277,1.57579 -0.64155,2.36368 -0.26977,0.66951 -0.61985,1.31201 -0.80929,2.00852 -0.86885,3.19448 -0.69325,7.43217 -0.41058,10.69673 -0.49569,5.59681 -0.11268,-0.34394 -0.0294,5.52334 0.0611,4.30842 -0.0579,8.62249 0.061,12.936775 -0.009,0.292327 -0.15525,5.325595 -0.17166,5.552289 -0.30362,4.194223 -1.04888,8.386213 0.5958,12.440843 0.33183,1.080334 0.8465,2.12072 0.99549,3.241004 0.14681,1.103912 -0.44285,4.96669 -0.51456,6.023309 -0.32293,4.757976 0.0865,1.274912 0.0972,5.758916 0.002,0.722795 -0.10154,1.442023 -0.1523,2.163034 0.76079,3.596435 2.68723,6.927989 2.38518,10.706331 -0.0804,0.664793 -0.031,1.358615 -0.24132,1.994377 -0.75892,2.294292 -5.23317,4.884545 -4.04516,-1.740055 0.23944,-1.33521 2.02986,3.279358 0.80574,3.988967 -1.77773,-0.706139 0.63381,0.02119 -1.58588,0.434601 -0.55197,0.102801 -1.10857,-0.188901 -1.66845,-0.230998 -1.46829,-0.110402 -2.81517,0.05791 -4.00977,-1.005903 -1.36881,-1.480068 -0.0123,-0.426709 -2.98708,-0.409605 -0.99715,0.0057 -1.98137,-0.231201 -2.9755,-0.308982 -2.61385,-0.20451 -5.16626,-0.327013 -7.64148,-1.332551 -8.7344,-0.870387 3.26437,0.125039 -6.61537,0.04685 -5.01896,-0.03972 -9.98993,-1.645882 -15.03264,-1.020091 -3.99964,0.287679 -5.08218,0.444337 -9.01607,0.430961 -4.99024,-0.01697 -9.95557,-0.241084 -14.88792,0.808498 -10.94363,1.281637 2.70269,-0.130581 -7.49368,0.371197 -5.28361,0.260015 -10.36164,2.029305 -15.65891,2.110759 -3.84212,-0.158404 -7.71144,-0.260551 -11.54454,-0.580966 -1.3693,-0.114461 -2.72446,-0.463805 -4.09837,-0.442736 -2.26656,0.03476 -4.4462,1.073408 -6.74412,0.873723 -3.37188,0.783114 -7.10537,1.974371 -10.6011,1.939301 -4.18654,-0.042 -2.70261,-0.585175 -6.29967,-1.403159 -0.9339,-0.212372 -1.90021,-0.241406 -2.85032,-0.362109 -2.37944,-0.08744 -4.75532,-0.261721 -7.13517,-0.337185 -2.81089,-0.08913 -5.60061,0.17385 -8.40051,0.181301 -0.89642,0.0024 -1.7894,-0.111111 -2.6841,-0.166667 -0.87863,0.182335 -1.76688,0.32328 -2.63589,0.547005 -0.96411,0.248209 -1.86398,0.810971 -2.85793,0.867367 -0.8267,0.04691 -1.59032,-0.556551 -2.41827,-0.567999 -2.19418,-0.03034 -4.37907,0.970772 -6.08138,2.241639 -1.20652,-0.106117 -2.24867,0.967527 -3.51841,1.09752 -0.52619,0.05387 -1.04061,-0.255479 -1.56919,-0.235933 -0.79718,0.02948 -5.77541,0.928972 -6.18068,0.999518 -2.32604,0.581511 -3.14842,-2.708014 -0.82238,-3.289525 z"
id="path6669"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
</g>
<g
style="display:inline"
inkscape:label="Animals"
id="layer13"
inkscape:groupmode="layer">
<g
inkscape:label="Gekko"
id="layer18"
inkscape:groupmode="layer"
style="display:inline">
<g
transform="matrix(-0.50847917,0.55744836,0.55730387,0.50850255,425.58252,-211.95583)"
id="g6772"
style="display:inline;opacity:0.95;filter:url(#filter6821)"
inkscape:transform-center-x="-95.195844"
inkscape:transform-center-y="21.805067">
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.32543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 813.90472,556.4523 c -3.82363,0.79107 -8.87017,1.51391 -14.7213,1.64863 -7.21085,0.16603 -16.17594,-0.55686 -25.32327,-3.53864 -2.56229,-0.83523 -5.14961,-1.84421 -7.76224,-3.05282 -9.04415,-4.19041 -17.95848,-10.83422 -26.26799,-20.23846 0,0 0,0 0,0 -0.18293,-0.20703 -0.36438,-0.41449 -0.54434,-0.62238 m 13.46453,13.04323 c -10.77762,-7.3158 -19.12053,-17.60875 -24.89745,-32.34823 -0.36825,-0.93956 -0.72555,-1.87592 -1.07077,-2.8095 7.6e-4,-0.003 0.001,-0.005 0.002,-0.008 -3.42722,-9.30972 -5.55021,-18.12181 -5.67622,-27.23611 m 3.31675,16.86745 c -3.69288,-12.37243 -3.33613,-26.18868 -0.90231,-40.62609 0,0 0,-10e-6 0,-10e-6 0.1021,-0.60563 0.21606,-1.209 0.34177,-1.81022 2.30648,-11.00624 8.3935,-20.90019 16.71462,-30.65864 m -10.52532,17.82554 c 4.86392,-11.06408 14.0742,-23.51493 25.87086,-35.40266 0.20273,-0.20456 0.40613,-0.40887 0.6102,-0.61294 11.70287,-11.70295 19.40412,-15.81013 28.5167,-20.26754 3.46142,-1.69315 8.18216,-3.30076 13.58101,-4.6953 m -20.92491,10.37751 c 11.55051,-6.16348 22.82359,-9.29412 34.13979,-9.39378 0.37237,-0.003 0.74451,-0.003 1.11644,8.1e-4 11.67018,0.11019 27.9349,-1.30021 43.65696,1.52308 2.00691,0.36039 3.91415,0.73927 5.73721,1.13726 m -23.68821,-7.17921 c 12.91858,1.65722 27.02423,4.61898 40.53911,11.23872 1.1988,0.58718 2.36866,1.17174 3.51178,1.75663 10.92344,5.59802 19.20897,11.10812 27.02058,18.82302 m -14.27944,-10.57556 c 12.24916,7.8659 20.59578,15.30669 27.20641,23.8899 2.23144,2.8973 4.63761,6.20283 7.01671,9.72984 4.04443,6.00507 7.89998,12.45646 10.84186,18.64349 m -9.07917,-15.73587 c 7.75273,11.90375 12.71316,26.28406 16.90889,42.03149 2.73341,10.25903 3.73607,17.23709 4.05453,23.24307 0,-0.008 0,-0.0156 10e-6,-0.0234 0.0791,1.53774 0.11536,3.01424 0.12471,4.45627 m -2.71937,-12.76566 c 0.24405,3.0092 0.44415,5.94206 0.59092,8.81398 3.5e-4,-4e-5 7.1e-4,-5e-5 0.001,-10e-5 0.55401,11.04195 0.3497,20.68208 -0.75512,29.92642 -1.63885,13.71271 -8.88661,27.52608 -15.19682,37.41698 -0.68238,1.06959 -1.3522,2.12609 -1.99118,3.13491 -1.76408,2.78164 -3.21484,5.08516 -4.77623,7.51014 m 15.18166,-22.25328 c -2.37787,5.63912 -4.7394,10.69485 -7.08477,15.2681 -4.08225,7.94862 -8.1327,14.56584 -11.78505,20.01018 -2.56246,3.81971 -5.1238,6.73227 -7.04261,8.74601 -5.75001,6.03452 -12.79427,11.13668 -21.18331,15.5955 -2.9384,1.56177 -6.00602,3.39144 -9.3772,5.45091 m 19.39125,-10.60805 c -6.11671,5.03908 -13.26369,9.98865 -21.80647,14.07755 -4.67764,2.23181 -9.74289,4.19376 -15.28905,5.81218 -14.18848,4.14031 -22.9621,9.98081 -34.18017,12.10693 0,0 -10e-6,0 -10e-6,0 -0.68062,0.129 -1.38544,0.26106 -2.11254,0.39539 m 19.36909,-5.54083 c -11.75342,4.07734 -24.02181,7.97207 -37.85394,12.08845 -0.0103,0.003 -2.42999,0.72479 -2.44033,0.72788 -14.24466,4.23817 -26.89341,0.60377 -40.20615,-2.11506 -3.52311,-0.71951 -6.98354,-1.41393 -10.42554,-2.1551 m 25.28423,2.03021 c -14.06597,0.20803 -27.41966,-1.4826 -41.63862,-2.80374 -2.36965,-0.22017 -4.64354,-0.62728 -6.84086,-1.19355 -0.002,7.4e-4 -0.003,0.001 -0.005,0.002 -11.34312,-2.99273 -21.02884,-10.33979 -30.42244,-17.16006 -1.19525,-0.86782 -2.37441,-1.65772 -3.53565,-2.38029 m 22.08603,13.83688 c -13.09356,-5.10536 -25.08193,-12.71498 -35.24648,-21.31274 -5.31005,-4.49155 -10.71466,-7.31383 -15.42712,-9.35027 -2.33665,-1.00066 -4.65302,-1.86535 -6.82069,-2.63012 -2.28893,-0.80755 -4.60716,-1.53218 -7.23312,-2.33615 m 14.76849,8.51566 c -0.004,-0.002 -0.3861,-0.22521 -0.39,-0.22749 9.89629,5.73311 -16.6779,-9.6582 -6.78161,-3.92509 -7.6321,-4.40265 -17.18496,-9.30911 -27.81367,-13.8557 -0.32239,-0.13791 -0.64562,-0.27543 -0.96967,-0.41254 -10.05534,-4.25474 -19.77933,-9.8917 -27.63818,-13.91675 -2.4555,-1.24035 -4.74763,-2.34878 -6.99088,-3.36288 m 17.84091,7.32532 c -3.49934,-1.87741 -6.81265,-3.49405 -9.89015,-4.8814 -10.70713,-4.75667 -20.44924,-7.63603 -26.32964,-9.16 -0.71412,-0.18507 -1.40554,-0.36078 -2.07836,-0.52783 -6.71537,-1.6673 -12.32423,-3.16029 -18.64964,-4.62839 -6.4295,-1.4195 -13.07241,-2.84651 -19.39986,-3.77535 -2.69819,-0.39609 -5.30199,-0.67125 -7.78936,-0.81515 -1.63078,-0.0943 -3.22996,-0.14321 -4.79757,-0.14448 m 24.72097,0.27047 c -7.10247,-1.00857 -14.44591,-2.22795 -21.10644,-2.81367 -4.54757,-0.3999 -8.90306,-0.5938 -13.09424,-0.41399 -2.47612,-0.0463 -5.05021,0.0186 -7.71602,0.187 -11.33234,0.71591 -20.76132,4.0762 -31.77666,8.54587 -1.92381,0.80562 -3.86578,1.66344 -5.87504,2.56882 -5.32297,2.39855 -10.29284,4.44977 -16.10588,6.89362 m 29.20296,-7.23475 c -1.3069,0.41884 -2.62571,0.82834 -3.95876,1.22833 -10.47063,3.26588 -17.66776,5.48288 -28.86187,8.74423 -1.36092,0.3965 -2.73279,0.80027 -4.10275,1.20788 -4.79608,1.42699 -9.76414,3.38973 -14.96769,5.62075 -6.77714,3.06751 -14.66138,6.93525 -22.12681,9.86751 -5.67341,2.2284 -11.59482,4.09902 -17.85693,5.55464 m 23.29438,-8.39481 c -12.38642,5.26424 -24.08817,8.0312 -37.26563,7.94798 -0.99847,-0.006 -2.00719,0.0125 -3.02643,0.0523 -1.86889,0.073 -3.70827,0.20694 -5.31513,0.33903 -5.37229,0.56086 -8.78062,0.87226 -13.07183,1.01687 -3.51059,0.1183 -8.63557,0.13925 -13.58001,-0.32383 -1.31399,-0.12307 -2.77586,-0.3395 -4.33508,-0.65699 -0.77784,-0.15839 -1.58152,-0.33651 -2.40957,-0.53335 m 23.16525,6.11243 c -3.13096,-0.33096 -8.2937,-0.97403 -13.34296,-1.66545 -4.12314,-0.5646 -10.67569,-1.94058 -17.88613,-3.46748 -3.74861,-0.79382 -7.7923,-1.66695 -11.63208,-2.31935 -3.20119,-0.5439 -5.99029,-0.9712 -8.29555,-1.04742 -3.07212,-0.10157 -5.83565,-0.43458 -8.38247,-0.86834 -4.36739,-0.94064 -7.69511,-1.95945 -11.04642,-2.72677 -3.06029,-0.70068 -6.15275,-1.20722 -9.91207,-1.25057 -0.33915,-0.004 -0.68459,-0.006 -1.03723,-0.006 -2.20209,-0.001 -5.28868,-0.5822 -8.92939,-1.71291 m 22.74908,-1.60449 c -0.92075,-0.22481 -1.82104,-0.43172 -2.70776,-0.6183 -3.94706,-0.8305 -7.77134,-1.28916 -12.03475,-1.06716 -2.45645,0.12791 -5.90919,-0.28895 -9.46315,-0.99765 -3.57759,-0.71341 -7.37817,-1.74493 -10.83565,-2.99794 -0.0507,-0.0157 -0.10126,-0.0315 -0.15181,-0.0473 0,0 0,0 0,0 -2.52911,-0.79074 -5.36941,-1.89972 -8.04617,-3.14056 -2.7276,-1.26442 -5.26266,-2.65542 -7.07009,-3.96893 -2.72757,-1.98218 -6.69963,-5.73337 -10.62265,-9.48032 -3.39886,-3.24631 -6.82611,-6.56187 -9.51398,-9.00292 -0.4574,-0.4154 -0.88406,-0.80319 -1.28139,-1.16102 -3.53179,-3.18064 -5.77472,-4.10996 -7.80901,-5.53401 -0.93078,-0.65157 -1.68574,-1.34304 -2.20032,-2.2928 -0.15227,-0.28104 -0.28351,-0.58502 -0.39087,-0.91658 m 23.51695,22.52519 c -0.27163,-0.2864 -0.54375,-0.57708 -0.81627,-0.8715 -2.99556,-3.23628 -6.03566,-6.94102 -8.33028,-9.47175 -2.90492,-3.20384 -5.54116,-4.67308 -7.65741,-6.38051 -1.04466,-0.84285 -1.9366,-1.72782 -2.64571,-2.91836 -0.71181,-1.19506 -1.23943,-2.69378 -1.59669,-4.81991 -0.72894,-4.33801 -1.79956,-8.0821 -3.17182,-11.52383 -0.66629,-1.67109 -1.32334,-3.18578 -1.99709,-4.63159 -2.09413,-4.4938 -4.20244,-8.01063 -6.44008,-12.12348 -3.20357,-5.88827 -3.20642,-10.89293 -2.28836,-17.29057 0.19537,-1.36148 0.3943,-2.82423 0.57967,-4.38448 0.19211,-1.61694 0.0759,-2.68618 0.27093,-3.61353 0.19775,-0.94026 0.69378,-1.70381 2.01975,-2.83666 1.13861,-1.32067 1.89801,-1.8037 2.8325,-1.98204 0.57004,-0.10879 1.18812,-0.099 1.96386,-0.10182 m -5.00175,22.70928 c -1.2871,-4.61624 -1.64985,-9.49238 -1.81017,-15.2511 -0.0502,-1.80197 -0.28704,-2.95751 -0.19772,-3.95919 0.0897,-1.00589 0.50243,-1.84679 1.66763,-3.0695 0.97928,-1.41059 1.68525,-1.9307 2.53846,-2.14407 0.84721,-0.21187 1.82361,-0.1135 3.32253,-0.26998 2.80103,-0.29239 5.27638,-0.45085 7.55948,-0.36189 4.49672,0.17521 9.56315,1.50232 15.49942,4.68893 4.96585,2.66569 9.5146,5.04894 14.12611,6.81154 3.34721,1.27936 6.7685,2.2535 10.63492,2.90221 1.51673,0.25448 3.08522,0.41902 4.72037,0.48411 1.94736,0.0775 3.28929,0.36441 4.37015,0.86528 1.07163,0.49659 1.85566,1.19387 2.6024,2.02834 0.71177,0.7954 1.38637,1.71252 2.22703,2.68152 m -23.8283,-9.36162 c 0.76439,0.36485 1.52937,0.69788 2.30047,0.99778 3.8856,1.51121 8.04338,2.22726 13.21113,1.82231 1.74703,-0.1369 2.98598,0.024 3.97128,0.41383 0.98081,0.38807 1.69553,0.99882 2.36968,1.74098 1.34311,1.47861 2.54948,3.51177 5.40585,5.37765 1.63483,1.06792 3.82426,2.2878 6.18348,3.61804 0.92434,0.52118 1.87035,1.07063 2.82913,1.65117 3.39671,2.05671 6.79284,4.41518 8.85064,6.46755 1.30633,1.30288 2.7754,3.31129 4.29616,5.75769 1.52006,2.44528 3.07828,5.30691 4.5382,8.25974 1.37914,2.5678 2.55019,5.23599 3.4763,7.72465 0.36641,0.98459 0.7113,1.95124 1.02865,2.87931 1.12094,3.27813 1.90353,6.08754 2.15,7.75955 0.45942,3.11671 1.47273,5.69403 2.87794,7.83364 m -9.05162,-27.85315 c 0.23776,0.44266 0.47257,0.88797 0.7042,1.3354 2.09472,3.7465 3.68267,7.6734 4.79379,11.22076 1.1029,3.52109 1.71197,6.59907 1.84178,8.4321 0.51608,7.28735 3.22996,12.05955 7.06219,16.01741 0.4156,0.48874 0.85512,0.97449 1.31759,1.4603 0.78785,0.82762 1.66612,1.60431 2.63275,2.33335 1.37331,1.03575 3.15491,1.42614 5.10209,1.31322 1.95731,-0.11351 4.08448,-0.73388 6.18796,-1.70724 4.27079,-1.97626 7.8813,-5.05652 10.26628,-6.91042 3.31882,-2.5798 5.68777,-4.73639 7.87177,-6.77956 1.30337,-1.21931 2.61314,-2.4665 3.9981,-3.70934 0.92918,-0.83382 1.89185,-1.68208 2.94775,-2.57717 0.87609,-0.7654 1.85128,-1.62269 2.85671,-2.52221 0.76092,-0.68077 1.51227,-1.36857 2.25632,-2.06358 m -19.24531,16.16013 c 0.12564,-0.10311 0.248,-0.20293 0.36709,-0.29915 2.97053,-2.40019 4.8914,-4.21764 6.75465,-6.07404 1.85217,-1.84536 3.49483,-3.57453 5.79788,-5.66709 0.74405,-0.69922 1.60999,-1.51524 2.49292,-2.36063 3.93061,-3.76351 8.00789,-8.17115 12.1031,-13.03002 5.15432,-6.1155 12.01162,-11.88852 21.34487,-18.23283 1.27916,-0.90058 2.58149,-1.79852 3.90693,-2.69874 m -10.30178,8.24869 c 2.5739,-2.32365 5.32312,-4.82121 7.96164,-7.22782 5.38465,-5.10179 10.71281,-10.2779 15.69332,-15.34953 0.91197,-0.92867 1.82135,-1.85768 2.72444,-2.78407 7.26977,-7.45737 22.30486,-12.65012 38.65748,-16.29074 0.23875,-0.0544 0.47745,-0.10824 0.71606,-0.16158 2.96134,-0.662 5.69788,-1.45919 8.27871,-2.35255 m -23.87825,6.03201 c 4.06641,-2.47185 8.3287,-4.66119 12.78622,-6.64551 7.43827,-3.36456 15.23847,-5.87399 23.22027,-7.9955 10.48828,-2.78772 22.82858,-3.95414 35.67895,-2.72631 m -15.64597,-0.41479 c 12.13572,-2.3108 22.60868,-2.27523 33.07299,-1.11155 1.21865,0.17531 2.4232,0.36461 3.61419,0.56461 6.54107,1.09846 14.07,3.10173 21.47055,5.93353 6.11696,2.34064 12.00867,5.15541 17.31205,8.42337 1.39487,0.85952 2.75797,1.66215 4.08521,2.41713 m -19.2308,-9.44037 c 13.99656,5.02505 25.43619,9.05951 36.60844,15.26506 1.23263,0.68465 2.4334,1.3932 3.60272,2.12127 7.21017,4.44746 13.65326,9.68367 19.5937,15.2198 2.3286,2.1701 4.31387,4.03913 6.69857,6.28468 3.66153,3.44789 8.32905,7.94676 13.64188,13.37719 m -20.94921,-16.92218 c 7e-5,7e-5 0.0961,0.0941 0.0962,0.0942 7.59851,7.44066 14.78407,13.19047 26.39385,22.65145 -0.3513,-0.28462 2.55904,2.07515 2.20775,1.79053 6.91333,5.61549 15.01048,14.00225 23.03962,21.52006 2.89169,2.70754 5.78396,5.31787 8.71368,7.77976 0.7223,0.60697 1.42733,1.19718 2.11772,1.77214 m -19.12638,-12.84459 c 1.62044,1.49727 4.07272,3.7749 5.69316,5.27217 7.9023,7.30835 15.23362,13.92358 22.52919,19.22556 0.7204,0.52354 1.45546,1.05188 2.20371,1.58294 1.20262,0.85354 2.4453,1.71367 3.72668,2.57507 8.78099,5.86131 19.81412,12.19372 33.54047,17.25172 1.14167,0.42069 2.25439,0.84526 3.34341,1.27243 m -22.60316,-8.11674 c 10.49753,5.65543 23.60872,13.0958 37.77516,17.44151 2.11711,0.64944 4.17905,1.27194 6.1944,1.85569 0.002,-0.001 0.004,-0.002 0.005,-0.003 11.03101,3.25982 20.94076,5.47707 32.09483,5.58016 3.88438,0.0359 7.84222,0.11062 11.84993,0.12057 m -22.70047,-2.81677 c 12.00218,2.88231 24.99471,2.84425 35.92686,0.69157 0,0 0,0 0,0 0.12393,-0.0244 0.24851,-0.0487 0.37373,-0.073 12.29092,-2.40653 25.99734,-3.55861 38.49574,-7.98125 4.58384,-1.62203 9.01378,-3.39668 13.24841,-5.26707 m -22.69381,13.29009 c 10.51588,-3.48496 20.43032,-8.22667 28.64409,-14.83425 1.80837,-1.45027 3.50946,-2.96396 5.10307,-4.53971 6.30196,-6.23132 14.76566,-11.41854 21.06062,-15.47051 2.61002,-1.68003 7.81558,-5.03762 12.41576,-8.74867 2.26938,-1.83076 4.36858,-3.96444 6.28929,-6.46426 m -17.70996,18.28786 c 0.0691,-0.0628 0.13804,-0.12555 0.20679,-0.18835 4.48766,-4.09956 11.16675,-11.08886 18.36108,-22.40574 2.01635,-3.1667 4.06778,-6.66868 6.14805,-10.52642 6.12047,-11.35006 8.54423,-23.01634 7.65495,-37.29112 -0.18249,-2.92929 -0.26892,-5.95298 -0.33616,-9.14774 -7e-4,1.4e-4 -0.001,2.5e-4 -0.002,3.8e-4 -0.0125,-0.68229 -0.0442,-2.55533 -0.0566,-3.23762 m 1.69737,23.05744 c 1.34561,-7.06016 1.79785,-14.62191 0.82164,-22.68057 -0.004,-0.001 -0.008,-0.002 -0.0125,-0.003 -0.69882,-5.81937 -2.1618,-11.93105 -4.54596,-18.29952 -4.039,-10.78876 -5.87958,-20.57371 -10.08565,-30.05004 m 9.967,15.03471 c -2.66227,-7.02133 -6.08311,-14.2479 -10.64652,-21.25268 -3.1821,-4.89312 -6.94392,-9.71304 -11.37542,-14.31558 -10.12733,-10.51821 -18.51612,-18.57604 -29.57473,-24.85292 -0.23022,-0.13067 -0.4615,-0.2604 -0.69381,-0.38917 -4.91631,-2.73112 -10.27359,-5.02103 -15.73713,-6.85683 m 26.75587,15.97149 c -3.07828,-2.17113 -6.25835,-4.14719 -9.53328,-5.94232 -8.30678,-4.56253 -17.1389,-7.90578 -26.11451,-10.49271 -9.03991,-2.60546 -19.24413,-2.68655 -29.41467,-1.39404 -3.63995,0.45964 -7.262,1.09311 -10.80663,1.82968 -5.46473,1.13555 -10.844,2.70902 -16.15107,4.67344 m 27.99863,-8.59213 c -0.25998,0.0117 -0.52096,0.0255 -0.78292,0.0414 -12.50485,0.74983 -27.12776,6.33551 -41.20951,14.1305 -7.15157,3.95878 -12.49023,7.79271 -16.9126,12.02804 -3.11252,2.98661 -5.76833,6.15899 -8.2684,9.65881 m 12.83389,-13.93652 c -0.65726,0.49237 -1.30303,0.9937 -1.93754,1.50381 -10.21067,8.2234 -17.52246,18.66512 -22.92373,30.00555 -1.69792,3.56494 -3.15175,7.14208 -4.34782,10.74024 -3.11003,9.33737 -4.46554,18.66794 -4.30854,27.83882 0.0528,3.0868 0.3342,6.14243 0.81623,9.13643 m 2.41757,-23.03067 c -1.80056,12.34934 -1.1834,24.0453 1.23664,34.3517 -0.004,-6.4e-4 -0.008,-0.001 -0.0125,-0.002 0.33318,1.43778 0.69879,2.8447 1.09268,4.22136 0,0 0,0 0,0 3.65306,12.76765 16.5279,23.32883 28.02181,29.78517 2.17233,1.22024 4.24725,2.34469 6.25766,3.37297 2.62587,1.34513 5.09578,2.52023 7.50269,3.55874 m -25.90804,-15.45778 c 5.12658,4.35682 10.08703,8.02281 14.96658,10.89815 6.46193,3.81369 12.50356,6.20572 18.38843,7.61175 3.30636,0.78996 6.73599,1.31727 10.07722,1.66098 9.1592,0.94222 17.98483,0.54221 22.95919,0.2026 -1.01909,0.58243 -2.19621,1.21727 -3.51328,1.87323 m -8.3536,-1.32672 c 5.13776,-0.35037 9.39884,-0.90329 12.48215,-1.37016 -4.44592,1.80443 -11.79597,4.31426 -20.36061,5.55937 -1.68373,0.24478 -3.43032,0.44358 -5.23274,0.58065 -7.60255,0.57814 -16.48018,-1.73317 -26.48147,-7.48871 -2.90119,-1.67173 -5.82469,-3.61986 -8.72056,-5.79262 m 49.65628,12.05043 c -3.34254,0.81304 -7.2235,1.38426 -11.5459,1.46772 -7.55662,0.14592 -16.45188,-1.25692 -24.8724,-5.1424 -1.3436,-0.61998 -2.7661,-1.32113 -4.2548,-2.1088 -6.85976,-3.63513 -15.59691,-9.57028 -23.05675,-17.67489 m 11.55641,10.57898 c -10.13347,-6.87766 -20.05969,-16.6171 -27.63687,-29.52605 -0.75206,-1.28125 -1.44572,-2.59341 -2.08149,-3.93698 -0.001,5e-5 -0.003,8e-5 -0.004,1.3e-4 -4.92688,-10.48657 -6.00121,-22.20711 -4.97314,-34.55449 0.24564,-2.95012 0.63391,-5.95088 1.19289,-8.98188 m -0.6147,21.46246 c -1.8873,-10.51275 -0.52017,-21.93708 3.85513,-32.50485 0.66007,-1.59213 1.38303,-3.15554 2.1645,-4.68365 5.59143,-10.93356 10.1699,-24.16166 17.58408,-34.67846 1.83382,-2.60121 4.06543,-5.06908 6.62312,-7.40857 2.18651,-2.00317 4.59975,-3.90458 7.18535,-5.71016 m -18.57953,20.79461 c 3.49116,-5.36868 8.12906,-10.4965 13.55874,-15.23549 5.07715,-4.43817 10.78306,-8.49423 16.74794,-12.06708 12.02339,-7.20179 23.5465,-12.71121 36.84103,-16.30335 2.66459,-0.71997 5.2976,-1.28764 7.89901,-1.71427 1.1062,-0.18061 2.20435,-0.3355 3.29438,-0.46601 m -26.28652,9.78209 c 6.67774,-2.53102 13.7645,-4.50099 21.15603,-5.9858 6.26202,-1.25358 12.66718,-2.14869 19.12712,-2.78091 14.09543,-1.37948 25.6563,2.51216 36.33601,7.03384 2.64962,1.12182 5.53165,2.34915 8.5569,3.68244 3.15763,1.39428 6.43872,2.88694 9.76568,4.48171 m -27.36549,-13.75911 c 5.94404,2.0885 12.14989,4.58481 18.2611,7.75677 6.36071,3.30687 12.52305,7.2857 18.18841,12.18182 11.51453,9.95109 20.50327,17.38032 27.94999,28.99476 1.6155,2.51965 3.23946,4.9813 4.83796,7.39543 2.19087,3.31368 0.91312,1.37946 3.10399,4.69314 m -12.18307,-26.67321 c 4.93063,4.68411 9.0679,10.32172 12.49075,16.41743 3.20419,5.71541 5.77488,11.79598 7.82576,17.83643 0,0 0,0 0,0 4.71991,13.9016 9.61311,25.3176 12.09004,39.03948 0.64797,3.58968 1.04041,7.04251 1.23446,10.36731 5.6e-4,-5.4e-4 0.001,-0.001 0.002,-0.002 0.061,1.07545 0.10182,2.13643 0.12465,3.18316 m -4.44737,-27.7634 c 1.81924,7.51542 2.94753,15.66589 3.57166,24.05291 0.001,0.005 0.003,0.009 0.004,0.0139 0.48745,6.6417 0.67674,13.41734 0.67617,20.15387 -0.001,17.21237 -6.44794,26.81656 -12.881,36.30894 -0.97366,1.43669 -1.87738,2.89349 -2.72343,4.34146 m 7.12496,-21.48446 c -3.87538,12.25586 -7.69428,22.13469 -12.32351,30.69486 -0.89985,1.66151 -1.81366,3.24523 -2.74118,4.7572 0,0 0,10e-6 0,10e-6 -6.34262,10.33934 -12.79632,19.6937 -16.95918,25.60541 -2.30243,3.26971 -4.80999,6.73527 -7.47941,10.30476 -1.11779,1.49469 -2.27663,2.88644 -3.47978,4.18469 m 15.89276,-18.44023 c -1.28081,1.51602 -2.45055,2.8698 -3.47406,4.04433 -6.30815,7.23893 -14.84764,16.24208 -24.11493,24.65635 -1.37923,1.25228 -2.8442,2.41955 -4.39263,3.50731 -8.58757,6.0154 -19.04078,9.1298 -29.8963,11.35508 m 17.31276,-7.22704 c -11.72055,4.9058 -24.86626,11.16447 -38.78162,15.3693 -6.90987,2.08796 -13.7536,2.93739 -20.93632,2.89305 -6.90286,-0.0329 -13.95362,-0.87465 -21.42088,-2.08039 -6.8762,-1.1103 -12.70465,-1.11932 -17.96825,-0.74302 m 30.71585,0.52736 c -12.97216,0.73026 -26.98038,0.7987 -40.60501,-0.14757 -8.86548,-0.61574 -17.3327,-2.43342 -25.72682,-4.58326 -9.2e-4,9.7e-4 -0.002,0.002 -0.003,0.003 -4.75502,-1.237 -9.21417,-2.48175 -13.96919,-3.71874 -0.45041,-0.11702 -0.8963,-0.2371 -1.33777,-0.36006 m 22.94197,6.87374 c -1.28408,-0.37018 -2.58371,-0.75435 -3.89672,-1.15265 4.5e-4,-1.7e-4 8.8e-4,-3.4e-4 0.001,-5.1e-4 -11.80624,-3.63194 -24.028,-8.05857 -35.60752,-12.98626 -14.10994,-6.00452 -24.24665,-12.97085 -32.50122,-18.648 -0.13514,-0.0923 -1.05668,-0.72195 -1.19182,-0.81423 -0.54527,-0.37259 -1.09319,-0.73896 -1.6426,-1.09904 m 17.31845,11.76638 c -5.49737,-2.75643 -10.51101,-5.7489 -14.99591,-8.60952 -2.38468,-1.511 -4.70787,-3.03735 -6.91652,-4.51351 -4.03132,-2.69435 -9.29655,-6.1586 -14.69218,-9.56668 -4.77923,-3.01874 -9.38089,-5.53787 -14.05192,-7.79403 -7.2972,-3.52463 -14.71573,-6.36583 -22.11019,-9.20595 m 20.5707,9.93677 c -9.17411,-4.3162 -17.26357,-8.24267 -25.72155,-11.8177 -4.80592,-2.00311 -9.26164,-3.70362 -13.55418,-5.18263 -8.21745,-2.83134 -13.33614,-4.86766 -17.33684,-6.29482 -5.6705,-2.02281 -10.38286,-3.88166 -14.90348,-5.48403 -0.65579,-0.2224 -1.31679,-0.44618 -1.98098,-0.66959 -2.55682,-0.86001 -5.50298,-1.56268 -8.68429,-2.1147 m 20.85811,5.33677 c -3.90493,-1.09414 -7.77527,-2.01469 -11.53053,-2.76542 -9.09584,-1.71567 -19.00549,-3.06745 -27.89331,-3.33896 -0.78591,-0.024 -1.56751,-0.0416 -2.34431,-0.0524 -3.98703,-0.0555 -7.51495,-0.0531 -10.75573,0.11885 -8.79847,-0.11989 -17.80538,0.75472 -27.60553,1.47412 -2.47984,0.18203 -5.00983,0.62655 -7.59633,1.28152 m 24.23804,-4.33297 c -7.82816,1.2441 -15.94342,3.71793 -24.68125,6.91877 -4.43566,1.6779 -8.93791,3.66198 -13.5759,5.86204 -5.10941,2.42367 -10.47034,4.39857 -16.28024,6.1332 -6.98782,2.08632 -13.94564,3.75941 -21.98801,5.71838 0.42262,-0.11094 -2.90101,0.76232 -2.47839,0.65138 -5.55623,1.46311 -10.34356,3.32074 -14.87918,5.341 m 26.57446,-8.21688 c -3.08766,0.97135 -6.09908,2.09907 -9.08106,3.34764 -8.95848,3.96375 -17.77182,9.15244 -27.57435,13.81809 -7.78599,3.70586 -15.60283,5.37936 -23.48225,5.83809 -1.75609,0.10224 -3.37788,0.12812 -4.83626,0.1087 -1.64438,0.0184 -3.18854,-0.0479 -4.63028,-0.16804 m 17.51644,-1.3996 c -2.2675,0.36669 -4.56399,0.73723 -6.87247,1.09252 -2.06412,0.31768 -3.92136,0.58119 -5.68454,0.80319 -5.30034,0.77851 -9.73372,0.97904 -13.94552,0.91669 -3.96096,-0.0586 -9.20384,-0.38859 -15.10842,-1.13183 -0.35069,-0.0441 -0.71064,-0.093 -1.07974,-0.14654 -4.71087,-0.68313 -10.02771,-2.13533 -15.77582,-4.29587 -5.60142,-2.10541 -11.55891,-4.93511 -15.99039,-5.78872 -0.0858,-0.0165 -0.1715,-0.0333 -0.25717,-0.0502 m 18.61263,5.15077 c -4.97583,-1.66196 -10.85373,-3.57833 -15.47685,-4.01532 -3.11594,-0.29453 -6.20028,-0.80841 -9.22825,-1.43378 -5.19178,-1.2703 -9.63021,-2.60825 -14.07614,-3.77379 -1.11652,-0.29271 -2.23173,-0.57446 -3.36442,-0.84406 -3.36019,-0.79979 -6.63416,-1.27827 -10.04255,-1.31747 -2.59309,-0.0298 -6.23001,-0.62044 -9.72833,-1.43912 -3.56673,-0.8347 -7.19473,-1.94719 -10.54192,-3.36781 -1.44758,-0.53451 -2.85054,-1.11966 -4.19663,-1.75927 -0.97378,-0.4627 -1.96643,-0.94579 -2.93057,-1.43578 -2.30128,-1.16958 -4.44708,-2.38138 -5.96432,-3.54387 -0.10798,-0.0827 -0.21749,-0.16837 -0.3285,-0.25677 m 19.54562,9.22129 c -2.48337,-0.71749 -4.95294,-1.54754 -7.33799,-2.46153 -3.32201,-1.13733 -6.50161,-2.41843 -9.26115,-3.72678 -2.75465,-1.30603 -5.10725,-2.64721 -6.72612,-3.89757 -2.52291,-1.94861 -5.71399,-5.35178 -8.96946,-8.83952 -0.74582,-0.79903 -1.47095,-1.57698 -2.21441,-2.36854 -2.54164,-2.70611 -4.69607,-5.08237 -6.43611,-6.80418 -2.76751,-2.7385 -5.23974,-3.72905 -7.11763,-4.90787 -0.94047,-0.59038 -1.72335,-1.22273 -2.30782,-2.12079 -0.5835,-0.89657 -0.96106,-2.04749 -1.08706,-3.63921 -0.18159,-2.29391 -0.53235,-4.27564 -1.05167,-6.07476 m 8.8639,10.58958 c -0.30252,-0.21656 -0.59304,-0.42929 -0.87072,-0.64419 -0.97335,-0.75328 -1.78702,-1.5319 -2.39747,-2.58526 -0.60946,-1.05165 -1.01669,-2.37993 -1.16499,-4.20436 -0.4495,-5.52986 -1.51451,-9.53834 -3.15965,-13.29834 -1.64147,-3.75163 -3.85877,-7.2468 -6.55749,-11.56514 -0.53942,-0.86315 -1.0316,-1.72372 -1.48072,-2.58593 -3.62207,-6.9535 -4.47512,-13.76603 -4.97455,-22.34447 -0.10101,-1.73498 -0.37248,-2.83611 -0.31386,-3.78718 0.0587,-0.95235 0.44409,-1.75076 1.55228,-2.85844 0.91994,-1.29213 1.60327,-1.74879 2.42336,-1.88464 0.54459,-0.0902 1.14573,-0.0366 1.91511,0.0101 m -4.61267,14.65485 c -0.0509,-1.29716 -0.0634,-2.64768 -0.0481,-4.06343 0.0189,-1.75193 -0.15848,-2.89192 -0.0138,-3.88214 0.14537,-0.99496 0.61089,-1.82841 1.90119,-3.05573 1.10937,-1.42062 1.89045,-1.95472 2.82812,-2.18689 0.93268,-0.23094 2.00745,-0.15663 3.68604,-0.37488 7.36434,-0.95753 13.01109,-1.43216 18.56854,0.0253 1.48286,0.38887 3.02876,1.00265 4.65114,1.86605 4.19337,2.23164 8.01197,4.58234 12.07875,6.45493 3.85883,1.77683 7.90793,3.14101 12.98393,4.04353 m -15.61943,-6.52422 c 0.7901,0.40402 1.59061,0.77399 2.40729,1.10814 3.79726,1.55364 7.9862,2.35784 13.47955,2.21569 1.85353,-0.048 3.19177,0.18924 4.26328,0.64799 1.06934,0.45783 1.86932,1.13506 2.64496,1.957 1.55687,1.6498 3.00027,3.86181 6.30548,6.10581 1.84088,1.24983 4.29869,2.72721 6.97701,4.38774 1.14489,0.70983 2.29496,1.43694 3.44012,2.18631 3.82303,2.5017 7.37739,5.12134 9.54978,7.38292 1.37723,1.43379 2.9108,3.59716 4.51893,6.26586 1.61148,2.67426 3.26684,5.80239 4.92917,9.17343 1.4497,2.73278 2.79894,5.67257 4.00363,8.52866 m -9.55371,-17.64399 c 0.31811,0.44352 0.63992,0.90515 0.96451,1.38226 1.58173,2.32504 3.24424,5.0409 4.85053,7.8083 2.09702,3.34181 3.94283,6.97238 5.32717,10.0585 1.39313,3.1057 2.36972,5.77003 2.72217,7.32415 0.72043,3.17663 2.04412,5.71088 3.82385,7.73947 1.69729,1.93462 3.62369,3.51548 5.77081,4.90374 1.30102,0.97575 2.75516,1.9077 4.33507,2.83038 1.41865,0.82849 3.15747,1.09623 4.98013,0.96104 1.82274,-0.13519 3.73142,-0.67308 5.51459,-1.46929 3.67414,-1.64054 6.33829,-4.05444 8.21697,-5.58856 0.36522,-0.29824 0.71431,-0.59094 1.04917,-0.87875 m -15.83262,10.66396 c 1.63778,-0.28397 3.33252,-0.8249 4.95555,-1.53246 4.04952,-1.76538 7.15699,-4.25 9.24019,-5.73394 2.88701,-2.05653 4.82659,-3.72345 6.65948,-5.38236 1.81838,-1.64578 3.51613,-3.27031 5.82443,-5.14263 0.74068,-0.62246 1.64976,-1.38568 2.53926,-2.13869 0.65697,-0.55617 1.31552,-1.12317 1.97664,-1.70027 7.89606,-6.89255 18.07408,-17.22474 32.26748,-28.42357 0,0 0,-1e-5 0,-1e-5 0.95236,-0.75142 1.88561,-1.49178 2.80327,-2.22297 4.08675,-3.36838 7.61571,-6.38477 10.99388,-9.29341 m -26.43689,18.83083 c 3.0164,-2.84654 6.47318,-5.77547 10.41817,-8.72416 6.24513,-4.84468 13.38942,-9.54342 21.10027,-13.80247 0.52681,-0.29098 1.0568,-0.57958 1.5898,-0.86566 11.49982,-6.17233 22.29512,-15.41986 36.85084,-24.59538 0,-1e-5 1e-5,-1e-5 1e-5,-1e-5 0.77549,-0.48884 1.53963,-0.95624 2.29332,-1.40359 0.62627,-0.37601 1.24495,-0.73668 1.85653,-1.0829 m -22.10794,13.03111 c 5.29741,-3.04592 10.98909,-6.12521 17.08253,-9.25841 6.24149,-3.25398 12.82877,-6.38714 19.62703,-9.37941 10.58068,-4.65711 21.84199,-4.88209 34.392,-3.46844 m -17.18986,0.62629 c 12.73343,-2.38867 26.55918,-2.80322 41.58229,-0.98761 0,0 0,0 0,0 0.11694,0.0141 1.34398,0.1622 1.46092,0.17634 10.01014,1.46695 17.34651,2.62204 23.97839,4.33053 3.04259,0.78382 5.83338,1.64545 8.49937,2.64161 0.50478,0.18862 1.02495,0.39029 1.55849,0.60409 m -16.61375,-2.12693 c 2.10978,0.59231 4.14541,1.18802 6.11965,1.79481 11.60256,3.56611 20.71614,7.2796 29.03687,12.1299 2.91071,1.69671 6.03493,3.4751 9.16934,5.24198 7.45892,4.16462 16.06437,8.67558 24.16151,12.78104 0.99109,0.50251 1.98779,0.99831 2.98671,1.48641 3.43216,1.67709 6.58128,3.93475 9.62039,6.83703 m -19.71139,-12.13312 c 2.81175,2.12649 5.45318,4.31096 7.94741,6.55123 6.17427,5.54561 11.73013,11.04105 18.75951,18.77633 0,0 0,0 0,0 1.2913,1.42098 2.71671,2.95008 4.32919,4.65002 7.09275,7.43626 15.67976,15.80763 22.40205,22.89031 0.0585,0.0616 0.11709,0.1232 0.17589,0.1848 2.94496,3.08563 6.31341,6.18705 9.86123,9.17482 m -15.89734,-19.1161 c 3.21606,3.03529 6.3586,5.97958 9.49899,8.83628 7.34678,6.68307 14.40279,12.62458 21.56261,17.56643 -7.931,-5.47413 9.88808,6.82453 1.95709,1.35041 1.98222,1.36596 3.96316,2.76771 6.01484,4.24585 6.4361,4.60509 11.55736,8.5273 17.99346,13.13239 m -17.36515,-5.2019 c 9.97087,6.69004 22.57805,13.8896 37.91047,19.6857 6.13104,2.31772 11.77663,4.53587 17.12065,6.38299 -4.6e-4,2e-5 -9.4e-4,5e-5 -0.001,8e-5 4.26319,1.5003 8.47194,2.81955 12.873,3.92128 m -14.43907,-6.04362 c 0.35539,0.1266 0.71188,0.25152 1.06937,0.3747 -0.002,-5e-4 -0.004,-9.9e-4 -0.006,-0.001 11.21997,3.93554 23.6643,6.27258 34.65155,6.26555 6.19702,-0.004 13.6331,0.17951 21.18801,0.0192 3.69984,-0.0848 7.33978,-0.24854 10.83836,-0.54633 m -13.69588,0.31953 c 1.63832,-0.0406 3.28367,-0.11473 4.9319,-0.22131 11.63666,-0.77344 22.75576,-3.08774 32.07973,-6.22057 7.48582,-2.51521 15.81989,-5.70148 23.71702,-9.15041 4.82099,-2.09727 9.36239,-4.21258 13.49664,-6.26737 0.44308,-0.22021 0.87904,-0.44703 1.30804,-0.67982 m -17.98571,10.29058 c 1.15849,-0.61121 2.29776,-1.24718 3.41697,-1.90651 10.28716,-6.03896 18.4618,-13.61034 24.67071,-20.96103 0.69323,-0.82071 1.47334,-1.77398 2.31514,-2.85665 3.74414,-4.81545 9.31491,-11.28654 14.82993,-18.89988 2.50497,-3.45208 5.16364,-7.46217 7.40869,-11.83577 2.55388,-4.97521 5.01285,-11.1848 7.34065,-18.48644 m -11.51924,27.37455 c 5.56872,-9.959 11.03386,-23.86499 14.9896,-42.43889 1.30971,-6.14969 1.75473,-11.50301 1.42702,-16.50476 -0.002,0.002 -0.004,0.004 -0.006,0.006 -0.39187,-6.05306 -1.90928,-11.38301 -4.14601,-17.27439 m 5.73749,20.14581 c -0.0779,-12.56412 -3.26299,-26.33668 -9.49675,-40.48361 -2.0691,-4.69562 -4.43191,-9.1307 -7.20766,-13.40119 -3.09523,-4.77042 -6.70126,-9.32913 -10.94983,-13.85294 m 10.50119,11.82956 c -6.20137,-11.08711 -16.31522,-20.09329 -28.30414,-26.29066 -4.70505,-2.43216 -9.25884,-5.14816 -14.0079,-7.85528 -4.66827,-2.66635 -9.44338,-5.27246 -14.37168,-7.38849 m 13.34472,7.28782 c -10.89587,-5.16568 -24.92343,-10.36347 -38.45137,-13.08648 -5.90407,-1.18841 -11.60245,-1.25767 -17.06354,-0.62096 -6.9179,0.80037 -13.41341,2.72733 -19.39394,4.76408 -0.26694,0.0909 -0.53543,0.18455 -0.80538,0.28088 m 16.53442,-4.42666 c -12.44067,1.44898 -24.79659,6.86919 -33.81566,14.24009 -3.45376,2.8226 -7.33689,5.8811 -11.28891,9.29068 -5.3612,4.63346 -10.69954,9.76273 -15.12013,15.53597 m 7.96392,-11.36095 c -10.34735,8.90529 -17.03682,18.81668 -20.22305,28.00218 -0.47547,1.37073 -0.95174,2.90116 -1.40988,4.56054 -2.15501,7.78516 -3.82877,17.97505 -3.74175,27.86119 m -0.13102,-16.00002 c -2.24555,13.48691 -1.4539,26.77693 2.22345,38.8834 -0.001,0.002 -0.003,0.003 -0.004,0.005 0.12561,0.41716 0.25438,0.83248 0.38625,1.24599 3.85367,12.08443 12.07167,21.50875 21.05305,28.89255 m -13.75922,-10.36201 c 6.94057,9.81248 16.12766,15.51248 26.02485,18.52955 2.84208,0.86826 5.73189,1.52556 8.63691,2.01479 9.75585,1.64297 16.71651,3.42656 22.67288,4.07637 3.13052,0.34152 5.86108,0.40935 8.42722,0.23405 m -14.00258,0.58867 c 1.97687,0.20047 3.9324,0.35094 5.85008,0.45623 8.96939,0.49249 16.11435,-0.0423 20.8348,-0.61635 -2.93042,1.28499 -7.16634,2.86956 -12.28334,4.01283 -2.7222,0.60821 -5.69477,0.98832 -8.92421,1.04183 -9.12451,0.15118 -19.44136,-2.28218 -31.69041,-8.41472 -0.59788,-0.29933 -1.19414,-0.60098 -1.78858,-0.90512 -2.48384,-1.27261 -4.93321,-2.6067 -7.30823,-4.002"
id="path6745"
inkscape:connector-curvature="0"
inkscape:path-effect="#path-effect6754;#path-effect6747;#path-effect5585-05"
inkscape:original-d="m 208.37348,488.13899 c 0,0 36.66855,41.7041 76.32055,70.7783 13.20005,9.67873 15.33679,16.15179 31.9274,21.05148 42.70074,12.61076 63.99918,-0.39305 100.50836,-28.38938 23.319,-17.88171 66.52697,-20.06606 111.02176,-38.2077 43.47597,-17.72624 85.07908,36.39177 99.64187,41.84324 36.46045,13.64869 50.44951,54.28978 118.34056,70.42568 67.28392,15.9916 208.79878,-13.90427 193.94933,-125.81173 -14.31014,-107.84316 -151.74205,-140.42024 -181.97578,-85.14473 -12.5986,23.03368 -42.95008,65.62842 -25.99393,94.4094 34.55364,58.65056 85.34207,48.27278 87.2203,43.63305"
sodipodi:nodetypes="csssssssssc" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.32543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 412.9318,529.89068 c -1.40654,-10.81721 -3.97279,-20.87091 -6.51775,-31.08363 -2.86169,-0.21225 -5.71722,-0.4879 -8.5438,-0.84285 -6.27787,-0.78835 -12.39529,-1.9196 -18.48103,-3.39653 -7.19392,-1.74587 -14.33675,-3.97259 -21.71787,-6.48686 -7.8e-4,-2.6e-4 -0.77458,-0.26316 -0.77536,-0.26342 m 17.86626,5.05423 c -7.48605,-1.7978 -14.38035,-3.96982 -21.09907,-6.45289 -1.35054,-0.49913 -2.70563,-1.01169 -4.10964,-1.13962 -0.70058,-0.0638 -1.40549,-0.0289 -2.06816,0.14813 -0.66241,0.17699 -1.28017,0.499 -1.75768,0.96465 -0.83967,0.8188 -1.17793,1.98933 -1.52428,3.08529 -0.50148,1.58687 -1.08163,3.13169 -1.67536,4.65539 -0.83893,2.15297 -1.6978,4.43707 -2.36725,6.88241 -1.14301,4.17515 -1.71973,8.92831 -0.63337,13.55726 0.61669,2.6277 1.76466,5.22673 1.73,7.96331 -0.0145,1.14243 -0.24676,2.27642 -0.66549,3.31968 m -0.065,-13.52107 c -0.1066,1.58392 -0.0361,3.15263 0.25302,4.68375 0.46233,2.44843 1.48752,4.83142 1.33425,7.30475 -0.11848,1.91177 -0.97654,3.77939 -2.38802,5.10197 -1.41144,1.32255 -3.36517,2.08227 -5.35186,2.03707 -1.98677,-0.0452 -3.98334,-0.90062 -5.42797,-2.35991 -1.44474,-1.45939 -2.31492,-3.50778 -2.35934,-5.55886 -0.0319,-1.47239 0.34157,-2.89699 0.89444,-4.2282 0.22818,-0.54942 0.49527,-1.08064 0.78623,-1.59124 0.99652,-1.74876 2.27991,-3.31904 3.38323,-5.03859 2.4057,-3.74933 3.88383,-8.12184 4.79859,-12.49361 0.91197,-4.35844 1.30933,-8.81884 1.75298,-13.29242 0.0403,-0.40601 0.0808,-0.81252 0.0964,-1.2172 m -2.35015,20.01936 c 0.10999,-0.80989 0.19687,-1.6354 0.26371,-2.47026 0.33826,-4.22492 0.19599,-8.74151 0.18294,-13.41354 -0.002,-0.68243 -0.001,-1.36897 -0.10443,-2.04263 -0.10312,-0.67446 -0.31496,-1.33275 -0.69435,-1.86145 -0.50456,-0.70314 -1.26991,-1.12532 -2.02106,-1.34065 -0.75142,-0.2154 -1.52046,-0.25015 -2.26645,-0.29661 -3.84146,-0.23926 -7.59276,-0.82565 -11.21658,-0.9698 -0.71549,-0.0285 -1.42713,-0.039 -2.13127,-0.0266 -2.8635,0.0505 -6.01526,0.94316 -9.0247,2.80621 -1.32894,0.8227 -2.5268,1.74809 -3.85575,2.57079 -1.36564,0.84315 -2.8929,1.58737 -4.555,1.88314 -2.30633,0.41041 -4.77798,-0.10995 -6.65411,-1.30064 -1.87508,-1.19002 -3.13988,-3.01932 -3.54638,-4.8341 -0.40664,-1.81538 0.0324,-3.59401 1.02331,-4.80447 0.42998,-0.52522 0.96039,-0.94317 1.54709,-1.24309 0.7668,-0.392 1.68382,-0.57622 2.64675,-0.52372 1.28667,0.0702 2.61762,0.53906 3.96874,1.07949 1.35019,0.54006 2.7434,1.15569 4.26466,1.54235 0.95109,0.24174 1.93982,0.39066 2.95482,0.46063 m -14.76781,7.84077 c -0.3532,-0.95574 -0.5204,-1.98405 -0.47234,-2.99825 0.0953,-2.01064 1.02339,-3.93709 2.47739,-5.2271 1.45418,-1.29016 3.40938,-1.936 5.3278,-1.78681 1.45271,0.11297 2.84422,0.65641 4.17385,1.30218 1.32728,0.64463 2.61178,1.39394 3.95513,1.93978 3.58656,1.45731 7.4143,1.39707 10.85202,0.84866 0.93585,-0.14929 1.85585,-0.3335 2.76531,-0.53243 2.45006,-0.5359 5.0815,-1.41308 7.96645,-2.17684 0.48965,-0.12963 0.98908,-0.25717 1.44829,-0.48796 0.45938,-0.23088 0.87831,-0.57591 1.10087,-1.03416 0.139,-0.2862 0.19589,-0.60607 0.18683,-0.91793 -0.009,-0.31186 -0.0826,-0.61713 -0.19365,-0.90235 -0.22168,-0.56921 -0.59007,-1.06006 -0.93974,-1.54571 -2.47153,-3.43269 -4.41758,-7.23589 -6.67686,-10.60518 -1.82432,-2.72061 -3.87509,-5.16001 -6.34871,-6.72511 -0.59455,-0.37618 -1.23452,-0.71362 -1.91798,-1.00506 -0.66173,-0.28217 -1.36135,-0.52004 -2.06932,-0.78757 m 14.60661,8.71148 c -1.26699,-1.34437 -2.53295,-2.68384 -3.85238,-3.96479 -3.0824,-2.99253 -6.52878,-5.69723 -10.47557,-7.03754 -0.99128,-0.33664 -2.00643,-0.58465 -2.98483,-0.92036 -0.97824,-0.33565 -1.93015,-0.76606 -2.71024,-1.42242 -1.2716,-1.06991 -2.01171,-2.73111 -1.95073,-4.42577 0.061,-1.69466 0.92282,-3.39574 2.36465,-4.52895 0.83565,-0.65677 1.85839,-1.11648 2.96104,-1.33481 0.80001,-0.15841 1.6316,-0.20294 2.45338,-0.11588 1.95424,0.20704 3.8282,1.15552 5.09266,2.60559 0.80737,0.92589 1.36162,2.02723 1.79406,3.14799 0.43227,1.12032 0.75039,2.26937 1.13894,3.38247 1.33636,3.82836 3.49915,7.1877 6.09963,10.07979 2.16544,2.40828 4.63707,4.51174 7.28879,6.49193 m -12.64108,-12.29766 c 1.45074,2.30075 3.1209,4.34646 4.90274,6.12286 2.82031,2.81169 5.91698,4.96845 9.04606,6.73166 0.69483,0.39153 1.43378,0.77846 2.24238,0.76724 0.5766,-0.008 1.15437,-0.22415 1.65247,-0.57849 0.49838,-0.35453 0.91614,-0.84096 1.252,-1.39187 0.67443,-1.10624 1.00236,-2.42147 1.33543,-3.73536 0.85906,-3.3888 1.79012,-6.83186 2.47211,-10.32778 0.81926,-4.19958 1.58253,-8.21165 1.50613,-12.29761 -0.0344,-1.83703 -0.23437,-3.70239 0.34666,-5.41986 0.53085,-1.56915 1.72367,-2.91032 3.23721,-3.63658 1.51359,-0.72628 3.32859,-0.82564 4.90526,-0.27344 1.57672,0.55221 2.89158,1.74981 3.53887,3.20756 0.41837,0.94221 0.55283,1.98387 0.4044,2.97028 m -12.59269,-4.41822 c 0.6656,-1.11738 1.68436,-2.03303 2.89372,-2.55064 1.53033,-0.65498 3.34726,-0.66138 4.92382,0.0152 1.57664,0.67659 2.88984,2.02975 3.54677,3.68373 0.65702,1.65419 0.64584,3.58607 -0.0162,5.23478 -0.6457,1.60799 -1.85346,2.9056 -2.89561,4.27549 -2.68943,3.53519 -4.53303,7.91242 -5.73368,12.66503 -0.42224,1.67137 -0.7665,3.38708 -1.05013,5.14142 -0.52171,3.227 -0.98577,6.15485 -1.48768,8.82951 -0.27647,1.47331 -0.56479,2.94869 -0.15541,4.2688 0.22027,0.71032 0.6374,1.3408 1.17183,1.84185 0.53473,0.50133 1.18277,0.87375 1.88159,1.12799 1.40335,0.51057 2.96074,0.53834 4.52267,0.43099 2.86993,-0.19727 5.7389,-0.82205 8.64612,-1.6687 m -16.30198,-0.61389 c 0.35851,0.32022 0.75318,0.59839 1.16866,0.83596 1.35597,0.77534 2.91288,1.11688 4.46847,1.34962 6.10218,0.91298 12.4476,0.29634 18.92606,-0.70656 5.32832,-0.82485 10.75203,-1.91137 16.20705,-2.61777 1.18029,-0.15284 2.34153,-0.28174 3.48564,-0.38184 11.69611,-1.02326 21.72589,1.00074 31.01007,4.98234 0.25658,0.91333 0.51392,1.82436 0.7733,2.73247 1.10095,3.85452 2.49919,7.66832 4.06752,11.4376 m -11.78957,-16.91718 c 3.17674,0.86304 6.37079,1.90815 9.53891,3.14793 3.75291,9.39362 7.94133,18.72133 12.13198,28.41196 0.17989,0.41597 0.35833,0.82946 0.53541,1.24054 m -25.1164,17.16737 c -1.86842,-9.37984 -3.62063,-18.69475 -5.17677,-27.41071 -4.21492,0.0444 -5.45597,0.0503 -9.67089,0.0947 -5.11034,0.058 -10.65894,-0.88856 -16.49272,-2.43527 -8.4226,-2.23309 -17.42566,-5.71215 -26.65945,-8.9676 -0.0597,-0.021 -1.26216,-0.4449 -1.32182,-0.46593 -0.5259,-0.18535 -1.04588,-0.36829 -1.56118,-0.5363 m 20.14714,5.14062 c -5.82646,-1.67739 -11.62842,-3.48723 -17.2364,-5.42142 -1.2958,-0.44692 -2.59825,-0.90313 -3.93608,-0.96805 -0.66783,-0.0324 -1.33885,0.0353 -1.96384,0.24637 -0.62483,0.21103 -1.20279,0.56875 -1.63622,1.07078 -0.76695,0.88834 -1.0112,2.11508 -1.25671,3.29008 -0.53528,2.56193 -1.18081,5.04478 -1.67186,7.51859 -0.29101,1.46599 -0.62952,2.98645 -0.95083,4.5738 -0.86416,4.26919 -1.59016,9.11699 -0.87522,13.94651 0.40331,2.72445 1.26813,5.50644 0.91987,8.40998 -0.27064,2.25633 -1.30364,4.51061 -2.88441,6.25486 -1.58142,1.74497 -3.69791,2.9599 -5.81484,3.39756 -0.81562,0.16862 -1.6282,0.22074 -2.40283,0.16784 -1.23587,-0.0844 -2.37411,-0.49341 -3.28725,-1.17316 -1.48532,-1.1057 -2.34853,-2.91333 -2.33988,-4.81018 0.001,-0.30685 0.0245,-0.61345 0.0668,-0.91909 m 14.34305,-4.56065 c -5.5e-4,0.007 -0.001,0.0139 -0.002,0.0209 -0.14693,1.81673 -1.01082,3.64753 -2.4024,4.98183 -1.39163,1.33435 -3.29948,2.15412 -5.2118,2.20796 -1.91225,0.0539 -3.8054,-0.66381 -5.11466,-1.95623 -1.30925,-1.29242 -2.01222,-3.14507 -1.85396,-4.98067 0.16117,-1.86915 1.15995,-3.60051 2.38545,-5.12101 1.24194,-1.5409 2.65894,-2.85574 3.90089,-4.39664 0.94949,-1.1825 1.74992,-2.45449 2.41981,-3.78687 1.21544,-2.41744 1.88368,-5.0405 2.15667,-7.67413 0.42373,-4.08796 -0.0694,-8.21833 -0.71027,-12.26212 -0.0931,-0.58754 -0.19071,-1.18086 -0.39582,-1.74885 -0.20499,-0.56763 -0.52764,-1.12222 -1.01801,-1.53394 -0.65952,-0.55376 -1.57401,-0.8066 -2.49957,-0.84864 -0.92406,-0.042 -1.85693,0.10909 -2.79067,0.25841 -3.5806,0.57257 -7.2058,1.10851 -10.79178,1.95296 -1.19276,0.28088 -2.36234,0.54782 -3.50982,0.81552 -0.24693,0.0576 -0.49309,0.11537 -0.73817,0.17336 m 21.14955,1.45343 c -0.0261,-0.13184 -0.0559,-0.26299 -0.0902,-0.39322 -0.16334,-0.61964 -0.43759,-1.22366 -0.87773,-1.6892 -0.58927,-0.62328 -1.43248,-0.95094 -2.27162,-1.06935 -0.83894,-0.11838 -1.68651,-0.0467 -2.52205,0.0186 -4.2815,0.33458 -8.49031,0.49967 -12.5658,1.21276 -4.07272,0.7126 -8.06179,2.0054 -11.36546,4.40257 -1.11329,0.80781 -2.13929,1.73409 -3.25855,2.52057 -0.58087,0.40817 -1.19327,0.78016 -1.83626,1.0688 -0.5959,0.26751 -1.22247,0.4605 -1.87594,0.5407 -1.88498,0.23135 -3.9006,-0.54057 -5.30097,-2.02896 -1.4004,-1.48843 -2.16754,-3.65701 -2.06826,-5.83373 0.0993,-2.17633 1.0518,-4.33019 2.55628,-5.90942 1.5039,-1.57861 3.53691,-2.57555 5.5628,-2.838 1.52422,-0.19747 3.03487,0.002 4.47536,0.26461 0.90309,0.16476 1.7975,0.35649 2.70844,0.50106 m -14.73039,4.9166 c 0.47304,-0.86359 1.0844,-1.64834 1.80559,-2.30294 1.58737,-1.44081 3.68246,-2.2436 5.75125,-2.26349 1.56212,-0.015 3.08082,0.39545 4.53485,0.89571 1.45408,0.50028 2.87566,1.09658 4.36327,1.47674 3.98925,1.01946 8.23896,0.42874 12.26052,-0.78717 3.17237,-0.95916 6.26369,-2.29488 9.47321,-3.54765 0.85773,-0.33479 1.71108,-0.65082 2.56374,-0.93931 0.4995,-0.16899 1.00357,-0.33055 1.45794,-0.58856 0.4548,-0.25826 0.86339,-0.62609 1.06769,-1.10025 0.12783,-0.29668 0.1708,-0.62459 0.1453,-0.94293 -0.0255,-0.31833 -0.1179,-0.62765 -0.25047,-0.91553 -0.26516,-0.57577 -0.68453,-1.0611 -1.09707,-1.53929 -2.90521,-3.36747 -5.74056,-6.78482 -9.07232,-9.74224 -3.32686,-2.95308 -7.24523,-5.4922 -11.72788,-6.7009 -1.04882,-0.2828 -2.12303,-0.49134 -3.17234,-0.76958 m 16.01492,9.94595 c -0.4912,-0.59716 -0.99253,-1.18297 -1.50712,-1.75484 -3.01257,-3.34792 -6.54135,-6.24017 -10.66951,-7.76826 -1.05426,-0.39024 -2.0812,-0.67232 -3.13546,-1.06257 -1.03336,-0.38434 -2.04547,-0.86598 -2.88826,-1.57735 -1.37458,-1.16025 -2.2266,-2.92377 -2.28198,-4.74366 -0.0554,-1.8199 0.68613,-3.66874 2.00802,-4.98329 1.32189,-1.31456 3.2045,-2.07627 5.09151,-2.06567 0.39027,0.002 0.77958,0.0374 1.1632,0.10324 1.47133,0.25266 2.84289,0.9743 3.84785,2.03842 0.80858,0.85617 1.37613,1.9071 1.83017,2.98935 0.45421,1.08264 0.80366,2.20807 1.23142,3.30811 1.47176,3.78481 3.86079,7.22118 6.72231,10.17787 2.8607,2.95584 6.19201,5.45303 9.7216,7.66937 0.78898,0.49543 1.61873,0.98627 2.53553,1.08684 0.63158,0.0693 1.27085,-0.0556 1.83893,-0.30966 0.0173,-0.008 0.0346,-0.0156 0.0517,-0.0236 0.58058,-0.2701 1.08251,-0.67547 1.49955,-1.14397 0.8337,-0.93659 1.32909,-2.1091 1.81654,-3.2612 0.79628,-1.88199 1.60835,-3.78404 2.35926,-5.73489 m -21.1632,4.81775 c 2.21465,1.93515 4.65442,3.54979 7.20547,4.93408 0.78472,0.42582 1.62115,0.84322 2.53409,0.86035 0.65112,0.0122 1.30867,-0.18527 1.88964,-0.52218 0.58073,-0.33677 1.08617,-0.80834 1.51211,-1.34454 0.85127,-1.07162 1.37946,-2.3776 1.91808,-3.6704 2.9593,-7.10289 6.61689,-14.59248 7.5065,-22.76341 0.0365,-0.33533 0.0665,-0.66945 0.0899,-1.00241 0.14523,-2.07127 0.0347,-4.12693 0.63003,-5.9683 0.54593,-1.68856 1.69486,-3.10706 3.12246,-3.87379 1.4275,-0.76667 3.11453,-0.86934 4.53751,-0.2879 1.42284,0.58138 2.55907,1.84081 3.01835,3.38802 0.45928,1.54718 0.23061,3.36003 -0.66611,4.8621 -0.88472,1.48196 -2.31798,2.57699 -3.63339,3.75196 -2.56355,2.28985 -4.69149,4.9395 -6.43519,7.6068 -0.53437,0.8174 -1.01762,1.66056 -1.45484,2.52254 -1.86454,3.676 -2.91582,7.70401 -3.74698,11.83805 -0.16742,0.83272 -0.32533,1.69361 -0.3507,2.55303 m 13.90918,-21.61596 c -0.3367,0.35348 -0.67695,0.70107 -1.0043,1.05326 -2.91481,3.13593 -4.9433,6.84364 -6.3542,10.67387 -1.41118,3.83099 -2.22349,7.78811 -2.91986,11.76624 -0.24807,1.41716 -0.48154,2.92574 3.4e-4,4.34056 0.2598,0.76278 0.722,1.46606 1.3064,2.05871 0.58422,0.59246 1.28731,1.0753 2.04405,1.4565 1.51257,0.76194 3.21361,1.11343 4.90725,1.38274 5e-5,0 0.10608,0.0168 0.10614,0.0168 0,0 0,0 0,0 6.59578,1.03667 12.77786,0.43684 18.84756,-0.67419 6.10697,-1.11785 12.11513,-2.75586 18.37259,-3.75205 1.00665,-0.16026 2.02065,-0.30371 3.04275,-0.42997 6.30333,-0.77866 12.43151,-0.23822 18.34839,1.20195 m -30.76798,-1.00647 c 2.55491,-0.32732 5.05542,-0.57897 7.50939,-0.68724 10.59577,-0.46751 20.43156,1.77752 29.21199,6.57107 0.34918,0.19064 0.7009,0.38018 1.05493,0.56876 3.33312,13.06774 9.85453,22.30343 15.00721,31.5974 0.036,0.065 0.072,0.13028 0.10802,0.19582"
id="path6756"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccsscsssssssssssssssssssssssssssssscc"
inkscape:path-effect="#path-effect6758;#path-effect5585-05"
inkscape:original-d="m 413.36921,534.41436 c -4.30877,-53.49238 12.4593,-25.11499 -7.36921,-37.41436 -7.87487,3.97662 -15.85539,0.34873 -26.15987,-3.99363 -6.97163,-2.93788 -16.61326,-6.13091 -23.845,-6.3119 -1.83735,-0.046 -6.59983,0.1186 -8.24513,0.55553 -5.70574,1.51524 0.9489,-2.14372 -1.6647,3.41324 -2.41256,5.12953 -7.8077,21.01295 -5.22018,25.80886 2.73227,5.06417 1.85496,1.63087 1.58683,7.37884 -0.25092,5.37931 -9.57395,-0.50877 -14.92557,0.0914 -7.02703,0.788 4.46199,-5.00837 5.50926,-10.28718 2.34629,-11.82661 -0.39471,-22.48743 3.84672,-25.13511 8.54859,-5.33641 6.79429,2.76138 -1.07411,-3.53496 -1.88306,-1.50683 -2.61656,-0.17716 -4.76452,-1.00488 -7.05998,-2.72058 -18.75265,0.69474 -24.92369,5.67018 -6.59477,5.31707 -1.63762,4.02851 -7.53249,4.1967 -5.08604,0.14511 1.46221,-9.69208 0.3033,-14.64645 -1.66512,-7.11842 1.91789,5.19646 8.73224,2.54899 4.63034,-1.79895 17.04425,-0.57912 23.64773,-4.56026 7.22744,-4.35732 -5.524,1.16957 2.44669,-1.60355 1.53607,-0.53442 -0.96152,-1.43031 -1.22512,-3.36875 -1.04155,-7.65949 -11.04289,-12.78997 -19.49239,-17.71707 -4.6431,-2.7075 -2.86257,1.64436 -6.11612,-2.63388 -5.24619,-6.89845 1.21106,-6.26172 9.25,-9.5 7.75445,-3.12368 3.18321,-2.07569 2.92678,6.28033 -0.11967,3.89973 17.65438,13.48749 16.18934,17.10355 -1.26659,3.12625 0.40591,7.76088 2.46807,0.96799 0.44573,-1.46828 4.54189,-3.01354 5.0341,-4.99969 1.36506,-5.50812 11.48628,-19.18701 5.99727,-20.70349 -3.71514,-1.02639 -0.62746,-5.17781 0.33058,-5.29639 0.40318,-0.0499 14.69346,2.66325 11.03563,4.25131 -1.33981,0.58168 -4.3203,3.07431 -3.08694,3.63123 9.95501,4.49511 -9.9647,14.92001 -9.98182,22.0672 -0.004,1.82415 -0.84597,3.82754 -0.29689,4.33184 3.41944,3.14054 2.94693,3.84165 7.5,4.75 13.87096,2.76729 22.59706,-1.07738 36.75739,-2.68494 10.87689,-1.2348 21.86248,-1.00217 32.99261,4.93494 8.58374,17.17775 14.92752,37.61156 14.92752,37.61156"
transform="translate(-17,-17)" />
<path
inkscape:original-d="m 442.80652,526.07713 c 26.02537,35.79592 -3.48645,-1.09212 -36.80652,-29.07713 -7.87487,3.97662 -15.85539,0.34873 -26.15987,-3.99363 -6.97163,-2.93788 -16.61326,-6.13091 -23.845,-6.3119 -1.83735,-0.046 -6.59983,0.1186 -8.24513,0.55553 -5.70574,1.51524 0.9489,-2.14372 -1.6647,3.41324 -2.41256,5.12953 -7.8077,21.01295 -5.22018,25.80886 2.73227,5.06417 1.85496,1.63087 1.58683,7.37884 -0.25092,5.37931 -9.57395,-0.50877 -14.92557,0.0914 -7.02703,0.788 4.46199,-5.00837 5.50926,-10.28718 2.34629,-11.82661 -0.39471,-22.48743 3.84672,-25.13511 8.54859,-5.33641 6.79429,2.76138 -1.07411,-3.53496 -1.88306,-1.50683 -2.61656,-0.17716 -4.76452,-1.00488 -7.05998,-2.72058 -18.75265,0.69474 -24.92369,5.67018 -6.59477,5.31707 -1.63762,4.02851 -7.53249,4.1967 -5.08604,0.14511 1.46221,-9.69208 0.3033,-14.64645 -1.66512,-7.11842 1.91789,5.19646 8.73224,2.54899 4.63034,-1.79895 17.04425,-0.57912 23.64773,-4.56026 7.22744,-4.35732 -5.524,1.16957 2.44669,-1.60355 1.53607,-0.53442 -0.96152,-1.43031 -1.22512,-3.36875 -1.04155,-7.65949 -11.04289,-12.78997 -19.49239,-17.71707 -4.6431,-2.7075 -2.86257,1.64436 -6.11612,-2.63388 -5.24619,-6.89845 1.21106,-6.26172 9.25,-9.5 7.75445,-3.12368 3.18321,-2.07569 2.92678,6.28033 -0.11967,3.89973 17.65438,13.48749 16.18934,17.10355 -1.26659,3.12625 0.40591,7.76088 2.46807,0.96799 0.44573,-1.46828 4.54189,-3.01354 5.0341,-4.99969 1.36506,-5.50812 11.48628,-19.18701 5.99727,-20.70349 -3.71514,-1.02639 -0.62746,-5.17781 0.33058,-5.29639 0.40318,-0.0499 14.69346,2.66325 11.03563,4.25131 -1.33981,0.58168 -4.3203,3.07431 -3.08694,3.63123 9.95501,4.49511 -9.9647,14.92001 -9.98182,22.0672 -0.004,1.82415 -0.84597,3.82754 -0.29689,4.33184 3.41944,3.14054 2.94693,3.84165 7.5,4.75 13.87096,2.76729 22.59706,-1.07738 36.75739,-2.68494 10.87689,-1.2348 21.86248,-1.00217 32.99261,4.93494 8.58374,17.17775 29.1948,16.13718 29.1948,16.13718"
inkscape:path-effect="#path-effect6762;#path-effect5585-05"
sodipodi:nodetypes="ccsscsssssssssssssssssssssssssssssscc"
inkscape:connector-curvature="0"
id="path6760"
d="m 438.51087,523.91009 c -9.62472,-8.83424 -21.09085,-16.4562 -32.03545,-24.71159 -0.15171,-0.11443 -0.3033,-0.22894 -0.45478,-0.34353 -9.1304,-0.81267 -17.95376,-2.35009 -26.86288,-4.62079 -4.30991,-1.09848 -8.6378,-2.36786 -13.04408,-3.76778 -0.001,-4.6e-4 -0.77843,-0.24689 -0.7799,-0.24736 m 18.01431,4.45256 c -2.02724,-0.40563 -4.01263,-0.84056 -5.96273,-1.3075 -8.24007,-1.97302 -15.84062,-4.51437 -23.41055,-7.53195 -1.342,-0.53496 -2.69069,-1.08422 -4.09837,-1.25234 -0.70193,-0.0838 -1.40916,-0.0695 -2.07623,0.0865 -0.6668,0.15589 -1.28996,0.45602 -1.77489,0.89947 -0.13393,0.12248 -0.25567,0.25383 -0.3671,0.39216 -0.59734,0.74156 -0.897,1.70976 -1.20397,2.65639 -1.26954,3.91505 -3.00249,8.03309 -4.15864,12.51189 -1.15615,4.4788 -1.72118,9.41918 -0.59695,14.13081 0.16504,0.69167 0.36628,1.3793 0.57401,2.06565 m 1.62999,-13.62489 c -0.0132,0.0377 -0.0264,0.0755 -0.0395,0.1132 -1.50502,4.32845 -2.28059,8.85836 -1.36367,13.11043 0.51869,2.40532 1.5793,4.73721 1.44122,7.17475 -0.10653,1.88078 -0.96465,3.7194 -2.38814,5.01477 -1.42343,1.29533 -3.40121,2.0298 -5.42382,1.96116 -2.02278,-0.0686 -4.06708,-0.94546 -5.57175,-2.42452 -0.32335,-0.31785 -0.62071,-0.6628 -0.8896,-1.02906 -0.98237,-1.33808 -1.52823,-2.94249 -1.51619,-4.53369 0.0156,-2.05652 0.91786,-3.98656 2.08324,-5.68716 1.16501,-1.70004 2.60398,-3.23298 3.84997,-4.92657 2.71375,-3.6886 4.44651,-8.06673 5.54851,-12.4862 0.45611,-1.82919 0.81208,-3.67832 1.10889,-5.5437 m -5.5743,19.53868 c 1.64942,-3.15809 2.59924,-6.96589 3.12448,-10.93394 0.59885,-4.5242 0.68045,-9.32232 0.85051,-14.22329 0.0249,-0.7173 0.0512,-1.43587 -0.0267,-2.14277 -0.0781,-0.70802 -0.26539,-1.39663 -0.62166,-1.95704 -0.47255,-0.74332 -1.21005,-1.20789 -1.93158,-1.46147 -0.72204,-0.25376 -1.46644,-0.327 -2.18586,-0.40935 -1.92866,-0.22078 -3.84091,-0.52589 -5.73668,-0.80428 -1.75309,-0.25743 -3.63874,-0.32806 -5.62263,-0.16259 -4.12858,0.34434 -8.72847,1.74417 -12.96773,4.46179 -1.4283,0.91562 -2.80574,1.9738 -4.30364,2.90612 -1.50029,0.93381 -3.14414,1.74536 -4.90779,2.08723 -2.44709,0.47436 -5.0296,-0.024 -6.98587,-1.23476 -1.91926,-1.18785 -3.22151,-3.03264 -3.67115,-4.91516 -0.008,-0.0351 -0.0164,-0.0702 -0.0241,-0.10529 -0.41988,-1.91895 0.19982,-3.82043 1.5107,-5.13929 1.31171,-1.31968 3.2923,-2.05132 5.3644,-2.03568 1.10032,0.008 2.21111,0.21674 3.32083,0.5108 m 0.56559,14.65398 c -1.86531,0.15171 -3.82474,-0.54847 -5.22955,-1.84935 -1.46829,-1.35968 -2.31293,-3.34088 -2.30623,-5.26921 0.007,-1.92855 0.85204,-3.77578 2.2282,-4.98871 1.37671,-1.21342 3.25963,-1.78491 5.11136,-1.56402 1.40395,0.16746 2.74533,0.76247 4.03202,1.46024 1.28312,0.69582 2.5266,1.49485 3.83204,2.08891 1.94215,0.88381 3.96397,1.29106 5.94824,1.40514 1.58768,0.0913 3.25063,-0.0916 4.93371,-0.44601 3.78869,-0.79771 7.76822,-2.4339 12.1233,-3.73428 0.53891,-0.16091 1.08653,-0.31804 1.59163,-0.57621 0.50647,-0.25887 0.9692,-0.62918 1.23494,-1.11121 0.16587,-0.30088 0.24931,-0.63531 0.26602,-0.96046 0.0167,-0.32503 -0.0316,-0.64352 -0.11806,-0.9405 -0.17212,-0.59132 -0.49495,-1.10675 -0.79942,-1.60888 -2.15897,-3.5605 -3.91209,-7.34665 -6.09808,-10.55403 -0.32435,-0.4759 -0.65921,-0.9395 -1.006,-1.38712 -0.89044,-1.14936 -1.94556,-2.24152 -3.15821,-3.22479 m 12.2696,11.78997 c -0.22832,-0.28468 -0.48615,-0.55018 -0.73971,-0.8156 -2.98191,-3.12143 -5.58535,-6.54098 -8.50856,-9.57975 -2.92173,-3.03721 -6.23143,-5.72266 -10.07356,-6.98327 -0.96447,-0.31645 -1.95454,-0.54035 -2.90957,-0.84802 -0.95504,-0.30766 -1.88551,-0.70635 -2.6453,-1.3265 -1.20537,-0.98382 -1.91213,-2.51741 -1.87213,-4.08709 0.001,-0.0439 0.003,-0.0879 0.005,-0.132 0.0812,-1.61946 0.90114,-3.30949 2.25173,-4.49151 1.35055,-1.18199 3.21157,-1.83751 5.03489,-1.73132 1.82321,0.10618 3.5822,0.97228 4.74717,2.35793 0.74442,0.88545 1.24097,1.95213 1.62294,3.0471 0.38167,1.09413 0.65565,2.22445 1.00649,3.32626 1.20644,3.78871 3.31648,7.19877 5.93942,10.2278 0.26701,0.30834 0.53934,0.613 0.81677,0.91431 m -9.11695,-15.0433 c 0.1411,0.27893 0.27224,0.56103 0.39539,0.84377 0.49344,1.13287 0.86753,2.28716 1.30589,3.3966 1.50839,3.81759 3.76798,7.05617 6.35605,9.66304 2.58924,2.60806 5.50208,4.60232 8.49522,6.24504 0.66343,0.36411 1.37601,0.72679 2.15867,0.69292 0.55865,-0.0242 1.11913,-0.25526 1.60161,-0.62376 0.48277,-0.36871 0.88575,-0.86777 1.20835,-1.43082 0.64823,-1.13137 0.95354,-2.46352 1.26977,-3.79437 0.0963,-0.4055 0.19419,-0.81147 0.29293,-1.21773 1.73547,-7.1405 4.71457,-13.69338 4.873,-20.60424 0.0411,-1.79348 -0.10258,-3.6451 0.51159,-5.35604 0.5623,-1.56645 1.76934,-2.92005 3.28006,-3.67406 1.27599,-0.63687 2.75505,-0.8374 4.11143,-0.58657 m -8.9958,10.86324 c 0.11503,-0.78917 0.19109,-1.57854 0.22325,-2.36839 0.0703,-1.72584 -0.0662,-3.49328 0.54887,-5.08041 0.56346,-1.45394 1.76742,-2.66617 3.28375,-3.23955 1.51628,-0.57336 3.32611,-0.49655 4.90215,0.26507 1.57617,0.76168 2.89569,2.20156 3.56567,3.94405 0.6701,1.74282 0.6787,3.76477 0.0432,5.50554 -0.61762,1.69191 -1.79721,3.09294 -2.79755,4.55199 -1.649,2.40515 -2.93937,5.15712 -3.92134,8.14116 -0.55743,1.69396 -1.06289,3.33296 -1.51988,4.89621 -1.26203,4.317 -2.18567,8.11523 -3.10902,11.5122 -0.32924,1.21124 -0.66231,2.44942 -0.28236,3.57045 0.20364,0.6008 0.60691,1.12902 1.13102,1.53637 0.52475,0.40786 1.16467,0.69427 1.85986,0.87097 1.35994,0.34568 2.86648,0.26627 4.4054,0.0786 m -8.78227,-8.24164 c -0.0975,0.37215 -0.19317,0.74361 -0.28743,1.11427 -0.37138,1.4604 -0.72052,2.97783 -0.34482,4.40513 0.20159,0.76581 0.60798,1.46842 1.13774,2.05471 0.52979,0.58631 1.18068,1.05843 1.88649,1.42355 1.41212,0.7305 3.01788,1.02927 4.62388,1.22398 6.29635,0.76338 12.77477,0.0538 19.35313,-0.98899 2.30077,-0.36471 4.61192,-0.76978 6.93052,-1.16607 4.30998,-0.73665 8.36272,-1.35875 12.25339,-1.62791 8.99134,-0.62201 17.18539,0.66942 25.1023,3.25923 1.66275,0.54392 3.37017,1.14772 5.10417,1.81026 1.84066,1.04463 3.74875,2.07721 5.70507,3.09716 m -20.54697,-7.35482 c 6.07014,0.93686 12.28227,2.5241 18.35237,4.84424 6.3457,3.50447 12.84459,7.03905 19.34478,10.75438 0.91107,0.52074 1.8145,1.02834 2.71118,1.52354 m -10.26446,29.12375 c -9.99732,-7.52705 -19.79951,-14.94505 -29.23278,-21.09206 0.0311,-0.002 -1.35699,0.0732 -1.32588,0.0716 -7.89985,0.43056 -16.85638,-1.51849 -26.31266,-4.37528 -5.56814,-1.68216 -11.30179,-3.67635 -17.12152,-5.62232 0.0918,0.0307 -2.98437,-0.99969 -2.89259,-0.969 m 20.28761,4.59292 c -0.92987,-0.22732 -1.85916,-0.45907 -2.78701,-0.69572 -7.6666,-1.95542 -15.22487,-4.24298 -22.29701,-6.84493 -1.25141,-0.46042 -2.50223,-0.93266 -3.78641,-1.01728 -0.64047,-0.0422 -1.28304,0.0149 -1.87806,0.21459 -0.59502,0.19965 -1.14195,0.54518 -1.54314,1.03424 -0.64024,0.78045 -0.85315,1.83074 -1.02119,2.87282 -0.0184,0.11423 -0.0369,0.22845 -0.056,0.34247 -0.67079,4.00919 -2.30426,8.19744 -3.65587,12.81985 -1.35562,4.63611 -2.40513,9.76283 -1.85501,14.84431 0.30923,2.85633 1.13106,5.77479 0.79327,8.77189 -0.23247,2.06256 -1.0356,4.11567 -2.26156,5.80864 -0.16219,0.22397 -0.33173,0.43958 -0.50835,0.6461 -1.51183,1.76782 -3.52901,2.84823 -5.54504,3.02667 -1.32734,0.11749 -2.64402,-0.15879 -3.78967,-0.7624 m 8.87726,-20.49701 c 0.0502,0.37202 0.11472,0.7445 0.19428,1.11691 0.49419,2.31352 1.56904,4.64471 1.49128,7.15875 -0.06,1.93903 -0.84417,3.87881 -2.16339,5.3099 -1.31927,1.43114 -3.16179,2.33468 -5.01632,2.45984 -1.85432,0.12513 -3.69688,-0.53403 -4.96271,-1.78055 -1.26584,-1.24653 -1.93271,-3.06605 -1.74554,-4.88115 0.1907,-1.84923 1.21052,-3.57128 2.45103,-5.09789 0.36471,-0.44883 0.74855,-0.88442 1.14044,-1.31595 0.93822,-1.03315 1.8881,-2.03984 2.69677,-3.135 2.5024,-3.38891 3.55172,-7.49368 3.71952,-11.55804 0.16809,-4.07147 -0.51157,-8.11936 -1.27204,-12.03323 -0.11032,-0.56775 -0.2241,-1.1413 -0.44345,-1.68716 -0.21916,-0.54541 -0.55542,-1.07772 -1.05693,-1.46506 -0.6758,-0.52196 -1.60115,-0.73992 -2.53805,-0.74519 -0.93526,-0.005 -1.87376,0.18421 -2.81357,0.37479 1.09475,-0.222 -2.13642,0.43338 -1.04167,0.21139 -1.45419,0.29577 -2.87962,0.52503 -4.27898,0.71391 m 12.92747,11.21308 c -0.0854,-2.45786 -0.26056,-4.91354 -0.41225,-7.34878 -0.0394,-0.63192 -0.0777,-1.26668 -0.22032,-1.88117 -0.14266,-0.61457 -0.39632,-1.21301 -0.81698,-1.6741 -0.56273,-0.6168 -1.38094,-0.93878 -2.19499,-1.05178 -0.81448,-0.11305 -1.6379,-0.0365 -2.45075,0.0331 -4.16377,0.35681 -8.27959,0.53107 -12.28425,1.23992 -3.33743,0.59075 -6.63099,1.57526 -9.5352,3.25766 -0.57945,0.33568 -1.14795,0.6961 -1.70235,1.08381 -1.12311,0.78541 -2.1785,1.6756 -3.34191,2.41254 -1.16188,0.73597 -2.46255,1.32708 -3.87138,1.42935 -1.95646,0.14201 -4.0296,-0.72061 -5.47462,-2.3023 -1.44473,-1.58138 -2.24281,-3.84519 -2.16098,-6.11833 0.0818,-2.27314 1.03046,-4.52551 2.54453,-6.20528 1.17501,-1.3036 2.67813,-2.25822 4.25599,-2.79115 m -5.33159,15.0404 c -1.1069,-1.46503 -1.68001,-3.39126 -1.54699,-5.282 0.14675,-2.08609 1.14003,-4.09939 2.67723,-5.49365 1.53712,-1.39417 3.59371,-2.16167 5.63535,-2.15725 1.54202,0.003 3.0461,0.42574 4.49305,0.93176 1.44681,0.50597 2.86744,1.10153 4.36093,1.47468 4.00603,1.00092 8.31485,0.34627 12.44864,-0.98045 0.29908,-0.096 0.59775,-0.1954 0.89616,-0.29786 3.82132,-1.31216 7.3582,-2.88118 10.91953,-3.95753 0.47474,-0.14348 0.95374,-0.27982 1.38485,-0.51389 0.4308,-0.2339 0.81662,-0.57821 0.99871,-1.02989 0.11392,-0.28257 0.14315,-0.59634 0.10422,-0.90108 -0.0389,-0.30481 -0.14443,-0.60048 -0.28996,-0.87537 -0.29152,-0.55062 -0.73426,-1.00894 -1.17126,-1.46399 -3.06956,-3.19625 -6.02366,-6.50468 -9.41382,-9.40228 -1.94864,-1.66553 -4.07363,-3.21007 -6.36613,-4.46114 m 13.653,13.13077 c -2.27211,-2.99541 -4.48416,-5.98509 -6.99641,-8.67593 -3.03221,-3.24778 -6.56359,-6.0816 -10.67204,-7.58899 -1.03145,-0.37844 -2.09122,-0.67042 -3.11757,-1.05469 -1.026,-0.38414 -2.02989,-0.86824 -2.86291,-1.58437 -1.35877,-1.16812 -2.19174,-2.94609 -2.22472,-4.78705 -0.0198,-1.10488 0.24853,-2.22233 0.75837,-3.2311 0.33968,-0.67209 0.78251,-1.2914 1.31476,-1.82173 1.33108,-1.32628 3.20191,-2.07778 5.058,-2.03284 1.85606,0.045 3.67107,0.88474 4.90951,2.26551 0.79071,0.88158 1.34214,1.95537 1.78346,3.06054 0.44126,1.10505 0.7804,2.25157 1.20048,3.37137 1.44518,3.85245 3.83912,7.34161 6.73633,10.33483 1.87229,1.93434 3.95372,3.67009 6.17093,5.25558 1.2136,0.86782 2.44489,1.6743 3.68184,2.43057 0.78052,0.47722 1.59685,0.94523 2.49004,1.01682 0.6348,0.0509 1.27302,-0.10698 1.82987,-0.40259 0.55693,-0.29566 1.03506,-0.72515 1.42969,-1.21751 0.26538,-0.33111 0.49264,-0.68814 0.69439,-1.06159 m -23.7062,-9.6416 c 1.04822,1.53157 2.24926,2.93152 3.55871,4.19377 2.88756,2.78347 6.29022,4.90976 9.90656,6.61748 0.80205,0.37875 1.66297,0.75183 2.59271,0.7251 0.66522,-0.0191 1.33615,-0.24717 1.93127,-0.61451 0.59467,-0.36707 1.11377,-0.86815 1.55369,-1.4337 0.87887,-1.12986 1.43461,-2.49168 2.0011,-3.83914 1.78405,-4.24356 3.81568,-8.63222 5.40875,-13.16656 1.28555,-3.65904 2.05385,-7.11972 2.00974,-10.50904 -0.0243,-1.8708 -0.29259,-3.72784 0.16766,-5.42931 0.41936,-1.55029 1.45483,-2.85434 2.78184,-3.53004 1.32682,-0.67561 2.92637,-0.71097 4.27464,-0.0857 1.34811,0.62521 2.42273,1.90485 2.83324,3.44869 0.4105,1.54379 0.1461,3.32976 -0.77347,4.78127 -0.90908,1.43497 -2.34824,2.45351 -3.66314,3.53439 -0.16727,0.1375 -0.33244,0.27614 -0.49554,0.41583 -3.09728,2.65275 -5.20485,6.07386 -6.64271,9.76076 -0.73841,1.89339 -1.30652,3.86128 -1.77274,5.87464 m 13.97484,-20.92525 c 0.0722,0.15867 0.13818,0.32045 0.19735,0.48494 0.57639,1.60231 0.5001,3.43855 -0.21697,4.95071 -0.70369,1.48395 -1.94684,2.59102 -3.03283,3.75793 -2.78699,2.99465 -4.70088,6.60925 -6.01262,10.39743 -1.31229,3.78977 -2.03964,7.75243 -2.66626,11.78915 -0.22303,1.43678 -0.43277,2.97505 0.0697,4.42148 0.0864,0.24875 0.19332,0.49166 0.31819,0.72715 0.26692,0.50339 0.61176,0.96844 1.00906,1.37866 0.58316,0.6021 1.27675,1.08769 2.01613,1.46433 1.4787,0.75323 3.11353,1.06639 4.71796,1.26681 6.28683,0.78534 12.30315,-0.0311 18.38266,-1.31138 4.17644,-0.8795 8.38479,-1.97781 12.73844,-2.91741 1.98474,-0.42834 3.9509,-0.75683 5.90268,-0.96702 4.22794,-0.45531 8.40485,-0.3506 12.51885,0.18007 m -30.78471,1.52929 c 5.52539,-0.75424 10.78864,-1.52633 15.88184,-1.62943 7.39723,-0.14973 14.47508,1.13579 21.12015,3.79336 2.83785,1.13494 5.85485,2.20673 8.94178,3.27985 8.53949,4.47801 18.36282,7.19759 27.36922,9.95197 0.76093,0.23271 1.51872,0.48811 2.27367,0.76414"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.32543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
transform="matrix(-0.08762699,-0.99615336,-0.99615336,0.08762699,997.6001,980.65134)"
inkscape:transform-center-x="-46.618501"
inkscape:transform-center-y="77.081409" />
<path
transform="matrix(-0.91184805,0.41052786,0.41052786,0.91184805,776.29848,-174.99868)"
inkscape:original-d="m 445.21846,527.31659 c -38.7829,-37.09295 -19.38995,-18.01722 -39.21846,-30.31659 -7.87487,3.97662 -15.85539,0.34873 -26.15987,-3.99363 -6.97163,-2.93788 -16.61326,-6.13091 -23.845,-6.3119 -1.83735,-0.046 -6.59983,0.1186 -8.24513,0.55553 -5.70574,1.51524 0.9489,-2.14372 -1.6647,3.41324 -2.41256,5.12953 -7.8077,21.01295 -5.22018,25.80886 2.73227,5.06417 1.85496,1.63087 1.58683,7.37884 -0.25092,5.37931 -9.57395,-0.50877 -14.92557,0.0914 -7.02703,0.788 4.46199,-5.00837 5.50926,-10.28718 2.34629,-11.82661 -0.39471,-22.48743 3.84672,-25.13511 8.54859,-5.33641 6.79429,2.76138 -1.07411,-3.53496 -1.88306,-1.50683 -2.61656,-0.17716 -4.76452,-1.00488 -7.05998,-2.72058 -18.75265,0.69474 -24.92369,5.67018 -6.59477,5.31707 -1.63762,4.02851 -7.53249,4.1967 -5.08604,0.14511 1.46221,-9.69208 0.3033,-14.64645 -1.66512,-7.11842 1.91789,5.19646 8.73224,2.54899 4.63034,-1.79895 17.04425,-0.57912 23.64773,-4.56026 7.22744,-4.35732 -5.524,1.16957 2.44669,-1.60355 1.53607,-0.53442 -0.96152,-1.43031 -1.22512,-3.36875 -1.04155,-7.65949 -11.04289,-12.78997 -19.49239,-17.71707 -4.6431,-2.7075 -2.86257,1.64436 -6.11612,-2.63388 -5.24619,-6.89845 1.21106,-6.26172 9.25,-9.5 7.75445,-3.12368 3.18321,-2.07569 2.92678,6.28033 -0.11967,3.89973 17.65438,13.48749 16.18934,17.10355 -1.26659,3.12625 0.40591,7.76088 2.46807,0.96799 0.44573,-1.46828 4.54189,-3.01354 5.0341,-4.99969 1.36506,-5.50812 11.48628,-19.18701 5.99727,-20.70349 -3.71514,-1.02639 -0.62746,-5.17781 0.33058,-5.29639 0.40318,-0.0499 14.69346,2.66325 11.03563,4.25131 -1.33981,0.58168 -4.3203,3.07431 -3.08694,3.63123 9.95501,4.49511 -9.9647,14.92001 -9.98182,22.0672 -0.004,1.82415 -0.84597,3.82754 -0.29689,4.33184 3.41944,3.14054 2.94693,3.84165 7.5,4.75 13.87096,2.76729 22.59706,-1.07738 36.75739,-2.68494 10.87689,-1.2348 21.86248,-1.00217 32.99261,4.93494 8.58374,17.17775 43.79558,25.76812 43.79558,25.76812"
inkscape:path-effect="#path-effect6766;#path-effect5585-05"
sodipodi:nodetypes="ccsscsssssssssssssssssssssssssssssscc"
inkscape:connector-curvature="0"
id="path6764"
d="m 440.88046,525.20374 c -9.7109,-8.72396 -21.26322,-16.23563 -32.29401,-24.38073 -0.89059,-0.65761 -1.77724,-1.31785 -2.66076,-1.98075 -9.08314,-0.84882 -17.90552,-2.42427 -26.85991,-4.73488 -3.43099,-0.88535 -6.8801,-1.87819 -10.37733,-2.95847 -0.002,-5.9e-4 -0.77968,-0.2405 -0.78157,-0.24108 m 18.0619,4.24041 c -2.95825,-0.55585 -5.82848,-1.17394 -8.6309,-1.8626 -8.13234,-1.99844 -15.68395,-4.58793 -23.26453,-7.6767 -1.34431,-0.54775 -2.69584,-1.10996 -4.1095,-1.29218 -0.70479,-0.0908 -1.41512,-0.0837 -2.08596,0.0649 -0.0351,0.008 -0.0702,0.016 -0.10509,0.0245 -0.63082,0.15505 -1.21799,0.45151 -1.68027,0.88784 -0.85726,0.80912 -1.21607,2.0056 -1.58392,3.16631 -1.28215,4.04572 -3.02011,8.26054 -4.17366,12.80227 -1.09366,4.30588 -1.64881,8.9973 -0.73069,13.48279 m 3.09441,-13.58946 c -0.35422,0.88736 -0.68651,1.77662 -0.98878,2.671 -1.45301,4.29918 -2.19623,8.80533 -1.26582,13.03448 0.52641,2.39281 1.58861,4.71241 1.44598,7.13963 -0.11004,1.87248 -0.9753,3.70343 -2.40954,4.99166 -1.4342,1.28818 -3.4264,2.01609 -5.46702,1.94147 -1.54831,-0.0566 -3.11103,-0.5781 -4.44327,-1.47445 -0.4238,-0.28514 -0.81892,-0.60652 -1.17752,-0.9614 -1.48577,-1.4704 -2.32116,-3.50057 -2.25515,-5.5124 0.067,-2.04302 1.01583,-3.95863 2.22577,-5.65241 1.2086,-1.69191 2.68725,-3.22018 3.969,-4.91254 2.79106,-3.68519 4.5842,-8.07847 5.72669,-12.52758 0.2374,-0.9245 0.44867,-1.85437 0.63906,-2.78919 m -6.9525,19.12602 c 0.18872,-0.27146 0.3741,-0.54794 0.55355,-0.8312 2.21174,-3.49115 3.44733,-7.90908 4.11652,-12.52699 0.6675,-4.60622 0.80661,-9.47891 1.02176,-14.4405 0.0315,-0.72646 0.0641,-1.45345 -0.008,-2.16901 -0.072,-0.71677 -0.25341,-1.41327 -0.60416,-1.98189 -0.46493,-0.75371 -1.19588,-1.22922 -1.91055,-1.49257 -0.71523,-0.26356 -1.45406,-0.34661 -2.16752,-0.438 -1.15526,-0.14797 -2.30553,-0.32559 -3.45177,-0.50858 -2.50807,-0.40039 -5.29482,-0.49108 -8.26335,-0.12724 -4.32715,0.53037 -9.08024,2.05833 -13.42892,4.84343 -1.46582,0.93878 -2.87596,2.01347 -4.40175,2.95566 -1.52818,0.94367 -3.19537,1.7585 -4.97702,2.09692 -2.47242,0.46963 -5.07095,-0.0462 -7.03408,-1.28723 -1.06174,-0.6712 -1.9337,-1.54668 -2.57503,-2.51984 -0.54425,-0.82583 -0.88827,-1.71826 -1.01436,-2.61277 -0.27468,-1.94869 0.47466,-3.87625 1.90054,-5.21908 1.42642,-1.34334 3.50625,-2.0958 5.66278,-2.09803 0.19446,-2e-4 0.38907,0.005 0.58378,0.0162 m 5.72003,14.46029 c -0.70775,0.32687 -1.45566,0.57212 -2.24022,0.67817 -1.96968,0.26624 -4.07278,-0.41147 -5.56818,-1.74616 -1.4953,-1.33461 -2.36537,-3.29181 -2.38242,-5.19659 -0.0171,-1.90512 0.80629,-3.72979 2.16196,-4.92082 1.35633,-1.19161 3.22045,-1.74201 5.05508,-1.50086 1.39146,0.18291 2.72006,0.79241 3.99607,1.50484 1.27209,0.71025 2.50548,1.52323 3.80178,2.13081 1.17369,0.5501 2.37683,0.9228 3.58224,1.16023 2.3614,0.46512 4.94377,0.22337 7.55473,-0.38196 3.94241,-0.914 8.04508,-2.62946 12.49271,-3.97207 0.55039,-0.16614 1.10898,-0.32793 1.62456,-0.59017 0.51719,-0.26307 0.9897,-0.63675 1.26504,-1.12178 0.17183,-0.30268 0.26111,-0.63883 0.28344,-0.96534 0.0223,-0.32639 -0.0206,-0.64617 -0.10175,-0.94405 -0.16158,-0.59297 -0.47475,-1.11001 -0.77007,-1.61202 -1.98839,-3.38003 -3.6436,-6.92367 -5.6836,-9.94339 -0.10958,-0.16222 -0.22182,-0.32381 -0.33677,-0.48472 -0.74419,-1.04172 -1.60639,-2.05527 -2.58529,-3.00917 m 10.66426,12.66555 c 0.002,-0.004 0.003,-0.007 0.005,-0.0108 0.11407,-0.27114 0.1449,-0.57485 0.1089,-0.87044 -0.036,-0.29572 -0.13725,-0.58341 -0.27718,-0.85129 -0.28027,-0.53656 -0.70689,-0.98537 -1.12238,-1.43398 -2.92348,-3.15647 -5.47677,-6.59213 -8.35811,-9.62811 -2.8797,-3.03424 -6.15576,-5.69811 -9.97279,-6.91816 -0.95812,-0.30625 -1.94235,-0.51876 -2.89207,-0.81383 -0.94996,-0.29515 -1.87445,-0.67922 -2.63093,-1.28517 -0.59762,-0.47869 -1.07162,-1.0933 -1.39116,-1.78002 -0.33929,-0.72916 -0.52006,-1.56009 -0.50345,-2.41522 0.0323,-1.66062 0.80819,-3.38627 2.11942,-4.59838 1.31121,-1.21208 3.13779,-1.89211 4.93135,-1.80494 1.79348,0.0872 3.52757,0.93983 4.6724,2.31756 0.73168,0.88054 1.21718,1.94414 1.59024,3.0387 0.37273,1.09359 0.63971,2.22564 0.98553,3.33144 1.04645,3.34616 2.81036,6.41905 5.02474,9.21752 m -8.67543,-15.38648 c 0.0117,0.0125 0.0233,0.0251 0.0348,0.0377 0.84773,0.92482 1.44058,2.02213 1.90666,3.13084 0.46615,1.10886 0.81418,2.24021 1.2277,3.32779 1.4229,3.7423 3.61193,6.91877 6.14321,9.47544 2.53289,2.55829 5.40375,4.51532 8.36945,6.13355 0.65711,0.35855 1.36461,0.71649 2.14251,0.67844 0.55537,-0.0272 1.11284,-0.26088 1.59275,-0.63174 0.4802,-0.37109 0.88092,-0.87212 1.20168,-1.43691 0.391,-0.68847 0.65765,-1.45332 0.878,-2.25109 0.14105,-0.51065 0.26743,-1.02895 0.3992,-1.53899 1.92245,-7.44119 5.37707,-14.23753 5.58364,-21.55179 0.0506,-1.79317 -0.0896,-3.65074 0.5215,-5.37235 0.55962,-1.57646 1.75878,-2.94472 3.25642,-3.71803 0.44576,-0.23017 0.91628,-0.40655 1.39727,-0.52851 m -6.72567,13.52983 c 0.39866,-1.63957 0.65079,-3.27729 0.71013,-4.91692 0.0615,-1.69966 -0.0815,-3.44005 0.52987,-5.00033 0.55993,-1.42896 1.76243,-2.61577 3.27933,-3.16312 1.51684,-0.54734 3.32932,-0.44402 4.91003,0.34466 1.58086,0.78875 2.90711,2.25621 3.58587,4.02681 0.67883,1.77078 0.69833,3.82149 0.0758,5.59147 -0.60434,1.71817 -1.77076,3.15268 -2.75355,4.63961 -1.06922,1.61768 -1.9808,3.38719 -2.74864,5.27635 -1.05702,2.60065 -1.96221,5.09785 -2.73501,7.42723 -1.33487,4.02352 -2.3065,7.59904 -3.25016,10.83476 -0.33646,1.15371 -0.67424,2.343 -0.29469,3.42496 0.20327,0.57942 0.60702,1.08853 1.13269,1.47934 0.52638,0.39134 1.16857,0.6636 1.86733,0.82866 0.57032,0.13472 1.17019,0.19767 1.79112,0.21038 m -5.52736,-10.28102 c -0.35063,1.25567 -0.67114,2.50703 -0.97594,3.75015 -0.35428,1.44495 -0.68754,2.95082 -0.29687,4.36497 0.20974,0.75922 0.62397,1.45531 1.16144,2.03552 0.53749,0.58023 1.1957,1.04643 1.90876,1.40601 1.42679,0.71949 3.04523,1.00803 4.66415,1.19384 6.34617,0.72839 12.85628,9e-4 19.45577,-1.04346 1.36242,-0.2156 2.72798,-0.44457 4.09607,-0.67679 5.25794,-0.89247 10.1313,-1.7074 14.79432,-2.01113 7.98231,-0.51993 15.39767,0.48252 22.63033,2.55282 2.44739,0.70055 4.99459,1.5289 7.5856,2.4815 1.11554,0.65093 2.25251,1.29745 3.40679,1.93944 m -20.8112,-6.44207 c 6.9541,0.8315 14.1246,2.51441 21.09033,5.17273 5.49095,3.21119 11.08434,6.46027 16.67984,9.84833 7.03784,4.2614 13.60624,7.71264 20.12269,10.7125 m -22.74356,22.10513 c -10.44798,-7.69117 -20.68634,-15.26519 -30.52159,-21.42838 -0.31179,-0.19538 -0.62637,-0.39555 -0.9437,-0.60033 -8.46256,0.31531 -18.07866,-1.94071 -28.19272,-5.03547 -4.62258,-1.41444 -9.34348,-3.00212 -14.12121,-4.56549 0.0764,0.025 -2.97412,-0.97549 -2.8977,-0.95048 m 20.33627,4.38774 c -1.76378,-0.40702 -3.5258,-0.82989 -5.28016,-1.27195 -7.66188,-1.93065 -15.16825,-4.22438 -22.14105,-6.86339 -1.23417,-0.46709 -2.4652,-0.94666 -3.72935,-1.03983 -0.63022,-0.0464 -1.26217,0.006 -1.8462,0.20115 -0.58404,0.19492 -1.11962,0.53549 -1.50908,1.01934 -0.142,0.17642 -0.26227,0.36798 -0.36486,0.57099 -0.39395,0.77953 -0.55801,1.73452 -0.75756,2.67799 -0.87439,4.13407 -2.66382,8.43628 -4.12108,13.15008 -1.46262,4.73112 -2.5687,9.93199 -2.02701,15.07379 0.30445,2.88991 1.13738,5.83811 0.82601,8.85732 -0.10362,1.00476 -0.33887,2.00656 -0.68918,2.9662 -0.47012,1.28785 -1.14615,2.44923 -1.99355,3.39554 -1.47885,1.65147 -3.4676,2.62825 -5.45919,2.71515 -0.40312,0.0176 -0.80541,-0.002 -1.20218,-0.0554 m 6.10963,-23.99373 c -0.008,1.20546 0.1116,2.42519 0.38454,3.6425 0.53095,2.36797 1.63755,4.73863 1.58839,7.29313 -0.0379,1.96859 -0.8022,3.93394 -2.10376,5.38686 -1.3016,1.45296 -3.12863,2.3744 -4.96991,2.51365 -1.84105,0.13924 -3.67255,-0.5097 -4.92952,-1.74985 -1.25697,-1.24014 -1.91719,-3.05714 -1.72555,-4.87357 0.16503,-1.56426 0.92153,-3.04278 1.90368,-4.39266 0.17826,-0.24499 0.36232,-0.4856 0.54987,-0.72138 1.21883,-1.53224 2.60225,-2.9211 3.70174,-4.47863 2.40091,-3.40114 3.3709,-7.50201 3.47946,-11.54612 0.10875,-4.05119 -0.60919,-8.05911 -1.38764,-11.9182 -0.11288,-0.55957 -0.22888,-1.12482 -0.4499,-1.6618 -0.2208,-0.53646 -0.55849,-1.05976 -1.06074,-1.43752 -0.67723,-0.50937 -1.60225,-0.71379 -2.53901,-0.70491 -0.29513,0.003 -0.59098,0.0251 -0.8877,0.0609 -0.64122,0.0774 -1.27721,0.20385 -1.90647,0.31702 -0.79906,0.14372 -1.59004,0.26587 -2.37332,0.371 m 10.24186,14.07161 c 0.0318,-3.35388 -0.18473,-6.70597 -0.36209,-10.02749 -0.0337,-0.63076 -0.0664,-1.26411 -0.20371,-1.87762 -0.13728,-0.61354 -0.38563,-1.21082 -0.80128,-1.67106 -0.55593,-0.61557 -1.36773,-0.93648 -2.1754,-1.04853 -0.80825,-0.11212 -1.62578,-0.0348 -2.43277,0.0355 -4.13438,0.36001 -8.22808,0.53348 -12.21757,1.23751 -2.50161,0.44146 -4.98,1.10397 -7.28969,2.11712 -1.37381,0.60262 -2.71043,1.31381 -3.9743,2.1621 -1.14167,0.76628 -2.2135,1.63703 -3.39121,2.35424 -1.17569,0.71598 -2.48966,1.28735 -3.90789,1.36927 -1.97042,0.11382 -4.05327,-0.77741 -5.50409,-2.38851 -1.45046,-1.61071 -2.25017,-3.90436 -2.16587,-6.20796 0.0843,-2.30361 1.03949,-4.58696 2.56423,-6.29833 0.51218,-0.57488 1.0861,-1.0842 1.70109,-1.52225 m -0.69527,15.82109 c -0.58966,-0.34368 -1.13674,-0.77896 -1.60978,-1.29393 -1.36355,-1.48446 -2.0956,-3.59546 -1.96442,-5.66745 0.13114,-2.07159 1.11233,-4.07379 2.64092,-5.4603 1.52851,-1.38645 3.57997,-2.14957 5.61999,-2.14416 1.54074,0.004 3.04567,0.42533 4.49535,0.92823 1.44945,0.50283 2.87509,1.09342 4.37521,1.45958 3.44103,0.83991 7.11466,0.45977 10.72353,-0.52814 0.61009,-0.16701 1.21221,-0.34528 1.80456,-0.53172 4.09387,-1.28855 7.84238,-2.95761 11.63295,-4.06841 0.46876,-0.13736 0.94176,-0.26771 1.36735,-0.49614 0.42509,-0.22817 0.80555,-0.56697 0.98245,-1.01345 0.11067,-0.27931 0.13671,-0.58983 0.0947,-0.89146 -0.042,-0.30172 -0.15054,-0.59429 -0.29902,-0.86625 -0.29754,-0.54495 -0.74549,-0.99729 -1.18792,-1.44729 -3.10555,-3.15865 -6.08222,-6.4487 -9.47621,-9.3425 -1.27426,-1.08646 -2.62081,-2.12314 -4.0369,-3.06229 m 13.22071,13.5926 c -0.0779,-0.10063 -0.15663,-0.20038 -0.23502,-0.29988 -2.80374,-3.55859 -5.40568,-7.21027 -8.43978,-10.43902 -3.03323,-3.22783 -6.55987,-6.05387 -10.65746,-7.56533 -1.02872,-0.37946 -2.08539,-0.67321 -3.10826,-1.06002 -1.02244,-0.38663 -2.02264,-0.87411 -2.85136,-1.59423 -1.35188,-1.1747 -2.17697,-2.96124 -2.20106,-4.8128 -0.003,-0.20797 0.005,-0.41641 0.0219,-0.62453 0.13591,-1.64472 0.86431,-3.24745 2.03486,-4.41248 1.3187,-1.31249 3.17912,-2.05121 5.02674,-1.99444 1.84759,0.0568 3.65609,0.90738 4.88998,2.298 0.78786,0.88793 1.33708,1.96743 1.77713,3.0782 0.43995,1.11054 0.77857,2.26214 1.19893,3.38662 1.44616,3.86856 3.85047,7.36903 6.76759,10.36889 1.23815,1.27326 2.56808,2.45988 3.96902,3.57361 1.89977,1.51028 3.86947,2.84345 5.85669,4.04723 0.7702,0.46656 1.57767,0.92501 2.46158,0.98727 0.62839,0.0443 1.26025,-0.11993 1.8111,-0.42165 0.14928,-0.0818 0.29281,-0.17335 0.43046,-0.27333 m -23.42086,-13.89125 c 1.33973,2.41654 3.06783,4.55217 5.03637,6.38533 2.91476,2.7143 6.34307,4.77688 9.98647,6.42811 0.80733,0.36589 1.67558,0.72676 2.61045,0.68813 0.66947,-0.0277 1.34446,-0.26403 1.94386,-0.63964 0.59888,-0.37529 1.12213,-0.88437 1.56627,-1.45785 0.8872,-1.14558 1.4513,-2.52249 2.02621,-3.88456 1.41064,-3.34211 2.96981,-6.7643 4.35583,-10.27286 1.82801,-4.62743 2.97053,-8.91324 2.81859,-13.12617 -0.0659,-1.82796 -0.37127,-3.64435 0.0577,-5.32095 0.39017,-1.52515 1.40043,-2.81124 2.70614,-3.47613 1.30552,-0.6648 2.8877,-0.69653 4.22256,-0.0748 1.33467,0.62168 2.3998,1.89064 2.80475,3.41665 0.40493,1.52592 0.13892,3.28692 -0.77834,4.70626 -0.51866,0.80256 -1.21178,1.46959 -1.95939,2.09018 -0.55331,0.4593 -1.12584,0.90292 -1.66372,1.36546 -3.23408,2.78104 -5.38024,6.43036 -6.81479,10.36288 -0.38817,1.06408 -0.72611,2.15018 -1.02544,3.25325 m 11.49773,-20.4116 c 0.81788,0.70641 1.47419,1.62455 1.85945,2.65184 0.59302,1.58132 0.53264,3.39897 -0.16921,4.89493 -0.6887,1.46795 -1.91787,2.56177 -2.98995,3.71703 -2.75233,2.96589 -4.63554,6.56623 -5.92136,10.35587 -1.2864,3.79138 -1.99212,7.76981 -2.60171,11.83847 -0.12197,0.81405 -0.23888,1.65789 -0.2297,2.49729 0.007,0.65904 0.0863,1.31284 0.29941,1.94666 0.26042,0.77455 0.71471,1.48331 1.28333,2.0746 0.56846,0.59112 1.24817,1.06599 1.97445,1.43219 1.45297,0.73257 3.0643,1.02577 4.6493,1.20759 6.21183,0.71258 12.19822,-0.1588 18.30206,-1.47793 3.31703,-0.71686 6.66895,-1.56559 10.11222,-2.35917 2.89271,-0.66669 5.74534,-1.15165 8.57192,-1.39754 3.30708,-0.28769 6.58777,-0.2447 9.83623,0.0635 m -30.7695,2.09042 c 0.003,-4.1e-4 0.3848,-0.0482 0.38812,-0.0486 6.28591,-0.79159 12.22811,-1.73291 17.97074,-1.80552 6.48466,-0.082 12.73829,0.96386 18.68186,3.0935 3.61965,1.29697 7.53749,2.49463 11.53261,3.72363 7.84914,4.0152 16.60695,6.70543 24.68743,9.42451 0.74976,0.2523 1.49637,0.52728 2.24016,0.82289 m -13.84496,-9.02143 c 12.22107,6.876 22.77674,14.46473 33.96788,23.25965"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.32543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:transform-center-x="-59.852797"
inkscape:transform-center-y="-45.330776" />
<path
transform="rotate(-156.91206,486.09039,532.94753)"
inkscape:original-d="m 403.07283,540.79636 c 9.04489,-52.89792 22.75568,-31.49699 2.92717,-43.79636 -7.87487,3.97662 -15.85539,0.34873 -26.15987,-3.99363 -6.97163,-2.93788 -16.61326,-6.13091 -23.845,-6.3119 -1.83735,-0.046 -6.59983,0.1186 -8.24513,0.55553 -5.70574,1.51524 0.9489,-2.14372 -1.6647,3.41324 -2.41256,5.12953 -7.8077,21.01295 -5.22018,25.80886 2.73227,5.06417 1.85496,1.63087 1.58683,7.37884 -0.25092,5.37931 -9.57395,-0.50877 -14.92557,0.0914 -7.02703,0.788 4.46199,-5.00837 5.50926,-10.28718 2.34629,-11.82661 -0.39471,-22.48743 3.84672,-25.13511 8.54859,-5.33641 6.79429,2.76138 -1.07411,-3.53496 -1.88306,-1.50683 -2.61656,-0.17716 -4.76452,-1.00488 -7.05998,-2.72058 -18.75265,0.69474 -24.92369,5.67018 -6.59477,5.31707 -1.63762,4.02851 -7.53249,4.1967 -5.08604,0.14511 1.46221,-9.69208 0.3033,-14.64645 -1.66512,-7.11842 1.91789,5.19646 8.73224,2.54899 4.63034,-1.79895 17.04425,-0.57912 23.64773,-4.56026 7.22744,-4.35732 -5.524,1.16957 2.44669,-1.60355 1.53607,-0.53442 -0.96152,-1.43031 -1.22512,-3.36875 -1.04155,-7.65949 -11.04289,-12.78997 -19.49239,-17.71707 -4.6431,-2.7075 -2.86257,1.64436 -6.11612,-2.63388 -5.24619,-6.89845 1.21106,-6.26172 9.25,-9.5 7.75445,-3.12368 3.18321,-2.07569 2.92678,6.28033 -0.11967,3.89973 17.65438,13.48749 16.18934,17.10355 -1.26659,3.12625 0.40591,7.76088 2.46807,0.96799 0.44573,-1.46828 4.54189,-3.01354 5.0341,-4.99969 1.36506,-5.50812 11.48628,-19.18701 5.99727,-20.70349 -3.71514,-1.02639 -0.62746,-5.17781 0.33058,-5.29639 0.40318,-0.0499 14.69346,2.66325 11.03563,4.25131 -1.33981,0.58168 -4.3203,3.07431 -3.08694,3.63123 9.95501,4.49511 -9.9647,14.92001 -9.98182,22.0672 -0.004,1.82415 -0.84597,3.82754 -0.29689,4.33184 3.41944,3.14054 2.94693,3.84165 7.5,4.75 13.87096,2.76729 22.59706,-1.07738 36.75739,-2.68494 10.87689,-1.2348 21.86248,-1.00217 32.99261,4.93494 3.74762,7.49972 11.03383,21.89832 12.40102,37.71911 1.7643,20.41598 1.53574,13.49779 1.53574,13.49779"
inkscape:path-effect="#path-effect6770;#path-effect5585-05"
sodipodi:nodetypes="ccsscsssssssssssssssssssssssssssssscsc"
inkscape:connector-curvature="0"
id="path6768"
d="m 404.33112,536.16423 c 1.57511,-12.99574 1.52926,-24.92432 1.81403,-37.31015 -0.85269,-0.0704 -1.70353,-0.14752 -2.55191,-0.23174 -8.28329,-0.82238 -16.30093,-2.23999 -24.34609,-4.2592 -5.29952,-1.3301 -10.60763,-2.92013 -16.03825,-4.694 -0.001,-3.7e-4 -0.77701,-0.2533 -0.77816,-0.25367 m 17.96121,4.67776 c -0.97902,-0.20946 -1.94814,-0.42577 -2.9081,-0.64925 -8.3773,-1.95023 -16.04858,-4.44308 -23.62186,-7.38613 -1.34214,-0.52156 -2.6903,-1.05719 -4.09395,-1.21043 -0.70008,-0.0764 -1.40515,-0.0545 -2.06932,0.10924 -0.6639,0.16367 -1.28385,0.47185 -1.76484,0.92345 -0.79613,0.74749 -1.15035,1.8053 -1.48897,2.82041 -0.0232,0.0695 -0.0392,0.11773 -0.0624,0.18724 -1.25164,3.75104 -2.97527,7.74335 -4.1307,12.13472 -1.15543,4.39138 -1.72833,9.28263 -0.62057,13.98341 0.41143,1.74592 1.05359,3.47187 1.44387,5.21894 m 0.0975,-13.60536 c -0.94432,3.47098 -1.29704,7.00032 -0.59778,10.35311 0.50468,2.41981 1.55836,4.76737 1.42028,7.21691 -0.10657,1.89078 -0.96062,3.73871 -2.37593,5.0428 -1.41525,1.30403 -3.38072,2.04653 -5.38694,1.98531 -2.00638,-0.0612 -4.0302,-0.9313 -5.51023,-2.40425 -1.08143,-1.07626 -1.8604,-2.46641 -2.23866,-3.94151 -0.13942,-0.5437 -0.21776,-1.09681 -0.23018,-1.64815 -0.0468,-2.07534 0.79856,-4.02573 1.90934,-5.73766 1.11146,-1.71297 2.50132,-3.25495 3.70263,-4.95365 2.61722,-3.70087 4.27219,-8.06947 5.31923,-12.4639 0.67647,-2.83915 1.11872,-5.7243 1.48086,-8.63838 m -4.23034,19.81951 c 0.88495,-2.46918 1.43914,-5.22541 1.77042,-8.07081 0.51535,-4.42643 0.52603,-9.13421 0.63922,-13.96158 0.0166,-0.70615 0.0349,-1.41446 -0.0508,-2.11077 -0.0858,-0.69731 -0.28065,-1.37626 -0.644,-1.92659 -0.48235,-0.73056 -1.22833,-1.18167 -1.95882,-1.42317 -0.73092,-0.24165 -1.4827,-0.30273 -2.21003,-0.37382 -2.82149,-0.2758 -5.60583,-0.73574 -8.3387,-1.04147 -0.89943,-0.10062 -1.83267,-0.14124 -2.79484,-0.11516 -3.88895,0.10538 -8.2888,1.33099 -12.3831,3.94314 -1.37879,0.87966 -2.71216,1.90939 -4.17143,2.82077 -1.46146,0.91274 -3.07214,1.71094 -4.80824,2.04693 -2.40869,0.46616 -4.96318,-0.026 -6.90188,-1.2161 -1.93758,-1.18938 -3.24507,-3.04578 -3.67416,-4.9152 -0.20616,-0.8982 -0.21224,-1.79544 -0.0518,-2.62978 0.17369,-0.90323 0.58729,-1.72885 1.19315,-2.39918 1.16578,-1.28985 3.01799,-1.99486 4.97839,-1.95591 1.48115,0.0294 2.99453,0.46194 4.50403,0.9685 0.54516,0.18295 1.09352,0.37621 1.64902,0.56546 m -5.22246,13.21531 c -0.83962,-0.33357 -1.6238,-0.8321 -2.28127,-1.468 -1.43599,-1.38888 -2.25012,-3.39804 -2.21479,-5.35385 0.0353,-1.95588 0.9073,-3.82946 2.30839,-5.06801 1.40152,-1.23891 3.30747,-1.83507 5.18031,-1.63796 1.41936,0.14939 2.77656,0.72735 4.07666,1.40791 1.29693,0.67889 2.55314,1.46149 3.87024,2.03964 2.81877,1.23731 5.80179,1.49351 8.61109,1.30477 0.70131,-0.0471 1.41278,-0.13971 2.12959,-0.26854 3.59882,-0.64679 7.42306,-2.17394 11.65745,-3.40715 0.52397,-0.1526 1.05714,-0.30203 1.54845,-0.55322 0.49234,-0.25171 0.94203,-0.61579 1.19494,-1.09206 0.1579,-0.29735 0.23348,-0.62832 0.2426,-0.95043 0.009,-0.32201 -0.0466,-0.63752 -0.14023,-0.93197 -0.18655,-0.58663 -0.52266,-1.09694 -0.84005,-1.59634 -2.24855,-3.53809 -4.05017,-7.35157 -6.24358,-10.63601 -0.81931,-1.22683 -1.69863,-2.38151 -2.65975,-3.40572 -0.9837,-1.04825 -2.13898,-2.008 -3.45366,-2.82437 m 12.90988,11.05435 c -2.54101,-2.70627 -4.86803,-5.57819 -7.42434,-8.18459 -2.97306,-3.0313 -6.32519,-5.7323 -10.19945,-7.02961 -0.97267,-0.3257 -1.97033,-0.5602 -2.93238,-0.87981 -0.96204,-0.31961 -1.89892,-0.7316 -2.66454,-1.36639 -1.24862,-1.03526 -1.96876,-2.65501 -1.8908,-4.30129 0.0409,-0.86361 0.30104,-1.72651 0.7491,-2.50693 0.40613,-0.70738 0.95367,-1.3641 1.61962,-1.90679 1.40068,-1.14145 3.30626,-1.76274 5.16888,-1.62854 1.86248,0.1342 3.65521,1.02197 4.84863,2.42314 0.76241,0.89514 1.27509,1.96947 1.67073,3.06907 0.39539,1.0989 0.68087,2.23143 1.04101,3.3329 1.23846,3.78779 3.3541,7.16596 5.95669,10.13338 0.91903,1.04786 1.899,2.04772 2.93026,3.01361 m -10.32671,-14.19761 c 0.17299,0.44911 0.34483,0.89533 0.52601,1.3345 1.61283,3.90953 3.95993,7.22507 6.62002,9.89555 2.66072,2.67111 5.62879,4.71426 8.66072,6.39146 0.67239,0.37195 1.39236,0.74146 2.18214,0.71383 0.56358,-0.0197 1.12873,-0.24676 1.61533,-0.61149 0.48689,-0.36495 0.89368,-0.86074 1.21959,-1.42072 0.65478,-1.12504 0.96528,-2.45332 1.28482,-3.78067 0.34685,-1.44084 0.71025,-2.88828 1.06621,-4.34198 1.50445,-6.14393 3.56404,-11.84236 3.63947,-17.78736 0.0229,-1.8011 -0.13243,-3.65162 0.47783,-5.35761 0.55847,-1.56118 1.76756,-2.90433 3.28623,-3.64264 1.51874,-0.73833 3.32749,-0.85968 4.88677,-0.3395 0.7223,0.24095 1.38617,0.61839 1.95096,1.09377 m -11.52446,6.44668 c 0.0432,-1.56356 0.004,-3.14314 0.55786,-4.5814 0.57018,-1.48149 1.7785,-2.72178 3.29689,-3.32389 1.51835,-0.60209 3.32787,-0.55456 4.90134,0.17715 1.57359,0.73176 2.8882,2.14116 3.55095,3.85255 0.66286,1.71168 0.66192,3.702 0.0146,5.41045 -0.62998,1.66265 -1.82186,3.027 -2.83933,4.45498 -2.32099,3.2574 -3.96229,7.17456 -5.06233,11.43952 -0.14607,0.56633 -0.28747,1.12479 -0.4243,1.67445 -1.16552,4.68233 -2.02225,8.7707 -2.90832,12.38264 -0.31613,1.28867 -0.63888,2.59511 -0.25369,3.77232 0.20668,0.63164 0.61204,1.18818 1.13701,1.62091 0.52553,0.43319 1.16554,0.74232 1.85932,0.93887 1.39565,0.3954 2.94478,0.32928 4.51571,0.14825 0.9579,-0.11039 1.91879,-0.2599 2.88394,-0.44111 m -12.41669,-5.63231 c -0.13871,0.85687 -0.17109,1.7106 0.033,2.53467 0.19171,0.77402 0.5886,1.48476 1.109,2.07866 0.52042,0.59393 1.16239,1.07351 1.85936,1.44564 1.39418,0.7444 2.98441,1.05629 4.57446,1.26256 6.23487,0.8088 12.67259,0.12524 19.22189,-0.90984 3.35161,-0.5297 6.73193,-1.1512 10.1254,-1.70956 3.23748,-0.53268 6.33042,-0.96099 9.31894,-1.18414 10.1963,-0.76134 19.26925,0.89908 27.92698,4.1436 0.79336,0.29732 1.59655,0.60855 2.40752,0.93356 1.22134,2.84627 2.49706,5.72258 3.76475,8.61723 m -15.80092,-12.47763 c 5.07103,0.98391 10.22217,2.42342 15.28554,4.36794 3.82161,7.26443 7.2117,14.87498 9.90265,22.93045 1.77584,5.31607 3.02414,10.33994 3.86826,15.15109 0.22249,1.2681 0.41705,2.52138 0.58607,3.76125 m -34.9973,11.12511 c 0.8374,-11.39819 1.84053,-22.70374 3.14544,-33.00712 -1.4007,0.0525 -2.79535,0.10542 -4.18338,0.16053 -6.94031,0.27553 -14.69341,-1.29044 -22.8799,-3.69525 -6.59626,-1.93768 -13.46379,-4.4164 -20.45847,-6.80545 0.13565,0.0463 -3.02304,-1.03367 -2.88739,-0.98734 m 20.23466,4.80649 c -7.65156,-1.99002 -15.24773,-4.27651 -22.41242,-6.84193 -1.26881,-0.45432 -2.53969,-0.91965 -3.84443,-0.99606 -0.65097,-0.0381 -1.30446,0.0234 -1.91082,0.22767 -0.60636,0.20428 -1.16504,0.55471 -1.57841,1.04895 -0.73281,0.87617 -0.93812,2.08494 -1.14345,3.2441 -0.1402,0.79148 -0.29023,1.57506 -0.44163,2.35163 -0.61848,3.17232 -1.73373,6.49603 -2.70447,10.11931 -1.21087,4.51961 -2.17314,9.55628 -1.59007,14.56061 0.32797,2.81483 1.15084,5.6929 0.79619,8.66155 -0.27621,2.31205 -1.29455,4.61484 -2.84052,6.40089 -0.61667,0.71242 -1.31568,1.33979 -2.06256,1.86602 -1.12589,0.79325 -2.3587,1.30141 -3.59011,1.47908 -2.04828,0.29554 -4.06628,-0.33113 -5.49452,-1.64748 -0.24914,-0.22962 -0.47964,-0.4798 -0.69016,-0.74725 m 11.85267,-15.62022 c 0.48039,1.73307 1.06504,3.5065 0.97846,5.39068 -0.0874,1.90134 -0.89647,3.808 -2.23808,5.21016 -1.34166,1.40221 -3.20414,2.28128 -5.07607,2.38625 -1.87175,0.10497 -3.72922,-0.56999 -5.00751,-1.82796 -1.27828,-1.25798 -1.9551,-3.08459 -1.77539,-4.90242 0.18307,-1.85186 1.19807,-3.57252 2.43599,-5.09274 0.99081,-1.21675 2.128,-2.33525 3.17191,-3.52567 0.25687,-0.29292 0.5057,-0.59025 0.74316,-0.89451 2.62562,-3.36409 3.77681,-7.46761 4.02183,-11.54597 0.24546,-4.08583 -0.38062,-8.17056 -1.11047,-12.13775 -0.10593,-0.57578 -0.21568,-1.15743 -0.43166,-1.71212 -0.21581,-0.5543 -0.54894,-1.09554 -1.04812,-1.49249 -0.67221,-0.53455 -1.5959,-0.76617 -2.53095,-0.78577 -0.9334,-0.0196 -1.87208,0.15508 -2.81181,0.32978 -1.46471,0.27229 -2.93092,0.54168 -4.39643,0.83201 -1.45573,0.2884 -2.88028,0.5258 -4.27699,0.73866 m 15.8414,7.95366 c -0.0997,-1.44249 -0.21323,-2.88082 -0.31793,-4.31347 -0.0463,-0.6335 -0.0914,-1.27017 -0.24064,-1.88605 -0.14924,-0.61602 -0.40944,-1.21608 -0.83628,-1.6784 -0.5711,-0.61858 -1.39724,-0.94218 -2.21921,-1.05663 -0.8222,-0.11449 -1.65328,-0.0392 -2.47314,0.0293 -4.20057,0.35119 -8.34483,0.52434 -12.3702,1.23666 -4.02259,0.71183 -7.97737,1.99526 -11.26191,4.37438 -0.21987,0.15926 -0.43634,0.32314 -0.65088,0.48964 -0.86562,0.67185 -1.71112,1.37783 -2.62819,1.98608 -1.1431,0.75816 -2.4256,1.37112 -3.82067,1.49598 -1.93633,0.1733 -3.99414,-0.65757 -5.42825,-2.20662 -1.43392,-1.54885 -2.2258,-3.77903 -2.14239,-6.01877 0.0834,-2.23929 1.02896,-4.45723 2.53531,-6.10186 1.50563,-1.64385 3.54964,-2.70756 5.59501,-3.03784 0.5631,-0.0909 1.12324,-0.12867 1.67777,-0.13015 m -9.79278,12.3459 c -0.20012,-0.82895 -0.27379,-1.69539 -0.20527,-2.55379 0.16811,-2.10606 1.17877,-4.1355 2.72943,-5.5421 1.55067,-1.4066 3.61664,-2.18253 5.66385,-2.18282 1.54616,-2.2e-4 3.05226,0.42082 4.49886,0.92763 1.44654,0.5068 2.86448,1.10531 4.3532,1.48364 3.9925,1.01462 8.27381,0.38921 12.36117,-0.892 1.30113,-0.40784 2.59251,-0.88018 3.88728,-1.38685 2.7697,-1.08384 5.42081,-2.19067 8.08015,-3.02488 0.48236,-0.15132 0.96906,-0.29536 1.40728,-0.53673 0.43814,-0.24132 0.83089,-0.59277 1.01973,-1.05124 0.11814,-0.28684 0.15153,-0.60487 0.11665,-0.91369 -0.0349,-0.30888 -0.13643,-0.60864 -0.27807,-0.8874 -0.28359,-0.55814 -0.71938,-1.02448 -1.14913,-1.48634 -3.02104,-3.24683 -5.94208,-6.58433 -9.32009,-9.49427 -2.70475,-2.32998 -5.76642,-4.41567 -9.16506,-5.78713 m 14.34364,12.32215 c -1.64171,-2.18857 -3.30593,-4.32665 -5.13106,-6.3012 -3.02829,-3.2762 -6.56192,-6.12441 -10.67993,-7.63301 -1.0338,-0.37873 -2.09635,-0.67015 -3.1259,-1.053 -1.02929,-0.38276 -2.03668,-0.86451 -2.87381,-1.57756 -1.3654,-1.16303 -2.2061,-2.93364 -2.24797,-4.76498 -0.0419,-1.83135 0.71529,-3.69593 2.05502,-5.03061 0.20337,-0.2026 0.41969,-0.39255 0.64704,-0.56909 1.27043,-0.98655 2.86707,-1.53453 4.45146,-1.50873 1.86793,0.0304 3.6926,0.85683 4.93849,2.22529 0.79538,0.87363 1.35082,1.94027 1.79503,3.03835 0.44422,1.09811 0.7854,2.23814 1.20663,3.3519 1.44916,3.83175 3.83635,7.30548 6.71613,10.28869 2.58265,2.67541 5.56004,4.97317 8.73602,7.02205 0.3648,0.23534 0.73028,0.46601 1.09614,0.69229 0.79319,0.49059 1.62042,0.97066 2.5251,1.0541 0.64267,0.0593 1.28884,-0.0905 1.85315,-0.3783 0.56437,-0.28781 1.04995,-0.70995 1.45159,-1.19505 0.80358,-0.97057 1.26803,-2.17101 1.72852,-3.35276 0.008,-0.0194 0.16687,-0.42766 0.17445,-0.4471 m -23.07328,-4.52492 c 0.53253,0.63691 1.09067,1.24637 1.6705,1.82789 2.85676,2.86509 6.23034,5.06692 9.81602,6.84194 0.79609,0.39409 1.64866,0.78168 2.57263,0.7692 0.66038,-0.009 1.32672,-0.22702 1.917,-0.58447 0.58989,-0.35721 1.10431,-0.84871 1.53943,-1.40474 0.86943,-1.11098 1.4157,-2.45469 1.97266,-3.78452 2.19776,-5.24758 4.77748,-10.71941 6.40801,-16.45316 0.72319,-2.54309 1.1507,-4.99927 1.18598,-7.40816 0.0283,-1.92937 -0.19202,-3.84342 0.30912,-5.58289 0.45754,-1.58817 1.52671,-2.92194 2.88299,-3.61931 1.35612,-0.69729 2.98045,-0.74619 4.34911,-0.12637 1.36849,0.61974 2.45901,1.90202 2.881,3.4566 0.42198,1.55454 0.16459,3.35931 -0.7524,4.83776 -0.90579,1.46041 -2.3482,2.5147 -3.66846,3.63737 -0.99486,0.84598 -1.91885,1.73647 -2.77578,2.65214 -2.0379,2.17757 -3.56083,4.70947 -4.7006,7.39748 -1.18683,2.799 -1.97072,5.77322 -2.58504,8.8258 m 15.36989,-20.91552 c -0.0546,0.83232 -0.26053,1.65124 -0.61643,2.39365 -0.72151,1.50503 -1.98144,2.6303 -3.08406,3.81346 -2.8285,3.03511 -4.7794,6.67369 -6.1228,10.46821 -1.34388,3.79588 -2.09803,7.7486 -2.74624,11.75715 -0.23076,1.42707 -0.44781,2.95237 0.0484,4.38506 0.26774,0.77298 0.7375,1.48766 1.32916,2.09297 0.35313,0.36128 0.7485,0.68391 1.17242,0.96968 0.28598,0.19279 0.58346,0.36734 0.88812,0.5241 1.51221,0.77811 3.17807,1.1154 4.80894,1.33839 6.389,0.87358 12.45638,0.1252 18.52588,-1.10507 5.15694,-1.04531 10.32158,-2.43919 15.70728,-3.46841 0.95539,-0.18258 1.90652,-0.33829 2.8538,-0.46509 5.28932,-0.70799 10.48537,-0.50782 15.56563,0.34472 m -30.79521,0.76163 c 4.50552,-0.63901 8.83919,-1.20483 13.0481,-1.32542 8.46039,-0.24239 16.47766,1.34315 23.88876,4.66581 1.96585,0.88136 4.01558,1.73112 6.11165,2.5714 4.47742,9.80068 9.53724,17.8737 12.2675,26.28756 0.20949,0.64558 0.40794,1.31561 0.59564,2.00788 m -1.92755,-18.21432 c 3.36364,7.84787 5.34732,16.24411 6.46091,25.16807 0.53632,4.29789 0.87201,8.71782 1.06735,13.25676"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.32543px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
inkscape:transform-center-x="-43.33665"
inkscape:transform-center-y="71.635273" />
<path
transform="matrix(-1.0224544,0.84354288,0.8432858,1.0224495,700.30746,-209.01316)"
inkscape:connector-curvature="0"
id="path3939"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 556.01318,317.13344 c 2.06981,6.01104 0.94124,8.41405 -1.02965,12.35585 m -9.26689,-10.29654 c 0.0884,3.84584 0.51621,7.20482 -1.02965,10.29654 m -9.26689,-9.26688 c 0.029,5.23682 0.52347,12.09411 -4.11862,14.41515 m -7.20758,-12.35585 c 1.34733,5.70427 2.3009,13.77954 -3.08896,16.47447 m -5.14827,-11.3262 c 0.10088,6.9785 0.78578,13.62938 -4.11861,18.53378 m -9.26689,-17.50412 c 1.60618,5.73153 0.36953,13.01597 -3.08896,16.47446 m -10.29654,-11.32619 c 4.18388,5.48414 1.44451,13.58544 -1.02966,18.53377 m -8.23723,-18.53377 c 3.0744,7.88786 1.59525,19.46189 -2.05931,26.771 m -8.23723,-21.62273 c 2.519,8.59098 1.07621,24.61858 -3.08896,32.94893 m -4.11862,-28.83032 c 0.32585,9.37457 -0.34431,24.37066 -4.11861,31.91928 m -6.17793,-25.74135 c 2.6768,8.87908 0.35774,22.25109 -2.05931,31.91927 m -5.14827,-21.62273 c 1.04598,9.79308 -2.0593,19.35255 -2.0593,28.83031 m -7.20758,-18.53377 c 2.32852,10.59391 -1.02966,21.34676 -1.02966,31.91927 m -5.14827,-15.44481 c -0.78464,6.58221 -2.98079,16.69081 0,22.65239" />
<path
id="path3967"
transform="matrix(-1.0224544,0.84354288,0.8432858,1.0224495,700.30748,-209.01318)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 489.08567,382.00165 c 0.36516,5.4116 0.11048,10.07557 -2.05931,14.41515 m -3.08896,-23.68204 c 6.54528,5.06719 0.4929,23.9285 -2.05931,22.65239 m -10.29654,-4.11862 c 3.4009,-6.80179 3.22908,-15.48508 3.08896,-23.68204 8.33476,6.68281 6.6526,17.58446 3.08898,24.7117 m -10.29656,-25.74135 c 2.97536,5.27504 6.11467,21.65436 0,24.71169 m -4.11861,-21.62273 c 2.87685,5.73939 4.00677,13.49735 0,17.50412 m -3.08897,-9.26689 c 1.24695,3.94029 0.81864,8.65928 -1.02965,12.35585"
inkscape:connector-curvature="0" />
<path
id="path3975"
transform="matrix(-1.0224544,0.84354288,0.8432858,1.0224495,700.30748,-209.01318)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 535.4201,361.40857 c -1.42584,6.87417 -5.35122,12.55879 -10.29654,17.50412 m 7.20758,-27.80066 c -0.17397,7.17418 -6.95481,15.19204 -11.3262,19.56342 m 9.26689,-27.80066 c 0.10756,7.08898 -4.22778,16.54725 -10.29654,20.59308 m 2.05931,-18.53377 c -0.77784,6.10007 -2.50438,7.94494 -7.20758,10.29654"
inkscape:connector-curvature="0" />
<path
id="path4023"
transform="matrix(-1.0224544,0.84354288,0.8432858,1.0224495,700.30748,-209.01318)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 568.88386,318.67792 c 3.81674,-0.0393 7.55137,0.85776 10.29654,-0.51482 m -14.92999,4.11861 c 2.22911,-0.56801 4.38374,-0.26512 5.6631,-1.54448 m -13.3855,2.57414 c 1.77716,0.20607 12.09066,2.82378 9.78171,0.51482 m -14.92998,1.54449 c 3.41978,1.01373 8.44769,3.49855 11.32619,2.0593 m -20.59308,0.51483 c 4.05345,-0.70843 10.74299,5.73147 13.90033,2.57414 m -21.62273,-0.51483 c 4.61326,1.58677 8.45705,3.60379 13.3855,3.60379 m -21.62274,-1.02966 c 4.45359,0.48543 7.46938,4.11862 11.84102,4.11862 m -17.50411,-2.05931 c 4.27937,1.31554 9.04222,2.71922 12.87067,4.63344 m -22.65239,-4.11861 c 5.02767,0.53114 9.95748,5.14827 14.92999,5.14827 m -24.19687,-1.54448 c 4.94897,0.54346 10.67977,2.50834 14.92998,4.63344 m -26.77101,1.02965 c 4.98824,-2.28839 11.98513,2.05931 15.95964,2.05931 m -22.13756,1.54448 c 4.47538,0.10764 9.62865,0.18089 13.3855,2.05931 m -24.71169,2.05931 c 5.42315,-0.67921 13.23483,1.76423 16.47446,2.57414 m -24.19687,4.63344 c 3.61046,-1.86856 9.44862,-0.42396 12.35585,1.02965 m -19.56343,4.11862 c 4.59629,-1.25286 10.4222,0.83507 13.90033,2.57413 m -22.13756,4.63345 c 4.16781,-1.1742 8.30324,1.32007 11.84102,3.08896 m -22.13756,5.6631 c 5.27726,-3.18305 12.02885,2.51152 16.47446,1.02965 m -20.59308,5.14827 c 4.10481,-0.84081 8.75706,1.80439 12.35585,3.60379 m -20.07825,5.6631 c 4.32762,-2.09919 11.04198,0.88754 14.41515,2.57413 m -17.50411,6.69275 c 2.84265,-2.28753 7.27712,-0.36873 10.81136,0.51483 m -12.87067,6.17792 c 3.05551,-1.27541 5.84086,0 8.75206,0 m -9.78172,6.69276 c 2.31853,-0.0212 4.66418,-0.16137 6.69276,0.51482"
inkscape:connector-curvature="0" />
<path
d="m 489.08567,382.00165 c 0.36516,5.4116 0.11048,10.07557 -2.05931,14.41515 m -3.08896,-23.68204 c 6.54528,5.06719 0.4929,23.9285 -2.05931,22.65239 m -10.29654,-4.11862 c 3.4009,-6.80179 3.22908,-15.48508 3.08896,-23.68204 8.33476,6.68281 6.6526,17.58446 3.08898,24.7117 m -10.29656,-25.74135 c 2.97536,5.27504 6.11467,21.65436 0,24.71169 m -4.11861,-21.62273 c 2.87685,5.73939 4.00677,13.49735 0,17.50412 m -3.08897,-9.26689 c 1.24695,3.94029 0.81864,8.65928 -1.02965,12.35585"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
transform="matrix(-1.0224544,0.84354288,0.8432858,1.0224495,704.10613,-227.15867)"
id="path4026"
inkscape:connector-curvature="0" />
<path
d="m 535.4201,361.40857 c -1.42584,6.87417 -5.35122,12.55879 -10.29654,17.50412 m 7.20758,-27.80066 c -0.17397,7.17418 -6.95481,15.19204 -11.3262,19.56342 m 9.26689,-27.80066 c 0.10756,7.08898 -4.22778,16.54725 -10.29654,20.59308 m 2.05931,-18.53377 c -0.77784,6.10007 -2.50438,7.94494 -7.20758,10.29654"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
transform="matrix(-1.0224544,0.84354288,0.8432858,1.0224495,689.25592,-222.41275)"
id="path4028"
inkscape:connector-curvature="0" />
<path
d="m 568.88386,318.67792 c 3.81674,-0.0393 7.55137,0.85776 10.29654,-0.51482 m -14.92999,4.11861 c 2.22911,-0.56801 4.38374,-0.26512 5.6631,-1.54448 m -13.3855,2.57414 c 1.77716,0.20607 12.09066,2.82378 9.78171,0.51482 m -14.92998,1.54449 c 3.41978,1.01373 8.44769,3.49855 11.32619,2.0593 m -20.59308,0.51483 c 4.05345,-0.70843 10.74299,5.73147 13.90033,2.57414 m -21.62273,-0.51483 c 4.61326,1.58677 8.45705,3.60379 13.3855,3.60379 m -21.62274,-1.02966 c 4.45359,0.48543 7.46938,4.11862 11.84102,4.11862 m -17.50411,-2.05931 c 4.27937,1.31554 9.04222,2.71922 12.87067,4.63344 m -22.65239,-4.11861 c 5.02767,0.53114 9.95748,5.14827 14.92999,5.14827 m -24.19687,-1.54448 c 4.94897,0.54346 10.67977,2.50834 14.92998,4.63344 m -26.77101,1.02965 c 4.98824,-2.28839 11.98513,2.05931 15.95964,2.05931 m -22.13756,1.54448 c 4.47538,0.10764 9.62865,0.18089 13.3855,2.05931 m -24.71169,2.05931 c 5.42315,-0.67921 13.23483,1.76423 16.47446,2.57414 m -24.19687,4.63344 c 3.61046,-1.86856 9.44862,-0.42396 12.35585,1.02965 m -19.56343,4.11862 c 4.59629,-1.25286 10.4222,0.83507 13.90033,2.57413 m -22.13756,4.63345 c 4.16781,-1.1742 8.30324,1.32007 11.84102,3.08896 m -22.13756,5.6631 c 5.27726,-3.18305 12.02885,2.51152 16.47446,1.02965 m -20.59308,5.14827 c 4.10481,-0.84081 8.75706,1.80439 12.35585,3.60379 m -20.07825,5.6631 c 4.32762,-2.09919 11.04198,0.88754 14.41515,2.57413 m -17.50411,6.69275 c 2.84265,-2.28753 7.27712,-0.36873 10.81136,0.51483 m -12.87067,6.17792 c 3.05551,-1.27541 5.84086,0 8.75206,0 m -9.78172,6.69276 c 2.31853,-0.0212 4.66418,-0.16137 6.69276,0.51482"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#1a1a1a;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
transform="matrix(-1.0224544,0.84354288,0.8432858,1.0224495,694.87388,-209.53422)"
id="path4030"
inkscape:connector-curvature="0" />
<path
d="m 556.01318,317.13344 c 2.06981,6.01104 0.94124,8.41405 -1.02965,12.35585 m -9.26689,-10.29654 c 0.0884,3.84584 0.51621,7.20482 -1.02965,10.29654 m -9.26689,-9.26688 c 0.029,5.23682 0.52347,12.09411 -4.11862,14.41515 m -7.20758,-12.35585 c 1.34733,5.70427 2.3009,13.77954 -3.08896,16.47447 m -5.14827,-11.3262 c 0.10088,6.9785 0.78578,13.62938 -4.11861,18.53378 m -9.26689,-17.50412 c 1.60618,5.73153 0.36953,13.01597 -3.08896,16.47446 m -10.29654,-11.32619 c 4.18388,5.48414 1.44451,13.58544 -1.02966,18.53377 m -8.23723,-18.53377 c 3.0744,7.88786 1.59525,19.46189 -2.05931,26.771 m -8.23723,-21.62273 c 2.519,8.59098 1.07621,24.61858 -3.08896,32.94893 m -4.11862,-28.83032 c 0.32585,9.37457 -0.34431,24.37066 -4.11861,31.91928 m -6.17793,-25.74135 c 2.6768,8.87908 0.35774,22.25109 -2.05931,31.91927 m -5.14827,-21.62273 c 1.04598,9.79308 -2.0593,19.35255 -2.0593,28.83031 m -7.20758,-18.53377 c 2.32852,10.59391 -1.02966,21.34676 -1.02966,31.91927 m -5.14827,-15.44481 c -0.78464,6.58221 -2.98079,16.69081 0,22.65239"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path4032"
inkscape:connector-curvature="0"
transform="matrix(-1.0224544,0.84354288,0.8432858,1.0224495,694.53107,-207.68388)" />
<path
id="path4060"
transform="matrix(-1.0224544,0.84354288,0.8432858,1.0224495,700.30748,-209.01318)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 627.61393,185.33773 c 1.78595,1.46366 4.71988,2.12242 6.65296,3.08896 m -4.59366,2.05931 c 2.41171,2.32954 3.46635,1.5933 4.59366,1.02965 m -4.59366,3.60379 c 1.22229,2.59323 4.41718,3.25814 5.10848,3.60379 m -3.04917,1.54448 c 1.62628,0.52479 4.33137,1.2822 5.10848,2.05931 m -20.07825,66.41268 c 0.23898,2.50698 1.02965,2.10606 1.02965,4.11862 m 2.05931,-8.23723 c -0.24952,1.95214 0.01,2.59321 0.51483,3.60379 m 0.89961,-8.75206 c 0.37036,2.57469 1.67452,2.87329 1.67452,5.14827 m 2.0991,-8.75206 c 0.011,1.73751 1.30683,2.95332 1.88948,4.11861 m 0.68466,-10.29654 c 1.20156,2.13025 2.05131,4.69703 3.04917,6.69275 m -0.47504,-10.81136 c 0.87872,1.8173 2.94818,3.91662 3.564,5.14827 m -2.74929,-13.90033 c 0.90609,2.25289 4.02109,4.60291 4.8086,6.17792 m -2.23447,-9.78171 c 0.73521,1.85678 4.19107,3.9132 4.8086,5.14827 m -5.32343,-15.95964 c 1.42691,2.89631 5.49005,6.85937 7.38274,8.75206 m -6.35308,-16.47446 c 0.76747,3.6861 5.0417,9.38343 7.89756,10.81136"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccccccccccccccccccc" />
<path
id="path4109"
transform="matrix(-1.0224544,0.84354288,0.8432858,1.0224495,700.30748,-209.01318)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 629.78518,258.05002 c -1.35315,1.0125 -3.08188,1.08589 -4.55047,1.82019 m 8.19085,-8.00883 c -0.34553,1.7686 -2.54595,2.48682 -3.8224,2.9123 m 7.64479,-9.28296 c -0.38072,1.83184 -1.9508,3.09432 -3.82239,3.09432 m 6.18864,-10.01103 c -0.80176,1.52346 -2.37713,2.37168 -3.8224,3.09432 m 4.00442,-8.37287 c 1.47633,2.34541 -0.70207,3.17232 -2.36625,4.00441 m 2.9123,-7.82681 c 0.16518,1.39996 -1.17923,1.95476 -2.0022,2.36625 m 2.54826,-6.7347 c -0.49388,1.39434 -1.4566,1.82041 -2.54826,2.36625 m 3.64037,-8.19085 c -0.59957,1.72905 -2.21083,3.38065 -3.82239,4.18643 m 0.18202,-19.11197 c 0.90276,1.27257 0.96701,3.40143 -0.18202,4.55047 m -0.9101,-8.91893 c 0.70441,1.39605 0.26418,3.21189 -0.18202,4.55047 m -0.72807,-8.55488 c 0.27458,1.35459 -0.31172,2.98967 -0.9101,4.18643 m -0.36403,-9.28296 c 0.005,2.00493 -0.61498,4.14225 -1.45615,5.8246 m -0.72808,-12.92333 c 0.86787,2.00088 -0.76782,4.44793 -1.63817,6.18864"
inkscape:connector-curvature="0" />
<path
id="path4128"
transform="matrix(-1.0224544,0.84354288,0.8432858,1.0224495,700.30748,-209.01318)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 409.70534,453.6804 c 0.42621,2.53544 1.28973,4.74429 1.28973,7.30849 m 2.57947,-22.14042 c -0.49106,2.32414 0.85023,5.13976 1.71964,6.87858 m 1.71964,-13.97212 c 0.0584,2.28495 0.69252,4.60937 1.71965,6.66363 m 0.42991,-15.04689 c 0.69568,3.32709 1.51674,6.69978 2.57947,9.88795 m -0.21496,-18.70113 c 0.46436,2.81679 1.73066,5.62188 2.57947,8.16831 m -0.21496,-18.91609 c 0.88907,4.88995 0.46356,10.56647 4.29911,14.40202 m -10.6668,4.97508 c 2.62493,-0.37333 7.32505,-0.45609 9.26689,0.51483"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccccc" />
<path
d="m 409.49038,449.59624 c 0.42621,2.53544 1.28973,4.74429 1.28973,7.30849 m 2.79443,-18.05626 c -0.49106,2.32414 0.85023,5.13976 1.71964,6.87858 m 1.71964,-13.97212 c 0.0584,2.28495 0.69252,4.60937 1.71965,6.66363 m 0.42991,-15.04689 c 0.69568,3.32709 1.51674,6.69978 2.57947,9.88795 m -0.21496,-18.70113 c 0.46436,2.81679 1.73066,5.62188 2.57947,8.16831 m -0.21496,-18.91609 c 0.88907,4.88995 0.46356,10.56647 4.29911,14.40202 m -10.6668,4.97508 c 2.62493,-0.37333 7.32505,-0.45609 9.26689,0.51483"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
transform="matrix(-1.0224544,0.84354288,0.8432858,1.0224495,695.93443,-209.83731)"
id="path4131"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccccc" />
</g>
</g>
<g
style="display:inline"
inkscape:label="TeddyBear"
id="layer15"
inkscape:groupmode="layer">
<g
id="g56547-4"
style="display:inline;filter:url(#filter6821)"
transform="matrix(0.45700323,0.47127501,0.47145638,-0.45717911,-223.04916,390.22335)">
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.568896;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 124.92541,305.72714 c -3.58239,-3.12022 -6.44531,-6.14993 -8.68682,-9.31051 -3.18039,-4.48443 -4.9096,-8.97722 -5.4204,-13.41964 -0.48013,-4.17562 0.12921,-8.24419 1.60212,-12.01526 0.0861,-0.22053 0.17525,-0.43996 0.26729,-0.65827 1.66581,-3.95134 4.28765,-7.53243 7.46895,-10.45785 3.18157,-2.92567 6.92292,-5.19616 10.8333,-6.52411 3.91296,-1.32882 7.98909,-1.71145 11.84456,-0.8819 0.21511,0.0463 0.42948,0.0963 0.64303,0.1502 0.22426,0.0566 0.44878,0.1182 0.67348,0.18497 m -19.69204,1.75434 c 1.5004,-0.85351 3.09642,-1.55547 4.75538,-2.08637 3.93126,-1.2581 8.20284,-1.55304 12.42311,-0.64203 4.22406,0.91182 8.37722,3.028 12.10418,6.52595 1.71144,1.60629 3.32963,3.50238 4.79485,5.68048 0.29383,0.43678 0.58179,0.89315 0.86367,1.36961 m -36.66974,37.77978 c -3.34217,-2.4712 -5.93018,-5.1433 -7.88835,-7.87368 -3.24908,-4.53037 -4.84179,-9.32226 -5.23771,-13.97383 -0.39717,-4.66614 0.40258,-9.23751 1.96713,-13.42232 0.14806,-0.39602 0.30297,-0.78858 0.46435,-1.17742 1.54433,-3.72079 4.05496,-6.98037 7.21162,-9.63247 3.48436,-2.92741 7.75585,-5.11408 12.35666,-6.34802 3.72527,-0.99913 7.66177,-1.37342 11.61338,-1.01706 m -18.28326,6.57432 c 1.82891,-0.98622 3.81887,-1.81702 5.91374,-2.44385 4.08233,-1.22153 8.51918,-1.65812 12.99988,-1.01105 4.4889,0.64825 8.94532,2.37047 13.19705,5.34687 1.67948,1.17572 3.3226,2.54439 4.91056,4.1086 2.13119,2.0993 3.79862,4.94005 4.86989,8.62846"
id="path56076-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc"
transform="matrix(0.7930279,-0.12721534,0.12720616,0.7929707,186.68889,54.623004)"
inkscape:path-effect="#path-effect5585-05-90"
inkscape:original-d="m 129.5407,307.4466 c -52.827106,-30.95728 17.078,-89.95498 34.98132,-31.3792" />
<g
inkscape:transform-center-y="11.073181"
inkscape:transform-center-x="46.77484"
transform="matrix(1.0182517,-0.42351822,0.38412073,0.92352949,-230.68016,173.7532)"
style="stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="use56117-1" />
<g
id="g56449-6"
style="fill:none;stroke:#000000;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(1.0182517,-0.42351822,0.38412073,0.92352949,-230.68016,173.7532)"
inkscape:transform-center-x="46.77484"
inkscape:transform-center-y="11.073181"
inkscape:path-effect="#path-effect5585-05-90">
<path
inkscape:connector-curvature="0"
transform="rotate(51.751334,259.96345,619.99277)"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.435033;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:transform-center-x="36.537697"
inkscape:transform-center-y="17.753613"
d="m 247.76664,494.4518 c -2.70735,3.86144 -5.75234,7.29629 -9.14547,9.7791 -2.40454,1.75945 -4.9602,3.02363 -7.67403,3.64564 -2.71016,0.62117 -5.57149,0.59985 -8.57576,-0.19914 -3.28475,-0.87359 -6.19489,-1.80996 -8.8266,-2.8483 -2.36203,-0.93193 -4.46916,-1.93487 -6.32734,-2.97761 -3.9158,-2.1974 -6.78901,-4.60363 -8.77999,-7.08077 -1.99762,-2.48539 -3.12825,-5.06342 -3.59656,-7.67871 -0.46828,-2.6151 -0.27443,-5.26778 0.37025,-7.90059 0.40523,-1.65492 0.98884,-3.30271 1.69814,-4.92561 0,0 0,0 0,0 0.0957,-0.21902 0.19515,-0.43797 0.29818,-0.65683 m -2.38777,19.20855 c -0.92458,-1.57287 -1.4949,-3.20891 -1.77026,-4.87612 -0.42835,-2.59349 -0.14673,-5.2775 0.63803,-7.99846 0.78525,-2.72265 2.07546,-5.4874 3.66476,-8.24883 1.58653,-2.7566 3.4774,-5.5196 5.44489,-8.19977 1.71144,-2.33136 3.51926,-4.65105 5.22247,-6.81781 0.079,-0.10043 0.15807,-0.2004 0.23734,-0.29991 m 36.96186,39.37981 c -2.56025,3.73439 -5.34485,6.74154 -8.35586,8.88263 -2.45913,1.74865 -5.07737,2.92472 -7.84636,3.42423 -2.77352,0.50033 -5.69663,0.32308 -8.80389,-0.63633 -4.16857,-1.28711 -7.92291,-2.64456 -11.15711,-3.98818 -1.74109,-0.72331 -3.29601,-1.49858 -4.68236,-2.30634 -3.95293,-2.3032 -6.66989,-4.94705 -8.42441,-7.63947 -1.76661,-2.71097 -2.62447,-5.56464 -2.77973,-8.47299 -0.15586,-2.91943 0.39243,-5.91649 1.44787,-8.98748 0.28311,-0.82374 0.60241,-1.65199 0.95382,-2.48459 m 1.70453,19.85597 c -1.16564,-1.83295 -1.84435,-3.81214 -2.11925,-5.87633 -0.35252,-2.64696 -0.0417,-5.43766 0.74114,-8.3345 0.78159,-2.89222 2.03827,-5.90793 3.57139,-8.98053 1.52766,-3.0617 3.35722,-6.2317 5.26451,-9.34381 1.42734,-2.32897 2.92683,-4.67146 4.39423,-6.92634 2.06638,-3.17533 4.18087,-5.65669 6.11111,-7.67665"
id="path56451-2"
inkscape:original-d="m 249.003,488.26611 c -6.85057,13.54108 -16.55159,22.42589 -28.32689,18.66236 -48.79949,-15.59692 -18.1809,-42.68169 -3.25659,-57.38584"
sodipodi:nodetypes="csc" />
</g>
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.413616;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 231.66224,525.22339 c -1.31465,0.35456 -2.6924,0.45028 -4.12685,0.24983 -3.43627,-0.48021 -7.1528,-2.65149 -11.25855,-6.9271 -6.27828,-6.53803 -10.21783,-12.42404 -12.40635,-18.38793 0,0 0,0 0,0 -0.85784,-2.33768 -1.42069,-4.63058 -1.74178,-6.85891 -1.12291,-7.79277 0.68941,-14.91276 3.40682,-20.91047 1.79777,-3.96791 4.02781,-7.51975 6.12587,-10.44699 0.15047,-0.20994 0.30166,-0.41602 0.4533,-0.61826 m -10.66521,16.64048 c 0.55596,-2.26355 1.36085,-4.411 2.32372,-6.42878 2.79961,-5.86685 7.00803,-10.76493 10.38645,-14.1591 1.69527,-1.70317 3.22242,-3.06574 4.30138,-3.98323 0.5432,-0.46192 0.97924,-0.81654 1.28046,-1.05625 0.15066,-0.1199 0.26707,-0.21065 0.34649,-0.27192 0.0397,-0.0306 0.0699,-0.0537 0.0904,-0.0693 0.0103,-0.008 0.018,-0.0137 0.0233,-0.0177 0.005,-0.004 0.008,-0.006 0.008,-0.006 1e-5,0 2e-5,-10e-6 2e-5,-10e-6 2.06493,-2.63375 3.87581,-5.16954 5.47893,-7.63099 2.36866,-3.63686 4.19077,-6.55688 5.79925,-9.27204 2.73253,-4.61261 4.34167,-7.77871 5.85377,-10.62301 0.71309,-1.34134 1.34403,-2.49079 1.94635,-3.43075 0.60302,-0.94104 1.18456,-1.68385 1.80289,-2.20846 0.49183,-0.41727 1.00987,-0.69913 1.5857,-0.83131 m -14.51426,106.36498 c -0.52033,0.0189 -1.04371,0.004 -1.5702,-0.0472 -3.73677,-0.36071 -7.65738,-2.50969 -11.70663,-6.95701 -7.03027,-7.72141 -11.00194,-15.53097 -13.02704,-22.4469 -0.42374,-1.44713 -0.72087,-2.85816 -0.90778,-4.23211 -1.08685,-7.9892 1.51354,-14.97788 5.30909,-20.80668 2.01704,-3.09757 4.40024,-5.91142 6.79151,-8.39101 m -10.15542,17.94121 c 0.60074,-2.20532 1.48273,-4.36202 2.54738,-6.43552 3.00355,-5.84974 7.48927,-11.08228 11.2092,-14.85112 1.86042,-1.88488 3.53011,-3.4036 4.73072,-4.4467 0.60105,-0.52219 1.08408,-0.92482 1.41835,-1.19796 0.16704,-0.1365 0.29631,-0.24015 0.38436,-0.3101 0.044,-0.0349 0.0776,-0.0614 0.10032,-0.0792 0.0114,-0.009 0.02,-0.0156 0.0259,-0.0202 0.006,-0.005 0.009,-0.007 0.009,-0.007 2e-5,-10e-6 2e-5,-10e-6 2e-5,-10e-6 2.27771,-2.82827 4.35101,-5.57322 6.23375,-8.20877 2.88236,-4.03485 4.822,-7.28337 6.23897,-10.04485 2.29296,-4.46867 3.35977,-7.98171 4.09942,-10.54603 0.33131,-1.14862 0.59691,-2.11436 0.87412,-2.96791"
id="path56249-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cscc"
transform="matrix(1.3848833,0.13888692,-0.17861929,0.86321393,92.41664,-48.770802)"
inkscape:transform-center-x="27.184293"
inkscape:transform-center-y="25.531294"
inkscape:path-effect="#path-effect5585-05"
inkscape:original-d="m 236.43323,520.08815 c -6.11982,5.36022 -13.28051,5.47197 -21.1507,-3.17093 -33.30029,-36.56977 6.91957,-64.02231 6.91957,-64.02231 19.15499,-23.39324 16.49372,-36.50083 24.65323,-33.64901" />
<path
inkscape:original-d="m 187.37235,575.10602 c -5.48172,-2.27879 -16.1579,-9.86933 -19.42732,-12.8064 -20.37595,-18.3047 -22.15675,-58.59794 -7.27043,-91.26732 8.83304,-19.38491 8.35622,-36.20429 7.79243,-49.3666 m 56.04465,-27.13079 c 1.64615,4.21183 3.52348,8.71353 5.67352,13.53845 m 47.31209,91.13223 c 8.02959,24.50134 5.34427,46.73905 -7.22801,60.51534 -3.94884,4.32701 -17.79699,13.52225 -27.44462,16.29706"
inkscape:path-effect="#path-effect5585-05"
transform="rotate(8.3196333,794.34784,1691.4782)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.456902;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 182.44431,573.91604 c -1.36684,-0.97144 -3.10569,-2.22698 -4.55751,-3.27973 -1.7779,-1.2892 -3.68203,-2.6777 -5.19535,-3.80679 -1.56683,-1.169 -2.87504,-2.17815 -3.72484,-2.90865 -5.25291,-4.51546 -9.62166,-10.32831 -12.72986,-17.15403 -0.25343,-0.55655 -0.49867,-1.12031 -0.73544,-1.69111 -2.68334,-6.46902 -4.23655,-13.72865 -4.94681,-21.57685 -0.5514,-6.09282 -0.59011,-12.47492 -0.29324,-19.06121 0,0 0,0 0,0 0.0121,-0.268 0.0259,-0.53539 0.0414,-0.80219 m -1.39622,19.41798 c -0.0219,-0.16857 -0.0432,-0.33736 -0.0637,-0.50635 -1.56392,-12.86475 0.95311,-26.51021 5.43034,-41.04631 1.42947,-4.64104 3.06614,-8.85164 4.94373,-12.73941 2.94001,-6.08763 4.88646,-11.40799 6.27414,-16.61083 m -3.30328,16.30611 c 2.9653,-8.57849 4.6512,-16.52658 5.32063,-24.33345 0.40773,-4.75481 0.41941,-9.25738 0.17025,-13.56135 m 14.70908,138.48481 c -1.11971,-0.597 -2.24508,-1.22482 -3.3484,-1.86105 -1.99407,-1.14989 -3.93958,-2.34118 -5.57329,-3.3853 -1.63639,-1.04584 -3.01758,-1.98055 -3.88681,-2.63785 -5.49781,-4.1574 -9.81465,-9.45878 -13.61396,-15.18604 -0.6343,-0.95616 -1.25155,-1.91987 -1.85643,-2.88855 -3.01186,-4.82333 -4.07408,-11.51753 -3.76964,-19.42366 0.28847,-7.49145 1.79107,-15.81375 3.74884,-24.11789 1.44506,-6.12941 2.4057,-11.31118 3.23111,-16.14382 m -6.34674,27.98452 c 0.63064,-12.50834 3.1803,-25.80678 8.62415,-37.29297 0,0 0,-10e-6 0,-10e-6 0.56584,-1.19388 1.14121,-2.38954 1.7266,-3.58069 4.40914,-8.97152 5.76793,-17.97251 5.8081,-25.28339 0.0127,-2.30921 -0.10363,-4.50063 -0.30416,-6.55654 -0.14431,-1.47946 -0.24691,-2.99884 -0.31416,-4.51724 m 60.03438,-37.88341 c 0.7964,2.50183 1.69724,5.01612 2.71157,7.57234 m 9e-5,-2.71362 c 0.23595,0.43919 0.47071,0.88455 0.70461,1.33648 m 51.94792,108.18078 c 2.44658,9.16287 2.37842,17.12049 0.70548,24.00535 -1.1406,4.69409 -3.05486,8.98739 -5.56723,12.82689 -2.53848,3.87938 -5.19015,7.57613 -8.35064,10.93616 -0.97049,1.03176 -2.58068,2.41088 -4.49726,3.88425 -1.91175,1.46966 -4.24605,3.12247 -6.69755,4.63946 -0.47756,0.29553 -0.96225,0.58762 -1.45308,0.87461 m 10.70457,-9.60045 c -0.8699,0.88719 -1.99631,1.90926 -3.3193,3.02881 -1.89261,1.60158 -4.20745,3.4186 -6.67862,5.2679 -3.98611,2.98301 -8.88967,6.43439 -12.75794,8.73946 m 35.08827,-75.34612 c 2.72979,12.07598 3.60626,23.09202 1.71053,34.2898 -0.53502,3.16024 -1.28726,6.29191 -2.26654,9.39574 -2.72503,8.637 -5.76849,14.6227 -9.91384,19.15242 -0.88734,0.96961 -2.30941,2.14615 -4.08818,3.41076 -1.78872,1.27169 -3.87689,2.59149 -6.1936,3.96361 -1.0691,0.6332 -2.18989,1.27927 -3.32856,1.92284 -3.12928,1.76866 -6.63307,3.41616 -9.94357,4.53531"
id="path56080-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cssccccsc" />
<path
sodipodi:nodetypes="ssssss"
inkscape:connector-curvature="0"
id="path56490-5"
d="m 259.28467,340.27074 c 0.99698,7.08793 -0.0494,14.2223 -2.43621,20.75387 -2.19149,5.99714 -5.53987,11.57856 -9.6434,16.44307 -1.6668,1.9759 -3.4555,3.84231 -5.36461,5.5897 -7.61186,6.96712 -17.17166,12.08144 -28.72486,14.67021 -1e-5,0 -1e-5,0 -1e-5,0 -0.25787,0.0578 -0.51563,0.11521 -0.77327,0.17226 m 16.79151,-7.83378 c -11.20676,6.21395 -23.49449,9.89915 -37.24871,9.06646 -1.61069,-0.0975 -3.22921,-0.18633 -4.88262,-0.27562 -9.21647,-0.49767 -17.91101,-0.97062 -26.06447,-2.80262 m 16.37576,4.78118 c -7.14838,-0.77111 -13.72809,-2.43486 -19.83165,-4.80857 -6.67998,-2.59788 -12.85868,-6.07695 -18.43857,-10.17341 -2.34704,-1.72307 -4.42121,-3.50545 -6.23607,-5.35945 -6.09854,-6.23006 -9.38548,-13.41641 -9.64813,-21.51704 -0.0254,-0.78328 -0.0224,-1.576 0.009,-2.37825 m 3.74871,18.8044 c -2.9212,-3.87618 -4.7668,-8.44248 -5.44216,-13.46148 -1.11222,-8.26566 0.9092,-17.81731 6.79388,-28.49386 0.1287,-0.23351 0.25769,-0.46585 0.38696,-0.69702 3.31786,-5.93308 4.62969,-10.22208 5.16644,-13.65359 0.53701,-3.43317 0.32233,-6.30343 0.0361,-8.80902 -0.29588,-2.58967 -0.66591,-4.79954 -0.61942,-7.22902 0.0389,-2.03283 0.37346,-4.10721 1.26365,-6.49531 0.15646,-0.41975 0.34179,-0.84865 0.55879,-1.28732 1.84833,-3.73645 4.91161,-7.20022 8.45587,-10.18722 m -9.70993,23.08698 c 0.21001,-1.3018 0.45835,-2.56888 0.80867,-3.84301 0.72415,-2.63385 1.88074,-5.27533 3.95808,-8.18044 5.27664,-7.37926 10.81041,-12.1531 17.12501,-14.98269 1.79727,-0.80537 3.80842,-1.59606 6.01962,-2.3529 8.74428,-2.99293 22.25715,-5.91739 36.5004,-5.98608 1.22514,-0.006 2.4303,-0.008 3.61718,-0.008 0.77072,2.7e-4 1.51842,0.003 2.2458,0.01 m -23.9025,-2.54903 c 5.79316,-0.56735 12.52745,-0.78866 19.81996,-0.52026 8.26648,0.30425 15.39294,1.4096 21.72007,3.50007 2.46287,0.81373 4.67563,1.64568 6.71319,2.54128 7.19354,3.16188 12.12752,7.12361 15.91525,12.5155 1.74178,2.47947 3.22717,5.24869 4.55902,8.37385 m -10.80821,-13.99312 c 2.24153,1.85652 4.16484,3.82828 5.82399,5.926 4.12833,5.21958 6.60167,11.18518 8.11899,17.9594 0.61195,2.73213 1.06529,5.57216 1.43302,8.58355 0.55861,4.57442 1.42722,9.55881 2.60485,15.40184 1.25906,6.2471 1.7231,12.24864 1.03557,17.73649 m -0.95788,-9.60121 c 0.48184,6.45549 -0.28573,12.93347 -1.92761,19.26053 -2.00166,7.71342 -5.29415,15.19938 -9.31858,22.54258 -0.87494,1.59647 -1.83571,3.03637 -2.87334,4.3325 -5.42983,6.78253 -12.82501,9.50502 -21.06275,10.4879 m 11.07504,-5.02262 c -10.63992,7.3583 -22.62648,11.18654 -35.74548,11.80434 -2.31897,0.1092 -4.78443,0.15177 -7.36837,0.11468 -10.82985,-0.15546 -22.50804,-1.72249 -32.93845,-5.1362 -0.3179,-0.10404 -0.63451,-0.20975 -0.94978,-0.31714 0,0 -1e-5,0 -1e-5,0 -4.43943,-1.51213 -8.34829,-3.34719 -11.81303,-5.46416 m 27.25679,9.27381 c -4.12093,-0.73938 -8.01669,-1.77919 -11.66436,-3.06072 -9.08073,-3.1903 -16.77144,-7.93179 -22.52052,-13.43522 -0.0416,-0.0398 -0.0831,-0.0797 -0.12456,-0.11975 -5.81385,-5.61444 -10.24638,-13.31566 -11.94801,-22.11674 -1.03409,-5.34845 -1.0776,-11.16331 0.17538,-17.29116 0.81205,-3.97147 2.07897,-7.7097 3.8402,-11.25045 0.0427,-0.0859 0.0851,-0.17132 0.12709,-0.25639 m -4.976,28.37203 c -1.55303,-7.61981 -0.62107,-15.6706 2.67317,-24.72997 1.9531,-5.37114 2.70401,-9.98767 2.84747,-14.01441 0.0215,-0.60432 0.0294,-1.19677 0.0255,-1.77805 -0.0207,-3.08256 0.0101,-6.28685 0.13408,-8.5971 0.15758,-2.93639 0.50199,-5.65173 1.44974,-8.30005 0.96056,-2.68411 2.56189,-5.39313 5.44947,-8.48717 3.79334,-4.06455 8.0487,-7.76299 12.09461,-11.04111 0.76716,-0.62158 1.51937,-1.21556 2.26014,-1.78414 m -13.42093,15.09274 c 0.50359,-0.93169 1.09783,-1.88475 1.79954,-2.86342 6.98536,-9.74241 15.40262,-15.20094 24.68332,-17.05436 0.77789,-0.15535 1.563,-0.28548 2.35484,-0.3904 10.05252,-1.332 22.13439,-4.33912 32.18692,-5.67112 2.37777,-0.31664 4.60478,-0.52299 6.72812,-0.59425 3.61216,-0.12123 7.01761,0.10835 10.12036,0.57159 m -23.11864,-1.79847 c 2.18486,0.0198 4.46116,0.0844 6.79747,0.19864 10.49928,0.51322 18.62778,2.33536 25.03746,5.95852 1.69185,0.95635 3.24483,2.03014 4.66308,3.22185 4.04509,3.39899 7.26767,6.2255 10.51702,9.73764 4.137,4.47158 7.79942,9.57426 10.33286,15.07435 0.35582,0.77247 0.69371,1.56241 1.01018,2.3698 0.3608,0.92048 0.71249,1.93838 1.05821,3.05327 m -4.4646,-13.98427 c 2.18028,3.78695 3.96218,7.83546 5.52507,12.10167 2.59327,7.07887 4.30284,13.8724 6.52839,21.41766 0,0 0,0 0,0 0.0467,0.15822 0.093,0.31864 0.139,0.48126 2.20039,7.77901 1.13293,18.96191 -1.89266,29.06907 -0.61793,2.06424 -1.32096,4.10499 -2.10178,6.10014"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.568896;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
transform="matrix(0.7930279,-0.12721534,0.12720616,0.7929707,179.85717,49.680505)"
inkscape:path-effect="#path-effect5585-05"
inkscape:original-d="m 257.62762,331.92694 c 7.20901,39.43642 -25.75204,69.08955 -69.03093,69.08955 -43.27888,0 -81.0286,-30.22686 -62.33184,-65.68997 10.47326,-19.86516 2.92595,-26.28757 11.82571,-38.6231 14.61183,-20.25274 34.10843,-26.28344 61.00511,-26.28344 43.27888,0 51.41414,22.56944 58.53195,61.50696 z" />
<path
sodipodi:nodetypes="cc"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.456902;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 329.15036,404.9705 c 1.7286,-2.83535 3.55668,-5.10608 5.498,-6.89288 3.20336,-2.94839 6.70691,-4.56182 10.30989,-5.00228 3.60355,-0.44052 7.28746,0.29672 10.819,2.06669 2.14776,1.07644 4.23042,2.52957 6.21678,4.32527 1.28057,1.15764 2.52102,2.46026 3.70096,3.89887 5.75979,7.02252 10.40607,17.78734 10.25896,30.41765 -0.003,0.23452 -0.006,0.47066 -0.01,0.7084 m -4.5804,-18.92268 c 1.71939,5.41547 3.05572,11.79498 3.54073,18.64415 0.40779,5.75884 0.2267,12.08455 -1.0041,18.37596 -1.5849,8.10144 -4.96936,18.96366 -10.01006,30.71756 m -33.8477,-82.12648 c 1.01167,-1.6023 2.15132,-3.00228 3.37947,-4.19766 2.99402,-2.91416 6.51494,-4.62002 10.17697,-5.20588 3.6637,-0.58612 7.48079,-0.0549 11.09153,1.48046 2.94122,1.25066 5.75558,3.17402 8.18793,5.6972 0.54898,0.56948 1.09684,1.17549 1.64235,1.81722 5.39256,6.34367 10.79596,16.57092 14.0826,28.62749 m -5.8065,-12.85567 c 1.8667,5.84593 3.4196,12.21295 4.34499,18.68759 0.76171,5.32949 1.12158,10.89091 0.81381,16.42261 -0.31819,5.71885 -3.28081,13.64441 -8.65389,22.76379"
id="path56111-0"
inkscape:connector-curvature="0"
transform="rotate(-4.546118,420.53134,317.61398)"
inkscape:path-effect="#path-effect5585-05-90"
inkscape:original-d="m 325.59595,409.0096 c 16.27995,-44.14398 78.00402,-1.07786 39.11224,75.94021" />
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path56078-2"
d="m 124.92541,305.72714 c -3.58239,-3.12022 -6.44531,-6.14993 -8.68682,-9.31051 -3.18039,-4.48443 -4.9096,-8.97722 -5.4204,-13.41964 -0.48013,-4.17562 0.12921,-8.24419 1.60212,-12.01526 0.0861,-0.22053 0.17525,-0.43996 0.26729,-0.65827 1.66581,-3.95134 4.28765,-7.53243 7.46895,-10.45785 3.18157,-2.92567 6.92292,-5.19616 10.8333,-6.52411 3.91296,-1.32882 7.98909,-1.71145 11.84456,-0.8819 0.21511,0.0463 0.42948,0.0963 0.64303,0.1502 0.22426,0.0566 0.44878,0.1182 0.67348,0.18497 m -19.69204,1.75434 c 1.5004,-0.85351 3.09642,-1.55547 4.75538,-2.08637 3.93126,-1.2581 8.20284,-1.55304 12.42311,-0.64203 4.22406,0.91182 8.37722,3.028 12.10418,6.52595 1.71144,1.60629 3.32963,3.50238 4.79485,5.68048 0.29383,0.43678 0.58179,0.89315 0.86367,1.36961 m -36.66974,37.77978 c -3.34217,-2.4712 -5.93018,-5.1433 -7.88835,-7.87368 -3.24908,-4.53037 -4.84179,-9.32226 -5.23771,-13.97383 -0.39717,-4.66614 0.40258,-9.23751 1.96713,-13.42232 0.14806,-0.39602 0.30297,-0.78858 0.46435,-1.17742 1.54433,-3.72079 4.05496,-6.98037 7.21162,-9.63247 3.48436,-2.92741 7.75585,-5.11408 12.35666,-6.34802 3.72527,-0.99913 7.66177,-1.37342 11.61338,-1.01706 m -18.28326,6.57432 c 1.82891,-0.98622 3.81887,-1.81702 5.91374,-2.44385 4.08233,-1.22153 8.51918,-1.65812 12.99988,-1.01105 4.4889,0.64825 8.94532,2.37047 13.19705,5.34687 1.67948,1.17572 3.3226,2.54439 4.91056,4.1086 2.13119,2.0993 3.79862,4.94005 4.86989,8.62846"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.61012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(-0.67676167,-0.24289071,-0.1832036,0.76291555,563.89106,76.081644)"
inkscape:path-effect="#path-effect5585-05-90"
inkscape:original-d="m 129.5407,307.4466 c -52.827106,-30.95728 17.078,-89.95498 34.98132,-31.3792" />
<path
transform="matrix(0.46684901,-0.02201293,0.03762649,0.79825187,144.61073,84.089531)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.747623;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 409.48729,264.51761 c -0.0825,0.1217 -0.16874,0.24029 -0.25876,0.35559 -1.22876,1.57393 -3.14559,2.52964 -5.68085,2.48583 -1.26867,-0.0219 -2.8218,-0.6425 -4.45807,-1.63145 -1.63101,-0.98578 -3.36133,-2.34911 -4.93949,-3.85159 -1.58177,-1.50592 -3.02431,-3.16437 -4.08384,-4.76437 -1.0613,-1.60266 -1.73503,-3.14164 -1.79695,-4.41541 -0.0617,-1.27017 0.45439,-2.42914 1.32854,-3.44768 0.87496,-1.0195 2.11211,-1.90312 3.51114,-2.63271 0.59348,-0.3095 1.21661,-0.59156 1.85424,-0.84471 2.36687,-0.93969 4.94938,-1.47648 6.92329,-1.50336 1.25448,-0.0171 2.39029,0.51653 3.38229,1.39982 0.99196,0.88326 1.84091,2.11652 2.52661,3.50163 1.3741,2.77566 2.08827,6.14488 2.01396,8.61564 -0.0742,2.46713 -0.85841,4.6672 -2.29635,6.21561 -1.43688,1.54726 -3.53326,2.45182 -6.26566,2.28341 -0.37965,-0.0234 -0.78233,-0.0948 -1.20434,-0.20997 -0.25401,-0.0693 -0.51382,-0.15366 -0.77833,-0.25186 m 5.09403,-0.70646 c -1.21357,0.6668 -2.6544,1.02789 -4.30915,0.98548 -1.33117,-0.0341 -2.93315,-0.68012 -4.57186,-1.72403 -1.64176,-1.04586 -3.30639,-2.48131 -4.7945,-4.09927 -1.48696,-1.6167 -2.78644,-3.40349 -3.70737,-5.13678 -0.91888,-1.72941 -1.45984,-3.40415 -1.41309,-4.77612 0.0469,-1.37492 0.66633,-2.63409 1.66173,-3.77901 0.99379,-1.14307 2.36339,-2.17184 3.89078,-3.0603 1.52884,-0.8893 3.22669,-1.64378 4.8567,-2.21653 1.62777,-0.57196 3.19185,-0.89526 4.50637,-0.97113 1.3119,-0.0757 2.50567,0.43254 3.55048,1.31369 1.04784,0.88369 1.9528,2.14743 2.69816,3.60595 1.48881,2.91331 2.33662,6.60875 2.37916,9.37118 0.0425,2.76014 -0.61705,5.25531 -1.91562,7.09981 -0.57775,0.82066 -1.2813,1.51219 -2.10481,2.04526"
id="path56090-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssss"
inkscape:path-effect="#path-effect5585-05-90"
inkscape:original-d="m 410.42925,256.46728 c 0,5.15416 -2.8144,9.23447 -7.96856,9.23447 -5.15416,0 -14.72127,-9.62754 -14.72127,-14.78169 0,-5.15416 9.19004,-8.45316 14.34419,-8.45316 5.15416,0 8.34564,8.84622 8.34564,14.00038 z" />
<path
transform="matrix(0.6073301,-0.07702919,0.10095373,0.79599137,148.51193,89.53504)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.651916;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 354.24897,270.00601 c -0.18958,3.5594 -0.97721,6.7606 -2.41122,9.29687 -1.11108,1.96511 -2.61431,3.54563 -4.57977,4.64151 -1.96495,1.09559 -4.39611,1.70894 -7.38574,1.74923 -4.99223,0.0673 -10.7985,-1.47592 -15.77673,-4.34236 -0.9747,-0.56123 -1.9174,-1.17173 -2.81854,-1.82852 -2.75372,-2.00705 -5.11782,-4.4456 -6.8137,-7.22277 -1.69659,-2.77835 -2.72265,-5.89143 -2.80611,-9.26425 -0.14525,-5.86944 2.58992,-11.58225 6.43619,-16.30137 0,0 0,0 0,0 0.16052,-0.19694 0.32415,-0.39126 0.49078,-0.58291 m -8.545,17.20777 c -0.0549,-0.41776 -0.0933,-0.83965 -0.11442,-1.26547 -0.33042,-6.65612 3.58288,-13.02871 9.08404,-17.96243 5.1179,-4.59 11.64423,-7.96864 17.22773,-8.93753 0.39944,-0.0693 0.79479,-0.12262 1.18535,-0.15986 2.92537,-0.27891 5.34285,0.3639 7.28095,1.62019 1.94864,1.26312 3.45722,3.17001 4.60698,5.54334 2.12325,4.38281 3.02747,10.37198 3.30981,16.83148 m -1.44743,-13.52697 c 1.69122,4.50406 2.2576,10.45905 2.14127,16.48263 -0.12246,6.34145 -0.99959,11.65285 -3.42867,15.40877 -1.16649,1.80367 -2.68871,3.23533 -4.6474,4.18932 -0.0674,0.0328 -0.13514,0.0651 -0.20331,0.0969 -2.05511,0.95776 -4.47616,1.43771 -7.31825,1.34435 -5.69949,-0.18722 -11.78792,-2.60956 -16.11516,-6.73811 -1.7716,-1.69026 -3.26181,-3.67399 -4.33035,-5.91075 m 35.03707,2.32196 c -0.58979,2.64734 -1.34471,4.90055 -2.38374,6.74261 -1.08857,1.92991 -2.4909,3.4058 -4.28836,4.32944 -1.79191,0.92079 -3.98824,1.29392 -6.59225,0.94759 -5.16125,-0.68642 -10.80853,-4.04529 -15.09845,-9.26585 0.0123,0.015 -0.25165,-0.30638 -0.23931,-0.29136 -2.1707,-2.64427 -4.34374,-5.33331 -6.08049,-8.11843 -1.74935,-2.80532 -3.02982,-5.6652 -3.54819,-8.69942 -1.0255,-6.00275 1.16315,-11.31615 4.66561,-15.46288 0.0324,-0.0383 0.0649,-0.0766 0.0975,-0.11473 2.73965,-3.20525 7.56167,-5.70759 12.56398,-6.76213 m -16.57832,16.54366 c 1.73968,-3.39452 4.23953,-6.40375 7.07781,-8.79369 5.06991,-4.26905 11.20841,-6.55768 16.35964,-5.87379 2.56892,0.34105 4.65738,1.39385 6.29012,3.0247 0.26971,0.2694 0.52723,0.55478 0.77275,0.85567 1.24995,1.53183 2.275,3.34212 3.15511,5.40253 2.01506,4.71741 3.41089,11.23996 4.40306,17.25409 1.01911,6.17742 1.45137,11.26144 0.20948,15.3744 -0.0283,0.0938 -0.0578,0.18667 -0.0885,0.27862 -0.48721,1.46137 -1.27089,2.69755 -2.3295,3.66374"
id="path56092-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssss"
inkscape:path-effect="#path-effect5585-05-90"
inkscape:original-d="m 353.75062,261.617 c 0,13.00256 -3.17784,22.37559 -14.64956,22.37559 -11.47171,0 -26.89318,-9.37303 -26.89318,-22.37559 0,-13.00256 15.42147,-24.71084 26.89318,-24.71084 11.47171,0 14.64956,11.70828 14.64956,24.71084 z" />
<path
transform="matrix(0.7930279,-0.12721534,0.12720616,0.7929707,43.0427,118.1214)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.568896;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 364.19032,309.20258 c -0.27947,0.55765 -0.59308,1.1089 -0.93726,1.65194 -1.49645,2.36107 -3.57062,4.56573 -5.91747,6.457 -2.34542,1.89013 -4.95627,3.46107 -7.50035,4.53926 -2.54556,1.07883 -5.01509,1.66088 -7.0967,1.58654 -2.28916,-0.0817 -4.85864,-1.04558 -7.39169,-2.62648 -1.51992,-0.9486 -3.02996,-2.1218 -4.45692,-3.46528 -0.95303,-0.89728 -1.86801,-1.86817 -2.72851,-2.8963 -2.14996,-2.56876 -3.95362,-5.48795 -5.15312,-8.48047 -1.19891,-2.99101 -1.7919,-6.04966 -1.51462,-8.88882 0.27747,-2.84127 0.78818,-5.18069 1.60248,-7.09912 0.81502,-1.92012 1.93062,-3.41096 3.40975,-4.58038 1.1274,-0.89135 2.4618,-1.59243 4.02187,-2.15147 0.2238,-0.0802 0.45336,-0.1566 0.68878,-0.22928 m -11.48501,14.33614 c -0.009,-0.41027 0.001,-0.8167 0.0308,-1.21845 0.20656,-2.79547 0.7402,-5.11007 1.59979,-6.98293 0.86251,-1.87924 2.0626,-3.34034 3.65452,-4.46897 3.21283,-2.27781 7.94605,-3.18041 14.99788,-3.68937 4.22299,-0.30479 7.92192,-0.12453 11.05583,0.4679 3.17761,0.60069 5.81372,1.89363 7.84581,3.60623 4.05078,3.4139 5.83008,8.54666 5.23488,14.41834 -0.27383,2.70137 -1.20332,5.38699 -2.55091,7.90856 m 0.40133,2.90408 c -1.73071,2.2168 -3.7965,4.22694 -5.99482,5.92261 -2.43687,1.87968 -5.03515,3.37224 -7.5403,4.35206 -2.5021,0.97862 -4.91054,1.44475 -6.939,1.2661 -2.23913,-0.19721 -4.72674,-1.30341 -7.22884,-3.05229 -2.24876,-1.57181 -4.50469,-3.65949 -6.59571,-6.05328 0,0 0,0 0,0 -0.23399,-0.26787 -0.46329,-0.53871 -0.68763,-0.81228 -2.23361,-2.72375 -3.958,-5.69569 -4.96786,-8.70048 -1.0062,-2.99389 -1.30219,-6.02299 -0.66721,-8.80541 0.63372,-2.77689 1.52834,-5.0818 2.6997,-6.9404 1.17747,-1.86829 2.6532,-3.3218 4.53772,-4.44912 0.79615,-0.47626 1.66579,-0.89491 2.62001,-1.26497 m -9.99379,17.03907 c -0.0113,-0.46556 0.005,-0.92912 0.0505,-1.38886 0.26241,-2.66318 0.8594,-4.94834 1.78465,-6.82724 0.92982,-1.88818 2.19681,-3.38763 3.87414,-4.58654 3.37331,-2.41114 8.35684,-3.59379 15.96919,-4.71346 4.47138,-0.65767 8.44021,-0.84493 11.92261,-0.59048 3.6857,0.26931 6.47512,1.45792 8.45387,3.1374 3.8306,3.25123 4.92715,8.53815 3.13973,14.48683 -0.90305,3.00541 -2.68875,5.98311 -5.04856,8.7326 -1.81038,2.10933 -3.94475,4.06716 -6.23357,5.76442 -0.69017,0.51179 -1.37427,1.00246 -2.04865,1.4695 -2.90636,2.01277 -5.64817,3.59939 -8.08877,4.63568 -1.54191,0.6547 -2.97267,1.09418 -4.26699,1.29129"
id="ellipse56100-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="sssss"
inkscape:path-effect="#path-effect5585-05-90"
inkscape:original-d="m 365.43938,301.17946 c -1.39215,10.94493 -15.39214,20.92925 -23.3478,20.51681 -8.76875,-0.45459 -21.44044,-15.09171 -20.04828,-26.03663 1.39215,-10.94493 6.52469,-13.9178 20.04828,-13.9178 16.41066,0 24.73996,8.49269 23.3478,19.43762 z" />
<ellipse
transform="matrix(0.07400001,-0.01187088,0.01180082,0.0735633,310.27382,264.41589)"
id="ellipse56102-5"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:6.11448;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
ry="19.977217"
rx="21.872864"
cy="301.71906"
cx="342.09158" />
<ellipse
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:6.11448;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path56096-1"
transform="matrix(0.07400001,-0.01187088,0.01180082,0.0735633,343.88321,259.49879)"
ry="19.977217"
rx="21.872864"
cy="301.71906"
cx="342.09158" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.568896;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 330.95942,322.57859 c 7.46613,3.21146 14.42252,4.9006 20.19365,5.53058 1.44032,0.15723 2.68028,-0.57182 2.5847,-1.86999 -0.24371,-3.31007 -0.51088,-6.61629 -0.76323,-9.94857 0.0317,1.73626 0.25969,3.37189 0.56683,4.83454 0.51223,2.43938 1.24956,4.41227 1.62228,5.55308 0.0991,0.30327 0.46915,0.79115 0.97206,1.20797 0.5027,0.41666 1.13906,0.763 1.76607,0.78311 10.48504,0.33638 19.94671,-2.19898 28.55507,-6.65312 0.007,-0.004 0.64606,-0.33432 0.65331,-0.33807 m -19.51934,5.24829 c 9.36293,-1.55606 18.88898,-5.46219 28.53038,-11.16819 2.27566,-1.34679 4.01236,-3.03556 5.32665,-4.79176 m -70.39826,10.1464 c 6.81892,3.27292 13.43885,4.77517 18.92236,5.35004 1.51957,0.1593 2.8016,-0.57332 2.77727,-1.87071 -0.0621,-3.31118 -0.11653,-6.61235 -0.12273,-9.87421 0.23023,2.57913 0.88147,4.97044 1.5692,6.95892 0.57499,1.6625 1.12282,2.98612 1.44487,3.85378 0.11691,0.315 0.51892,0.82405 1.05064,1.26072 0.5323,0.43713 1.1935,0.80118 1.83941,0.83574 9.61382,0.51435 17.7406,-1.72346 25.44717,-5.30966 m -12.91908,2.28653 c 9.83786,-0.63189 18.95105,-3.90227 27.50017,-7.61316 2.53329,-1.09962 4.12683,-2.76408 5.06129,-4.3762 0,0 0,0 0,0 0.35787,-0.6174 0.65515,-1.26933 0.89772,-1.91001 0.39576,-1.04533 0.64469,-2.05718 0.77662,-2.84387"
id="path56098-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="csscsssc"
transform="matrix(0.7930279,-0.12721534,0.12720616,0.7929707,37.226015,124.74758)"
inkscape:path-effect="#path-effect5585-05-90"
inkscape:original-d="m 324.54018,317.3586 c 8.51107,5.91327 18.17005,8.38631 25.72611,9.08777 1.50329,0.13956 2.77774,-0.60728 2.74028,-1.92132 l -0.28722,-10.07471 c 0.29964,4.60091 1.94597,8.55652 2.60078,10.40935 0.21687,0.61367 1.54921,1.9796 2.83444,2.04127 14.80923,0.7107 27.24849,-3.56094 40.00416,-10.30282 7.94603,-4.19979 8.94334,-12.90045 8.52675,-12.73393" />
<g
id="g56396-4">
<path
inkscape:original-d="m 222.2021,452.89491 c 22.34119,-27.28441 15.00477,-40.57682 29.7733,-30.87509 17.20547,11.30261 -3.39258,131.46717 -36.69287,94.8974 -33.3003,-36.56976 6.91957,-64.02231 6.91957,-64.02231 z"
inkscape:path-effect="#path-effect5585-05"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.456902;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 227.0274,449.62102 c 3.77424,-4.9256 6.34843,-9.20953 8.23959,-12.81384 2.5776,-4.91259 4.00035,-8.74623 5.25659,-11.46262 0.62855,-1.35911 1.20795,-2.43181 1.84255,-3.20534 0.63383,-0.77259 1.31994,-1.24223 2.14806,-1.38891 0.82889,-0.14682 1.79313,0.0306 2.99122,0.54659 0.56812,0.24466 1.18703,0.56448 1.87107,0.96117 0.75893,0.44013 1.59579,0.97439 2.52851,1.6048 1.03313,0.69827 1.91721,1.81615 2.65862,3.28599 0.74078,1.46858 1.33954,3.28972 1.79926,5.38679 0.91334,4.16633 1.29776,9.53188 1.05917,15.3411 -0.12978,3.16002 -0.4455,6.48467 -0.97688,9.86931 0,0 0,0 0,0 -0.0368,0.23443 -0.0735,0.47 -0.11002,0.70681 m -0.67443,-19.3348 c 0.0643,2.45551 0.0695,5.15854 0.0249,7.9304 -0.0936,5.80927 -0.4138,12.62669 -1.08871,18.92596 -0.38068,3.55305 -0.88593,7.0773 -1.5698,10.4707 -0.55603,2.75908 -1.22028,5.69472 -1.9722,8.68115 -1.67853,6.66671 -3.79007,13.57994 -6.17798,19.53123 -0.3773,0.94033 -0.76174,1.85748 -1.1532,2.74821 m 7.04718,-12.73756 c -1.64303,4.27887 -3.28529,8.20231 -5.05457,11.73889 -2.67981,5.35661 -5.59159,9.68906 -8.90435,12.65486 -1.6467,1.47424 -3.38082,2.59683 -5.19431,3.30085 -1.70454,0.66173 -3.48326,0.95551 -5.33814,0.81924 -0.11895,-0.009 -0.23793,-0.0191 -0.35694,-0.0312 -1.97466,-0.2008 -3.96626,-0.86901 -5.94318,-2.07638 -1.97267,-1.2048 -3.93864,-2.95327 -5.80529,-5.30023 -4.80908,-6.04648 -7.25882,-11.96468 -8.27536,-17.57273 m 6.28426,17.64881 c -6.99117,-7.59157 -9.43973,-16.48022 -9.494,-24.20325 -0.0417,-5.94172 1.28887,-11.64539 3.36281,-16.9119 1.01238,-2.5708 2.03301,-4.85312 3.04868,-6.89956 3.07207,-6.18984 6.15472,-10.31512 8.5108,-13.01782 2.37434,-2.72364 4.11656,-4.11111 4.12146,-4.11499 1e-5,0 1e-5,0 1e-5,0 1.25583,-2.1429 2.28762,-4.25807 3.18001,-6.35367 1.4933,-3.50675 3.72661,-7.47112 5.44217,-10.44733 0.50348,-0.87345 1.01445,-1.74974 1.49341,-2.56628 m -3.3697,13.25736 c 2.73958,-3.80657 4.73485,-7.14373 6.25849,-10.01053 2.49152,-4.68788 3.7967,-8.23223 4.93698,-10.69384 0.57014,-1.2308 1.09514,-2.18811 1.67892,-2.85758 0.58378,-0.66947 1.22752,-1.05261 2.00514,-1.10041 0.77892,-0.0479 1.68488,0.24324 2.79108,0.93361 1.0703,0.66797 2.3278,1.7093 3.8386,3.17267 -0.002,-0.002 0.15045,0.14552 0.14875,0.14388 0.92996,0.89812 1.72094,2.18754 2.43182,3.83409 0.70637,1.6361 1.32707,3.61092 1.91046,5.81498 1.05663,3.99198 2.33255,10.17647 3.30797,15.61318 0.70831,3.9479 1.42472,8.43325 1.90385,13.0598 0.1754,1.69359 0.2367,3.38467 0.19558,5.07471 m -1.16839,-25.39262 c -0.001,1.06668 -0.009,2.1532 -0.0239,3.25319 -0.0842,6.29864 -0.38918,13.62249 -0.87426,20.70521 -0.39113,5.71103 -0.92722,11.69625 -1.66851,17.70703 -0.19725,1.59933 -0.44755,3.15588 -0.74462,4.67263 -1.40737,7.18558 -3.90619,13.62964 -6.7401,19.12026 -2.19424,4.25126 -4.70041,8.13382 -7.21343,11.23247 m 8.33942,-15.56485 c -0.51841,1.64766 -1.10391,3.20647 -1.74526,4.67394 -2.40931,5.51267 -5.6519,9.83614 -9.17051,12.63354 -1.76943,1.40676 -3.63929,2.4529 -5.56829,3.07369 -1.93159,0.62162 -3.94026,0.82357 -6.02245,0.52638 -2.08509,-0.2976 -4.25229,-1.0962 -6.52318,-2.48479 -0.42882,-0.26221 -0.86125,-0.54541 -1.29738,-0.85014 -1.87218,-1.30813 -3.74078,-2.95879 -5.56827,-4.96663 -8.44922,-9.28305 -11.55822,-17.57091 -12.48908,-25.35025 m 4.46512,14.66893 c -3.24031,-5.70284 -4.90323,-10.67675 -5.32631,-15.23017 -0.63637,-6.84886 1.59548,-12.37336 5.1692,-16.46556 0.24598,-0.28167 0.4981,-0.55636 0.75584,-0.82417 3.18142,-3.30557 7.52785,-8.35463 10.31543,-11.48644 3.29755,-3.70476 5.79157,-6.21213 5.79845,-6.21869 1e-5,-10e-6 1e-5,-2e-5 1e-5,-2e-5 1.60822,-2.53291 3.10724,-5.12082 4.4472,-7.5305 m -12.16867,12.5033 c 8.2e-4,-7.9e-4 0.002,-0.002 0.002,-0.002 3.13599,-3.01543 5.69848,-4.75104 5.70541,-4.75572 1e-5,0 2e-5,-10e-6 2e-5,-10e-6 5.67965,-6.84718 9.78593,-13.01019 12.85292,-18.17848 2.43271,-4.09945 4.15197,-7.46355 5.60588,-10.16265 0.38226,-0.70964 0.72986,-1.35752 1.06195,-1.95815 0.79175,-1.43201 1.4694,-2.54678 2.17804,-3.35421 0.70638,-0.80486 1.43814,-1.29482 2.30585,-1.45917 0.86624,-0.16408 1.8717,-0.003 3.09283,0.50289 1.22019,0.50576 2.66065,1.35916 4.37636,2.58271 1.00032,0.71338 1.83141,1.85486 2.48344,3.36351 0.65303,1.51095 1.12266,3.3798 1.41492,5.55528 0.47176,3.51151 0.46737,7.68609 0.12227,12.39793 -0.0862,1.17685 -0.1695,2.34723 -0.25378,3.5739 -0.20834,3.03211 -0.36266,5.51914 -0.56367,8.73535"
id="path56370-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cssc"
transform="rotate(-32.082593,193.21273,88.278771)"
inkscape:transform-center-x="-6.1237258"
inkscape:transform-center-y="33.448531" />
</g>
<g
id="g56435-4"
transform="translate(-10.498975,10.498975)"
inkscape:transform-center-x="40.829385"
inkscape:transform-center-y="20.997926">
<path
inkscape:original-d="m 217.41952,449.54263 c 20.40925,-20.10821 21.20554,-43.00797 35.97407,-33.30624 17.20547,11.30261 0.4946,101.30707 -32.71748,90.69208 -48.79949,-15.59692 -18.1809,-42.68169 -3.25659,-57.38584 z"
inkscape:path-effect="#path-effect5585-05"
sodipodi:nodetypes="ssss"
inkscape:connector-curvature="0"
id="path56409-9"
d="m 222.69724,446.65601 c 3.27914,-3.691 5.8397,-7.2458 7.97198,-10.55602 3.11052,-4.82886 5.34435,-9.17798 7.44426,-12.63117 1.05055,-1.72759 2.06147,-3.22479 3.11,-4.43149 1.04771,-1.20575 2.1287,-2.11589 3.30664,-2.66161 0.53756,-0.24904 1.09465,-0.42183 1.67694,-0.51205 0.69306,-0.10738 1.42147,-0.097 2.19476,0.0415 1.42415,0.25518 2.99551,0.94397 4.7843,2.12672 1.04161,0.68871 1.95124,1.67978 2.73124,2.92647 0.77968,1.24618 1.43007,2.74834 1.95138,4.45621 1.0393,3.40491 1.57666,7.67041 1.55741,12.34107 -0.0122,2.95046 -0.24672,6.08254 -0.72898,9.28952 0,0 0,0 0,0 -0.001,0.008 -0.10496,0.69872 -0.10623,0.70711 m -1.49132,-19.2943 c 0.33475,2.5546 0.53134,5.43865 0.60575,8.48097 0.11538,4.71729 -0.0573,10.07738 -0.57515,15.29973 -0.44994,4.53753 -1.17175,9.10811 -2.2711,13.42815 -0.17938,0.7049 -0.36815,1.42069 -0.56594,2.14516 -1.4093,5.16196 -3.28363,10.79183 -5.49612,16.06427 -1.77067,4.21954 -3.75229,8.19952 -5.92442,11.63667 m 8.70413,-11.93301 c -0.4702,0.96841 -0.94478,1.91661 -1.42529,2.84328 -2.58109,4.97761 -5.31455,9.29377 -8.39423,12.73285 -3.06861,3.42672 -6.45092,5.94314 -10.18356,7.2236 -1.86575,0.64004 -3.81979,0.97047 -5.86538,0.94291 -1.05088,-0.0142 -2.12673,-0.12275 -3.22998,-0.33267 -1.04533,-0.1989 -2.09206,-0.48137 -3.13791,-0.85299 -6.30652,-2.24088 -10.75504,-4.42716 -14.12439,-6.78442 -3.336,-2.33394 -5.57151,-4.82333 -6.95372,-7.40012 -0.70527,-1.31482 -1.19182,-2.66005 -1.48016,-4.02641 m 9.39521,14.92644 c -0.34328,-0.17002 -0.67744,-0.34314 -1.00264,-0.51906 -3.92439,-2.12291 -6.6305,-4.6958 -8.35631,-7.34379 -1.73888,-2.66805 -2.5575,-5.51342 -2.64929,-8.42052 -0.0922,-2.91839 0.54408,-5.93219 1.73774,-9.02328 1.19368,-3.09113 2.94311,-6.25456 5.05813,-9.45001 0.54915,-0.82967 1.12255,-1.66087 1.71645,-2.49234 1.69002,-2.36605 3.36439,-4.53508 4.95097,-6.49715 4.29509,-5.3116 7.96816,-9.18217 10.61497,-12.34058 2.65194,-3.16453 4.47396,-6.41828 5.98896,-9.87176 0.54374,-1.23947 1.15662,-2.49655 1.80552,-3.73634 1.63053,-3.1153 3.59462,-6.32296 5.47336,-9.0735 m -7.1993,17.67328 c 2.30468,-2.78584 4.21511,-5.46005 5.85285,-7.95879 3.03133,-4.62497 5.15057,-8.6734 7.09248,-11.77993 0.97108,-1.55345 1.89559,-2.87005 2.85443,-3.89728 0.95675,-1.025 1.95044,-1.76354 3.03403,-2.13275 1.08201,-0.36867 2.25947,-0.36978 3.55339,0.11115 0.16937,0.063 0.34078,0.13418 0.51429,0.21395 1.16405,0.53518 2.43837,1.38641 3.96902,2.60843 1.02286,0.81664 1.93858,1.91069 2.77868,3.25147 0.83749,1.33662 1.59648,2.91372 2.29856,4.67174 1.36644,3.42158 2.63948,7.86347 3.65859,12.48206 0.82895,3.7568 1.57144,8.00341 2.0264,12.47483 0.11177,1.09846 0.1711,2.19805 0.18066,3.2988 0.005,0.59052 -0.004,1.18078 -0.0271,1.77077 m -1.5428,-25.38624 c 0.072,1.26361 0.1233,2.56465 0.15537,3.8938 0.12384,5.13191 -0.0343,10.86575 -0.43952,16.67025 -0.40707,5.83109 -1.08094,11.99677 -2.07253,18.17773 -0.14849,0.9256 -0.3044,1.8535 -0.468,2.78285 0,0 0,10e-6 0,10e-6 -0.93363,5.30359 -2.55031,10.10643 -4.5949,14.42777 -2.38361,5.03785 -5.41265,9.54405 -8.64293,13.19 -1.72462,1.94653 -3.53913,3.68462 -5.40466,5.15774 m 10.77626,-13.8685 c -1.55027,3.47842 -3.48868,6.47397 -5.6888,8.92641 -3.08776,3.44189 -6.743,5.87387 -10.6905,7.00882 -1.98309,0.57015 -4.0608,0.82015 -6.22297,0.70231 -2.16388,-0.11794 -4.41823,-0.60428 -6.76906,-1.51257 -1.75866,-0.67949 -3.43542,-1.36817 -5.02375,-2.05938 -4.66495,-2.03007 -8.1981,-3.80497 -11.11213,-5.62152 -3.86151,-2.40718 -6.49945,-4.82045 -8.27696,-7.33733 -1.77318,-2.51074 -2.67683,-5.11682 -2.92359,-7.79573 -0.12267,-1.3318 -0.0832,-2.68155 0.0913,-4.05233 m 4.78937,13.92596 c -1.10115,-1.03642 -2.03068,-2.07261 -2.80222,-3.11655 -1.7514,-2.36976 -2.66901,-4.75697 -2.90619,-7.14673 -0.23656,-2.38341 0.20812,-4.75041 1.17345,-7.01751 0.96586,-2.26835 2.45043,-4.43181 4.30049,-6.42167 1.85481,-1.99497 4.0593,-3.7983 6.48664,-5.39658 0.1877,-0.12359 0.37662,-0.24588 0.5667,-0.36689 0,0 0,0 0,0 4.77004,-3.03657 9.26132,-7.50969 12.93276,-11.87419 3.29468,-3.91661 6.12016,-8.47069 8.55006,-12.74685"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.435033;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="matrix(0.76923307,0.70101543,-0.78840458,0.71549679,583.57095,3.6240884)"
inkscape:transform-center-x="36.537697"
inkscape:transform-center-y="17.753613" />
</g>
</g>
</g>
<path
inkscape:connector-curvature="0"
d=""
inkscape:path-effect="#path-effect5585-05"
transform="matrix(0.07400001,-0.01187088,0.01180082,0.0735633,310.27382,264.41589)"
id="path56209"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:4.01474;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
ry="19.977217"
rx="21.872864"
cy="301.71906"
cx="342.09158" />
<path
inkscape:connector-curvature="0"
d=""
inkscape:path-effect="#path-effect5585-05"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:4.01474;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path56211"
transform="matrix(0.07400001,-0.01187088,0.01180082,0.0735633,343.88321,259.49879)"
ry="19.977217"
rx="21.872864"
cy="301.71906"
cx="342.09158" />
</g>
<g
style="display:inline"
inkscape:label="CroquisInkscape"
id="layer12"
inkscape:groupmode="layer">
<g
style="display:inline"
inkscape:label="InkSunset"
id="layer10"
inkscape:groupmode="layer">
<g
style="display:inline;filter:url(#filter6821)"
transform="rotate(-23.555013,-81.404552,-79.606795)"
id="g56067">
<path
id="path42079"
transform="matrix(0.9965784,0,0,0.9962666,384.47087,296.4808)"
style="opacity:1;fill:none;stroke:#000000;stroke-width:0.301077;stroke-miterlimit:4;stroke-dasharray:none"
d="m 75.893839,22.031595 c 4.243283,3.727928 8.16126,7.670019 11.929386,11.689224 0.724034,0.758124 1.063322,1.916427 1.100985,3.004794 0.0376,1.086486 -0.225583,2.10038 -0.700403,2.558014 -2.840981,-2.153255 -5.716099,-4.295402 -8.582698,-6.459758 -0.470627,2.227943 -0.937747,4.446741 -1.39009,6.647591 -0.210936,1.026295 -0.418141,2.050106 -0.622372,3.071399 -2.317557,-1.216955 -4.617516,-2.448803 -6.910776,-3.69599 -3.734975,2.219968 -7.450678,4.395813 -11.200288,6.525363 -1.334663,-5.030734 -2.714804,-10.12356 -4.223029,-15.281851 -0.202837,0.356263 -0.406597,0.712054 -0.61133,1.067372 -0.122488,0.212581 -0.244148,0.425879 -0.364999,0.639875 m 5.628439,11.403026 c -0.735122,0.416165 -1.463796,0.831783 -2.186553,1.246648 -1.41666,-4.957333 -2.611582,-9.942862 -3.706519,-15.003625 -1.83579,3.988849 -3.585396,7.912849 -5.346252,11.734357 -2.752941,-0.253817 -5.510185,-0.546842 -8.294786,-0.88798 -1.921939,-0.235454 -3.852648,-0.39515 -5.788808,-0.493873 -0.68705,-0.0302 -1.177513,-0.225794 -1.481031,-0.555264 -0.303193,-0.329117 -0.417778,-0.790596 -0.352368,-1.342204 0.130687,-1.102096 0.980441,-2.557258 2.460633,-3.955923 3.102485,-3.242172 7.000252,-6.70468 11.245825,-10.324119 0.607463,-0.517875 1.211794,-1.030479 1.803665,-1.531468 m -9.541498,12.595788 c 2.460987,-2.845219 5.472449,-6.069344 8.561552,-9.34916 4.015051,-4.262932 7.169934,-7.591573 9.063951,-9.782416 1.739157,-1.956272 4.144319,-2.971746 6.514481,-3.08622 1.95344,-0.09435 3.886452,0.42374 5.409095,1.532183 0.3257,0.237101 0.637236,0.502633 0.930901,0.796296 5.026761,5.126726 11.03843,10.602444 17.508192,15.96299 0.887113,0.722586 1.42888,1.853167 1.663362,2.893906 0.236221,1.048459 0.162451,2.011252 -0.189257,2.443618 -0.863004,-0.932459 -1.715439,-1.872545 -2.560415,-2.822998 m -9.261507,-9.344976 c 3.039535,3.469832 6.335383,6.649455 9.816928,9.603175 0.804114,0.66961 1.253797,1.729674 1.405254,2.696464 0.152089,0.970824 0.0067,1.866393 -0.391109,2.246251 -2.403509,-2.594053 -4.718566,-5.300975 -6.975486,-8.09316 -0.113641,2.611938 -0.178252,5.15197 -0.217311,7.641476 -9.6e-4,0.06119 -0.0021,0.122589 -0.0035,0.184189 -1.864419,-1.714963 -3.933689,-3.218534 -6.165962,-4.568458 -3.631535,2.045713 -7.731992,4.533428 -12.097196,7.181386 -2.047595,-4.430355 -4.45028,-8.645785 -6.890905,-13.083951 -0.924884,1.369083 -1.852707,2.720911 -2.776632,4.046049 -2.158031,3.095155 -3.869348,6.09979 -5.277529,9.041296 -1.929962,-0.01274 -3.755729,-0.04717 -5.506235,-0.09778 m 17.591549,-4.693002 c -0.53759,-2.477151 -1.130061,-4.906695 -1.77006,-7.29213 -1.99434,4.307434 -4.148914,8.763571 -6.41821,13.346745 -5.184543,0.36723 -10.494456,0.873289 -15.877744,1.493423 -0.781431,0.09485 -1.335551,-0.01776 -1.699516,-0.273287 -0.362052,-0.254184 -0.534779,-0.649435 -0.543924,-1.112372 -0.0044,-0.220821 0.0284,-0.458388 0.09653,-0.706743 0,0 0,0 0,0 0.218511,-0.796485 0.829177,-1.732254 1.843614,-2.687536 2.646634,-2.788064 6.921901,-6.786873 11.688411,-10.984859 4.64238,-4.088662 9.322734,-7.939925 11.576843,-9.860559 2.151909,-1.78934 4.879988,-2.720392 7.650745,-2.796512 0.202943,-0.0056 0.405194,-0.007 0.606553,-0.0044 1.818849,0.02361 3.564368,0.380765 5.091332,1.063285 m -20.264862,4.52164 c 2.749136,-2.596377 5.259643,-4.920553 6.641302,-6.267213 1.846574,-1.749069 4.401762,-2.563915 6.99175,-2.460576 2.589377,0.103315 5.208435,1.123464 7.18202,3.042535 3.94664,3.902865 7.997133,7.896599 12.0878,12.126667 2.09257,2.163881 4.075399,4.233647 5.977952,6.243345 0.776087,0.805723 1.164103,2.003161 1.240029,3.117295 0.0759,1.113802 -0.160366,2.139069 -0.620061,2.6049 -2.753785,-2.112619 -5.609815,-4.285817 -8.499223,-6.440028 -0.71155,3.276418 -1.452651,6.569646 -2.165938,9.945963 -0.824315,-0.37849 -1.646619,-0.750977 -2.4658,-1.116174 m 18.686534,39.950773 c 1.16283,-0.341707 2.3342,-0.6892 3.537389,-1.063301 4.712841,-1.46534 9.289741,-3.161242 13.116741,-5.386463 1.87757,-1.091711 3.52822,-2.2889 4.81511,-3.585723 1.28504,-1.294964 2.22502,-2.706519 2.64799,-4.238933 0.4243,-1.537257 0.3368,-3.216708 -0.47088,-5.111196 -0.71659,-1.680835 -2.00136,-3.535391 -3.99646,-5.619023 0,0 0,0 0,0 -0.25646,-0.267841 -0.52261,-0.537881 -0.79849,-0.810059 -9.2231,-9.282971 -16.084462,-16.805025 -23.787838,-25.41403 m 10.259318,11.107022 c -8.597378,-9.326781 -17.879026,-17.248461 -25.791095,-23.236367 -0.81855,-0.619484 -1.662544,-1.331215 -2.527413,-2.123586 -2.410777,-2.006687 -5.789492,-3.311672 -9.203369,-3.681639 -3.418644,-0.370483 -6.802633,0.204805 -9.264401,1.876284 -1.263554,0.861972 -2.52319,1.685889 -3.768444,2.498326 m 10.194513,-5.700144 c -3.20394,0.295619 -6.233455,1.567703 -8.42245,3.833951 -6.961551,7.234849 -13.359283,14.020027 -19.64736,20.881332 -5.885674,6.42222 -13.211605,13.372315 -20.80965,20.275514 -3.4031314,3.023778 -5.1581087,5.369666 -5.7463944,7.294848 -0.2837849,0.928694 -0.2921207,1.750522 -0.086184,2.484479 0.00619,0.02207 0.012587,0.04406 0.019182,0.06597 0.2256232,0.749566 0.6869666,1.41032 1.3257221,1.995352 1.2807973,1.173074 3.2834585,2.053081 5.6701965,2.799612 0.961894,0.300863 1.98265,0.579096 3.041213,0.846753 m -1.280889,-16.428054 c -0.402984,0.413027 -0.804146,0.825382 -1.20356,1.237143 -3.034677,3.056519 -4.4925954,5.469829 -4.8479409,7.404932 -0.1782649,0.970776 -0.08052,1.828161 0.2437716,2.593812 0.3244013,0.76591 0.8760653,1.44145 1.6078323,2.048622 1.464369,1.215034 3.648145,2.15491 6.168765,2.994734 2.514894,0.837915 5.372212,1.577994 8.135033,2.382842 3.716854,1.488174 6.348015,2.813683 8.123133,4.029671 0.282332,0.193403 0.542938,0.383999 0.782747,0.572014 0,0 1e-6,10e-7 1e-6,10e-7 1.266262,0.992773 1.937761,1.878517 2.179795,2.744 0.286244,1.023569 -0.03316,2.021333 -0.726657,3.041839 -0.695617,1.023631 -1.766537,2.068196 -3.006579,3.192435 -0.91916,0.833323 -1.255929,1.691699 -1.136617,2.550199 0.119075,0.856789 0.692236,1.700925 1.58429,2.495118 1.800388,1.60288 4.820684,2.952217 8.112691,3.976572 3.310904,1.030235 6.765564,1.69821 9.532769,2.125904 0.822837,0.127175 1.573868,0.231358 2.220939,0.315014 0.312451,0.04039 0.601628,0.07952 0.861045,0.115555 m 39.030652,-15.612762 c 0.08086,-0.0378 0.162242,-0.07559 0.244133,-0.113357 1.783717,-0.822686 3.81138,-1.639544 5.919026,-2.487294 4.270204,-1.717589 8.699814,-3.501355 12.358964,-5.726361 1.80683,-1.098675 3.38879,-2.285313 4.61068,-3.578421 1.21769,-1.288675 2.08973,-2.696225 2.43673,-4.227976 0.34755,-1.534164 0.17753,-3.222314 -0.76088,-5.128306 -0.40299,-0.818488 -0.94932,-1.681137 -1.66226,-2.595523 0,0 0,0 0,0 -0.95435,-1.224015 -2.12115,-2.497592 -3.5002,-3.830043 -9.59662,-9.462524 -14.520083,-17.031291 -20.883376,-26.336063 -0.45145,-0.660136 -0.923927,-1.311505 -1.415824,-1.954825 m 14.03029,14.417094 c -9.560033,-9.397162 -19.04735,-17.55971 -29.313022,-24.185533 -0.914653,-0.590349 -1.81481,-1.231182 -2.702566,-1.916424 -2.850414,-2.013434 -6.388453,-3.188244 -9.87047,-3.333398 -3.473179,-0.144786 -6.82524,0.743458 -9.24549,2.801946 -3.54128,3.024664 -7.080687,5.884549 -10.790652,9.08006 -2.491208,2.145757 -4.954174,4.406797 -7.404231,6.717191 m 18.100344,-17.881967 c -10.047788,10.216833 -19.315493,19.973624 -30.123446,31.43166 -4.79191,5.080137 -8.97578,9.070818 -12.9540219,12.484721 -2.8610238,2.389342 -4.208558,4.145097 -4.5119522,5.670952 -0.1488442,0.748579 -0.030387,1.413201 0.3118598,1.982386 0.343176,0.570729 0.9072008,1.039908 1.6506295,1.414765 1.5016203,0.757159 3.6554638,1.09753 6.1254098,1.264104 0.491591,0.03315 0.992956,0.05935 1.501462,0.08097 1.234016,0.05247 2.49875,0.150167 3.801089,0.323016 m -8.6869384,-6.647389 c -0.7838595,1.237496 -1.2377663,2.315134 -1.4093632,3.275786 -0.1669143,0.934437 -0.06517,1.753771 0.2605992,2.478006 0.3256779,0.724033 0.8748557,1.351527 1.6000354,1.897646 1.453246,1.094414 3.598882,1.853388 6.059436,2.420442 2.485647,0.572836 5.192456,0.931466 7.89783,1.296371 3.622247,0.877786 6.106204,1.591254 7.857755,2.360409 1.723974,0.757044 2.602883,1.521556 2.890713,2.323227 0.285875,0.79623 -0.03179,1.578275 -0.700956,2.322855 -0.03192,0.03552 -0.06466,0.07098 -0.09818,0.106402 -0.670115,0.708008 -1.676064,1.475175 -2.830552,2.426161 -0.901764,0.742808 -1.225886,1.604674 -1.097881,2.474322 0.129116,0.877189 0.710828,1.771439 1.61095,2.701346 1.713424,1.770123 4.942374,3.965487 8.089255,6.020652 3.210294,2.096579 6.694028,4.26332 9.297378,5.811994 1.077919,0.64123 1.984053,1.1655 2.732796,1.58997"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccccccccccccccccsc"
inkscape:path-effect="#path-effect5585-05"
inkscape:original-d="m 70.5,15.5 16.3,16.6 c 1.5,1.5 1.5,4.6 0.6,5.5 l -8.1,-6.6 -1.6,9.7 -6.7,-3.6 -10.9,6.9 -3.6,-14.5 -5.8,12.6 -14.5,-0.1 c -2.8,0 -2.4,-2.9 0.5,-5.8 5.7,-6.3 16.8,-17 20.3,-20.7 3.6,-3.7 9.9,-3.6 13.5,0 z m 16,67.7 c 9.8,-6.9 45.8,-10.4 29.2,-27 l -42.7,-43.7 c -5.3,-5 -14,-5 -18.9,0 l -41.2,42.2 c -11.8629303,11.86293 0.156916,13.953005 10.68618,16.86811 14.112085,5.519948 11.549805,8.434946 6.544457,13.231326 -7.428206,7.118086 22.975986,15.721324 22.975986,15.721324" />
<path
transform="matrix(0.44941425,0,0,0.44837831,259.53748,204.10539)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.22769;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 463.58008,370.03906 c -0.89331,0.49804 -1.18041,1.63071 -0.99781,2.5812 0.20612,1.81701 0.5355,3.61774 0.77318,5.4308 0.19018,0.92848 0.17824,1.96748 -0.39061,2.76925 -0.55241,0.84066 -1.67579,1.17289 -2.6185,0.88316 -1.0714,-0.30702 -2.06571,-0.82539 -3.09714,-1.24018 -1.68864,-0.73102 -3.39432,-1.44758 -5.18544,-1.88943 -0.85441,-0.22128 -1.83383,-0.38447 -2.65215,0.0348 -0.95038,0.49379 -1.21992,1.67437 -1.01122,2.65497 0.31097,1.64141 0.75826,3.25294 1.13529,4.87975 0.43537,1.7992 0.87074,3.5984 1.30612,5.3976 0.18405,0.85645 0.11628,1.81539 -0.38131,2.55795 -0.47361,0.73043 -1.30491,1.13636 -2.12942,1.33393 -1.4919,0.40633 -3.01705,0.67389 -4.52435,1.01553 -1.1387,0.26 -2.29165,0.46126 -3.4161,0.78009 -0.86928,0.28406 -1.74626,0.76408 -2.20312,1.58984 -0.51332,0.99316 -0.10563,2.32714 0.8879,2.84777 0.89947,0.49021 1.9533,0.45115 2.9414,0.5752 1.6274,0.16788 3.25738,0.30779 4.8875,0.44617 1.05994,0.13291 2.07921,0.46361 3.08789,0.80273 1.06926,0.35638 1.44579,1.5043 1.83288,2.44646 0.31461,0.8916 1.06843,1.57187 1.99524,1.77034 0.857,0.22126 1.85433,0.3107 2.47786,1.01498 0.83827,0.8631 0.62191,2.19396 0.21813,3.21041 -0.63665,1.81241 -1.40588,3.57695 -2.00263,5.40352 -0.23405,0.94073 -0.0575,2.12577 0.82252,2.67684 0.85076,0.59567 2.00585,0.32557 2.70873,-0.37216 0.87273,-0.74453 1.64685,-1.59437 2.47954,-2.38208 1.18162,-1.17392 2.39374,-2.31836 3.67671,-3.38159 0.58464,-0.47384 1.64417,-0.84209 2.16797,-0.0957 0.57657,0.66512 1.02619,1.53261 1.89844,1.85352 0.7786,0.27877 1.69575,0.0324 2.26316,-0.55787 0.6786,-0.64011 0.72332,-1.63531 0.82473,-2.50268 0.0771,-0.87464 0.52082,-1.81683 1.4043,-2.11719 1.13816,-0.37122 2.22764,0.3508 3.07889,1.03188 0.97162,0.79473 1.93554,1.64358 2.6047,2.71812 0.60286,1.06823 1.03538,2.21879 1.57031,3.32031 0.44424,0.86803 1.30043,1.62208 2.32534,1.58639 1.20073,0.017 2.33556,-0.737 2.90904,-1.77193 0.54793,-0.99543 0.55099,-2.21183 0.20206,-3.27342 -0.28,-1.04715 -0.99196,-1.91358 -1.85228,-2.54887 -1.0863,-0.85984 -2.22144,-1.6615 -3.23845,-2.60545 -0.68141,-0.72512 -1.1173,-1.63189 -1.56055,-2.51172 -0.38077,-0.9523 -0.65503,-2.01397 -0.3711,-3.03125 0.25658,-0.98827 0.85545,-1.91202 1.74025,-2.44426 0.91882,-0.56918 1.96134,-0.87848 2.97069,-1.24324 1.36321,-0.41571 2.75863,-0.81252 4.19645,-0.80203 1.12714,-0.0281 2.25452,0.004 3.38168,0.0149 1.00195,-0.0533 2.0165,-0.48589 2.63086,-1.30078 0.63221,-0.8052 0.91502,-1.88911 0.68945,-2.89453 -0.21422,-0.85146 -0.77824,-1.62373 -1.56836,-2.02344 -0.95994,-0.4763 -2.05504,-0.15266 -3.01758,0.14063 -1.92969,0.64518 -3.85937,1.29036 -5.78906,1.93555 -0.81983,0.23267 -1.76192,0.13118 -2.44679,-0.40203 -0.76664,-0.63484 -1.00148,-1.64778 -1.31453,-2.54599 -0.48043,-0.71429 0.0762,-1.69498 0.89413,-1.79027 0.8403,-0.48735 1.99692,-0.4017 2.65625,-1.17187 0.31962,-0.99801 -0.71834,-2.00213 -1.70213,-1.88383 -1.05187,0.0903 -1.97966,0.70024 -3.02248,0.84086 -0.62319,0.10117 -1.37738,-0.23797 -1.4134,-0.94196 -0.25023,-1.00751 -0.50589,-2.11462 -0.12027,-3.12035 0.41717,-0.99039 1.31409,-1.6499 2.02677,-2.41711 0.85364,-0.87324 1.75356,-1.70043 2.60895,-2.57135 0.6611,-0.68102 0.69974,-2.02952 -0.19775,-2.52735 -1.00839,-0.3777 -1.66201,0.70471 -2.29662,1.2787 -0.69513,0.69366 -1.43253,1.34564 -2.19549,1.96338 -0.71331,0.55165 -1.47515,1.09555 -2.3575,1.33214 -0.84025,0.19112 -1.73538,0.082 -2.51795,-0.27246 -1.0086,-0.41341 -2.00507,-0.96799 -2.69706,-1.82987 -0.68785,-0.8525 -1.09061,-1.88578 -1.52295,-2.88101 -0.50792,-1.22561 -1.01584,-2.45121 -1.52376,-3.67682 -0.37756,-0.81152 -1.00124,-1.53834 -1.83398,-1.90039 -0.35376,-0.13127 -0.72377,-0.23918 -1.10547,-0.19727 z"
id="path42280"
inkscape:connector-curvature="0"
sodipodi:nodetypes="zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 334.0204,337.75191 c -1.38466,1.7907 -2.82945,3.62608 -4.32085,5.49263 m 0.98604,-5.34194 c -2.86504,3.31352 -5.59049,6.71018 -8.22062,10.16069 m -30.201,-67.98339 c 8.19482,3.40088 17.25505,6.71823 26.36139,9.64856 m -21.88504,-9.31246 c 7.53978,3.27244 14.63378,6.25306 21.77455,9.28513 m 41.08495,-18.37271 c 1.16511,-12.74531 4.31706,-25.08534 8.17321,-38.16016 m -7.2421,37.21206 c 1.03382,-10.70336 3.58175,-23.12953 6.6345,-36.33956 m 21.91878,66.71254 c 8.75024,-2.30611 18.49602,-4.74569 28.65941,-7.32026 m -23.9335,7.64213 c 10.88749,-2.8259 20.74915,-4.76119 30.16864,-6.07915 m -47.27034,39.27968 c 3.0748,4.55196 5.94802,8.89025 8.71981,13.06991 m -7.61246,-12.73042 c 1.41452,2.45075 2.89014,4.85806 4.41527,7.24612 m -104.75375,25.31938 c 9.28756,-1.26136 21.59769,-2.73639 32.88985,-3.71384 2.19956,-0.19039 4.46008,-0.37135 6.7774,-0.5379 10.93285,-0.78573 23.21326,-1.50655 34.14242,-2.82924 1.03893,-0.12573 2.07588,-0.25784 3.11011,-0.39712 0.72766,-0.098 1.47072,-0.18519 2.22844,-0.26264 m -21.64132,-1.7099 c 4.87162,-0.0314 9.76748,0.14495 14.75697,0.57268 8.60603,0.73776 17.46128,2.21927 27.11709,4.67812 14.60502,3.71916 26.41406,-0.87864 40.91883,-3.66565 3.63867,-0.69915 7.13147,-0.85283 10.51984,-0.62809 m -25.13811,3.6875 c 13.34974,-0.0442 25.66936,1.01249 37.70186,1.71454 2.38815,0.13934 4.89636,0.2669 7.49099,0.38162 10.45359,0.46222 22.1708,0.71052 33.06878,0.69474 1.35991,-0.002 2.71351,0.022 4.06184,0.0686 m -17.81343,1.36682 c 13.84526,1.26297 26.88402,0.65494 39.80397,-0.56145 11.3671,-1.0702 22.81403,1.59571 32.53804,3.29165 m -15.55578,1.67113 c 7.9626,0.63171 15.43422,1.10871 22.31574,1.3478 4.73364,0.16447 9.05578,0.21145 12.9627,0.13048 6.32283,-0.13102 15.66328,0.96406 23.75761,1.88013 6.73349,0.76206 12.44587,1.39462 18.1802,1.82237 m -21.48112,-1.77924 c 1.12326,0.10735 2.23307,0.21807 3.32642,0.33092 9.9764,1.02976 23.41475,2.79954 30.17195,3.70121 m -338.82011,-11.07409 c 10.08463,-1.79588 20.0356,-3.00823 32.58207,-4.76623 2.15884,-0.30249 4.36274,-0.61772 6.59957,-0.94942 11.04551,-1.63791 23.33617,-1.66807 35.9237,-2.95237 1.12998,-0.11529 2.26266,-0.24215 3.39591,-0.38327 5.64739,-0.70328 11.55633,-0.68197 17.7784,-0.30619 m -29.39302,4.53199 c 2.41654,-0.0862 4.85827,-0.19703 7.31853,-0.34023 10.48571,-0.61032 21.41239,-1.81305 32.57278,-4.29316 13.2513,-2.94475 26.64487,2.32755 41.29327,6.41607 6.55508,1.8296 12.78816,2.24898 18.99814,2.23895 m -27.27456,-7.38767 c 12.91836,1.21708 24.82329,2.37593 36.88142,5.40222 0.76167,0.19116 1.52376,0.38971 2.28663,0.59613 12.78643,3.45982 27.36532,1.34632 40.80042,1.62249 0.88243,0.0181 1.75584,0.0444 2.62068,0.0782 m -20.97415,-0.39596 c 13.85057,0.39571 27.17651,1.85628 40.46581,2.73344 11.3881,0.75167 22.20111,2.15913 32.35621,3.62314 2.65831,0.38324 5.32764,0.779 7.94758,1.17061 3.66888,0.5484 7.18814,0.99837 10.52632,1.38534 m -28.42101,-2.64526 c 2.04134,0.26153 4.07819,0.47835 6.10619,0.65657 12.12343,1.06541 24.46362,0.78183 35.43139,0.24479 2.05137,-0.10044 3.99888,-0.10463 5.8446,-0.0416 10.05354,0.34358 21.55907,3.31017 26.6142,4.37989"
id="path56055"
inkscape:connector-curvature="0"
inkscape:path-effect="#path-effect5585-05"
inkscape:original-d="m 337.28727,330.79295 -14.58423,18.12123 m -32.9159,-71.28221 38.16346,15.79413 m 32.47933,-18.87096 5.76955,-42.56566 m 20.24153,71.60436 41.22909,-10.44367 m -53.66784,37.98913 9.50086,14.56332 m -109.58743,19.48584 c 78.17342,-13.65926 280.21617,3.39368 340.85761,14.83546"
sodipodi:nodetypes="cccccccccccc" />
<path
inkscape:connector-curvature="0"
transform="translate(-36.163135,-4.666211)"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.3;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 419.20334,319.57205 c -2.27129,10.20329 -12.63725,17.91441 -24.29422,18.04023 -2.6799,0.0289 -5.3418,-0.34642 -7.87829,-1.12476 -10.66614,-3.27295 -17.63182,-12.99153 -18.06017,-24.20626 -0.11811,-3.09246 0.26616,-6.17953 1.10843,-9.13061 0.0724,-0.2536 0.14926,-0.50511 0.23059,-0.75446 m -0.76399,18.94739 c -1.48897,-3.10843 -2.24438,-6.45691 -2.26195,-9.85827 -0.055,-10.64561 6.99989,-20.30853 16.98365,-25.02318 2.81158,-1.32772 5.76487,-2.00235 8.7288,-2.04769 8.01714,-0.12265 15.52048,4.3354 20.37879,11.30823 m -11.05368,-7.29714 c 9.51868,3.38953 16.53583,12.50863 16.17854,22.66292 -0.0994,2.82601 -0.77649,5.61404 -2.03457,8.21853 -4.32729,8.95839 -12.49899,15.34053 -21.23561,15.00955 -1.38564,-0.0525 -2.75286,-0.27735 -4.08059,-0.67677 m 25.60744,-11.49947 c -4.16884,9.60562 -12.54514,14.86959 -21.39846,13.19657 -3.09023,-0.58397 -6.08654,-2.00189 -8.7681,-4.1857 -7.52893,-6.1314 -14.38347,-13.51659 -16.6071,-22.37925 -0.88148,-3.51328 -0.92905,-6.97296 -0.098,-10.26354 1.09508,-4.33606 4.73688,-8.05607 9.75932,-10.48714 m -9.256,22.45421 c 0,0 7.5e-4,-0.0283 7.5e-4,-0.0283 0.36695,-13.6106 10.32794,-23.76173 22.45198,-21.77771 0.32364,0.053 0.64688,0.11468 0.96945,0.18515 11.86365,2.59196 24.49842,11.51856 27.19775,24.76869 0.15179,0.74507 0.26909,1.49516 0.35129,2.24897 0.18678,1.71262 0.10436,3.389 -0.2236,5.00021 m -5.34547,-24.54832 c 2.501,4.29522 3.94478,9.12481 4.11794,14.07182 0.31704,9.05722 -3.64306,17.34899 -10.38295,22.73469 -3.36296,2.68728 -7.5659,4.07174 -12.00149,4.19279 -8.15033,0.22244 -16.31265,-3.79862 -21.33876,-9.86972"
id="path56057"
inkscape:path-effect="#path-effect5585-05"
inkscape:original-d="m 419.24763,311.24918 a 24.725195,24.549473 0 0 1 -24.7252,24.54947 24.725195,24.549473 0 0 1 -24.72519,-24.54947 24.725195,24.549473 0 0 1 24.72519,-24.54948 24.725195,24.549473 0 0 1 24.7252,24.54948 z" />
</g>
<path
inkscape:original-d="m 607.32831,120.39556 c 3.67159,-6.03757 16.19577,-14.64091 21.30194,-22.430988 -32.18086,16.786068 -53.6983,16.164988 -100.61112,36.020948 2.60055,3.4353 10.12495,1.84886 17.20378,0.84335 15.08966,-0.57919 13.90948,3.1034 11.24651,9.47716 -3.95199,9.459 27.24874,5.20711 27.24874,5.20711 -14.20746,-11.54843 39.48559,-15.99185 23.61015,-29.11758 z"
inkscape:path-effect="#path-effect54403"
id="path42079-3"
style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#1a1a1a;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none;filter:url(#filter6821)"
d="m 626.84142,98.885432 c 0,0 -0.75328,2.192638 -1.43672,2.954188 -1.12596,1.25465 -0.85459,-1.07792 -2.57773,-0.25535 -2.1337,1.01856 -2.93497,7.09007 -3.92246,8.00304 -1.43566,1.32733 -0.61141,-4.51956 -1.22172,-4.25146 -1.02086,0.44846 -1.93219,6.74351 -2.39313,7.16801 -0.45582,0.41978 -0.37964,-1.24923 -0.40393,-2.94485 -0.0243,-1.69435 -0.14955,-3.41453 -0.89623,-3.10663 -1.89896,0.78306 -2.8528,7.20544 -3.90112,8.42187 -0.76296,0.88532 -0.62682,-1.68819 -0.59304,-4.39176 0.0338,-2.70299 -0.0443,-5.53296 -0.9329,-5.20052 -1.09172,0.40846 -2.44195,7.09795 -3.93308,13.74679 -1.49113,6.64883 -3.11567,13.25595 -3.15025,13.27256 -0.25026,0.1202 1.12987,-5.99578 2.12723,-12.05775 0.99736,-6.06198 1.61192,-12.06994 1.21312,-11.92924 -0.60193,0.21238 -1.77872,6.80785 -3.27625,13.43815 -1.49752,6.63029 -3.31447,13.29524 -3.59691,13.42032 -0.49673,0.21998 0.85947,-5.96507 1.87869,-12.1196 1.01922,-6.15452 1.69941,-12.27824 1.27873,-12.13756 -0.62371,0.20857 -1.85248,6.64938 -3.36794,13.11874 -1.51546,6.46937 -3.31617,12.96709 -3.56352,13.07451 -0.46157,0.20046 0.98085,-6.10718 1.96768,-12.34873 0.98684,-6.24156 1.51828,-12.41706 0.70911,-12.16084 -1.01184,0.3204 -2.51453,7.1231 -4.27592,13.95045 -1.76138,6.82735 -3.77996,13.67914 -4.14912,13.86089 -0.58813,0.28957 0.93768,-6.2349 2.11939,-12.74699 1.18171,-6.51208 2.01473,-13.01113 1.6338,-12.89599 -0.58338,0.17634 -1.7808,6.03996 -3.12243,11.889 -1.34162,5.84903 -2.82359,11.68294 -2.72453,11.62286 -0.12662,0.0768 1.58946,-6.69989 2.85951,-13.41911 1.27006,-6.71923 2.09336,-13.38089 1.86209,-13.31179 -0.43307,0.12941 -1.62624,7.14842 -3.25276,14.28181 -1.62652,7.13339 -3.6934,14.38215 -4.03197,14.71058 -0.59545,0.5776 1.11447,-6.51547 2.39409,-13.65525 1.27963,-7.13979 2.1137,-14.32413 1.69839,-14.2023 -0.61706,0.18101 -2.22651,9.29762 -4.44577,18.47734 -2.21926,9.17973 -5.04433,18.42201 -5.02263,18.42022 -0.1719,0.0142 2.4539,-8.8228 4.36357,-17.54731 1.90968,-8.72451 3.10509,-17.33682 2.87366,-17.26948 -0.43337,0.12611 -1.90457,8.42956 -3.89976,16.7914 -1.99519,8.36183 -4.51189,16.7817 -4.48502,16.77981 -0.16605,0.0116 2.3771,-8.72772 4.22521,-17.35844 1.8481,-8.63072 3.00286,-17.15305 2.80463,-17.09554 -0.39999,0.11603 -1.88879,8.93075 -4.02132,17.8198 -2.13254,8.88906 -4.906,17.85206 -4.99172,17.85686 -0.27775,0.0155 2.21121,-8.61091 3.88561,-17.08442 1.67441,-8.47352 2.54037,-16.79497 1.68171,-16.54631 -1.06063,0.30715 -2.92933,9.09078 -5.27019,17.89752 -2.34086,8.80673 -5.14669,17.63555 -5.2801,17.63689 -0.32261,0.003 2.09207,-8.31476 3.77239,-16.48905 1.68032,-8.1743 2.6325,-16.20578 1.85738,-15.97919 -0.97754,0.28577 -2.73558,8.0686 -4.85054,15.85491 -2.11496,7.78632 -4.57999,15.57515 -4.78421,15.5636 -0.38985,-0.0221 1.80902,-7.95208 3.48877,-15.78144 1.67975,-7.82935 2.84442,-15.5586 2.6399,-15.4978 -0.40707,0.121 -1.776,7.28783 -3.57801,14.48452 -1.80202,7.1967 -4.03286,14.42265 -4.2767,14.39504 -0.42696,-0.0483 1.57543,-7.70946 3.00863,-15.23902 1.43319,-7.52956 2.30452,-14.9286 1.71662,-14.74996 -0.79041,0.24017 -2.2738,7.2881 -4.02312,14.33751 -1.74933,7.04941 -3.75982,14.09963 -3.80015,14.08922 -0.21687,-0.056 1.70537,-7.30277 3.127,-14.44331 1.42163,-7.14054 2.34745,-14.17555 2.02138,-14.07443 -0.52871,0.16397 -1.84379,7.03835 -3.48611,13.92161 -1.64232,6.88327 -3.60701,13.77474 -3.70455,13.72817 -0.26496,-0.1265 1.4733,-6.97716 2.76479,-13.70765 1.29149,-6.73049 2.14347,-13.34182 1.77827,-13.22618 -0.56812,0.17989 -1.88652,6.79958 -3.45894,12.96159 -1.57547,6.17396 -3.3329,11.84554 -3.33713,9.98284 -0.006,-2.45807 0.82317,-7.54839 1.41967,-11.49652 0.61951,-4.10039 1.08784,-7.51711 0.86527,-7.4443 -0.42648,0.13951 -1.11261,2.96095 -1.7518,5.7633 -0.6392,2.80235 -1.23082,5.58551 -1.18321,5.60813 -0.12521,-0.0595 0.49433,-3.1693 0.85121,-6.18283 0.35688,-3.01353 0.45459,-5.93127 -0.36839,-5.65554 -1.02703,0.34409 -1.94116,2.88813 -2.67846,5.35103 -0.7373,2.46291 -1.29527,4.84433 -1.39652,4.83302 -0.28816,-0.0322 0.092,-2.52532 0.40676,-4.97458 0.31473,-2.44925 0.56562,-4.85486 0.24503,-4.74401 -0.525,0.18152 -1.14813,2.41549 -1.78367,4.60779 -0.63553,2.19229 -1.2817,4.34267 -1.68069,4.33267 -0.58949,-0.0148 -0.45063,-2.12743 -0.3927,-4.16328 0.0579,-2.03584 0.0375,-3.99525 -0.70853,-3.72642 -0.94727,0.34134 -1.76128,2.47272 -2.4925,4.537 -0.73154,2.06517 -1.38283,4.06611 -1.87049,4.13179 -1.36927,0.18444 -0.0851,-6.51512 -1.0066,-6.16791 -1.33366,0.50253 -2.3585,5.86401 -2.12616,5.83086 -0.16228,0.0232 1.00696,-6.15435 0.20826,-5.84803 -1.21127,0.46454 -2.63384,7.79267 -2.34884,7.757 -0.10812,0.0135 1.02223,-5.70233 0.34478,-5.43921 -0.54573,0.21195 -1.20763,2.40421 -1.77596,4.54948 -0.56833,2.14527 -1.04176,4.24337 -1.04647,4.24382 -0.39968,0.0377 0.68413,-5.05065 -0.42889,-4.61032 -1.52965,0.60516 -1.81556,1.97961 -2.21458,1.97381 -0.78062,-0.0113 -0.0525,-3.61618 -1.47882,-3.03214 -1.82761,0.74835 -2.64117,4.66008 -2.47874,4.71304 -0.18589,-0.0606 0.18244,-1.8014 -1.12693,-1.25381 -1.7268,0.72216 -0.89861,-0.81599 -0.89861,-0.81599 0,0 0.0865,2.0486 0.69148,1.79582 1.031,-0.4308 0.69716,1.11632 1.12035,1.25475 0.77976,0.25505 1.76677,-4.41632 2.49905,-4.71591 1.14979,-0.47042 0.42947,3.01912 1.46373,3.03427 1.41559,0.0207 1.80318,-1.80922 2.22231,-1.97491 0.83626,-0.33059 -0.25255,4.67563 0.40715,4.61339 0.52494,-0.0495 1.28691,-2.25659 1.87268,-4.44453 0.58578,-2.18795 0.9951,-4.35673 0.98881,-4.35429 0.40191,-0.15598 -0.74003,5.48909 -0.36986,5.44276 0.38164,-0.0478 0.98327,-1.98232 1.46984,-3.90553 0.48658,-1.92321 0.85793,-3.83504 0.91355,-3.85636 0.52425,-0.20091 -0.66069,5.91256 -0.23533,5.85186 0.81998,-0.117 1.91712,-5.74609 2.15188,-5.83449 0.6474,-0.24378 -0.65461,6.39186 0.97725,6.17206 1.01289,-0.13643 1.94886,-2.23749 2.6948,-4.33549 0.74593,-2.09801 1.30092,-4.19285 1.70565,-4.3386 0.60999,-0.21967 0.55707,1.73954 0.49217,3.76361 -0.0649,2.02407 -0.14431,4.11336 0.57163,4.13138 0.90629,0.0228 1.83796,-2.22362 2.49274,-4.46763 0.65478,-2.24401 1.03108,-4.48535 1.01094,-4.47839 0.18448,-0.0637 -0.14072,2.3366 -0.46365,4.77216 -0.32292,2.43556 -0.64521,4.90657 -0.23294,4.95276 0.59896,0.0671 1.4439,-2.40757 2.20398,-4.93158 0.76008,-2.52401 1.43235,-5.09693 1.91571,-5.25879 0.68758,-0.23024 0.51664,2.66234 0.15142,5.65271 -0.36521,2.99037 -0.92874,6.07909 -0.689,6.19341 0.41206,0.19649 1.29535,-2.67841 1.96902,-5.5819 0.67366,-2.9035 1.13434,-5.83512 1.01696,-5.79674 0.0867,-0.0284 -0.41795,3.14915 -1.02174,7.11883 -0.58177,3.82482 -1.34279,8.87842 -1.34983,11.83424 -0.009,3.67681 2.05052,-1.79974 3.8519,-8.66062 1.75936,-6.70087 3.01943,-14.28972 3.04646,-14.29828 0.23012,-0.0728 -0.71256,6.5168 -2.02816,13.2275 -1.3156,6.7107 -3.01273,13.54369 -2.63723,13.72364 0.54244,0.25994 2.82453,-6.72199 4.52332,-13.70511 1.69879,-6.98312 2.80294,-13.96582 2.79127,-13.9622 0.19112,-0.0592 -0.82933,6.96562 -2.27862,14.09262 -1.4493,7.127 -3.33302,14.35692 -2.99908,14.44341 0.51016,0.13212 2.83525,-7.00645 4.63475,-14.13193 1.79951,-7.12548 3.06508,-14.23668 3.31565,-14.31278 0.45323,-0.13766 -0.51585,7.25966 -1.97977,14.78031 -1.46392,7.52065 -3.43029,15.1657 -2.88192,15.22796 0.73127,0.083 3.27475,-7.22922 5.12264,-14.48453 1.84789,-7.25531 2.99442,-14.45286 2.86129,-14.4133 0.0695,-0.0207 -1.19472,7.71041 -2.9069,15.53297 -1.71218,7.82255 -3.87642,15.73716 -3.36329,15.76628 0.6986,0.0396 3.47804,-7.83438 5.63943,-15.67213 2.16138,-7.83775 3.69713,-15.63814 4.13518,-15.76615 0.64062,-0.18721 -0.41344,7.85039 -2.12848,16.02036 -1.71505,8.16998 -4.09714,16.47318 -3.64867,16.46872 0.63754,-0.006 3.76134,-8.92003 6.15021,-17.77008 2.38887,-8.85005 4.03609,-17.63551 4.55849,-17.78674 0.72451,-0.20974 -0.24535,8.12094 -1.95649,16.59193 -1.71113,8.47099 -4.16927,17.08311 -3.76366,17.06041 0.59757,-0.0334 3.6883,-9.08129 5.86704,-18.00782 2.17874,-8.92652 3.44419,-17.73152 3.30608,-17.69147 0.0638,-0.0185 -1.19585,8.51407 -3.08151,17.1428 -1.88566,8.62874 -4.3986,17.35381 -4.10402,17.3332 0.48745,-0.0341 3.31853,-8.5387 5.35703,-16.93598 2.0385,-8.39729 3.28366,-16.68715 3.17845,-16.65654 0.0969,-0.0282 -1.20394,8.59522 -3.15166,17.31818 -1.94773,8.72295 -4.54371,17.54564 -4.24283,17.52085 0.49442,-0.0407 3.63771,-9.3689 5.90324,-18.58321 2.26553,-9.21432 3.65151,-18.31456 3.73063,-18.33776 0.28101,-0.0824 -0.66455,7.18866 -1.98738,14.36492 -1.32283,7.17626 -3.00169,14.25471 -2.23204,13.51058 1.08187,-1.046 3.36457,-8.27789 4.99165,-15.33551 1.61638,-7.01123 2.52835,-13.70668 2.4232,-13.67527 0.0968,-0.0289 -0.82929,6.68227 -2.13455,13.41867 -1.30526,6.7364 -2.986,13.49749 -2.70833,13.32938 0.50383,-0.30504 2.27652,-6.22349 3.62628,-12.02542 1.34977,-5.80193 2.28271,-11.48822 2.32624,-11.50137 0.24613,-0.0744 -0.68778,6.46456 -1.90239,12.98868 -1.2146,6.52412 -2.70297,13.03243 -1.96765,12.67082 0.95465,-0.46947 3.27109,-7.41073 5.04975,-14.21297 1.77866,-6.80224 3.02737,-13.46656 3.49915,-13.61588 0.67461,-0.21352 0.0446,5.99684 -0.9731,12.24729 -1.01768,6.25046 -2.42119,12.54075 -1.81597,12.27815 0.81974,-0.35567 2.91949,-6.94793 4.45448,-13.40435 1.53498,-6.45641 2.51189,-12.77794 2.59429,-12.80549 0.2856,-0.0954 -0.49293,6.0637 -1.54253,12.22676 -1.04961,6.16306 -2.36616,12.32944 -1.72568,12.04607 0.85506,-0.37831 2.97232,-7.14298 4.49001,-13.7617 1.51769,-6.61871 2.44331,-13.09254 2.50361,-13.1138 0.26363,-0.093 -0.44906,5.95324 -1.47665,12.02452 -1.02759,6.07127 -2.36779,12.16729 -1.97312,11.97794 0.61067,-0.29298 2.53531,-7.00557 4.04549,-13.6399 1.51018,-6.63432 2.60832,-13.19071 3.15891,-13.39657 0.75395,-0.28189 0.74151,2.64219 0.68815,5.38073 -0.0534,2.73775 -0.13611,5.29067 0.79214,4.21801 2.33599,-2.69937 3.12948,-8.09403 3.93774,-8.42706 0.60909,-0.25095 0.65369,1.53841 0.66597,3.25514 0.0123,1.71702 -0.004,3.36001 0.60518,2.80045 1.67395,-1.5369 2.49898,-7.20501 2.42491,-7.17251 0.33707,-0.14793 -0.53962,5.85883 1.20113,4.25438 2.19057,-2.01904 2.91665,-7.51181 3.95713,-8.00795 1.45168,-0.69222 1.14484,1.84293 2.57484,0.25576 1.87988,-2.0865 1.55248,-3.921098 1.55248,-3.921098 z m -16.99243,24.451668 c 0,0 -1.53022,4.77632 -2.57308,5.58299 -0.74039,0.57271 -0.59456,-1.48889 -0.30697,-3.68966 0.28765,-2.20128 0.71004,-4.53648 0.71004,-4.53648 0,0 -0.54567,2.6388 -0.93079,5.11643 -0.38496,2.47666 -0.60011,4.78571 0.29788,4.09276 2.2912,-1.76804 2.80292,-6.56604 2.80292,-6.56604 z m -26.33318,26.00816 c 0,0 0.47549,-3.19204 0.63174,-3.21131 -0.22012,0.0272 -1.1145,2.99707 -1.44265,2.65575 -0.61448,-0.63914 -0.95974,0.48858 -1.47366,0.54235 -0.88326,0.0924 0.0691,-3.57662 0.0691,-3.57662 0,0 -1.50741,4.68895 -0.37681,4.57067 1.55342,-0.16251 1.62348,-0.38738 1.47521,-0.54256 0.1365,0.14287 0.97243,-2.59798 1.45405,-2.65737 0.88155,-0.10871 -0.33701,2.21909 -0.33701,2.21909 z"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccscc" />
</g>
<g
style="display:inline"
inkscape:groupmode="layer"
id="layer14"
inkscape:label="Souris">
<path
sodipodi:nodetypes="ccccccc"
inkscape:connector-curvature="0"
d="m 608.37263,120.96102 c 6.20555,-10.20442 37.69952,-27.738253 15.92567,-36.287126 l -56.40678,-22.903431 c -6.83245,-2.455484 -14.78025,1.009396 -17.26591,7.527152 l -20.83646,54.947735 c -6.11419,15.55843 5.69856,12.68015 16.47808,11.14898 15.08966,-0.57919 13.90948,3.1034 11.24651,9.47716"
style="display:inline;opacity:1;fill:none;stroke:#ff0000;stroke-width:1.7;stroke-miterlimit:4;stroke-dasharray:none"
id="path7980" />
<g
style="fill:#cccccc"
id="g9145">
<rect
transform="rotate(45)"
y="-343.0079"
x="434.89816"
height="7"
width="7"
id="rect9031"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<rect
transform="rotate(45)"
y="-361.38162"
x="441.73825"
height="7"
width="7"
id="rect9041"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<rect
transform="rotate(45)"
y="-385.07208"
x="497.81903"
height="7"
width="7"
id="rect9051"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<rect
transform="rotate(45)"
y="-348.15204"
x="512.21674"
height="7"
width="7"
id="rect9061"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<rect
transform="rotate(45)"
y="-294.03101"
x="478.50751"
height="7"
width="7"
id="rect9071"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<rect
transform="rotate(45)"
y="-290.26276"
x="458.97223"
height="7"
width="7"
id="rect9081"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<rect
transform="rotate(45)"
y="-295.28214"
x="493.16135"
height="7"
width="7"
id="rect9091"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
</g>
<g
id="g54570">
<rect
y="60.72879"
x="527.85522"
height="85.206375"
width="104.29824"
id="rect54434"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.2;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<rect
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#1a1a1a;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:4, 4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="rect54432"
width="104.29824"
height="85.206375"
x="527.85522"
y="60.72879" />
<g
id="tool-node-editor"
transform="matrix(1.4392157,0,0,1.4375002,773.66813,-167.31834)"
inkscape:label="#draw_node">
<path
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc"
id="path10543"
d="m -103,187 9,16 6,-6 z"
style="fill:#000000;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.695237;stroke-linecap:round;stroke-linejoin:round" />
</g>
</g>
<g
id="g54558"
style="display:inline"
transform="translate(-7.5000003e-7,-4.75e-6)">
<path
style="fill:#000000;stroke-width:0.158334"
d="m 516.46874,49.342305 v 6.325825 l 1.89775,-1.897748 2.53033,2.530331 -1.89775,1.897747 h 6.32582 v -6.325825 l -1.89774,1.897747 -2.53033,-2.530329 1.89775,-1.897748 z"
id="path54438"
sodipodi:nodetypes="ccccccccccc"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccc"
id="use54450"
d="m 643.5399,49.342305 v 6.325825 l -1.89775,-1.897748 -2.53033,2.530331 1.89775,1.897747 h -6.32583 v -6.325825 l 1.89775,1.897747 2.53033,-2.530329 -1.89775,-1.897748 z"
style="fill:#000000;stroke-width:0.158334" />
<path
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccc"
id="use54464"
d="m 643.5399,157.32166 v -6.32583 l -1.89775,1.89775 -2.53033,-2.53033 1.89775,-1.89775 h -6.32583 v 6.32582 l 1.89775,-1.89774 2.53033,2.53033 -1.89775,1.89775 z"
style="fill:#000000;stroke-width:0.158334" />
<g
inkscape:label="#g5821"
id="node-transform"
transform="matrix(1.265165,0,0,1.265165,-90.81046,67.49494)">
<path
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccc"
id="use5805"
d="m 480,71 v -5 l 1.5,1.5 2,-2 -1.5,-1.5 h 5 v 5 l -1.5,-1.5 -2,2 1.5,1.5 z"
style="fill:#000000;stroke-width:0.158334" />
</g>
<g
transform="matrix(0.89460675,0.89460675,-0.89460675,0.89460675,146.90623,-389.59633)"
id="g54544"
inkscape:label="#g5821">
<path
style="fill:#000000;stroke-width:0.158334"
d="m 480,71 v -5 l 1.5,1.5 2,-2 -1.5,-1.5 h 5 v 5 l -1.5,-1.5 -2,2 1.5,1.5 z"
id="path54546"
sodipodi:nodetypes="ccccccccccc"
inkscape:connector-curvature="0" />
</g>
<use
height="100%"
width="100%"
transform="translate(121.88335)"
id="use54552"
xlink:href="#g54544"
y="0"
x="0" />
<use
x="0"
y="0"
xlink:href="#g54544"
id="use54554"
transform="rotate(-90,523.83557,47.16328)"
width="100%"
height="100%" />
<use
height="100%"
width="100%"
transform="rotate(-90,575.23134,98.55905)"
id="use54556"
xlink:href="#g54544"
y="0"
x="0" />
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="CroquisPentagone"
style="display:inline">
<g
style="display:inline"
inkscape:label="CroquisPentagonePlat"
id="layer9"
inkscape:groupmode="layer">
<g
transform="matrix(0.59378039,0,0,0.59378039,360.45655,285.14112)"
id="g5639"
style="display:inline;filter:url(#filter5433)">
<path
d="m 545.48496,319.59632 c 0.31163,12.67363 -2.69271,26.4775 -6.60983,39.29878 0,0 0,10e-6 0,10e-6 -3.91852,12.82587 -8.64843,24.8403 -15.666,35.73408 -0.13347,0.2072 -0.26659,0.41487 -0.39938,0.62298 m 7.20543,-17.58269 c -5.66081,12.05326 -10.95737,23.37934 -18.08946,32.87394 -5.72306,7.61883 -12.44399,16.85422 -19.61866,25.36243 m 11.61014,-9.90582 c -9.30292,10.3791 -18.47811,19.14937 -29.87175,26.52486 -9.92898,6.42735 -18.28255,12.80459 -26.63182,17.47083 m 12.31569,-4.79791 c -11.82235,7.55149 -22.28912,11.44109 -32.82602,13.07185 0,0 0,0 0,0 -10.53221,1.63004 -27.20962,7.71396 -43.70027,9.87911 0,0 0,0 0,0 -6.37769,0.83737 -11.65506,1.22792 -16.38974,1.27987 m 31.22063,-2.31362 c -10.37695,1.80877 -21.88078,3.52225 -33.87972,4.86452 -2.70685,0.30281 -5.43504,0.58628 -8.17704,0.84738 -14.88585,1.41746 -25.1216,-2.47185 -35.27321,-5.75727 0,0 0,0 0,0 -1.29722,-0.41982 -2.6801,-0.87995 -4.13137,-1.37929 m 18.55602,1.03869 c -13.4553,-1.43189 -25.24398,-5.25084 -36.23966,-8.86293 -10.13805,-3.33035 -22.15405,-9.85746 -32.88901,-16.02868 m 14.90717,8.95522 c -10.85998,-5.661 -23.442,-14.76408 -35.15083,-25.07572 -10.24418,-9.02176 -17.12869,-16.92593 -24.02279,-26.68763 m 9.37057,11.90723 c -8.37315,-9.57239 -16.30456,-18.69145 -21.63031,-26.67651 -4.05732,-6.08327 -8.75233,-17.61212 -12.19513,-29.81109 m 3.77882,15.53721 c -6,-11.63214 -9.451,-24.91436 -11.27842,-38.41294 -1.80075,-13.30148 -4.93136,-25.91257 -6.30513,-39.02468 -0.0198,-0.18894 -0.0392,-0.37798 -0.0583,-0.56713 -0.42021,-4.1704 -0.39864,-8.38058 -0.0629,-12.62528 m 3.46585,25.80231 c -0.39166,-4.02434 -0.53923,-8.09506 -0.47352,-12.1721 0.14486,-8.98928 1.32618,-17.9954 3.20507,-26.59356 0,0 0,-10e-6 0,-10e-6 2.73695,-12.5248 5.51178,-27.16727 10.43633,-41.91039 0,0 0,0 0,0 1.39494,-4.17617 2.85247,-7.91506 4.3742,-11.37279 m -9.26311,27.57363 c 3.22902,-12.90592 7.7865,-25.79587 11.49441,-39.03024 3.71044,-13.24336 15.54413,-22.78094 26.66037,-33.52325 0,0 0,-1e-5 0,-1e-5 0.70181,-0.6782 1.38694,-1.34368 2.0569,-1.99707 m -13.18112,15.41279 c 7.69166,-10.52733 16.62165,-18.91564 25.75017,-24.6574 0,0 0,0 0,0 9.12397,-5.73889 21.033,-16.71437 32.49441,-24.14639 0,0 0,-1e-5 0,-1e-5 2.98274,-1.93412 6.03975,-3.66443 9.15123,-5.25475 m -20.29143,11.03515 c 10.47479,-6.35502 22.49094,-11.90711 33.4858,-14.37358 0,0 0,0 0,0 10.96555,-2.45989 25.58581,-9.08876 38.78713,-13.88626 0,0 0,0 0,0 1.30192,-0.47313 2.60955,-0.85284 3.92272,-1.14839 m -17.89873,8.84417 c 11.10129,-2.33213 27.59561,-5.88669 38.69689,-8.21883 -0.0108,0.002 1.70062,-0.35852 1.68986,-0.35624 11.69984,-2.46414 22.45031,1.41303 33.05782,6.12959 m -15.17969,-2.23312 c 12.86734,1.38182 25.78103,4.71767 37.46584,9.85077 11.51449,5.05828 24.44872,9.68337 36.11085,16.27228 m -15.70455,-9.29065 c 11.51997,4.80435 23.57349,12.99163 34.48411,21.77715 0,0 0,0 0,0 10.91502,8.78906 19.60478,17.3103 27.21651,27.17277 2.29207,2.96982 4.53894,6.12679 6.6703,9.42972 m -16.30563,-22.10051 c 9.01001,10.20322 16.41764,19.95004 21.6746,30.74011 5.26443,10.80538 12.66139,24.15477 17.47555,38.01411 0,0 0,0 0,0 2.1274,6.12451 3.77781,12.00344 5.12447,17.92822 m -5.98656,-25.29799 c 5.0853,12.84581 8.5702,24.55455 11.02621,36.34085 1.70073,8.16173 2.26265,17.79867 2.10568,27.4713 -5.7e-4,0.002 -0.001,0.003 -0.002,0.005 -0.069,4.24807 -0.27621,8.49894 -0.58537,12.63163 -0.4674,6.24805 -1.32116,12.25172 -2.59435,18.07974 m -1.56765,-19.81905 c -1.32169,13.74974 -2.65429,25.05108 -5.82736,35.10691 -3.17494,10.06176 -8.54371,25.36082 -14.76316,37.50251 0,0 -10e-6,0 -10e-6,0 -0.39228,0.76583 -0.78587,1.5255 -1.18065,2.27931 m 12.02691,-15.05423 c -4.40788,11.56326 -12.97991,24.22309 -23.38397,35.65918 -10.40118,11.43293 -16.04106,20.78829 -24.81743,29.67781 0,0 0,0 0,0 -2.30976,2.33954 -4.8691,4.47572 -7.61227,6.40722 m 16.60691,-21.06953 c -9.99854,8.91336 -18.20649,18.8546 -26.85651,27.57537 0,0 0,0 0,0 -8.65618,8.72698 -24.50866,13.0315 -40.08254,16.93856 0,0 -1e-5,10e-6 -1e-5,10e-6 -5.7911,1.45283 -10.63788,3.08794 -15.01061,4.77144 m 30.15464,-5.92054 c -12.22492,6.31099 -25.88513,8.38717 -41.17123,8.42664 -14.39032,0.0372 -24.26546,4.48553 -35.0463,6.50573 -0.65948,0.12358 -1.32249,0.23813 -1.99027,0.3421 -5.33813,0.83111 -11.51888,0.59577 -18.01944,-0.1272 m 30.07826,-0.65598 c -2.82708,0.22386 -5.67511,0.33601 -8.55436,0.34924 -11.13702,0.0511 -22.71664,-1.37733 -35.34953,-3.53362 0,0 0,0 0,0 -15.91512,-2.71652 -24.99117,-5.31765 -35.47463,-8.87244 0,0 0,0 0,0 -3.95507,-1.34112 -8.26229,-3.35918 -12.61946,-5.78886 m 25.28236,9.45288 c -12.65957,-3.52804 -24.99567,-10.73395 -37.03456,-19.11781 -12.05186,-8.39288 -22.07626,-15.26513 -32.14371,-24.66487 0,0 -1e-5,0 -1e-5,0 -4.98197,-4.65155 -9.35211,-9.58322 -13.29218,-14.80225 m 21.94729,21.03249 c -9.63147,-7.96312 -19.56919,-17.30702 -28.69302,-25.56458 0,0 -1e-5,0 -1e-5,0 -9.08076,-8.21859 -13.69057,-22.91325 -17.49214,-36.2731 -0.95531,-3.35726 -2.03449,-6.62402 -3.16577,-9.84959 m 8.77275,22.38802 c -6.20363,-12.64526 -11.7886,-24.4456 -16.70371,-37.87482 -3.8752,-10.58793 -4.43228,-20.68007 -3.78209,-30.98327 m 3.30124,13.47564 c -1.78356,-10.24346 -3.70378,-20.93106 -5.63126,-31.41551 -0.53807,-2.92678 -1.08326,-5.87339 -1.63283,-8.82452 0,0 0,0 0,0 -2.54234,-13.65204 4.32628,-25.44055 10.9944,-36.19967 0,0 0,0 0,0 1.3033,-2.10291 2.39185,-4.38511 3.33508,-6.79843 m -8.73721,18.58707 c 2.09812,-13.71592 6.07765,-25.71252 10.78162,-37.7218 4.14164,-10.57364 10.5572,-20.13382 18.00332,-28.12074 m -7.76525,12.3256 c 7.25768,-12.33792 13.18586,-22.40708 20.06419,-32.23415 0,0 1e-5,0 1e-5,0 6.86151,-9.80304 18.9627,-17.50024 30.10469,-22.61807 0,0 1e-5,0 1e-5,0 1.22748,-0.56382 2.45115,-1.18355 3.67189,-1.84856 m -16.21489,10.85116 c 9.77621,-8.0069 21.16934,-16.54292 33.13547,-23.43711 0,0 10e-6,0 10e-6,0 11.96706,-6.89473 23.6342,-11.50209 35.49462,-15.61789 0,0 0,0 0,0 5.80102,-2.01306 12.08881,-3.32911 18.49589,-4.1485 m -27.91217,10.19295 c 12.29627,-3.61138 25.46514,-7.97157 38.53038,-11.16521 6.02027,-1.47158 12.37596,-1.73256 18.97917,-1.31993 7.66371,0.4789 15.65219,1.86429 23.83712,3.31356 0.91736,0.16244 1.82023,0.32006 2.70982,0.47358 m -24.4959,-0.59292 c 13.37824,-0.0718 26.65412,1.98684 39.83112,5.12321 0,0 1e-5,0 1e-5,0 13.1989,3.14159 26.62448,7.26217 41.00454,12.16899 1.15958,0.39568 2.2784,0.80957 3.36023,1.23994 m -23.50998,-6.3321 c 12.7253,3.91432 25.05184,10.64617 37.70725,17.5299 12.65623,6.88418 21.19501,15.32313 30.21756,23.67125 0,0 0,0 0,0 2.69049,2.48938 5.32729,5.26353 7.89453,8.21546 m -15.12549,-18.19165 c 8.97334,9.28187 17.43411,18.33981 22.60585,28.05881 5.16791,9.7118 14.08731,22.6952 19.18998,35.21474 0,0 0,0 0,0 1.83842,4.51062 3.52127,9.16336 5.05161,13.9808 m -7.93671,-20.78422 c 5.09641,11.44289 9.60681,23.39083 11.0828,34.18342 0,0 0,10e-6 0,10e-6 1.4749,10.78464 6.13531,26.94594 9.03022,41.80572 0,0 0,0 0,0 0.19894,1.02119 0.36499,2.02866 0.50078,3.02388 0.005,0.003 0.01,0.006 0.0148,0.009 0.29416,2.18138 0.44309,4.30398 0.47451,6.38309 m -3.41391,-23.10015 c 0.7175,5.89926 1.12001,11.65023 1.29474,17.30711 0.001,-8.3e-4 0.002,-0.002 0.003,-0.002 0.22514,7.2617 0.0752,14.35169 -0.2604,21.39193 -0.59874,12.56047 -5.75757,26.45717 -12.23933,39.55038 0,0 0,0 0,0 -2.06675,4.17486 -3.83711,8.16319 -5.49852,12.00899"
sodipodi:ry="179.64912"
sodipodi:rx="179.64912"
sodipodi:cy="311.19733"
sodipodi:cx="365.13101"
sodipodi:type="arc"
inkscape:path-effect="#path-effect5585"
id="path5557"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#3c3c3c;stroke-width:0.505237;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
d="m 455.54207,229.76747 c -0.1706,12.68337 -5.14021,26.22426 -12.24178,37.78552 0,0 0,0 0,0 -7.1047,11.56636 -16.1095,21.13932 -27.90967,27.88847 0.0401,-0.0229 -0.71087,0.40645 -0.67081,0.38354 m 13.79797,-12.58818 c -9.88391,9.42081 -20.10984,16.56567 -32.16266,19.95486 -9.67913,2.72173 -20.13831,5.82864 -30.5481,6.93854 m 16.62591,-0.0547 c -6.0127,1.15149 -11.88627,1.63771 -17.74386,1.48265 -7.68036,-0.20332 -15.28418,-1.50764 -23.09309,-3.81958 -12.01987,-3.55866 -21.13645,-8.43865 -28.46208,-15.89769 m 12.02517,12.02385 c -12.53188,-5.31312 -21.55331,-15.6553 -27.86475,-28.81927 0,0 0,0 0,0 -6.2979,-13.13571 -15.91016,-22.28514 -22.25366,-34.57895 0,0 0,-1e-5 0,-1e-5 -2.45363,-4.75516 -3.35241,-9.83617 -3.25998,-15.06522 m 9.92836,26.95488 c -3.55113,-10.31973 -6.22566,-20.31065 -7.37943,-29.85033 -0.25941,-2.14484 -0.44061,-4.25782 -0.53738,-6.33621 0,-1e-5 0,-1e-5 0,-1e-5 -0.52656,-11.3097 6.47756,-26.10465 15.83854,-37.45572 0,0 0,0 0,0 1.1941,-1.44796 2.33822,-2.88935 3.44702,-4.31988 m -11.99961,15.35601 c 4.10825,-11.71662 12.34404,-23.26013 23.05002,-31.19937 9.88789,-7.33257 19.03081,-14.82775 29.87178,-18.62901 m -15.71415,7.81256 c 12.06555,-6.53963 22.98441,-12.59072 34.52933,-15.86415 3.32309,-0.94223 6.96204,-1.42268 10.76164,-1.55329 7.66027,-0.26331 15.9282,0.89515 23.57346,2.52276 m -17.91656,-3.62562 c 13.96383,1.14075 26.90154,6.63599 39.84775,16.72611 9.85637,7.68195 17.47079,11.8466 24.23107,16.78944 m -12.55701,-8.411 c 9.95901,8.88969 19.05743,18.86752 25.77085,30.43222 6.60044,11.37009 7.79883,24.86566 6.42121,37.97327 -0.003,-6e-5 -0.007,-1.1e-4 -0.0105,-1.7e-4 -0.0163,0.15499 -0.0329,0.3099 -0.0499,0.46475 -0.45571,4.15547 -0.90069,8.24567 -1.46491,12.27285 m 3.9472,-3.15159 c -1.73454,13.62366 -5.35719,26.34648 -11.59516,38.36679 -6.22453,11.99441 -16.33441,19.91902 -27.42338,24.84543 0,0 0,0 0,0 -3.12833,1.3898 -6.46028,2.98593 -9.91369,4.5882 m 20.21276,-9.37374 c -10.61191,8.65861 -23.18464,14.60276 -38.86344,16.63916 -10.1205,1.31448 -17.64478,2.6666 -24.74014,2.6362 -3.88604,-0.0167 -7.60947,-0.45039 -11.50767,-1.5276 -0.69357,-0.19166 -1.40656,-0.38622 -2.13657,-0.58421 m 20.03618,1.38959 c -1.22875,0.0574 -2.45766,0.10075 -3.68682,0.13027 -12.4057,0.29794 -24.56424,-0.81687 -36.64576,-2.95796 0,0 0,0 0,0 -13.23719,-2.3459 -23.37479,-13.76553 -32.48855,-24.99671 0,0 0,-10e-6 0,-10e-6 -2.36702,-2.91696 -4.55401,-5.84799 -6.5664,-8.84681 m 17.53114,17.36051 c -11.05944,-7.79026 -19.26791,-18.20037 -26.44724,-28.3335 -7.04113,-9.93806 -8.42648,-26.34945 -8.34161,-42.63734 0.001,-0.28249 0.003,-0.5649 0.006,-0.84721 0.0134,-1.62695 0.0594,-3.1743 0.13804,-4.65038 m 4.17206,26.49508 c -0.8384,-5.36768 -1.26042,-11.06644 -1.18511,-17.03289 0.10813,-8.56571 1.24041,-17.61926 3.59155,-26.97645 3.3758,-13.43522 7.84737,-20.96804 14.12937,-27.49369 m -7.5655,14.04895 c 5.52111,-11.99564 13.87366,-22.05266 23.4141,-29.49322 9.39088,-7.32392 22.39607,-14.0486 35.62692,-17.31749 m -16.85059,5.81672 c 11.53688,-6.60016 25.42601,-8.39198 39.18902,-7.79447 0,0 0.036,0.002 0.036,0.002 13.76982,0.6006 26.0717,2.755 37.3122,8.04221 3.37532,1.58766 6.69162,3.51888 9.85775,5.74415 m -23.06886,-13.2741 c 12.61549,4.45371 23.701,10.24534 32.00556,18.60531 8.31272,8.36817 17.9223,20.65057 23.65357,34.21407 1e-5,0 1e-5,0 1e-5,1e-5 2.5275,5.98152 4.31301,11.83659 5.51131,17.79575 m -7.38647,-24.73608 c 6.69423,12.13333 10.49636,23.91749 11.77441,35.87603 0.18411,1.72274 0.28753,3.50912 0.31406,5.34357 4.6e-4,-0.002 9.2e-4,-0.003 0.001,-0.005 0.15365,10.84939 -2.37313,23.24818 -6.66892,34.07854 -2.3136,5.83294 -5.27849,11.20282 -8.88412,16.11351"
sodipodi:ry="89.824585"
sodipodi:rx="89.824585"
sodipodi:cy="221.37277"
sodipodi:cx="365.13101"
sodipodi:type="arc"
inkscape:path-effect="#path-effect5585"
id="path5567"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#3c3c3c;stroke-width:0.505237;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
sodipodi:arc-type="arc"
inkscape:path-effect="#path-effect5585"
d="m 618.80169,397.83013 c -9.27987,8.09594 -21.87637,15.54154 -34.87539,20.1636 -12.99986,4.62235 -26.13504,6.58461 -40.32787,5.69888 0,0 0,0 0,0 0.006,3.8e-4 -0.81235,-0.0513 -0.80629,-0.0509 m 18.43844,-1.5158 c -13.89822,1.90735 -26.3904,1.3171 -39.11206,-2.66788 -10.22251,-3.20213 -20.27307,-5.65256 -29.50166,-9.63195 m 15.47457,7.64901 c -10.77813,-3.41637 -20.2034,-8.68154 -29.28604,-15.43096 -2.21154,-1.64342 -4.39978,-3.37253 -6.5804,-5.18175 -9.71299,-8.05871 -15.97918,-16.64119 -20.23513,-26.94669 m 7.79097,16.71031 c -9.31556,-9.50433 -14.68068,-22.92586 -17.39841,-38.12503 -2.71464,-15.18187 -8.85283,-25.35839 -12.24634,-38.00553 -1.31247,-4.89139 -1.14686,-10.01128 -0.0794,-15.20535 m 4.02312,27.58803 c -1.11964,-13.42369 -1.39251,-25.62374 0.21363,-36.60224 0.8923,-6.09921 3.9193,-13.20366 8.19676,-20.17416 3.38989,-5.52413 7.55836,-10.95357 12.05893,-15.72929 1.3011,-1.38064 2.54222,-2.75677 3.73885,-4.12558 m -13.64514,14.46632 c 5.46069,-11.13234 14.39527,-22.09741 25.30163,-29.80847 10.07218,-7.12128 19.04753,-14.7606 29.5919,-19.21093 m -15.4018,8.41422 c 11.91759,-6.75087 22.4296,-13.54472 33.70621,-18.2236 9.80284,-4.06738 22.5773,-4.39845 34.37517,-4.06817 m -18.15524,-0.87527 c 9.92873,-0.57867 19.57219,0.75069 29.42315,4.18233 m 53.70094,193.92163 c -10.92806,9.4157 -22.6293,16.61015 -36.69766,23.97341 0,0 0,0 0,0 -14.0451,7.35109 -25.2863,6.31571 -37.53393,5.56613 -3.83036,-0.23442 -7.92722,-0.59922 -12.17784,-1.14169 m 23.86924,-0.937 c -13.55048,1.83055 -25.89802,0.83144 -37.32681,-1.43238 0,0 0,0 0,0 -11.4252,-2.26311 -24.69848,-8.69868 -34.88111,-15.71537 -0.26966,-0.18582 -0.53935,-0.37471 -0.80903,-0.56663 -2.61311,-1.85969 -5.22322,-4.0029 -7.78439,-6.39063 m 18.77739,11.02327 c -4.26738,-2.13616 -8.35245,-4.53346 -12.22008,-7.11208 -6.70262,-4.46877 -12.71238,-9.45533 -17.87067,-14.52711 0,0 0,0 0,0 -8.15814,-8.02131 -17.23094,-22.2954 -24.92981,-36.43911 0,0 0,-10e-6 0,-10e-6 -0.48499,-0.89098 -0.93387,-1.77356 -1.34876,-2.64886 m 9.16898,18.08375 c -6.0751,-11.90077 -10.20551,-24.49444 -10.29801,-38.35115 0,0 0,-10e-6 0,-10e-6 -0.0924,-13.83271 -2.65912,-25.1435 -1.20772,-35.32683 0.37776,-2.65049 1.03636,-5.70108 1.92074,-8.9886 m -4.57237,18.54592 c 0.27809,-14.16295 4.43912,-25.91941 10.79299,-37.28101 0.47609,-0.85132 0.94926,-1.70132 1.42009,-2.54775 5.81718,-10.45776 11.2801,-20.35497 18.44845,-27.37135 0.7607,-0.74457 1.56756,-1.52668 2.41611,-2.34063 m -11.78422,15.60194 c 7.39398,-11.0258 17.78434,-20.27427 29.69384,-27.85375 10.09984,-6.42777 19.92845,-12.27006 30.94361,-17.70341 m -15.54545,8.53635 c 12.79885,-6.40027 25.34889,-9.5132 39.32332,-11.3787 13.07156,-1.74498 24.61537,0.27772 35.82398,4.17546"
sodipodi:open="true"
sodipodi:end="4.9759531"
sodipodi:start="0.80018722"
sodipodi:ry="111.98908"
sodipodi:rx="111.98908"
sodipodi:cy="311.19733"
sodipodi:cx="544.78015"
sodipodi:type="arc"
id="path5569"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#3c3c3c;stroke-width:0.505237;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
sodipodi:arc-type="arc"
inkscape:path-effect="#path-effect5585"
d="m 338.76868,518.67637 c -8.56667,-10.02012 -18.33068,-19.46806 -26.84804,-30.09602 -8.52257,-10.63447 -15.70513,-22.20737 -23.06321,-34.70309 0,0 0,-10e-6 0,-10e-6 -0.14002,-0.23779 -0.27893,-0.47502 -0.41674,-0.71172 m 9.09332,16.69217 c -7.98111,-11.46688 -13.47739,-23.56425 -18.74437,-37.09077 -4.221,-10.84027 -8.16852,-19.72459 -11.29865,-28.91131 m 6.63241,16.06684 c -5.77767,-12.20738 -9.46367,-25.384 -13.55871,-39.04094 -3.57082,-11.90864 -4.20738,-23.14268 -3.64958,-35.17392 m 0.32561,19.86741 c -2.95955,-12.5558 -2.90549,-27.66899 -1.50411,-43.70034 0,0 0,0 0,0 1.40129,-16.03037 -1.94602,-26.26063 -4.03003,-38.84964 0,0 0,-1e-5 0,-1e-5 -0.75972,-4.58931 -0.40097,-9.36982 0.59578,-14.24423 0.0608,-0.29753 0.12406,-0.59541 0.18955,-0.89362 m 1.62656,27.51579 c 0.68924,-8.84123 1.1112,-17.1089 1.56753,-24.87282 0.23676,-4.02832 0.48298,-7.92546 0.78091,-11.70983 0,0 0,0 0,0 0.87295,-11.0885 7.20453,-25.8327 14.12122,-38.25602 0,0 0,0 0,0 0.88432,-1.58836 1.69066,-3.18909 2.43579,-4.80094 m -8.88864,16.66173 c 3.16077,-11.97567 8.56724,-24.64214 15.08067,-35.37497 6.0055,-9.89587 10.33214,-21.53607 15.92823,-31.3769 m -8.53311,15.21931 c 6.82147,-11.12758 12.00001,-24.02484 17.84356,-36.46313 5.11687,-10.89154 13.39974,-19.43202 21.31372,-28.6649 m -12.18731,11.95893 c 8.91823,-10.24596 17.86032,-18.51988 28.80557,-24.20824 8.35287,-4.341069 15.68844,-13.323676 23.79778,-22.247321 m -13.41835,11.281449 c 9.72185,-8.287572 21.22806,-16.926579 33.42658,-24.675604 5.31245,-3.374698 10.18186,-6.409879 14.86912,-9.231252 m -65.75445,456.641058 c -9.60071,-8.97492 -17.2224,-19.03127 -23.69209,-28.58325 -6.47286,-9.55667 -14.74896,-21.53377 -20.43467,-32.54869 0,0 0,0 0,0 -1.61267,-3.12423 -3.2741,-6.47855 -4.93412,-10.01848 m 10.39188,18.69993 c -6.87368,-10.90203 -12.75531,-22.14704 -17.40902,-32.3591 0,0 0,0 0,0 -4.65271,-10.20987 -11.25874,-25.55426 -17.77218,-40.05048 -0.41137,-0.91554 -0.79195,-1.82028 -1.1439,-2.71548 m 6.64023,19.08702 c -3.77405,-12.93506 -6.83252,-25.73229 -7.30211,-39.49359 0,0 0,0 0,0 -0.46961,-13.7619 -4.87583,-24.77937 -6.70411,-35.16182 0,0 0,0 0,0 -0.47578,-2.70186 -0.76653,-5.83843 -0.92436,-9.25615 m 1.19137,18.87229 c -1.99362,-14.08228 -1.56889,-26.07025 -0.25285,-38.53889 1.11741,-10.58666 0.92486,-21.63328 1.21411,-31.54445 0.0513,-1.75773 0.11773,-3.48019 0.20927,-5.15875 0.0599,-1.09757 0.15839,-2.24746 0.29117,-3.44395 m -1.00659,20.52261 c 0.28892,-3.71374 0.73285,-7.39529 1.31007,-11.05447 1.50503,-9.54079 3.91542,-18.92452 6.84444,-28.32787 3.42677,-11.00137 6.41062,-22.76064 10.53948,-35.4293 m -5.64662,18.06577 c 4.67705,-13.41975 9.05899,-25.46688 15.38282,-38.24832 6.22344,-12.57852 11.4218,-22.90267 17.59918,-33.05307 m -8.9592,15.82283 c 6.70564,-12.15318 13.9259,-22.91547 22.40417,-33.79962 8.48013,-10.88653 16.8666,-20.39762 26.65173,-29.24131 0,0 0,0 0,0 2.94829,-2.66464 5.83875,-5.39944 8.70443,-8.15245 m -21.84724,17.93951 c 8.90155,-9.50415 19.11686,-20.278015 30.593,-31.23156 0,-10e-7 0,-10e-7 0,-2e-6 11.47563,-10.953051 20.12284,-16.724804 29.81675,-24.444285 0,-10e-7 0,-2e-6 0,-3e-6 4.2879,-3.414551 9.343,-6.31477 14.75444,-8.858322"
sodipodi:open="true"
sodipodi:end="4.2291357"
sodipodi:start="2.3368144"
sodipodi:ry="291.63821"
sodipodi:rx="291.63821"
sodipodi:cy="311.19733"
sodipodi:cx="544.78015"
sodipodi:type="arc"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#3c3c3c;stroke-width:0.505237;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="circle5571" />
<path
inkscape:connector-curvature="0"
id="path5573"
d="m 509.87361,204.78591 1.8e-4,212.82258 -201.82024,63.92959 -122.57166,-170.34075 122.57062,-170.3404 z"
style="fill:none;fill-rule:evenodd;stroke:#3c3c3c;stroke-width:6.7365;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:original-d="m 454.95558,266.28505 -89.82456,-44.91228 -179.64912,-89.82456 -179.64912,-89.82456"
inkscape:path-effect="#path-effect5585"
sodipodi:nodetypes="cccc"
transform="translate(179.64912,89.82456)"
style="fill:none;fill-rule:evenodd;stroke:#3c3c3c;stroke-width:0.505237;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 449.944,265.24452 c -11.08179,-6.54152 -24.00499,-11.87077 -36.40667,-17.83344 l 0,0 c -12.40479,-5.96416 -24.20379,-12.33194 -36.96345,-19.16727 -0.2429,-0.13012 -0.48496,-0.25952 -0.72622,-0.38823 m 16.47713,8.72781 c -10.44647,-5.15692 -19.72263,-10.4132 -29.12629,-16.27023 -1.98771,-1.23804 -3.98111,-2.50292 -5.99247,-3.79937 -9.23967,-5.95558 -18.7343,-9.70866 -27.96371,-13.57675 m 15.10058,8.48506 c -12.72514,-5.8114 -24.20724,-12.26815 -36.97496,-18.97306 -11.13581,-5.84792 -20.00814,-10.8583 -28.37104,-16.57658 m 12.70467,10.84282 c -12.43649,-5.43268 -22.75333,-13.26535 -32.62987,-21.96865 l 0,0 c -9.87902,-8.70549 -25.41425,-11.56171 -40.59158,-16.86806 -5.86925,-2.05203 -10.61444,-4.33184 -14.80867,-6.73008 m 28.53354,12.66412 c -11.51043,-6.11267 -24.54651,-10.90188 -38.03057,-14.88064 -3.97667,-1.1734 -7.55631,-2.67978 -10.86309,-4.36878 -7.90863,-4.03949 -14.25654,-9.12356 -20.74255,-13.19537 -1.17613,-0.73835 -2.4443,-1.49379 -3.78765,-2.26535 m 16.86549,5.74644 c -12.23302,-5.1086 -23.09339,-11.1555 -33.68471,-15.61968 -9.76733,-4.11687 -21.92321,-10.282151 -33.47554,-15.038792 m 15.63388,7.658032 c -11.06804,-5.235738 -24.597771,-12.636216 -38.199646,-20.112549 -11.903367,-6.54274 -21.209424,-11.134935 -31.406677,-16.877566 m 13.5318,6.621639 c -11.193685,-5.768187 -23.071645,-10.131273 -33.580024,-12.560586 -8.021314,-1.854356 -17.427809,-8.730525 -26.3835883,-15.966461 m 436.8919953,221.337093 c -12.21202,-5.5515 -23.2214,-12.14815 -34.04332,-18.61465 -10.82464,-6.46813 -24.46108,-11.90569 -37.72283,-17.88056 l -1e-5,0 c -3.77523,-1.70087 -7.30484,-3.43539 -10.68434,-5.2064 -0.33841,-0.17734 -0.67532,-0.35505 -1.01081,-0.53312 m 26.29385,11.74199 c -7.46214,-3.41349 -14.53721,-6.96967 -21.45868,-10.43091 -4.4058,-2.20321 -8.74936,-4.36796 -13.09089,-6.43293 -11.16486,-5.31038 -23.73226,-13.04522 -35.55017,-21.33993 l -10e-6,-10e-6 c -3.35348,-2.35373 -6.75455,-4.31413 -10.19913,-6.04301 m 21.8738,15.52966 c -12.55711,-6.15573 -25.19786,-12.73132 -39.97041,-20.38608 -14.77625,-7.65668 -22.70439,-12.35887 -32.44939,-19.25165 l 0,0 c -0.61547,-0.43533 -1.25196,-0.86189 -1.90787,-1.2804 m 17.99301,8.98565 c -12.15635,-5.83857 -24.23998,-10.44252 -37.10196,-13.50975 l 0,0 c -12.86521,-3.068 -23.90355,-12.49866 -36.07752,-19.69462 -3.16805,-1.87262 -6.30785,-3.62995 -9.43475,-5.33793 m 22.86361,10.39733 c -9.97242,-4.11639 -19.4599,-8.51876 -29.59974,-12.14777 -2.72055,-0.97367 -5.48806,-1.89167 -8.3245,-2.73354 -13.41158,-3.98062 -23.72846,-13.50619 -35.57127,-22.68993 l 0,0 c -1.16597,-0.90418 -2.3279,-1.72912 -3.48567,-2.4841 m 21.55468,14.99894 c -11.50989,-5.93836 -23.46211,-13.37717 -34.78213,-22.347963 -9.57339,-7.58665 -20.0792,-9.887703 -30.529042,-12.386371 m 15.344912,7.46277 c -12.219535,-5.965472 -24.206867,-11.440278 -36.975351,-16.526063 -12.564012,-5.004341 -23.170924,-11.759667 -34.382008,-17.812998 m 17.538299,7.966839 c -12.36667,-6.815248 -23.547278,-11.564141 -34.971329,-16.90511 -1.069787,-0.500146 -2.15098,-1.012478 -3.242474,-1.535562"
id="path5575"
inkscape:connector-curvature="0" />
<path
inkscape:original-d="m 454.95558,311.19733 h 89.82456 179.64912 179.64913 89.82457"
inkscape:path-effect="#path-effect5585"
transform="translate(-359.29825)"
style="fill:none;fill-rule:evenodd;stroke:#3c3c3c;stroke-width:0.505237;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 462.30237,313.07422 c 14.07029,-0.60393 26.29917,0.004 39.04957,-0.0206 12.75361,-0.0251 26.113,-0.45376 38.51173,-1.35 l 0,0 c 0.23603,-0.0171 0.47288,-0.0334 0.71054,-0.049 m -20.28764,0.0488 c 6.99011,-0.17304 14.51747,-0.39169 22.17842,-0.81191 6.03591,-0.33108 12.15474,-0.78728 18.15905,-1.44489 10.92157,-1.19616 21.58819,-0.18981 32.52001,0.70152 m -14.16368,1.5767 c 12.42694,0.12621 26.09692,-0.39295 38.48128,-1.16025 10.80145,-0.66924 23.86638,-0.50093 37.44074,-1.04053 m -18.89853,3.38231 c 12.71559,0.50492 27.55083,-1.39015 42.82638,-4.15585 l 0,10e-6 c 15.27938,-2.7664 24.90253,0.31647 34.8836,0.94921 l 0,0 c 2.01863,0.12797 4.34471,0.19364 6.89626,0.21265 2.32724,0.0173 4.84205,-0.004 7.48223,-0.0526 m -22.84247,0.53589 c 6.77115,-0.0869 13.16643,0.15226 19.31763,0.65476 6.24142,0.50987 12.23155,1.29085 18.10804,2.2774 l 0,0 c 11.67095,1.95933 27.90912,0.0883 43.86954,0.25312 l 0,0 c 2.04084,0.0211 3.98962,0.0251 5.86323,0.0129 m -23.97009,-3.89353 c 12.91906,0.82901 27.21077,0.7197 41.77153,2.19312 13.42795,1.3588 24.46735,0.66918 36.1103,1.3882 m -17.68046,-0.20642 c 14.08403,0.70186 25.70638,-0.76101 37.25659,-2.29974 10.10789,-1.34659 22.8131,-0.74263 34.62711,-1.28911 m -18.17081,-0.86233 c 6.7564,0.082 13.35248,0.49321 20.02116,1.29358 7.10849,0.85315 14.29947,2.14849 21.85506,3.95864 11.17791,2.67796 20.97063,0.33411 31.21408,-2.3695 m -16.76936,1.90572 c 12.94007,0.3861 27.084,-0.27872 41.41292,-0.80185 1.59136,-0.0581 3.14797,-0.10372 4.67423,-0.13896 m -522.59417,-1.4005 c 12.97528,0.50589 27.27486,0.55923 42.00352,1.66602 l 0,0 c 14.73236,1.10708 26.92288,0.32051 40.91642,0.94922 l 0,0 c 0.58889,0.0265 1.1753,0.0486 1.75939,0.0666 3.35434,0.10342 6.63205,0.0698 9.86351,-0.0745 m -26.47668,-3.00824 c 5.08868,0.16367 10.2079,0.34441 15.3684,0.61413 8.3609,0.437 16.83019,1.10757 25.4536,2.31758 13.94945,1.95734 25.11318,-0.85585 35.49532,-2.57344 l 10e-6,0 c 0.6557,-0.10848 1.33873,-0.20517 2.04688,-0.29138 m -19.6469,-0.25736 c 13.88837,-0.40046 27.63353,-0.37145 43.07862,-1.11767 15.44895,-0.7464 26.07089,1.43204 38.36407,4.30313 l 0,0 c 3.19907,0.74715 6.52186,1.06341 9.91616,1.10031 m -24.81908,-5.38301 c 12.75746,-0.88462 27.0303,0.41726 41.2865,1.22411 9.79947,0.55461 18.31206,0.80672 26.49093,1.54578 3.72267,0.33639 7.37621,0.77366 11.05049,1.38625 1.15652,0.19282 2.34304,0.33189 3.55515,0.42283 m -19.05683,-0.23313 c 1.48859,-0.0218 2.99193,-0.0393 4.50848,-0.0535 11.67363,-0.10873 24.13012,-0.0156 36.67241,-0.11515 11.98507,-0.0951 22.89668,-1.10254 34.34472,-3.24532 m -16.64078,2.71743 c 14.02845,-0.73052 26.90057,-0.37265 40.88476,-1.11742 13.76025,-0.73285 25.7094,0.39683 37.88659,1.2449 m -18.08161,-0.2539 c 13.53683,-0.5408 26.80145,-0.14284 40.58982,-0.40038 9.27981,-0.17333 18.19177,0.0252 27.21006,0.35666 4.38485,0.16117 8.79484,0.35378 13.28448,0.55037 4.1364,0.18113 8.15593,0.23452 12.09494,0.20898 m -29.37312,-0.0189 c 0.0577,0.002 0.1154,0.003 0.17312,0.005 13.21826,0.33952 27.09678,-1.20479 41.61924,-3.59076 l 0,0 c 14.58953,-2.39699 25.78253,-0.32301 37.52032,-0.94922 l 0,0 c 2.55899,-0.13652 5.28114,-0.18483 8.1184,-0.16436"
id="path5577"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
<path
inkscape:original-d="m 365.13101,311.19733 h 89.82457 179.64912 89.82457 89.82456 89.82457"
inkscape:path-effect="#path-effect5585"
transform="rotate(-90,499.86786,445.93418)"
style="fill:none;fill-rule:evenodd;stroke:#3c3c3c;stroke-width:0.505237;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 372.4778,313.07422 c 14.07029,-0.60393 26.29917,0.004 39.04957,-0.0206 12.75361,-0.0251 26.113,-0.45376 38.51173,-1.35 l 0,0 c 0.23603,-0.0171 0.47288,-0.0334 0.71054,-0.049 m -20.28764,0.0488 c 6.99011,-0.17304 14.51748,-0.39169 22.17843,-0.81191 6.03591,-0.33108 12.15473,-0.78728 18.15904,-1.44489 10.92157,-1.19616 21.58819,-0.18981 32.52001,0.70152 m -14.16368,1.5767 c 12.42694,0.12621 26.09692,-0.39295 38.48128,-1.16025 10.80145,-0.66924 23.86638,-0.50093 37.44074,-1.04053 m -18.89853,3.38231 c 12.71559,0.50492 27.55083,-1.39015 42.82638,-4.15585 l 0,10e-6 c 15.27938,-2.7664 24.90253,0.31647 34.8836,0.94921 l 0,0 c 2.01864,0.12797 4.34472,0.19364 6.89627,0.21265 2.32724,0.0173 4.84204,-0.004 7.48222,-0.0526 m -22.84247,0.53589 c 6.77116,-0.0869 13.16644,0.15226 19.31763,0.65476 6.24143,0.50987 12.23155,1.29085 18.10804,2.2774 11.67095,1.95933 27.90911,0.0883 43.86954,0.25312 l 0,0 c 2.04084,0.0211 3.98962,0.0251 5.86323,0.0129 m -23.97009,-3.89353 c 12.91906,0.82901 27.21077,0.7197 41.77153,2.19312 2.39602,0.24246 4.71599,0.4197 6.97691,0.55135 10.40989,0.60619 19.56796,0.24613 29.13339,0.83685 m -17.68046,-0.20642 c 14.08403,0.70186 25.70638,-0.76101 37.25659,-2.29974 10.10789,-1.34659 22.8131,-0.74263 34.62711,-1.28911 m -18.17081,-0.86233 c 6.7564,0.082 13.35248,0.49321 20.02117,1.29358 7.10848,0.85316 14.29946,2.1485 21.85505,3.95864 11.17791,2.67796 20.97063,0.33411 31.21408,-2.3695 m -16.76936,1.90572 c 12.94007,0.3861 27.084,-0.27872 41.41292,-0.80185 1.59137,-0.0581 3.14798,-0.10372 4.67424,-0.13896 m -522.59418,-1.4005 c 12.97528,0.50589 27.27486,0.55923 42.00352,1.66602 l 0,0 c 14.73236,1.10708 26.92288,0.32051 40.91642,0.94922 l 0,0 c 0.5889,0.0265 1.17531,0.0486 1.7594,0.0666 3.35434,0.10342 6.63204,0.0698 9.8635,-0.0745 m -26.47668,-3.00824 c 5.08868,0.16367 10.2079,0.34441 15.36841,0.61414 8.3609,0.43699 16.83018,1.10756 25.45359,2.31757 l 0,0 c 13.94945,1.95734 25.11319,-0.85585 35.49533,-2.57344 0.6557,-0.10848 1.33873,-0.20517 2.04688,-0.29138 m -19.6469,-0.25736 c 13.88837,-0.40046 27.63353,-0.37145 43.07862,-1.11767 l 0,0 c 15.44896,-0.7464 26.07089,1.43204 38.36407,4.30313 l 0,0 c 3.19907,0.74715 6.52186,1.06341 9.91616,1.10031 m -24.81908,-5.38301 c 12.75746,-0.88462 27.0303,0.41726 41.2865,1.22411 9.79947,0.55461 18.31207,0.80672 26.49094,1.54578 3.72267,0.33639 7.3762,0.77366 11.05048,1.38625 1.15652,0.19282 2.34304,0.33189 3.55515,0.42283 m -19.05683,-0.23313 c 1.4886,-0.0218 2.99194,-0.0393 4.50849,-0.0535 11.67362,-0.10873 24.13011,-0.0156 36.6724,-0.11515 11.98507,-0.0951 22.89668,-1.10254 34.34472,-3.24532 m -16.64078,2.71743 c 13.06747,-0.68048 25.13161,-0.41658 38.02583,-0.97919 0.94825,-0.0414 1.90098,-0.0872 2.85893,-0.13823 13.76025,-0.73285 25.7094,0.39683 37.88659,1.2449 m -18.08161,-0.2539 c 13.53683,-0.5408 26.80145,-0.14284 40.58982,-0.40038 9.27982,-0.17333 18.19177,0.0252 27.21007,0.35666 4.38485,0.16117 8.79484,0.35378 13.28447,0.55037 4.1364,0.18113 8.15593,0.23452 12.09494,0.20898 m -29.37312,-0.0189 c 0.0577,0.002 0.11541,0.003 0.17313,0.005 13.21825,0.33952 27.09677,-1.20479 41.61923,-3.59076 14.58953,-2.39699 25.78253,-0.32301 37.52032,-0.94922 l 0,0 c 2.55899,-0.13652 5.28115,-0.18483 8.11841,-0.16436"
id="path5581"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccc" />
</g>
</g>
<g
inkscape:label="CroquisPentagoneCalculs"
id="layer16"
inkscape:groupmode="layer"
style="display:inline">
<g
style="filter:url(#filter5433)"
transform="matrix(0.24359094,0.10548103,-0.10159519,0.23577992,375.0972,491.78227)"
id="g5312">
<g
transform="translate(-15.407814,-58.183542)"
id="g5425">
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 222.03711,46.451172 c -2.84276,2.438438 -2.10001,7.251272 -5.54833,9.232165 -7.55011,9.568861 -16.20276,18.311524 -26.01026,25.572522 -0.66923,3.399492 4.58013,3.512636 5.79173,1.035157 8.35437,-6.127303 14.50123,-14.870166 21.9817,-21.740235 2.69123,4.726416 -1.74297,9.460513 -1.88431,14.246053 -0.74287,2.354651 -2.20863,6.292931 0.95658,7.503947 3.65706,-0.07211 2.4998,-4.825844 3.51177,-7.173053 1.64578,-7.972826 3.30759,-15.942952 4.79096,-23.94804 -1.64313,-1.419004 1.91929,-4.89139 -1.16406,-4.962891 -0.79926,-0.04115 -1.77814,-0.418175 -2.42578,0.234375 z"
id="path5176"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 235.1543,66.738281 c -2.99425,0.09592 -1.90881,5.754968 0.95508,4.310547 5.68533,0.116699 12.04518,2.900951 17.16992,-0.787109 0.11938,-3.029322 -3.72449,-1.896513 -5.32019,-1.07063 -4.45353,0.379024 -8.33625,-2.999638 -12.80481,-2.452808 z"
id="path5178"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 244.04102,59.705078 c -4.16169,5.175277 -2.46239,12.285052 -3.30469,18.38086 -0.26321,2.185304 2.28913,6.584593 4.23828,3.535156 1.21561,-3.54737 -1.77737,-7.063163 -0.65039,-10.72461 0.24006,-3.643246 1.90635,-7.64877 0.54492,-11.121093 -0.25303,-0.122042 -0.55884,-0.175882 -0.82812,-0.07031 z"
id="path5180"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 272.98828,48.064453 c -6.26208,5.778036 -8.07626,15.169931 -6.86905,23.301992 1.25797,4.342352 6.72778,7.509204 10.69718,4.414805 1.74812,-0.703354 3.99501,-3.523627 5.72033,-2.201355 3.31064,6.394551 11.38687,10.04571 18.20614,7.111858 7.60442,-2.209069 13.74624,-11.17626 9.77307,-18.848352 -1.9351,-4.818774 -5.66862,-8.999261 -10.4554,-11.110979 -2.63621,1.562648 0.90872,4.188494 2.4908,5.03139 4.9989,3.910773 9.03705,11.733517 4.43755,17.430993 -4.50674,6.700796 -16.84243,7.799725 -20.56426,-0.225581 -1.32946,-2.160123 0.31915,-7.010859 -3.28597,-6.924302 -2.57812,1.40752 -3.20494,4.936351 -6.13672,6.115234 -2.53981,2.035937 -6.92573,1.467422 -7.71152,-2.075143 -2.1456,-6.39484 1.20373,-12.947338 3.86888,-18.63735 0.24659,-0.875513 0.79761,-2.945202 -0.17103,-3.38321 z"
id="path5182"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 332.56445,61.587891 c -4.88569,1.98733 -10.3255,-1.455732 -15.10351,0.974609 0.18979,3.673541 4.78373,2.390725 7.18831,2.129879 3.14622,-0.215603 7.06493,0.155643 9.382,-2.288082 -0.22346,-0.552407 -0.84817,-1.052638 -1.4668,-0.816406 z"
id="path5184"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 327.91211,58.357422 c -3.02187,4.391188 1.73465,9.618907 -0.53906,14.265625 -0.21019,2.810577 3.75947,2.838048 3.17773,-0.117188 0.15143,-4.374848 -1.87061,-8.521353 -1.70898,-12.892578 -0.18477,-0.418596 -0.24915,-1.383185 -0.92969,-1.255859 z"
id="path5186"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 382.22461,43.152344 c -2.24307,-0.416332 -5.02151,4.338336 -1.21358,3.174471 2.66991,-0.77534 6.71106,-0.391813 7.01347,3.092171 2.98899,10.622522 -5.4628,21.713018 -15.68075,24.223592 -3.33316,2.540917 -9.3767,-1.221267 -6.92383,-5.339844 0.54067,-2.737845 -2.32907,-4.6271 -4.59551,-3.09069 -2.89011,0.810752 -6.32217,3.929736 -9.21497,1.963171 -3.0128,-3.835755 1.2528,-7.958683 1.64642,-11.890059 -2.36512,-1.296925 -2.6758,3.02808 -3.62033,4.389563 -2.21772,3.598505 -2.34387,10.287771 2.87814,11.131922 3.0979,0.433806 7.09929,-3.507729 9.44372,-0.159369 1.19453,2.502915 2.24617,6.262007 5.79081,5.637339 7.94726,-0.05232 14.85966,-5.671251 19.29967,-11.843577 3.83227,-5.752714 5.66487,-14.686529 0.28403,-20.035553 -1.43381,-1.104622 -3.33239,-1.487278 -5.10729,-1.253137 z"
id="path5188"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 401.44141,31.228516 c -2.0296,3.080377 0.25887,8.190687 -3.77149,10.144531 0.011,2.120002 2.18898,3.577583 2.43555,0.777344 1.13728,-1.281284 4.06829,-0.836234 3.87695,1.191406 3.37714,-1.460991 7.12408,-1.388086 10.65039,-1.113281 2.62999,-1.382027 -0.97133,-3.388261 -2.62695,-2.917969 -3.13142,0.245625 -7.91823,2.94868 -9.87891,-0.728516 -0.69921,-2.342538 2.04321,-6.09501 -0.68554,-7.353515 z"
id="path5190"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 411.0293,60.693359 c -0.93431,2.974775 2.71143,3.981769 4.78523,2.794498 4.13135,-0.511147 8.71606,0.657301 12.5468,-0.970279 -1.65478,-2.564452 -5.35794,-0.104048 -7.85062,-0.96525 -3.07785,-0.298519 -6.28066,-0.455587 -9.24509,-1.204672 z"
id="path5192"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 418.19531,54.271484 c -2.16086,3.455372 -1.11079,7.833468 -1.78765,11.653196 0.26072,3.275885 0.56826,7.281582 2.86187,9.653445 2.81357,-2.063694 -0.98138,-5.1365 -0.9707,-7.703125 -0.78962,-4.473551 1.18036,-9.413968 -0.10352,-13.603516 z"
id="path5194"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 478.10938,44.263672 c -2.20452,-1.126142 -4.57068,4.209564 -1.23322,3.053132 4.08481,-1.102796 9.71294,0.624127 9.95599,5.537759 1.72354,8.126327 -5.17328,14.663444 -11.38488,18.637625 -2.84152,2.205593 -8.35561,4.715121 -10.72043,0.656256 -2.0045,-3.597236 -0.0545,-8.161967 -2.38504,-11.632819 -3.9644,-0.896803 -6.31615,5.428453 -10.41992,3.296875 -4.01819,-4.093174 0.31869,-9.837057 -0.47461,-14.521484 -1.62017,-2.768153 -1.91041,2.18272 -2.1046,3.344936 -0.77124,4.290692 -2.81784,10.397028 1.52971,13.356198 3.31019,1.320654 7.71206,-3.178097 10.17254,0.5391 1.40703,3.24054 0.4468,8.228904 4.87851,9.344566 6.74934,2.072389 11.95645,-3.866167 16.55704,-7.797691 5.22353,-4.713245 9.31415,-13.149546 4.84375,-19.638672 -2.05906,-2.878179 -5.64402,-4.732057 -9.21484,-4.175781 z"
id="path5196"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 500.82422,27.533203 c -3.21499,3.648042 1.95892,8.974296 -1.74024,12.529297 -2.57711,2.522614 0.78434,4.80118 3.40625,4.023438 3.92833,-0.576986 7.83118,-2.671096 11.8418,-1.59961 1.60569,-1.671611 -1.60341,-4.702473 -3.40436,-2.943791 -2.36979,1.081041 -6.75543,0.970781 -6.80462,-2.487849 1.13797,-3.241961 1.80445,-9.403416 -2.92188,-9.828126 l -0.3756,0.305539 -0.001,0.0011 z"
id="path5198"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 476.75391,31.449219 c -8.0716,3.007858 -16.8303,1.972985 -25.23047,1.589843 -1.24845,2.659595 1.8224,3.121012 3.68136,2.571572 7.86505,0.211835 16.31571,0.269043 23.44427,-3.285956 1.54648,-1.336809 -1.0981,-1.780733 -1.89516,-0.875459 z"
id="path5200"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 510.17969,58.474609 c -3.26853,2.360438 0.70144,8.236221 4.20341,6.048922 4.20775,-0.789452 8.77941,-2.221657 12.14229,-4.603609 -1.27061,-2.913877 -4.63128,-0.02036 -6.48049,0.831236 -1.93612,1.039059 -4.39172,1.076746 -6.3242,0.682436 -2.01401,1.596833 -4.35611,-1.877919 -2.75195,-3.212891 -0.28998,-0.07797 -0.5249,0.176141 -0.78906,0.253906 z"
id="path5202"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 519.69922,51.748047 c -2.0377,2.769903 0.96669,6.344559 -0.61716,9.367807 -0.59572,3.84739 -2.62678,9.474474 1.6113,11.899771 2.57386,-0.575486 2.72216,-1.991303 0.73047,-3.222656 -1.64816,-5.792709 1.49849,-12.054065 -0.67188,-17.765625 -0.0236,-0.553136 -0.76667,-0.822415 -1.05273,-0.279297 z"
id="path5204"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 579.07422,37.701172 c -2.97578,0.961114 -7.7976,1.726668 -7.86914,5.689453 3.25653,3.17497 6.39097,-3.317908 10.05859,-1.259766 3.76891,1.791665 3.77646,6.692932 3.79688,10.298829 -0.5855,8.762175 -8.40772,17.763838 -17.67489,16.63691 -2.63895,-0.467887 -3.98804,-3.642208 -5.03214,-5.256051 -2.29382,1.402456 -3.98132,-2.899432 -1.24024,-3.400391 0.93764,-2.040546 -3.42766,-3.516966 -4.23907,-1.145371 -0.35573,1.774035 -3.40479,2.917614 -2.15546,4.465684 0.6514,2.591557 -3.43201,2.953878 -3.25586,0.322265 0.72598,-1.735469 -1.68603,-3.108106 -1.27148,-5.160156 -0.27747,-3.795162 1.92905,-7.85495 0.45898,-11.433594 -2.49761,-1.853242 -2.64864,2.407453 -2.67001,4.024425 -0.54719,5.223784 -2.06131,11.272834 1.20126,15.90331 2.42725,1.839581 5.68008,-0.02931 7.33789,-2.013672 4.24209,-1.026406 3.87324,5.223235 7.30277,6.015606 7.58433,4.163296 16.43604,-1.41439 20.71301,-7.84361 5.04504,-7.110855 6.42728,-18.530388 -0.61539,-24.79309 -1.44677,-0.858474 -3.17058,-1.260827 -4.8457,-1.050781 z"
id="path5206"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 571.87305,29.494141 c -7.33517,2.683176 -15.56336,4.63488 -23.25586,2.443359 -2.18702,-3.306852 -6.82754,2.029699 -3.0586,3.583984 4.05259,1.682777 8.65134,0.32488 12.88723,0.187318 6.13532,-0.956015 12.63489,-2.206582 17.96043,-5.109193 0.12773,-3.348584 -2.60194,-1.999163 -4.5332,-1.105468 z"
id="path5208"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 622.89844,57.6875 c -6.10199,2.049553 -12.5779,0.470506 -18.67578,1.974609 -3.30989,1.732612 0.1969,6.005259 3.05372,4.646625 6.22616,-2.239249 13.74045,0.0048 19.44628,-4.048968 0.6595,-2.290805 -1.89021,-3.884603 -3.82422,-2.572266 z"
id="path5210"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 619.4375,63.382812 c -2.95776,1.586022 -6.31682,5.931536 -9.92188,3.242188 -0.55685,-3.545569 -6.47447,-0.583277 -4.10546,1.992188 2.61156,5.024775 9.57946,3.598242 13.26564,0.66348 2.41346,-0.819721 4.96373,-5.647737 0.7617,-5.897856 z"
id="path5212"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 662.45898,54.833984 c -8.34868,0.09067 -17.90267,6.971683 -16.58655,16.123744 1.69919,6.739641 10.3242,8.26496 15.97697,5.832092 6.61262,-1.936716 14.25181,-5.12352 16.84396,-12.002711 1.01942,-4.81174 -3.40382,-8.525792 -7.77395,-9.18011 -2.74638,-0.788744 -5.60249,-0.895365 -8.46043,-0.773015 z m 1.66211,4.730469 c 3.15479,0.910137 7.51353,0.560705 9.40821,3.703125 -2.80703,5.995909 -10.00224,7.497439 -15.64453,9.554688 -3.08223,0.792417 -8.09035,-0.877573 -6.94758,-4.87567 0.79059,-5.151644 6.05707,-7.791246 10.81326,-8.01873 0.78507,-0.138853 1.57997,-0.270907 2.37064,-0.363413 z"
id="path5214"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
</g>
<g
transform="translate(-15.407814,-58.183542)"
id="g5408">
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 222.86328,124.57031 c -5.37837,6.31624 -8.093,14.32728 -11.99023,21.53321 -1.59682,4.1489 -0.007,10.83088 5.35962,10.82727 7.70347,0.63271 14.14988,-4.64845 21.34155,-6.54017 1.84519,-0.51628 4.34549,-3.8552 1.30078,-4.44726 -3.76604,0.20053 -6.47417,3.49837 -10.11022,4.30762 -3.98788,1.67191 -9.09368,4.15501 -13.1581,1.71589 -2.83613,-4.20097 1.12286,-8.87004 2.69932,-12.78606 2.59668,-4.86138 5.90781,-9.45651 7.2233,-14.89175 -0.80147,-1.38803 -1.94179,-0.88359 -2.66602,0.28125 z"
id="path5220"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 239.65234,140.31836 c -3.53068,4.70111 -2.04206,11.05115 -4.23935,16.27518 -1.27026,7.05193 -3.28174,14.29657 -1.81338,21.47287 2.65628,1.18281 3.0952,-2.34943 3.18945,-4.12891 -0.004,-4.04982 -0.62401,-8.17042 0.41885,-12.20839 1.04064,-6.9887 4.09392,-14.03865 3.20029,-21.10606 -0.19119,-0.18985 -0.46549,-0.39223 -0.75586,-0.30469 z"
id="path5222"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 290.04297,129.79297 c -4.88628,3.40233 -8.35768,8.44745 -12.51794,12.65685 -6.92157,7.99311 -13.76257,16.20007 -20.02308,24.65174 -0.11408,2.52713 3.47983,2.09407 3.3258,-0.22769 8.10792,-13.29225 18.88315,-24.67445 29.8285,-35.64731 0.1238,-0.47295 0.19096,-1.61996 -0.61328,-1.43359 z"
id="path5224"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 261.95703,128.91992 c -2.2779,3.44143 2.54866,5.85169 3.60778,8.79127 5.88197,10.37895 14.44941,18.84819 22.07386,27.90209 2.98808,0.97374 1.95281,-3.11536 -0.002,-3.79031 -9.95917,-9.51905 -17.53335,-21.18378 -24.85173,-32.72531 -0.24246,-0.14805 -0.54239,-0.25236 -0.82813,-0.17774 z"
id="path5226"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 308.65039,107.73438 c -4.56073,3.60017 1.23387,10.44016 -3.32031,14.15234 -1.64295,1.88278 -4.28008,5.92779 -0.98012,7.4261 2.37064,1.17423 -0.28078,-1.46245 0.86293,-2.56868 1.64513,-1.00663 1.94524,-2.14324 2.19993,-3.96679 1.49769,-2.94935 4.52394,-5.40648 4.39187,-8.92579 -1.00872,-1.19236 -3.3537,-2.44312 -1.83789,-4.26562 1.57141,-1.21009 -0.15251,-1.97865 -1.31641,-1.85156 z m 2.51563,19.01171 c -1.6816,-0.46855 -2.17322,3.21072 -2.2643,2.95032 5.41667,-0.52463 11.59034,-2.9173 16.44008,0.78015 2.65499,1.46445 3.38316,-2.09367 0.70703,-2.53711 -4.72016,-1.78369 -9.95906,-0.89274 -14.88281,-1.19336 z"
id="path5228"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 358.16992,149.76367 c -7.80605,2.58172 -17.03034,0.84195 -23.83008,6.22266 0.29654,3.00334 3.37622,0.66537 4.47076,-0.41674 6.33326,-3.3315 14.19197,-1.9853 20.36909,-5.49928 0.49561,-0.58601 -0.80916,-0.2597 -1.00977,-0.30664 z"
id="path5230"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 349.79492,144.60547 c -1.95923,3.6233 -1.22847,8.0068 -2.05273,11.92578 -0.81367,2.72171 3.51934,5.24521 2.30078,1.11133 -1.6922,-4.24963 0.38242,-8.84052 -0.24805,-13.03711 z"
id="path5232"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 393.54883,124.72656 c -6.0041,0.87369 -13.08104,5.75733 -11.58008,12.62696 0.96583,1.97649 2.95486,2.02593 1.40567,-0.30896 -1.17025,-3.15481 0.31569,-6.80439 3.53192,-7.92295 2.38959,-1.65596 6.53005,-3.84729 8.93441,-1.39812 1.33416,3.45069 -2.44255,6.12054 -2.69685,9.44765 -2.83276,7.57392 -7.93121,13.95959 -11.89195,20.93628 1.03809,4.13701 6.07186,2.33849 9.06922,2.19656 7.2246,-0.48177 15.10123,0.51874 21.57727,-3.42117 -0.69653,-2.87883 -3.55561,0.32478 -5.10352,0.64844 -6.06188,2.19906 -12.92981,1.06711 -18.95312,2.04492 -1.45389,2.72339 -6.54108,0.54564 -4.4373,-2.32176 5.1154,-9.41518 11.81626,-18.50563 13.61503,-29.26418 -0.14395,-1.73263 -1.50528,-3.70076 -3.4707,-3.26367 z"
id="path5234"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 444.98438,128.81055 c -8.16041,8.4338 -14.06517,18.81858 -22.77344,26.75976 -1.53816,0.95038 -2.71854,4.02421 0.12109,2.08203 5.04435,-6.2618 10.39905,-12.31958 15.22716,-18.79832 2.80449,-3.66488 5.60898,-7.32976 8.41347,-10.99464 -0.32943,0.31705 -0.65886,0.63411 -0.98828,0.95117 z"
id="path5236"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 417.94141,124.71484 c 1.42516,2.98767 4.50188,4.79723 6.17789,7.66863 8.02159,8.96871 17.77904,16.1555 26.59516,24.28522 1.67661,2.3041 4.93203,-0.21409 1.87497,-1.58562 -4.91382,-2.37904 -8.7756,-6.49986 -13.07343,-9.844 -7.57064,-6.51536 -14.60182,-13.61978 -21.6078,-20.7293 l 0.0332,0.20507 z"
id="path5238"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 490.11133,139.92188 c -6.98257,1.83248 -14.27503,1.39354 -21.36719,2.47851 -1.13146,2.91407 2.61473,1.79509 4.10843,1.46354 6.01572,-0.81129 12.32248,-0.73992 17.99509,-3.11002 0.0434,-0.39462 -0.26083,-0.9877 -0.73633,-0.83203 z"
id="path5240"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 515.99805,120.67773 c -2.66345,3.95009 -0.46388,9.09798 -2.45528,13.3238 -1.16735,7.4523 -3.64589,15.7547 0.0139,22.85785 1.32121,0.86418 4.78939,-1.70666 2.3125,-2.44727 -2.78657,-2.63029 -1.3358,-7.07883 -1.66104,-10.46185 0.339,-7.90555 2.78863,-15.7573 2.15323,-23.65338 l -0.33419,0.35035 -0.0291,0.0305 z"
id="path5242"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 554.00391,136.69531 c -4.16108,1.54997 -8.73491,1.58176 -13.13672,1.50586 -0.7042,2.3767 0.91194,4.73724 3.35257,3.33353 3.8089,-0.91312 8.54554,-0.12837 11.58688,-2.81204 0.70716,-1.20096 -0.65799,-2.2636 -1.80273,-2.02735 z"
id="path5244"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 551.52734,145.3457 c -2.78469,2.23426 -6.92391,5.65206 -10.33984,2.51563 -1.95365,-0.75138 -5.76367,0.76594 -4.46289,3.25976 5.05743,1.33556 11.30259,1.77522 14.93945,-2.77539 0.92021,-0.92605 1.96503,-2.91305 -0.13672,-3 z"
id="path5246"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 588.7832,131.95508 c -2.66489,0.31079 -6.51159,0.69268 -7.08789,3.9375 -3.77025,3.93282 -9.30291,9.18345 -6.68554,15.18164 3.51934,4.79252 10.61645,4.1576 15.76163,2.97023 5.24773,-1.53937 10.80917,-3.1382 15.14657,-6.55812 3.53207,-3.00257 4.71861,-9.32849 0.20822,-12.06049 -4.89339,-3.74125 -11.48475,-3.668 -17.34299,-3.47076 z m 4.59766,3.43164 c 4.16117,0.70714 8.89058,1.6673 11.75976,4.93945 -1.83547,7.1679 -10.09944,8.92616 -16.27139,10.51974 -3.6213,0.56698 -8.60376,0.98037 -10.83993,-2.53341 1.62769,-6.97643 8.11742,-12.68182 15.35156,-12.92578 z"
id="path5248"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
</g>
<g
transform="translate(-15.407814,-58.183542)"
id="g5455">
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 353.52148,205.29102 c -6.61606,9.44728 -10.3854,20.51853 -14.1918,31.29711 -1.21239,4.30151 -1.73605,8.9401 -0.55038,13.30835 1.9325,1.77947 2.19941,-0.24371 1.55273,-1.8789 -0.0562,-3.34362 -2.05798,-6.62837 -0.44237,-9.95061 3.11676,-11.52135 8.50035,-22.21572 13.77193,-32.86154 l 0.0982,-0.22887 -0.23829,0.31446 z m 11.7168,31.3496 c -7.39609,2.10494 -13.64361,6.6827 -20.37305,10.23243 0.60354,2.8523 3.29935,-0.48526 4.67219,-1.11275 4.61287,-2.98724 9.46863,-6.11004 15.07196,-6.68999 -0.0966,-0.54364 1.78418,-2.62728 0.6289,-2.42969 z"
id="path5256"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 231.65234,205.34375 c -4.83118,3.12059 -2.71597,9.83591 -5.0787,14.38061 -3.81055,14.30524 -11.56662,27.06773 -18.35294,40.09009 -0.21154,2.88656 4.70141,1.81141 4.05469,-0.70312 6.39125,-14.24543 14.98768,-27.40983 20.7793,-41.9336 3.26158,-1.78924 4.94311,2.8827 6.20235,5.00964 8.44951,14.42349 22.28464,25.16038 29.01249,40.67786 0.40369,3.64498 -4.01325,5.74746 -7.03861,4.44345 -18.69477,-0.35386 -38.59362,-3.4313 -56.10006,4.92765 -2.94322,1.85235 2.72398,6.70214 2.42773,2.90429 1.87945,-1.48083 4.09616,-2.66104 6.22696,-3.83678 13.13317,-4.80935 27.32511,-3.57368 40.98793,-2.60661 4.2792,0.0348 8.78817,0.78319 12.92769,-0.25778 4.35759,-2.95213 2.46378,-9.29585 -0.71751,-12.4097 -11.34228,-15.51649 -25.55263,-29.57419 -32.00319,-48.0942 -0.70383,-1.14135 -1.7391,-2.89124 -3.32813,-2.5918 z"
id="path5250"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 312.69531,239.42188 c -7.72329,1.23934 -15.76202,1.35312 -23.13281,4.26953 -0.5732,2.65286 3.37019,2.23309 4.38086,0.70898 6.56776,-2.79305 13.85014,-2.54831 20.83008,-3.11914 0.24194,-1.35039 -0.83567,-2.09967 -2.07813,-1.85937 z"
id="path5252"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 306.85742,249.36328 c -3.27676,3.98366 -9.66945,5.18991 -13.80273,1.86719 -2.48561,0.20443 -0.13242,2.8424 1.37695,2.66406 4.4259,1.87669 11.49006,0.22151 12.70313,-4.58203 l -0.14063,-0.01 -0.13672,0.0606 z"
id="path5254"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 363.58594,227.58008 c -0.47872,4.7472 -0.51807,9.52365 -1.24563,14.23838 -0.32823,6.34564 -0.005,12.76637 1.20657,19.01552 2.40019,-2.98738 -0.74108,-6.71428 -0.0637,-10.08453 -0.48052,-8.25125 0.79614,-16.48337 0.49728,-24.73578 -0.13151,0.52214 -0.26302,1.04427 -0.39453,1.56641 z"
id="path5258"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 399.15625,237.04102 c -4.74764,3.97718 -11.62586,2.72472 -16.99414,3.99414 1.2981,1.75769 4.33364,0.35963 6.30338,0.71924 3.77931,-0.16342 9.08016,-1.27968 10.76498,-4.71729 l -0.0742,0.004 z"
id="path5260"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 389.99023,231.46484 c -0.64983,4.07107 1.51487,8.02486 0.82422,12.125 0.12685,2.76313 0.78414,6.45997 3.86914,7.34961 1.43811,-2.85784 -2.78337,-4.60577 -2.57812,-7.52734 -1.05423,-4.00641 -0.0921,-8.43833 -2.03516,-12.21875 l -0.0801,0.27148 z"
id="path5262"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 419.01953,206.66797 c -0.9089,4.30086 1.26458,8.53771 0.9352,12.87037 1.03976,8.68588 2.5852,17.32306 3.00816,26.07299 2.11994,1.64691 4.23342,-1.02712 2.25719,-2.72585 -3.71688,-9.95483 -2.90304,-20.82878 -5.09742,-31.12011 -0.25435,-1.39918 -0.53797,-4.97346 -1.10313,-5.0974 z"
id="path5266"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 452.3418,204.99805 c -4.1501,5.93523 -6.07642,13.09829 -8.43915,19.84051 -0.60647,3.5291 -0.0784,7.4956 -2.4632,10.36652 -0.22556,2.97064 3.3472,4.12261 4.41993,6.64453 2.41787,3.72818 7.31488,6.88488 11.63867,4.22266 5.76435,-3.17435 6.54638,-13.91275 -0.35352,-16.17188 -3.69914,-1.21656 -7.48655,1.10116 -11.15039,0.48047 -2.8143,-6.21808 1.93703,-12.28695 3.807,-18.02947 0.94901,-2.2653 2.59994,-5.33394 2.54066,-7.35334 z m 2.26953,26.375 c 5.47888,0.39443 7.24182,7.97798 3.41797,11.47265 -2.60007,3.07131 -7.70559,2.51484 -9.77397,-0.86195 -2.52293,-2.03811 -4.21563,-7.1594 -0.36793,-8.79044 2.01199,-1.23138 4.36227,-1.88691 6.72393,-1.82026 z"
id="path5268"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
</g>
<g
id="g5377">
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 208.93164,348.21094 c -9.55352,5.96473 -16.70949,17.14585 -15.09766,28.70117 3.28233,4.94682 9.8339,2.12805 14.09358,0.19885 4.79563,-2.043 10.58043,-4.44867 13.00799,-9.17346 -2.59574,-2.21565 -4.67038,2.36814 -6.91602,3.26953 -4.79611,3.17452 -11.05534,6.37671 -16.80664,4.28906 -2.64738,-6.00311 2.00548,-11.76214 4.12335,-17.12788 2.02162,-3.77016 6.29957,-5.99198 8.42353,-9.43266 -0.10991,-0.35103 -0.40777,-0.78049 -0.82813,-0.72461 z"
id="path5274"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 244.48438,350.25586 c -2.24132,2.50981 -1.94656,7.11972 -5.82618,8.18164 -3.98648,1.68407 -6.50742,-4.37286 -10.43359,-2.26367 -3.02151,0.97416 -2.83038,4.49491 -1.54297,6.67773 2.72391,1.65103 8.02152,-0.57399 9.01367,3.47266 -0.11716,5.97545 -6.50802,8.26068 -10.75,10.98242 -3.42257,0.44191 -4.4137,-4.20803 -2.0664,-6.14648 0.91477,-1.5073 3.00022,-4.14346 1.83007,-5.43555 -3.88936,1.71854 -5.4202,6.48904 -5.82421,10.3457 1.0309,3.91778 6.50809,5.15387 9.23465,2.23246 5.23454,-2.46385 10.92379,-7.23981 10.01925,-13.67191 1.16428,-3.99493 4.67188,-7.65048 8.67969,-8.60547 3.74437,0.58015 4.43785,5.24735 7.5078,6.94553 1.78386,2.21056 5.39995,4.33667 4.84572,7.51541 -0.74755,1.61229 -3.44039,2.02771 -4.32618,0.33789 -2.69103,-0.0769 -5.30301,-1.36247 -7.23047,-3.01758 -2.46595,1.44561 0.56991,4.60425 2.65047,4.70862 3.15948,0.81386 7.10169,2.00274 10.08,0.30505 2.74812,-2.69004 0.83553,-6.98524 -1.95615,-8.78935 -4.52089,-4.64687 -8.81712,-10.07099 -13.90517,-13.7751 z"
id="path5276"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 291.17969,318.45898 c -6.98648,1.77776 -10.33464,10.77127 -7.25977,17.02735 2.2679,1.25944 7.33093,1.14413 6.36914,4.96679 -1.05697,2.86358 -4.90169,6.92196 -1.38867,9.47461 3.26522,0.8391 5.82569,-2.51383 9.11051,-2.4511 4.56477,-1.04853 9.36043,-1.28401 13.68832,-3.21491 0.0152,-3.35102 -4.24629,-0.39005 -6.01367,-0.32033 -4.49177,0.74364 -9.44129,3.18738 -13.83203,1.68947 -2.39377,-3.39347 1.60795,-7.02078 1.98557,-10.50927 1.59433,-5.22712 3.17005,-11.65165 -0.52854,-16.38526 -0.64205,-0.3782 -1.41687,-0.37814 -2.13086,-0.27735 z m 0.95508,2.28321 c 3.57804,1.51039 1.07389,6.07853 1.50585,8.91992 0.37975,4.36785 -5.50129,7.98649 -8.58789,4.23242 -1.94564,-2.44011 0.46447,-5.31846 0.74113,-7.95921 0.8509,-2.74654 3.17716,-5.59382 6.34091,-5.19313 z"
id="path5278"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 320.72461,317.6582 c -1.355,4.29605 0.40988,8.86828 -0.71635,13.22943 -0.25736,3.45858 -0.38999,8.87011 3.50541,10.16706 2.7542,-0.40822 3.54333,-5.65169 0.22852,-5.72071 -4.74246,-4.86354 -0.27248,-12.17359 -2.80664,-17.6875 l -0.21094,0.0117 z"
id="path5280"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 329.70898,319.63672 c -0.49085,3.93681 1.97234,7.67207 0.94516,11.64311 -0.14449,2.97839 -0.34234,6.94088 2.70524,8.59908 3.34957,-1.40745 -0.0882,-4.88024 -0.63383,-7.04141 -1.28847,-4.5366 -0.68401,-9.53555 -2.83102,-13.84141 l -0.1347,0.46507 -0.0509,0.17556 z"
id="path5282"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 346.44531,306.06641 c -13.79614,6.91722 -29.79242,8.41873 -42.98437,16.68554 -1.39302,2.05251 2.38867,1.74917 2.79297,0.25782 10.12805,-7.73913 23.43604,-8.3966 34.75762,-13.62875 1.90711,-0.78227 5.20905,-1.62705 5.79511,-3.3654 l -0.18164,-0.0137 -0.17969,0.0645 z"
id="path5284"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 348.28906,338.22852 c -19.57207,8.35531 -40.08263,14.54437 -60.80664,19.41992 -2.36864,2.46848 1.40578,3.52006 2.94578,1.51658 19.30602,-7.14866 39.47571,-11.98546 58.45319,-19.95175 1.59218,-0.8554 0.68152,-1.40189 -0.59233,-0.98475 z"
id="path5286"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 316.21289,361.8457 c -4.3309,2.76566 -10.635,6.7012 -8.94922,12.78125 2.71736,5.87119 12.06879,6.28901 12.53906,13.5918 0.63826,3.80642 -3.33386,9.12635 -7.24609,6.23437 -3.8047,-0.47019 -2.35911,5.25978 0.48438,5.55274 3.81612,1.12837 5.76575,-3.23658 7.52936,-5.77952 3.03393,-4.88027 1.42679,-11.72541 -3.72752,-14.46114 -3.31359,-2.14197 -8.84321,-5.06643 -6.96395,-9.87458 1.41009,-3.36119 5.83925,-4.62309 7.08984,-7.83007 -0.17663,-0.21948 -0.4917,-0.29641 -0.75586,-0.21485 z"
id="path5288"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 339.04883,359.625 c -7.76268,2.34004 -15.94789,2.82743 -23.89258,4.35547 -2.08106,-1.82 -5.20822,3.0231 -1.36328,2.3457 5.75507,-0.74082 11.24772,-2.90566 17.10325,-3.04819 3.46958,-0.45548 7.01239,-1.12317 10.053,-2.9479 -0.24777,-0.84636 -1.18012,-0.94903 -1.90039,-0.70508 z"
id="path5290"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 396.11133,319.35938 c -5.87004,3.68596 -13.90435,3.79918 -18.37891,9.60937 0.27931,2.81605 3.92981,0.58827 4.24414,-1.16211 4.08239,-4.07177 11.84966,-3.19176 14.69336,-8.39453 -0.15494,-0.12105 -0.38398,-0.15761 -0.55859,-0.0527 z"
id="path5292"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 392.76953,330.78906 c -4.09339,4.35218 -9.84558,6.58762 -15.50586,7.8418 -1.52611,1.73651 1.57139,3.6784 2.83868,1.93857 4.70102,-2.47252 11.4368,-3.93955 13.27656,-9.54404 0.0501,-0.35186 -0.34641,-0.53621 -0.60938,-0.23633 z"
id="path5294"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 434.55273,296.90234 c -3.92894,2.18014 -8.49927,4.84496 -13.1289,3.29688 -1.12809,0.81415 -4.60102,0.45483 -3.36328,2.64453 3.13815,2.55736 7.13059,-0.47183 10.54694,-0.78662 2.53582,-0.78065 6.03511,-2.27561 6.31439,-5.16846 l -0.36915,0.0137 z"
id="path5296"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 451.55469,274.84961 c -1.98057,4.07581 0.85476,8.60268 -0.34137,12.85297 -0.0648,7.5098 -0.82721,15.57014 2.8941,22.42437 2.97161,0.59681 2.61578,-3.68127 1,-5.00586 -3.81276,-9.78058 -7.2e-4,-20.61514 -3.39062,-30.48047 z"
id="path5298"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 485.91602,278.8457 c -5.43519,3.32099 -11.85407,4.39288 -18.09961,4.97266 -1.63383,2.39702 2.06113,3.97392 3.88276,2.74616 5.53891,-0.8343 11.40591,-2.75941 15.45708,-6.60163 -10e-4,-0.62254 -0.55488,-1.33591 -1.24023,-1.11719 z"
id="path5300"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 476.27148,273.06445 c -1.36207,3.71281 1.65453,7.28812 1.08355,11.08374 0.58354,5.36508 1.01989,12.47491 6.40278,15.22681 2.41182,-0.23881 2.90313,-3.9675 0.35454,-4.42012 -5.79352,-5.84427 -3.35541,-15.03143 -6.80962,-21.90996 -0.31564,-0.34642 -0.90095,-0.94669 -1.03125,0.0195 z"
id="path5302"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 555.58789,230.09375 c -17.74096,3.1423 -34.12028,12.18963 -47.57059,23.9443 -1.79543,3.00103 -5.18335,4.96594 -6.8161,7.89446 -0.27129,10.87302 0.80928,21.95201 4.80857,32.14561 1.76899,2.44211 6.5862,-1.1873 3.13085,-2.86523 -1.34243,-1.65194 0.47827,-4.02981 -1.09801,-5.72246 -4.14526,-10.28397 -4.50528,-23.98266 4.35276,-31.95352 10.48343,-9.48426 23.70262,-15.66542 37.30385,-19.15214 4.06731,-0.74673 8.26024,0.7824 12.09375,1.00585 2.85797,-3.40454 -3.61095,-5.84118 -6.20508,-5.29687 z"
id="path5304"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 538.16211,253.31641 c -4.16475,1.3937 -9.39628,2.93883 -10.875,7.64453 0.86684,6.59967 8.37443,8.27721 12.5879,12.23663 3.45978,2.53037 6.94557,6.2148 6.76366,10.79852 -3.43361,4.68616 -10.10613,2.72252 -14.36328,0.40039 -2.8541,-1.18485 -4.2197,4.23138 -1.03711,4.33008 5.78844,3.20988 14.98782,4.15085 19.02751,-2.21211 2.89451,-5.90937 -2.24825,-11.84244 -6.59111,-15.36331 -3.83371,-3.12462 -8.34715,-5.36176 -12.08679,-8.58278 -0.34242,-4.67707 5.51188,-5.02868 8.62891,-6.33789 2.48165,-1.94523 0.94544,-4.84407 -2.05469,-2.91406 z"
id="path5306"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 549.73047,296.27734 c -24.7591,6.94553 -49.99514,13.58032 -72.44107,26.5279 -12.99175,6.45713 -26.44849,12.45924 -40.81284,15.0346 -2.53322,1.07788 0.40252,5.24723 2.27344,3.25391 31.32718,-10.09298 58.67242,-30.8909 91.57141,-36.37904 7.28835,-1.59272 14.70194,-2.84247 21.69226,-5.53502 0.60933,-1.39297 -0.77041,-3.19942 -2.2832,-2.90235 z"
id="path5308"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
transform="matrix(0.95637926,-0.32766216,0.32583877,0.93397568,-232.0787,75.515446)"
inkscape:connector-curvature="0"
d="m 486.28711,328.01953 c -3.49375,3.57652 -1.15942,9.32107 -4.11684,13.19785 -2.6009,7.14545 -5.69243,15.56731 -1.67027,22.80606 5.79279,5.6615 14.88644,2.11072 20.33594,-2.24805 1.97377,-1.59549 4.23009,0.15035 3.61718,2.51758 -0.0295,5.09741 0.76554,10.10655 1.57422,15.08789 0.63843,3.73265 6.86858,2.10141 5.3086,-1.47586 -4.88762,-12.17376 -2.27214,-25.62413 -2.49414,-38.38742 -3.45758,-1.55223 -6.38267,2.91731 -5.0914,5.95837 0.65224,7.86031 -4.96225,15.58038 -12.83007,16.92212 -3.83589,1.36321 -8.66381,-0.85717 -8.59611,-5.33362 -0.43523,-6.54406 2.53417,-12.70961 3.85506,-19.01032 0.77067,-3.15926 1.93761,-7.1785 0.46525,-10.05804 l -0.35742,0.0234 z"
id="path5310"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<path
inkscape:connector-curvature="0"
d="m 548.88938,282.84758 c 0.73828,-0.8542 0.93131,-1.2724 2.16514,-1.66274 1.12221,-0.35502 1.78666,0.002 2.8726,0.17984 0.94312,0.15425 1.60702,0.17294 2.55822,0.23338 1.10452,0.0607 2.21134,0.0121 3.31617,0.051 0.69171,0.0243 1.38099,0.10669 2.07302,0.11827 0.74402,0.0125 1.48792,-0.0308 2.23188,-0.0462 0.75283,-0.008 1.50575,-0.0375 2.2585,-0.0238 0.79396,0.0144 1.58655,0.072 2.37983,0.10792 0.88827,0.0178 1.7765,0.0378 2.66481,0.0534 1.02214,0.0179 2.0451,0.005 3.06654,0.0471 3.70255,0.15206 7.39107,0.57046 11.09235,0.75602 1.36816,0.0686 2.7379,0.10072 4.10686,0.15109 8.93387,0.86682 -0.2343,0.0517 9.01493,0.64027 1.63886,0.10428 3.27083,0.30893 4.91088,0.39248 1.68776,0.086 3.37992,0.0486 5.06853,0.11587 17.12218,0.68207 -6.50241,-0.0399 10.48602,0.44473 5.10729,0.41831 10.23295,0.46498 15.35069,0.66723 1.71795,0.0679 3.43431,0.17607 5.15279,0.22876 3.36904,0.10329 6.74004,0.13214 10.10929,0.22819 10.24483,0.7446 20.5158,0.15467 30.73547,-0.65873 4.12328,-0.39834 8.26096,-0.73425 12.37252,-1.24748 1.22176,-0.15251 2.43346,-0.379 3.65479,-0.53489 8.7941,-1.12252 -1.81321,0.40581 6.48464,-0.823 6.08482,-0.33545 -0.13245,-0.0369 5.48085,-0.18437 0.73489,-0.0193 1.46798,-0.10665 2.2031,-0.1012 0.65437,0.005 1.3053,0.0962 1.9587,0.13206 0.61913,0.034 1.24232,0.009 1.85857,0.0773 0.54888,0.0612 1.08489,0.20748 1.62734,0.31122 0.64006,0.30602 1.41078,0.0339 2.0635,0.26858 0.28286,0.1017 0.49711,0.3383 0.75145,0.49849 0.55891,0.35198 0.99449,0.46247 1.29999,1.15408 0.16508,0.37371 0.14751,0.80368 0.22126,1.20551 0.0128,1.56571 -1.55873,2.40829 -1.93979,3.80753 -0.0826,0.30325 -0.0725,0.62441 -0.10875,0.93661 -0.39415,2.56518 -0.9007,5.1091 -0.79053,7.71995 0.0391,0.92769 0.18793,1.84772 0.25697,2.77366 0.0765,1.02605 0.11971,2.05431 0.17957,3.08146 0.13863,1.08975 0.31162,2.17568 0.41587,3.26926 0.11187,1.17347 0.13825,2.35369 0.2322,3.52873 0.0972,1.21556 0.22746,2.42825 0.34119,3.64238 0.0889,1.22576 0.17439,2.45177 0.26677,3.67728 0.0859,1.13956 0.21732,2.27622 0.26808,3.41789 0.0502,1.12852 0.0231,2.25915 0.0346,3.38873 0.0306,1.07588 0.0612,2.15176 0.0918,3.22764 0.0928,0.99218 0.22927,1.98124 0.27847,2.97654 0.046,0.92953 -0.0265,1.86191 0.007,2.79198 0.0303,0.84773 0.12189,1.69216 0.18388,2.53817 0.23161,3.16075 0.12335,1.40674 0.28568,4.46824 0.0228,0.25347 0.29852,3.25649 0.30937,3.60355 0.0291,0.93012 -0.0977,1.86076 -0.0686,2.79089 0.0181,0.57943 0.10656,1.1552 0.12545,1.73461 0.0287,0.227 0.106,0.45307 0.0861,0.681 -0.0412,0.47156 -0.24387,1.11391 -0.47554,1.5563 -0.008,0.0143 -0.0309,-0.0426 -0.0392,-0.0287 -0.32602,0.54396 -0.34478,0.3855 -0.28723,0.66187 0.18334,-0.0478 0.15098,-0.008 0.13316,-0.35127 -0.005,-0.10584 -0.0389,-0.4109 -0.071,-0.3099 -0.17704,0.55745 -0.26854,1.139 -0.37495,1.71413 -0.008,0.043 0.0465,0.0847 0.0344,0.12668 -0.0107,0.0371 -0.0611,0.0472 -0.0916,0.0708 -0.15317,0.17337 -0.30635,0.34674 -0.45952,0.52011 0.0232,0.008 0.0774,8.2e-4 0.0696,0.0241 -0.0649,0.19252 -0.11032,0.41571 -0.26291,0.54982 -0.89639,0.78785 -1.74629,0.88137 -2.81552,1.19678 -0.8361,0.27962 -1.72677,0.33613 -2.57072,0.57985 -0.49469,0.14285 -0.95563,0.38909 -1.45066,0.53076 -2.21567,0.6341 -4.5542,0.90829 -6.8232,1.27105 -3.17553,0.45622 -6.39171,0.91734 -9.60611,0.97866 -1.30109,0.0248 -2.60136,-0.0887 -3.9026,-0.10402 -7.55567,-0.089 -0.94464,0.19736 -8.89408,-0.2565 -1.65208,-0.19877 -3.30416,-0.39753 -4.95625,-0.59629 -1.76893,-0.15764 -3.54339,-0.26232 -5.3068,-0.47292 -1.88642,-0.2253 -3.75183,-0.60776 -5.63811,-0.83422 -1.99715,-0.23978 -4.00578,-0.37172 -6.00806,-0.56402 -9.02664,-0.8669 -3.41807,-0.41436 -12.72888,-1.06265 -6.68109,-0.70361 -13.39179,-1.17711 -20.10231,-1.495 -2.25397,-0.10677 -4.51099,-0.13864 -6.76537,-0.23656 -20.09317,-0.8727 6.68474,0.14512 -12.92135,-0.57626 -1.97135,-0.0185 -3.94277,-0.0307 -5.91405,-0.0556 -1.85228,-0.0234 -3.70421,-0.10518 -5.55657,-0.0892 -3.32718,0.0287 -6.1891,0.26993 -9.49063,0.41335 -0.66093,0.0287 -6.95258,0.22693 -7.73917,0.25194 -5.32547,0.10998 -10.65115,0.23059 -15.9762,0.36926 -1.25321,0.25078 -2.52886,0.22683 -3.79727,0.29167 -0.18965,0.01 -0.38686,-0.0123 -0.5679,0.045 -0.10115,0.032 -0.15926,0.14022 -0.2389,0.21033 -2.19713,-0.006 -2.18835,-3.11343 0.009,-3.10722 v 0 c 1.45833,0.59292 3.08188,0.10044 4.59277,0.39408 3.13937,0.13755 6.28447,0.11205 9.42379,0.25821 1.01675,0.0473 2.02887,0.17961 3.04622,0.21163 1.1661,0.0367 2.33334,-0.004 3.50001,-0.006 4.05458,0.0866 8.10982,0.0942 12.16421,0.18814 9.11798,0.21135 0.99682,0.0619 10.63589,0.39402 1.96974,0.0679 3.94058,0.0992 5.91087,0.14878 8.54783,0.38384 4.23905,0.21321 12.92642,0.5097 8.96845,0.39338 17.92819,0.96381 26.88405,1.57434 14.63107,1.6683 -1.39425,-0.0608 12.72421,1.17186 2.00466,0.17502 3.99865,0.46019 6.00311,0.63741 1.88881,0.16701 3.7842,0.24962 5.67478,0.39511 8.82794,0.67934 1.78097,0.28074 10.25094,0.68699 5.97786,0.14208 3.06394,0.1757 8.81157,-0.0762 4.41404,-0.19344 8.86539,-0.31147 13.16787,-1.43313 2.13479,-0.4817 4.33338,-0.87981 6.38885,-1.6557 0.54333,-0.2051 1.05282,-0.49245 1.59354,-0.70434 0.78393,-0.30719 1.61707,-0.47881 2.38493,-0.83209 0.26459,-0.10107 0.52748,-0.2067 0.79377,-0.30319 0.16783,-0.0608 0.3532,-0.25698 0.50828,-0.16859 0.11559,0.0659 -0.0722,0.27293 -0.17312,0.35961 -0.0657,0.0564 0.0135,-0.17679 0.0511,-0.25483 0.423,-0.87744 0.39765,-0.79845 0.34507,-0.51138 0.1889,-0.77748 1.10589,-1.89851 0.36886,0.48679 -0.0549,0.17781 -0.18143,-0.33472 -0.2049,-0.51934 -0.0309,-0.24338 -0.005,-0.49442 0.0455,-0.73461 0.0302,-0.14505 0.12726,-0.2676 0.19088,-0.4014 0.0715,-0.20755 0.12065,-0.42416 0.21438,-0.62265 0.012,-0.0253 0.0294,0.0919 0.0467,0.0698 0.10485,-0.13452 0.14903,-0.30862 0.24781,-0.44766 0.0345,-0.0485 0.16521,0.0547 0.17858,-0.003 0.0541,-0.23502 0.05,-0.47975 0.075,-0.71963 0.0362,-0.59976 0.10335,-1.19825 0.11289,-1.79903 0.007,-0.43651 -0.0513,-0.87362 -0.0259,-1.30944 0.0276,-0.47202 0.15036,-0.93483 0.1844,-1.40642 0.0758,-1.04945 0.0154,-2.43615 -0.009,-3.47098 -0.0384,-3.00192 0.0183,-1.46098 -0.18254,-4.62236 -0.011,-0.83188 0.0777,-1.66237 0.0896,-2.49424 0.0429,-2.99738 -0.0953,-5.99617 -0.0883,-8.99339 -0.078,-2.25658 -0.14528,-4.51353 -0.23112,-6.76982 -0.0458,-1.2044 -0.062,-2.41072 -0.1522,-3.6126 -0.18778,-2.5009 -0.53933,-4.63966 -0.88693,-7.11685 -0.15376,-1.09573 -0.30379,-2.19197 -0.45569,-3.28795 -0.51859,-3.62562 -0.38625,-2.44118 -0.74684,-5.92412 -0.0944,-0.91147 -0.25094,-1.81941 -0.27238,-2.7355 -0.0426,-1.82161 0.43734,-3.63812 0.42254,-5.46083 0.072,-0.54705 0.0912,-1.10367 0.21597,-1.64113 0.25018,-1.07742 0.40011,-1.05 0.93378,-1.85831 0.11647,-0.17642 0.20477,-0.37106 0.32836,-0.54256 0.0454,-0.063 0.13716,-0.0863 0.17404,-0.15459 0.0401,-0.0742 0.0294,-0.16609 0.044,-0.24914 0.0753,0.15203 0.11976,0.32382 0.22602,0.4561 0.0339,0.0422 0.20366,0.0574 0.16036,0.0249 -0.1289,-0.0965 -0.30501,-0.12048 -0.42751,-0.225 -0.0971,-0.0828 -0.10675,-0.24558 -0.21071,-0.31954 -0.34026,-0.24208 -1.53456,-0.51165 -1.75039,-0.5706 -1.08043,-0.32081 -1.85966,-0.59619 -3.00596,-0.7332 -0.64748,-0.0774 -1.30356,-0.0491 -1.95379,-0.0982 -0.70812,-0.0535 -1.41124,-0.16661 -2.12008,-0.20966 -2.50439,-0.15209 -2.68792,-0.0564 -5.28821,0.10417 -7.54986,0.58577 -15.09198,1.29606 -22.6569,1.65776 -9.66026,0.49708 0.21763,0.0277 -9.82803,0.38209 -1.36293,0.0481 -9.03293,0.41166 -10.39193,0.42252 -3.52991,0.0282 -7.05778,-0.25076 -10.58768,-0.2242 -1.69473,-0.0743 -3.38947,-0.14868 -5.08421,-0.22303 -1.67224,-0.0542 -3.3451,-0.0918 -5.01672,-0.16257 -1.71591,-0.0726 -3.4287,-0.21655 -5.14539,-0.26761 -1.74342,-0.0519 -3.48882,0.005 -5.23241,-0.0411 -3.19921,-0.0838 -6.9443,-0.34412 -10.139,-0.54195 -1.73445,-0.0765 -3.46905,-0.14964 -5.20334,-0.22966 -1.75477,-0.081 -3.50758,-0.21605 -5.26382,-0.2533 -1.69582,-0.036 -3.39235,0.0485 -5.08848,0.0337 -1.64133,-0.0143 -3.28294,-0.0473 -4.92268,-0.12091 -11.985,-0.53786 2.45886,-0.1481 -9.02015,-0.40703 -3.53576,-0.17043 -4.58333,-0.26007 -8.11407,-0.27509 -1.25102,-0.005 -2.5026,0.0901 -3.75284,0.0453 -1.09848,-0.0394 -2.18496,-0.28798 -3.28411,-0.29759 -1.91508,-0.0168 -3.81271,0.5044 -5.73768,0.29913 -2.27156,-0.0217 -4.5465,-0.0516 -6.8173,0.0371 -0.85715,0.0335 -2.99617,0.18644 -3.90054,0.23055 -0.5644,0.0275 -1.1294,0.0409 -1.69409,0.0613 -0.48798,-0.0252 -0.97839,-0.0209 -1.46395,-0.0757 -3.76424,-0.42469 0.90364,-0.10003 -2.34414,-0.30718 -0.15186,-0.01 -0.3071,0.008 -0.4559,-0.0237 -0.12352,-0.0265 -0.23659,-0.20703 -0.3486,-0.14863 -0.18973,0.0989 -0.24735,0.34923 -0.37103,0.52384 -0.86644,1.73287 -3.31708,0.50754 -2.45065,-1.22532 z"
id="path5466"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
transform="matrix(2.2879398,-1.4100592,1.3284749,2.2473131,-1628.3608,439.47606)" />
<path
inkscape:connector-curvature="0"
d="m 552.81039,284.45453 c -0.53782,0.91048 -1.09006,1.90651 -1.21643,2.98229 -0.0418,0.35589 0.0365,0.71627 0.0309,1.07457 -0.0662,4.19836 -0.11776,-1.93591 -0.044,3.11903 -0.0566,2.58719 -0.229,5.17803 -0.0552,7.7655 0.0665,0.99095 0.21239,1.97496 0.31873,2.96243 0.47883,4.44673 0.24216,2.29352 0.76311,6.91915 0.11387,1.59441 0.44658,6.37769 0.59428,7.93222 0.45668,4.80661 0.48111,3.20364 0.7633,7.98861 0.16954,2.87463 0.16248,4.76782 0.19964,7.62734 -0.21072,3.08348 -0.59312,6.14577 -0.99659,9.20767 -0.10457,0.79351 -0.16805,1.59271 -0.29587,2.3828 -0.53269,3.29282 -0.4374,0.82747 -0.40659,3.78876 0.0745,1.91138 -0.008,1.01273 0.21845,2.69853 0.15015,1.72527 -2.28975,1.93762 -2.4399,0.21235 v 0 c -0.041,-1.93937 -0.0104,-0.90174 -0.0998,-3.11263 0.38611,-2.10274 0.71008,-4.21916 1.16878,-6.30796 0.1905,-0.8675 0.44525,-1.72065 0.61764,-2.59192 0.33325,-1.68421 0.71344,-4.60992 0.94517,-6.27808 -0.0303,-1.21651 -0.0652,-2.43291 -0.091,-3.64953 -0.0273,-1.29075 -0.005,-2.58303 -0.0682,-3.87251 -0.0651,-1.32441 -0.20567,-2.64406 -0.31701,-3.96539 -0.33451,-3.96972 -0.74759,-7.93089 -1.24776,-11.88336 -0.41321,-3.3236 -0.95599,-6.63057 -1.29208,-9.96311 -0.43755,-4.3385 -0.11097,-1.4755 -0.37711,-5.51979 -0.0489,-0.74335 -0.12891,-1.48434 -0.19337,-2.22651 -0.0292,-0.59715 -0.0454,-1.19507 -0.0875,-1.79145 -0.0384,-0.54313 -0.1456,-1.08178 -0.15377,-1.62621 -0.0104,-0.69386 0.17454,-2.13117 0.36881,-2.79919 0.23167,-0.79669 0.72229,-1.50292 0.89722,-2.32173 0.88255,-1.76511 3.37879,-0.51699 2.49624,1.24812 z"
id="path5468"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
transform="matrix(2.2879398,-1.4100592,1.3284749,2.2473131,-1628.3608,439.47606)" />
</g>
</g>
<g
transform="matrix(0.1022219,-0.22892335,0.22892335,0.1022219,7.52427,296.53016)"
id="g6285">
<path
inkscape:connector-curvature="0"
id="path6278"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 313.33683,304.31512 c -0.38491,0.39352 -0.83031,0.73585 -1.15473,1.18056 -0.20698,0.28373 -0.30808,0.63408 -0.41344,0.96911 -0.0131,0.0418 0.10756,0.13694 0.0747,0.108 -0.65479,-0.57677 -1.28823,-1.1775 -1.94331,-1.75394 -0.10794,-0.095 -0.0787,0.16953 -0.0538,-0.16104 1.06276,-1.70042 3.46752,-0.19745 2.40476,1.50297 v 0 c -0.84992,1.61481 -1.11239,1.71703 -3.13821,-0.49818 -0.1637,-0.179 0.26586,-0.40587 0.40436,-0.605 0.91664,-1.31788 0.66796,-0.95819 1.75719,-2.28935 1.0938,-1.4584 3.15629,0.0885 2.06249,1.54687 z m 19.25827,9.37507 c -1.29466,0.69368 -1.19243,0.67047 -2.60413,1.28723 -0.28102,0.12277 -0.58702,0.19123 -0.85409,0.34197 -0.0953,0.0538 -0.1385,0.1694 -0.20534,0.256 -0.5665,0.73393 -0.11715,0.3974 -1.43154,0.62103 0.74376,-0.2584 1.22574,-0.18279 1.27815,-1.19642 0.0177,-0.34206 -0.41001,-0.66273 -0.29337,-0.98478 0.10898,-0.30092 0.17417,0.62077 0.32249,0.90438 0.0913,0.1746 -0.29662,-0.4419 -0.14871,-0.57207 0.13641,-0.12005 0.30091,0.20381 0.45137,0.30571 0.69197,0.30605 1.15574,0.76361 1.71629,1.25611 0.82187,0.72211 0.84942,0.47704 1.38526,1.62757 0.16451,0.35322 0.2284,0.74508 0.34259,1.11762 0.14533,1.22732 0.0252,2.26646 -0.58171,3.35859 -0.19753,0.35543 -0.39074,0.7354 -0.70073,0.99856 -0.37767,0.32062 -0.87782,0.46002 -1.30761,0.70642 -0.29913,0.1715 -0.58543,0.36447 -0.87814,0.54671 -2.64369,1.37759 0.7209,-0.28981 -1.89605,0.74722 -0.12044,0.0477 -0.18143,0.20048 -0.30417,0.24194 -0.32579,0.11006 -1.49778,0.26516 -1.86035,0.31766 -1.95756,0.0558 -2.0365,-2.71259 -0.0789,-2.76841 v 0 c 0.5256,-0.079 0.99932,-0.25716 1.52287,-0.36512 0.18292,-0.0377 0.38374,-1.2e-4 0.55545,-0.0736 0.29176,-0.12484 0.53659,-0.33897 0.80489,-0.50846 0.2625,-0.12063 0.52069,-0.2511 0.78749,-0.3619 0.18491,-0.0768 0.40628,-0.0799 0.56627,-0.20033 0.52279,-0.39339 0.56837,-1.3756 0.81297,-1.92149 -0.22667,-0.85015 0.0233,-0.12693 -0.48723,-1.00156 -0.0975,-0.16709 -0.1273,-0.37465 -0.25124,-0.52321 -0.38567,-0.46232 -1.49649,-0.21533 -1.71677,-0.85928 -0.2098,-0.0823 -0.45868,-0.0998 -0.62941,-0.24687 -0.42116,-0.3629 -1.75538,-1.78777 -0.62314,-2.9529 0.30011,-0.30883 0.80765,-0.29912 1.21148,-0.44868 -0.12364,0.0695 -0.23037,0.22777 -0.37092,0.20862 -0.0874,-0.0119 0.023,-0.19934 0.0979,-0.24581 0.27229,-0.16883 0.59533,-0.23732 0.88875,-0.36594 0.30062,-0.13176 0.58608,-0.29856 0.89295,-0.41501 1.92595,-0.73085 0.34266,0.20271 2.3739,-1.25655 1.71476,-0.85738 2.92728,1.56766 1.21252,2.42504 z m -4.71502,-8.04995 c -1.18882,0.39372 -2.57447,0.78073 -3.68011,1.40969 -0.37489,0.21327 -0.67764,0.53387 -1.02234,0.79312 -0.84217,0.63339 -1.68011,1.27177 -2.55847,1.85312 -1.58956,1.01154 -3.0201,-1.23644 -1.43054,-2.24798 v 0 c 0.93742,-0.37609 1.77511,-1.00444 2.61194,-1.5724 0.49234,-0.33416 0.91491,-0.78087 1.44996,-1.04124 0.58865,-0.28645 1.26764,-0.33859 1.87703,-0.57776 0.67938,-0.26664 1.31962,-0.62388 1.97944,-0.93583 1.63998,-0.54666 2.41307,1.77262 0.77309,2.31928 z m -4.8922,-11.14267 c -0.48064,2.64599 -0.56225,5.35082 -0.41481,8.03249 0.0424,0.77184 0.18404,1.53771 0.1973,2.31061 0.0142,0.83038 -0.0766,1.65923 -0.11496,2.48885 0.33664,2.59393 0.32398,5.22655 0.93489,7.77812 0.28974,1.21015 -0.023,0.94589 0.56191,1.28928 -0.24782,-0.70479 4.1e-4,-0.29156 -1.40245,-0.35287 1.44574,-1.30206 3.28714,0.74252 1.8414,2.04459 v 0 c -2.37933,0.58591 -1.43776,0.91093 -2.96507,-0.37162 -0.75448,-1.66833 -0.33022,-0.36911 -0.49123,-2.24517 -0.0502,-0.58493 -0.18499,-1.16081 -0.22973,-1.74618 -0.16188,-2.11788 -0.0352,-4.26611 -0.43206,-6.36853 -0.0871,-0.81577 -0.2369,-1.62727 -0.26136,-2.44732 -0.023,-0.77258 0.10407,-1.54293 0.11928,-2.31571 0.0146,-0.73962 -0.0223,-1.47938 -0.03,-2.21911 -0.0159,-1.51751 -0.12969,-3.0374 -0.044,-4.55257 0.0346,-0.6116 0.17076,-1.2132 0.25615,-1.8198 0.34998,-1.7499 2.82471,-1.25495 2.47473,0.49494 z m -10.31838,18.08718 c -0.56104,1.53233 -0.35194,0.7156 -0.57479,2.18419 -0.0307,0.20232 -0.11914,0.40253 -0.0979,0.60606 0.009,0.083 0.12504,0.11133 0.17935,0.17471 0.12748,0.14879 0.28417,0.62054 0.30316,0.66692 0.0335,-0.0301 0.0616,-0.11296 0.10056,-0.0903 0.11177,0.065 0.1625,0.20159 0.25168,0.29526 0.16139,0.16953 0.34346,0.31908 0.49939,0.49365 0.36784,0.41181 0.74657,1.19143 1.41525,1.01986 1.08514,-0.26227 2.26063,-0.69444 3.08928,-1.47888 0.19211,-0.18186 0.30214,-0.43437 0.45797,-0.64813 0.22106,-0.30324 0.44841,-0.60184 0.67261,-0.90275 1.06273,-1.50614 3.19274,-0.003 2.13,1.50293 v 0 c -0.10744,0.13643 -1.74572,2.22204 -1.81177,2.2829 -0.8565,0.78906 -2.86696,1.68078 -3.98706,1.9023 -0.47455,0.0938 -0.96649,0.0439 -1.44973,0.0658 -0.41331,-0.20881 -0.8495,-0.37746 -1.23993,-0.62645 -0.20898,-0.13327 -0.35219,-0.3496 -0.54148,-0.50961 -1.64672,-1.392 0.3227,0.45159 -1.27451,-1.18917 -1.0082,-1.03568 -0.50038,-0.2403 -1.12658,-1.55456 0.0629,-0.09 -0.2612,-1.33408 -0.26427,-1.4045 -0.0471,-1.07924 0.15431,-1.49673 0.4838,-2.57119 0.14245,-0.46453 0.30042,-0.92415 0.45063,-1.38623 0.82531,-1.65063 3.15966,-0.48346 2.33434,1.16717 z m -37.40563,8.18374 c 0.17344,-0.85371 1.15606,-1.04057 1.54485,-1.7003 0.0753,-0.12778 -0.053,-0.2923 -0.093,-0.43513 -0.0378,-0.13522 -0.0375,-0.30132 -0.14003,-0.39732 -0.10364,-0.0971 -0.27299,-0.0783 -0.40949,-0.11738 -0.15844,-0.29633 -0.31688,-0.59267 -0.47533,-0.889 -0.0814,-0.16318 -0.60678,-1.23136 -0.68822,-1.32755 -0.10036,-0.11853 0.3039,0.41736 0.1504,0.441 -0.42397,0.0653 -0.7925,-1.0231 -0.80003,-1.15984 -0.0156,-0.28395 0.14678,-0.5495 0.22018,-0.82426 -0.7765,-1.13551 0.22602,1.83746 0.43981,1.39815 0.43274,-0.8892 0.47392,-1.93276 0.88859,-2.83053 0.0532,-0.11521 0.47416,0.10304 0.35332,0.14178 -0.95908,0.30745 -0.45333,-0.20245 -0.32818,-0.37339 0.72179,-0.44183 1.47052,-0.85214 2.17976,-1.31414 0.22226,-0.14478 0.39983,-0.36004 0.63967,-0.47334 0.77098,-0.36421 1.46623,-0.4534 2.28271,-0.61308 0.85895,-0.26781 2.47508,-0.53779 3.2605,0.0721 1.03916,0.80689 1.04946,2.20163 1.1267,3.35059 0.33993,1.05158 0.38291,2.12192 0.43716,3.21165 0.023,0.46298 0.0958,0.92396 0.0937,1.38751 -0.009,1.89812 -0.32692,0.65727 0.17367,2.06975 0.0347,0.3134 -0.0106,0.64652 0.10419,0.9402 0.0566,0.14484 0.28034,0.15539 0.37296,0.28032 0.0946,0.12758 0.30973,0.51404 0.16596,0.44659 -0.20892,-0.098 -0.24043,-0.40043 -0.40731,-0.55981 -0.30609,-0.29233 -0.71966,-0.0534 0.11894,-0.30638 0.38232,-0.52205 1.07982,-0.69988 1.54215,-1.09559 0.22699,-0.19429 0.33518,-0.49613 0.52816,-0.72423 1.47031,-1.73787 0.3768,-0.12634 1.52631,-1.9762 0.63279,-0.84939 1.45615,-1.57989 2.07449,-2.44126 0.13891,-0.19351 0.19065,-0.44625 0.35081,-0.62258 0.43012,-0.47358 0.80052,-0.27315 0.41084,-0.43458 -0.0505,0.15307 -0.29577,0.38769 -0.15134,0.45921 0.81826,0.40523 1.78318,0.42513 2.62946,0.76803 0.0863,0.035 -0.13502,0.1457 -0.14613,0.23818 -0.0242,0.20123 0.041,0.40376 0.0446,0.6064 0.0277,1.56836 -0.0989,0.11597 0.0664,1.60533 0.008,0.0534 0.0711,0.70308 0.18609,0.85447 0.0851,0.11201 0.22968,0.1674 0.31962,0.27555 0.16048,0.19298 0.22943,0.46474 0.42589,0.62093 0.0735,0.0584 0.0439,-0.19811 9.5e-4,-0.28161 -0.0325,-0.0633 -0.12845,-0.0611 -0.19267,-0.0916 0.55543,-0.30672 1.27524,-0.13381 1.79326,-0.53186 0.33029,-0.2538 0.36759,-0.75287 0.61598,-1.08724 0.25086,-0.33772 0.563,-0.62528 0.8445,-0.93791 1.36388,-1.84521 0.4099,-0.20105 0.70114,-1.39325 0.0515,-0.21066 0.19683,-0.39211 0.24028,-0.60457 0.0176,-0.0859 -0.0403,-0.17071 -0.0645,-0.25499 -0.007,-0.0244 -0.0233,-0.0951 -0.0288,-0.0704 -0.0236,0.10714 -0.0186,0.21861 -0.0279,0.32791 0.92708,-0.0208 1.8544,-0.092 2.78125,-0.0624 0.0663,0.002 -0.13199,0.0805 -0.13452,0.14686 -0.005,0.13301 0.0844,0.2529 0.11429,0.3826 0.0304,0.13173 0.0176,0.27397 0.0662,0.40012 0.74254,1.92732 0.0876,-0.40678 0.6023,1.6276 0.0925,0.11832 0.79645,1.01074 0.85077,1.11373 0.13338,0.25291 0.14322,0.56304 0.2946,0.8056 0.032,0.0513 0.11166,-0.0614 0.17206,-0.0578 0.0915,0.005 0.17474,0.0555 0.2621,0.0832 0.15692,-0.001 0.31384,-0.003 0.47075,-0.004 -0.0253,-0.0666 -0.1193,-0.14316 -0.076,-0.19974 0.12918,-0.16888 0.35712,-0.23372 0.51583,-0.37521 0.19935,-0.17772 0.37342,-0.38203 0.55415,-0.57866 0.49962,-0.54358 0.85978,-1.14317 1.36398,-1.68179 1.34525,-1.4809 3.43957,0.42157 2.09432,1.90247 v 0 c -0.57902,0.50437 -0.97706,1.13237 -1.53991,1.65538 -0.28322,0.26318 -0.60067,0.48693 -0.90035,0.7312 -1.39215,1.13479 -0.58663,0.68476 -2.39608,1.28224 -0.46719,-0.12303 -2.03164,-0.50439 -2.39013,-0.73991 -0.86701,-0.56964 -0.55903,-0.76039 -0.85812,-1.46724 -0.21724,-0.51343 -0.77052,-0.85524 -0.78084,-1.47904 -0.18688,-0.31624 -0.41383,-0.61201 -0.56065,-0.94872 -0.11103,-0.25465 -0.12359,-0.54221 -0.20522,-0.80776 -0.12372,-0.40243 -0.30691,-0.78642 -0.41033,-1.19454 -0.007,-0.0282 -0.0877,-1.16675 -0.0432,-1.18592 0.88097,-0.3792 1.87506,-0.40471 2.81259,-0.60707 0.43387,1.13186 0.26573,1.79719 -0.20641,2.88321 -0.17611,0.40511 -0.284,0.84684 -0.52621,1.21625 -0.1761,0.26858 -0.46876,0.43914 -0.70315,0.65871 -1.43826,2.11359 -2.37423,3.54829 -5.10943,3.741 -0.52275,-0.008 -1.07698,0.15488 -1.56827,-0.0239 -0.32181,-0.11713 -0.44153,-0.52364 -0.66022,-0.78719 -0.81911,-0.98714 -1.37547,-1.84177 -1.487,-3.16024 0.0542,-0.92173 -0.005,-1.83944 0.0951,-2.75824 0.1742,-1.60021 0.0987,-1.94237 3.01762,-0.66935 0.2791,0.12172 -0.0955,0.60144 -0.1433,0.90216 -1.02485,1.30894 -2.14788,2.49053 -3.32612,3.66316 -1.32938,1.96298 -2.82318,3.8379 -4.86032,5.10719 -0.50855,0.14344 -1.36927,0.4216 -1.83397,0.30513 -1.17759,-0.29513 -1.02914,-0.53377 -1.34291,-1.25767 -0.67999,-1.56883 -0.32305,-0.47449 -0.75447,-2.06919 -0.0773,-0.46718 -0.216,-0.92826 -0.23183,-1.40152 -0.0134,-0.40028 0.12375,-0.79279 0.14506,-1.19273 0.0793,-1.48868 -0.29901,-2.97869 -0.52232,-4.43831 -0.006,-0.20157 0.0233,-0.40748 -0.0187,-0.60471 -0.0317,-0.14859 -0.29626,-0.2949 -0.19783,-0.41063 0.0999,-0.11754 0.2948,0.13515 0.44796,0.11651 0.34528,-0.042 -1.39382,-0.72587 -1.30465,-0.16341 -0.29664,0.12632 -0.58,0.29002 -0.8899,0.37895 -0.16892,0.0485 -0.36703,-0.0464 -0.52649,0.0275 -0.30105,0.13944 -0.52252,0.41087 -0.80291,0.58823 -0.56818,0.35939 -1.23045,0.58305 -1.74526,1.03318 -0.29079,0.22448 -0.5377,0.52197 -0.87238,0.67343 -1.89212,0.85628 -2.47992,0.32145 -0.87722,-2.43595 0.38488,-0.66217 2.19502,2.49422 1.28102,1.90747 0.22442,-0.48173 0.29522,-0.36644 -0.24565,-0.88348 -0.0448,-0.0429 -0.22272,-0.077 -0.18388,-0.0287 0.21992,0.2739 0.53896,0.4587 0.75286,0.73732 0.2419,0.31508 -0.43394,1.04055 0.46154,1.09868 0.2828,0.46081 1.03453,1.65901 1.13088,1.99512 0.61798,2.15573 -1.0448,3.59385 -2.46348,4.86967 -1.40351,1.05263 -2.89217,-0.93224 -1.48865,-1.98488 z m -2.73076,-8.7896 c -1.63448,1.31138 -3.48432,2.2866 -5.42627,3.05252 -0.37094,0.1463 -0.76142,0.24048 -1.12986,0.39295 -0.45587,0.18865 -0.97777,0.52239 -1.40147,0.77722 -0.98815,0.0648 -1.79535,0.5643 -2.69322,0.87354 -2.00015,0.34785 -2.49209,-2.48079 -0.49194,-2.82864 v 0 c 0.55766,-0.14349 1.36185,-0.29707 1.98853,-0.53788 0.28897,-0.15235 0.56783,-0.32564 0.86692,-0.45703 0.79651,-0.34993 1.0253,-0.30841 1.88941,-0.55206 1.85169,-0.52212 3.52413,-1.18638 4.81986,-2.69318 1.3948,-1.11584 2.97285,0.85671 1.57804,1.97256 z m 0.75956,-11.17199 c -0.68719,0.37448 -2.54776,1.36116 -3.20527,1.82507 -1.41133,0.99579 -0.75695,1.00179 -2.43197,1.74723 -0.92327,0.41088 -1.92855,0.60473 -2.89227,0.90889 -0.45205,0.10832 -0.91744,0.17127 -1.35614,0.32497 -0.47599,0.16676 -0.90387,0.45137 -1.37483,0.63184 -0.0754,0.0289 -2.33233,0.68771 -2.4299,0.72911 -0.33621,0.14268 -0.59898,0.42011 -0.91702,0.59966 -0.0399,0.054 -0.0979,0.0985 -0.11953,0.16196 -0.0112,0.0328 -0.004,0.10062 0.0305,0.0994 0.0466,-0.002 0.0721,-0.0625 0.0937,-0.10382 0.0881,-0.16903 0.15511,-0.34824 0.23267,-0.52236 0.26913,2.13062 -2.74402,2.51123 -3.01315,0.38061 v 0 c 0.11242,-1.24021 0.15294,-1.79118 1.36361,-2.35518 0.71482,-0.39446 0.90395,-0.54754 1.67864,-0.78826 0.29905,-0.0929 0.61431,-0.12676 0.91358,-0.21898 1.37753,-0.42452 2.72817,-0.94828 4.11891,-1.33578 2.03574,-0.5175 0.46627,-0.033 2.38004,-0.8597 0.40195,-0.17363 0.85325,-0.24396 1.22381,-0.4772 0.46378,-0.29192 0.7907,-0.76665 1.24327,-1.07567 0.45767,-0.31251 0.97992,-0.51793 1.46988,-0.7769 0.46539,-0.34065 0.93078,-0.6813 1.39618,-1.02195 1.50407,-1.12806 3.09939,0.99903 1.59531,2.12709 z m -11.28234,8.76305 c -0.3731,2.32765 0.34974,4.51881 0.72991,6.78135 0.0856,0.5091 0.21743,1.01425 0.24017,1.52999 0.11607,2.63257 -0.36923,0.34321 0.0818,2.14337 0.28933,0.70349 0.39337,1.38202 0.37656,2.13043 -0.0257,1.14491 0.14237,1.39188 -2.14123,1.65903 -0.34488,0.0403 -0.47055,-0.51075 -0.70583,-0.76613 -1.30437,-1.34111 0.59225,-3.18576 1.89662,-1.84465 v 0 c -0.7519,-0.72434 -0.0507,-0.19236 -1.81251,1.22029 -0.042,0.0337 0.0208,-0.0979 0.0304,-0.42379 0.006,-0.20483 0.0428,-0.41327 0.005,-0.61474 -0.0612,-0.32915 -0.19858,-0.63944 -0.29788,-0.95915 -0.0871,-1.37156 -0.12191,-1.13473 -0.025,-2.43198 0.0336,-0.44944 0.15665,-0.89636 0.12714,-1.34609 -0.0407,-0.62023 -0.24279,-1.21964 -0.33581,-1.83421 -0.24606,-1.62559 -0.36671,-3.26875 -0.65968,-4.88801 -0.25152,-1.76065 2.23841,-2.11635 2.48993,-0.35571 z m -21.80973,15.38365 c -1.8273,-0.15473 -3.48445,0.62134 -5.24819,0.88588 -1.10221,0.16533 -2.22028,0.0759 -3.32593,0.22683 -1.16726,0.31381 -2.46685,0.55378 -3.6864,0.4087 -1.05807,-0.12587 -0.28333,-0.24646 -0.95519,-0.0998 0.14106,-0.96425 0.28212,-1.92849 0.42318,-2.89274 2.08116,0.0512 2.00879,2.99438 -0.0724,2.9432 v 0 c -0.019,-0.9398 -0.0381,-1.8796 -0.0571,-2.81939 0.4971,-0.17835 -0.0621,-0.029 0.80833,0.10861 0.20849,0.033 0.42249,-0.008 0.63322,0.004 0.20181,0.0116 0.40105,0.0808 0.60272,0.0669 0.38057,-0.0261 1.59924,-0.35332 1.90498,-0.43033 1.08144,0.0476 2.23367,0.15104 3.31701,0.0386 0.48536,-0.0504 0.96257,-0.16162 1.44581,-0.22932 3.02147,-0.42333 0.744,0.005 3.80397,-0.64702 1.72251,-0.28708 2.12851,2.14891 0.406,2.436 z m 124.02909,-55.15283 c 1.02503,0.22651 1.62918,0.61166 2.58712,-0.0524 0.86263,-0.59798 1.72693,-2.74638 2.19087,-3.6419 0.28071,-0.54182 0.58609,-1.07051 0.87914,-1.60576 0.95811,-1.23584 1.5718,-2.63789 2.12945,-4.08035 0.34907,-0.90291 0.62072,-1.22429 0.47368,-2.18472 -0.0301,-0.19627 -0.17381,-0.35705 -0.26072,-0.53558 0.64453,0.74929 -0.23389,0.17836 -0.16552,0.25202 0.071,0.0765 0.20775,0.0731 0.27152,0.15564 0.3176,0.4111 -0.71606,1.2245 -1.24411,1.78465 -0.50937,0.98536 -0.91501,2.02063 -1.41349,3.01102 -0.31829,0.63236 -0.71841,1.22357 -1.00601,1.87047 -0.16655,0.37462 -1.35423,3.85247 -1.42556,4.15688 -0.17647,0.75311 -0.21892,1.53144 -0.32838,2.29717 -0.2284,1.47737 -0.52485,3.02201 -0.54564,4.5268 -0.0176,1.27223 0.16455,1.81778 0.36223,3.0124 0.21449,1.29614 -0.10485,0.78885 0.58526,1.51247 1.65127,-0.49854 -1.02311,0.20254 1.10801,0.11039 0.12078,-0.005 0.11175,-0.23265 0.21844,-0.28948 0.26061,-0.13881 0.56989,-0.16054 0.84194,-0.27532 0.88953,-0.3753 0.92248,-0.53973 1.71528,-1.24393 0.99935,-0.85779 1.9765,-1.91821 2.54255,-3.12896 0.16111,-0.34462 0.20894,-0.73164 0.32007,-1.09548 0.32855,-1.0757 0.27747,-0.8849 0.69167,-1.94197 0.0678,-0.10281 0.24225,-1.392 -0.0452,-1.36823 -0.0814,0.007 -0.002,0.16469 0.0145,0.2446 0.0828,0.39127 0.12523,0.27663 0.5514,0.46094 -0.10844,0.008 -0.41646,0.0842 -0.32531,0.0249 0.12702,-0.0827 0.32832,-0.20048 0.44314,-0.10158 0.0982,0.0845 -0.1042,0.23802 -0.14032,0.36243 -0.0586,0.20179 -0.12053,0.405 -0.14315,0.6139 -0.06,0.55383 0.0373,1.14537 0.0945,1.68973 0.16955,0.76024 0.22343,1.53787 0.32895,2.30678 0.005,0.0365 0.0283,-0.0775 0.0108,-0.11 -0.0943,-0.17539 -0.42763,-0.31755 -0.33568,-0.49418 0.0863,-0.16579 0.37086,0.0469 0.55629,0.0704 0.13934,0.049 0.27091,0.16006 0.41803,0.14695 0.10312,-0.009 0.13664,-0.16798 0.23333,-0.20499 2.37066,-0.9073 -0.32174,0.37752 2.03694,-0.61287 0.34152,-0.1434 0.66008,-0.33628 0.99012,-0.50442 0.44905,-0.18713 0.89809,-0.37426 1.34714,-0.5614 1.15843,-0.73931 2.51221,-0.90047 3.8236,-1.19834 0.33871,-0.0769 0.67169,-0.19302 1.01764,-0.22416 0.5896,-0.0531 1.35267,0.0953 1.93273,0.18232 0.38942,0.10957 0.82157,0.12024 1.16826,0.3287 0.35813,0.21534 0.59245,0.58999 0.87367,0.89909 1.212,1.33217 1.12642,2.23076 0.79734,3.91976 -0.003,0.26359 0.0538,0.53507 -0.0102,0.79078 -0.28371,1.13219 -1.08564,2.46927 -2.34085,2.69635 -0.38536,0.0697 -1.90048,-0.24857 -2.40163,-0.34503 -1.46295,-0.65917 -0.80259,-0.27818 -2.10948,-1.19879 -0.27362,-0.19275 -0.57346,-0.35346 -0.81898,-0.58094 -0.23992,-0.22229 -0.41647,-0.50444 -0.6247,-0.75666 -1.36242,-1.17131 0.29407,-3.09806 1.65649,-1.92675 v 0 c 1.14527,1.22329 -0.1046,0.008 1.42442,1.09001 1.56532,1.10779 -0.86158,-0.26267 1.06038,0.76234 0.273,0.0187 0.72915,-0.0568 0.94282,0.22885 0.0604,0.0808 -0.024,0.26429 0.0724,0.29379 0.36878,0.11277 0.31839,-1.5944 0.4962,-1.5167 0.15904,-1.11445 0.34973,-1.07471 -0.39684,-2.03313 -0.5718,0.0312 -1.76098,-0.0869 -2.22353,-0.018 -0.39297,0.0586 -0.75648,0.25202 -1.14753,0.32228 -2.04289,0.36703 0.32771,-0.50557 -2.183,0.60658 -0.4227,0.17177 -0.85202,0.32809 -1.2681,0.51532 -0.72847,0.32781 -1.59013,0.84194 -2.34695,1.11337 -0.32459,0.11641 -0.67261,0.15421 -1.00357,0.25101 -0.47252,0.13822 -0.91752,0.38887 -1.40556,0.45366 -0.27374,0.0363 -0.54201,-0.10608 -0.81301,-0.15913 -0.8183,-0.23743 -1.34391,-0.30503 -1.98396,-1.12289 -0.37754,-0.48241 -0.4352,-2.58859 -0.40677,-3.2266 -0.004,-0.37981 0.004,-0.75992 -0.0111,-1.13944 -0.0165,-0.40418 -0.11293,-0.80708 -0.0846,-1.21061 0.0869,-1.2394 0.64979,-2.52135 1.75211,-3.1701 0.1902,-0.11194 0.43724,-0.0604 0.65586,-0.0905 0.40971,-0.007 0.83574,-0.13648 1.22913,-0.0218 0.28909,0.0843 0.49005,0.35762 0.69115,0.58176 0.28752,0.32045 0.60364,0.64162 0.76472,1.04089 0.16603,0.41152 -0.26003,2.49018 -0.38403,2.88108 -0.25202,0.65103 -0.4331,1.33099 -0.72831,1.96361 -0.19911,0.42667 -0.46684,0.8179 -0.69181,1.23152 -0.80771,1.48498 -1.55037,2.99785 -2.96387,4.02103 -1.51076,1.13337 -3.13628,2.58781 -5.20022,2.36101 -0.90666,-0.0996 -1.52134,-1.2308 -2.4276,-1.2627 -0.23367,-0.4065 -0.53266,-0.78189 -0.70101,-1.2195 -0.48099,-1.25032 -0.35246,-1.74075 -0.33932,-3.03305 0.006,-0.62812 -0.0275,-1.25782 0.0172,-1.88438 0.11314,-1.58821 0.47608,-3.1522 0.55728,-4.74407 0.17092,-0.7914 0.35154,-1.58076 0.51278,-2.37419 0.17184,-0.84561 0.25311,-1.7118 0.48639,-2.54256 0.75053,-2.67284 2.3681,-4.96119 3.47008,-7.47641 0.49428,-0.70687 1.35531,-2.07526 2.09626,-2.5631 0.95138,-0.6264 2.4484,-0.81225 3.15923,0.28719 0.2632,0.4071 0.42863,0.86965 0.64295,1.30447 0.0305,0.35926 0.12343,0.71864 0.0916,1.07778 -0.0435,0.49035 -0.19317,0.96589 -0.31526,1.44279 -0.12901,0.50396 -0.24977,1.0129 -0.43757,1.49803 -0.58013,1.49859 -1.65234,2.71206 -2.35075,4.1483 -0.29836,0.53305 -0.6208,1.05332 -0.89507,1.59915 -0.28704,0.57124 -0.46046,1.19941 -0.78726,1.74887 -1.11161,1.86901 -2.8207,3.26209 -5.05338,3.46199 -0.6922,0.062 -1.38327,-0.13598 -2.07491,-0.20397 -1.72336,-0.68935 -0.74848,-3.12655 0.97488,-2.4372 z m -13.94043,-15.55077 c -0.0171,0.91275 -0.0767,2.56949 0.0197,3.48381 0.0708,0.67173 0.2691,1.32584 0.34089,1.99746 0.0758,0.70942 0.0247,1.42864 0.10119,2.13799 0.52485,4.86764 0.27113,-1.14849 0.39697,4.32277 0.025,1.84996 -0.0325,2.55124 0.23606,4.34071 0.0996,0.66377 0.31303,1.30822 0.39614,1.97425 0.15055,1.20647 0.005,2.05766 0.0854,3.24902 0.0262,0.38885 0.10774,0.77198 0.16161,1.15798 -0.4233,2.01396 -1.62144,3.01122 -3.28634,0.77828 -0.0576,-0.0773 -0.26187,-2.43741 -0.24618,-2.70015 0.0266,-0.44534 0.15021,-0.87952 0.22531,-1.31929 0.014,-0.80915 -0.0256,-1.85842 0.2397,-2.6366 0.35572,-1.04336 1.55485,-2.44657 2.40395,-3.1402 0.27366,-0.22356 0.6076,-0.36098 0.91141,-0.54147 0.83413,0.0251 1.50294,-0.80426 2.32639,-0.83666 0.52665,-0.0207 1.04254,0.15973 1.55805,0.26946 1.51417,0.32231 2.38021,1.01772 3.67604,1.83005 0.29758,0.33133 0.66562,0.6109 0.89275,0.99397 0.741,1.24977 0.60883,1.60341 0.43742,2.97399 -0.0504,0.40315 -0.083,0.8154 -0.21427,1.1999 -0.14556,0.42632 -0.41098,0.80187 -0.60757,1.2072 -0.18884,0.38935 -0.36573,0.78438 -0.5486,1.17657 -2.02458,2.70593 -4.08674,3.09024 -7.21305,3.41025 -0.003,-0.16375 -1.72048,-0.17395 -1.78195,-0.20276 -0.43401,-0.20339 -0.81374,-0.50669 -1.22061,-0.76004 -1.26669,-1.5564 0.93439,-3.34775 2.20107,-1.79136 v 0 c -1.12751,-0.55098 -0.97298,-0.39886 -0.18129,-0.25164 0.20542,0.0382 0.41728,0.0421 0.61981,0.0935 0.19986,0.0507 0.38759,0.14082 0.58138,0.21123 0.29369,0.0229 1.07006,0.0918 1.27309,0.057 0.85648,-0.14695 2.07763,-0.65177 2.73476,-1.23725 0.26021,-0.23184 0.44509,-0.5364 0.66763,-0.80461 0.29273,-0.57785 0.69787,-1.10925 0.88824,-1.72841 0.0919,-0.29884 0.0434,-0.62602 0.11016,-0.93145 0.0105,-0.0483 0.33352,-0.71832 0.27976,-0.86369 -0.10576,-0.286 -0.33239,-0.51131 -0.49859,-0.76697 -0.32559,-0.22077 -1.2118,-0.85203 -1.58797,-0.9843 -0.30329,-0.10664 -0.63975,-0.0797 -0.95127,-0.15915 -0.18975,-0.0484 -0.34805,-0.2277 -0.5438,-0.2223 -2.79109,0.077 0.44869,0.43303 -1.36287,0.19427 -0.74447,0.61305 -1.89807,1.29863 -2.29783,2.23859 -0.19713,0.46351 -0.21706,1.74912 -0.23957,2.13828 -0.33121,2.04331 -0.19927,0.42107 -0.0555,2.0849 0.0158,0.1829 0.16171,0.51415 -0.0183,0.55043 -0.46058,0.0928 -0.95804,-0.46631 -1.38387,-0.26776 -0.81952,0.38212 -0.50258,2.09163 -0.68098,0.59401 0.36505,-1.98066 0.34456,-4.01595 0.11378,-6.01552 -0.0846,-0.73293 -0.27874,-1.45324 -0.32269,-2.18972 -0.0436,-0.7306 0.0407,-1.46324 0.061,-2.19485 -0.0694,-0.74558 -0.13879,-1.49116 -0.20819,-2.23673 -0.11307,-0.70787 -0.26056,-1.41109 -0.3392,-2.1236 -0.50777,-4.60033 0.32234,0.63167 -0.3547,-3.97892 -0.0998,-0.67955 -0.2789,-1.34739 -0.35046,-2.03049 -0.0608,-0.58036 -0.0304,-1.16667 -0.0456,-1.75 0,-1.83955 2.60152,-1.83955 2.60152,0 z m -13.38901,16.45074 c -1.24637,0.79105 -3.37914,1.44069 -3.73659,3.13109 -0.054,0.25549 0.0285,0.79884 0.0558,1.04317 -0.43573,1.48036 -0.39002,0.77768 -0.26225,2.09273 0.003,0.0358 -0.0442,-0.0947 -0.0106,-0.10725 0.35454,-0.13192 0.21998,0.40655 0.36283,-0.02 -0.0104,-0.0821 -0.0937,-0.19197 -0.0314,-0.24641 0.18729,-0.16345 0.45038,-0.21054 0.67557,-0.31581 0.202,-0.1597 0.42114,-0.29985 0.606,-0.47911 0.21275,-0.20628 0.37723,-0.45777 0.58155,-0.67241 1.60022,-1.68104 0.12013,0.0446 1.49614,-1.61205 0.0718,-0.15334 0.63791,-1.36655 0.70736,-1.49742 0.35618,-0.67117 0.82927,-1.16545 0.36634,-1.87338 0.17639,0.95743 0.0714,0.82929 2.40615,0.39735 0.23459,-0.0434 0.23066,-0.42068 0.30567,-0.64714 0.0168,-0.0507 -0.0406,-0.20852 -0.0399,-0.15513 0.002,0.15606 0.0405,0.31012 0.0439,0.46615 0.006,0.2783 -0.0101,0.55664 -0.0152,0.83495 0.10259,0.87969 0.40135,1.62639 0.78088,2.41471 0.0969,0.20139 0.1605,0.42103 0.2835,0.60765 0.29033,0.44054 0.66656,0.81864 0.97781,1.24465 0.0445,-0.0534 0.064,-0.15784 0.13344,-0.16026 0.16837,-0.006 0.31753,0.13753 0.48599,0.13873 0.059,4.2e-4 0.0708,-0.0954 0.11495,-0.13445 0.16312,-0.14422 0.33137,-0.28295 0.50529,-0.41394 0.30423,-0.22916 0.61898,-0.44401 0.92847,-0.66601 1.55117,-1.07028 3.06478,1.1234 1.51361,2.19369 v 0 c -0.31672,0.21262 -1.94256,1.32865 -2.26021,1.43571 -1.22702,0.41355 -2.41572,0.0826 -3.43566,-0.59849 -0.89091,-1.17352 -1.82566,-2.47708 -2.26581,-3.9017 -0.0927,-0.30002 -0.0695,-0.62744 -0.15817,-0.92867 -0.11943,-0.40562 -0.30867,-0.78734 -0.46301,-1.18101 0.0103,-0.20969 0.0404,-0.41934 0.0309,-0.62907 -0.0175,-0.38632 -0.64304,-1.32389 0.096,-1.58462 2.47392,-0.87272 2.38048,-0.52698 2.82727,0.67361 0.13865,1.05059 0.0813,1.93941 -0.31222,2.94757 -0.0957,0.24509 -0.27014,0.45257 -0.38193,0.69074 -0.83846,1.78622 -0.0165,0.48431 -1.14085,2.06253 -1.94471,1.68467 0.4346,-0.50472 -1.49533,1.77538 -0.27485,0.32473 -0.61625,0.58775 -0.94437,0.85855 -1.22935,1.0146 -2.16473,1.55563 -3.79824,1.70069 -0.33679,-0.18251 -0.70287,-0.31909 -1.01037,-0.54751 -1.31835,-0.97927 -1.48061,-2.74221 -0.89599,-4.16352 -0.007,-0.40041 -0.0805,-0.80534 -0.0201,-1.20122 0.17623,-1.15526 1.21046,-2.48734 2.06665,-3.18738 1.07038,-0.87517 2.47404,-1.28414 3.52677,-2.18328 1.69537,-0.56512 2.49458,1.8325 0.79921,2.39762 z m -4.8592,-6.61865 c -1.50017,0.62565 -3.01663,1.47112 -4.66605,1.64408 -1.86176,0.19521 0.69566,-0.40004 -1.25635,0.11391 -1.18041,0.11069 -0.60946,0.0735 -1.7124,0.11814 -1.96641,0 -1.96641,-2.78092 0,-2.78092 v 0 c 0.79661,0.0749 0.3872,0.0709 1.22827,5e-5 0.58143,-0.0969 1.15227,-0.27444 1.74048,-0.31279 0.13171,-0.009 0.25114,0.10774 0.38295,0.10075 1.12654,-0.0597 2.12884,-0.7779 3.19554,-1.05833 1.53804,-0.76901 2.62559,1.40609 1.08756,2.17511 z m -6.48729,-7.57134 c -0.89942,2.82126 -0.4401,5.75284 -0.38932,8.64169 0.0622,3.53573 -0.25118,0.96882 0.31793,4.28464 0.0961,0.79684 0.34614,2.76134 0.38949,3.56197 0.0868,1.60283 -0.10165,2.10823 0.68374,3.53777 -0.15669,-0.42169 -0.0737,-0.35938 -0.54053,-0.67395 -0.0889,-0.0599 -0.28922,-0.0214 -0.29483,-0.12843 -0.007,-0.13424 1.53623,-1.89429 1.55353,-1.91558 1.26287,-1.445 2.63805,-2.74765 4.12259,-3.96274 1.4041,-1.21046 3.11595,0.77524 1.71185,1.9857 v 0 c -1.33089,1.17742 -2.91694,2.0847 -3.87745,3.64514 -1.03346,1.59198 -2.73751,4.34232 -4.93032,2.55769 -0.27459,-0.22348 -0.38401,-0.5949 -0.57601,-0.89235 -0.15138,-0.9351 -0.3963,-1.81233 -0.38165,-2.77694 0.006,-0.41157 0.17032,-0.81273 0.16151,-1.22426 -0.0245,-1.14272 -0.5058,-2.25101 -0.32806,-3.41322 -0.0912,-0.75663 -0.21908,-1.50974 -0.27367,-2.2699 -0.0537,-0.74808 -0.0315,-1.49969 -0.0509,-2.24946 -0.0794,-3.07851 0.0122,-6.1548 0.0707,-9.23403 0.37212,-1.86062 3.00344,-1.33436 2.63132,0.52626 z m -14.96966,18.32105 c 0.50533,-0.31484 1.3736,0.26203 1.9173,-0.0748 0.033,-0.0205 0.10258,-0.90134 0.1468,-1.09204 0.0957,-0.41252 0.4493,-1.27029 0.58836,-1.62685 0.17574,-1.05736 -0.28338,-0.84531 -0.067,-0.34833 0.24032,0.55202 0.88569,0.63064 -0.0836,0.55332 9.1e-4,0.079 0.0552,0.17796 0.003,0.23716 -0.12196,0.13779 -0.33989,0.15971 -0.46958,0.29025 -0.0547,0.055 0.007,0.17101 -0.0455,0.22819 -0.27134,0.29604 -0.62031,0.51288 -0.89887,0.80214 -0.28965,0.30077 -0.99837,1.27098 -1.25368,1.6129 0.2314,1.02496 -0.46139,1.97535 -0.20901,3.01937 0.0154,0.0635 0.50333,0.57065 0.54878,0.61894 1.18701,0.71051 2.64185,0.27759 3.87527,-0.0637 0.27256,-0.14721 1.57705,-0.8356 1.83052,-1.03585 0.44943,-0.35507 0.69821,-0.9085 1.02996,-1.3754 1.1684,-1.37446 3.11217,0.27791 1.94377,1.65237 v 0 c -0.31111,0.39108 -1.36612,1.73527 -1.61272,1.94479 -0.55695,0.47322 -1.93261,0.99485 -2.5573,1.26105 -0.50765,0.17307 -0.99931,0.40316 -1.52295,0.5192 -1.53467,0.34008 -3.49209,0.15286 -4.78708,-0.807 -0.24854,-0.18422 -0.41028,-0.46314 -0.61543,-0.69471 -0.66981,-1.1967 -0.78464,-1.75151 -0.76976,-3.12199 0.0138,-1.26786 0.14685,-2.36788 0.76618,-3.51045 0.42063,-0.56436 0.97287,-1.32789 1.43291,-1.83589 0.19933,-0.22011 0.44651,-0.39292 0.65001,-0.60917 1.11968,-1.18984 1.04817,-1.3741 2.66171,-1.89034 1.25155,0.0182 3.00802,0.30447 3.02724,1.94988 0.003,0.22594 -0.30302,1.36065 -0.3572,1.5723 -0.14073,0.22577 -0.32063,0.43143 -0.42219,0.67733 -0.37639,0.91134 -0.0791,1.4123 -0.80859,2.31931 -1.38851,1.7264 -3.18739,1.5183 -5.13339,1.21263 -1.68615,-0.84308 -0.49386,-3.22765 1.19229,-2.38458 z m -13.9856,-1.1348 c -0.98753,0.40023 -1.93076,0.93916 -2.40901,1.93835 -0.0922,0.19254 -0.11917,0.41137 -0.20625,0.60627 -0.34647,0.77536 -0.38204,0.35907 -0.31435,0.77092 -0.0598,0.30998 -0.46591,0.96895 -0.39964,1.37455 0.007,0.0452 0.1248,0.11833 0.11629,0.0733 -0.031,-0.16435 -0.12678,-0.30957 -0.19017,-0.46436 0.15493,0.20275 0.25,0.47048 0.46478,0.60823 0.0845,0.0542 -0.0601,-0.23362 0.0145,-0.30087 0.0773,-0.0697 0.20874,0.0162 0.31239,0.006 0.14672,-0.0144 0.28826,-0.0662 0.43511,-0.0792 1.66347,-0.14676 -0.0682,0.12211 1.5481,-0.16214 0.4187,-0.43125 0.67998,-0.73283 1.19357,-1.09543 0.21395,-0.15104 0.48128,-0.22026 0.68491,-0.38495 0.27913,-0.22574 0.49456,-0.52058 0.7485,-0.77431 0.1676,-0.16746 0.40077,-0.28187 0.51583,-0.48898 0.0609,-0.10962 -0.0241,-0.24964 -0.0361,-0.37446 0.1491,-0.37127 0.3551,-1.00186 0.18593,-1.41654 -0.0275,-0.0673 -0.15646,-0.0137 -0.20832,-0.0647 -0.15952,-0.15671 -0.0494,-0.76986 -0.0473,-0.80836 0.23228,-1.58798 -0.49454,-1.8796 3.01459,10e-4 0.18866,0.10113 -0.0653,0.42312 -0.0939,0.63526 -0.10381,0.77089 -0.0794,0.64796 -0.13282,1.5023 0.042,0.25883 0.1316,0.51432 0.12613,0.77649 -0.008,0.37028 -0.16451,0.72836 -0.1653,1.09872 -10e-4,0.60086 0.4402,1.93389 0.52868,2.39934 0.07,0.36832 0.50335,3.83537 0.52322,3.99186 0.0872,2.36177 -0.14705,4.71898 -0.19839,7.0764 -0.017,0.77891 0.093,1.56134 0.0219,2.33718 -0.0781,0.85212 -0.32499,1.6804 -0.46733,2.52417 -0.14707,0.87182 -0.26718,1.74798 -0.40078,2.62197 -0.76178,3.45651 -0.17364,1.28542 -1.2009,4.24697 -0.44949,1.29588 -0.39427,1.73885 -1.35343,2.79045 -0.81759,0.89639 -1.37095,1.05119 -2.40223,1.54649 -0.48022,-0.002 -0.97806,0.1229 -1.44066,-0.006 -0.48257,-0.13447 -0.92686,-0.42091 -1.29817,-0.75719 -1.85058,-1.67594 -1.5059,-4.34516 -1.44258,-6.57558 0.0917,-0.87654 0.35706,-3.66409 0.55413,-4.48394 0.38217,-1.58982 1.20914,-3.54759 1.96211,-4.99173 0.0236,-0.0452 2.34377,-3.95388 2.44015,-4.1163 1.36992,-1.3686 2.37019,-3.04933 3.69476,-4.45545 0.31371,-0.33302 0.66959,-0.62363 1.00438,-0.93545 1.35419,-1.25245 3.12541,0.66266 1.77123,1.91511 v 0 c -1.72556,1.33969 -3.27079,2.8249 -4.51826,4.6387 -1.87948,2.7872 -0.74361,0.92954 -2.3136,3.96791 -0.36647,0.7092 -0.80853,1.38131 -1.12496,2.1142 -0.88219,2.04327 -1.25445,4.19241 -1.05499,6.407 -0.10869,1.17019 -0.32037,1.82093 0.0469,2.91412 0.11223,0.33403 0.37003,0.60311 0.50575,0.92831 0.18419,0.44136 -0.0841,0.62704 0.32002,0.93716 0.77478,-0.042 0.39657,0.072 1.22047,-0.62232 0.24308,-0.20486 0.53865,-0.36654 0.7151,-0.63096 0.26543,-0.39777 0.40138,-0.86848 0.58116,-1.31158 0.78531,-1.93558 0.64462,-1.71837 1.21748,-3.92563 0.11786,-0.81688 0.22066,-1.63607 0.3536,-2.45064 0.12817,-0.78538 0.37108,-1.55474 0.42958,-2.34837 0.0581,-0.78868 -0.0975,-1.58039 -0.0817,-2.37105 0.0152,-0.76182 0.1546,-1.51752 0.17468,-2.27923 0.007,-0.27824 -0.0997,-4.01464 -0.11088,-4.4191 -0.0444,-0.67167 -0.0152,-1.35227 -0.13312,-2.015 -0.11027,-0.61993 -0.39443,-1.19716 -0.54689,-1.80808 -0.11299,-0.4528 -0.16181,-0.91925 -0.24816,-1.37788 -0.0366,-0.19458 -0.45914,-2.21346 -0.45277,-2.59008 0.005,-0.26817 0.13015,-0.52039 0.19522,-0.78058 -0.0763,-0.28266 -0.19658,-0.55699 -0.2288,-0.84798 -0.0227,-0.20527 0.0482,-0.41027 0.0667,-0.61596 0.0158,-0.17544 -0.13788,-0.50088 0.0363,-0.52721 2.22718,-0.33674 2.72688,1.0849 2.8186,-0.32495 0.002,-0.0235 -0.0262,0.0391 -0.0394,0.0587 -0.0423,0.18084 0.009,-0.0948 0.0703,0.28354 0.0297,0.18416 0.0335,0.37179 0.0399,0.55823 0.0307,0.88718 0.046,1.80432 -0.33727,2.62785 -0.44075,0.88496 -0.6111,1.44978 -1.40083,2.11253 -0.20898,0.17538 -0.52526,0.17693 -0.7453,0.33821 -0.27837,0.20404 -0.46021,0.51784 -0.72487,0.73937 -0.3051,0.25537 -1.74659,1.17373 -2.02072,1.35144 -0.41139,0.1182 -0.81511,0.26736 -1.23415,0.35459 -0.50493,0.10511 -2.52343,0.24338 -2.9235,0.10102 -0.50413,-0.17937 -0.84449,-0.66787 -1.32226,-0.91026 -0.24244,-0.3507 -0.54018,-0.66903 -0.72733,-1.0521 -0.0694,-0.14205 -0.0119,-0.31596 -0.0182,-0.47393 -0.0325,-0.81589 -0.0554,-1.59424 0.36245,-2.33177 0.33831,-0.6906 0.65578,-1.52304 1.12425,-2.13336 0.90339,-1.17695 2.08009,-2.08373 3.40531,-2.73166 1.65538,-0.82769 2.82591,1.51336 1.17053,2.34105 z m -19.0985,2.01623 c 1.38824,0.11439 2.83842,-0.0684 3.81055,-1.19134 0.0874,-0.101 0.0379,-0.27294 0.11019,-0.3853 0.29214,-0.45438 0.69228,-0.83017 1.01493,-1.26342 0.26191,-0.22308 0.25754,-0.18482 0.21878,-0.84119 -0.004,-0.0718 -0.0905,0.1466 -0.16235,0.14232 -0.0656,-0.004 -0.13907,-0.22067 -0.11653,-0.15896 0.14829,0.40602 0.17445,0.40724 0.3884,0.66408 -0.24996,0.004 -0.50988,-0.0574 -0.74987,0.0126 -0.18076,0.0527 -1.60342,1.17353 -1.62603,1.19972 -0.18062,0.20921 -0.24795,0.49437 -0.38507,0.73435 -0.15206,0.26617 -0.32131,0.52215 -0.48196,0.78322 -0.47959,1.46499 -1.41802,2.78851 -1.53104,4.37156 -0.0205,0.287 0.14091,1.93449 0.16737,2.22534 0.38149,0.48155 0.004,1.22393 0.2898,1.73641 0.15017,0.26923 0.14768,-0.45225 0.15956,-0.45616 0.14353,-0.0472 0.29912,0.0492 0.45017,0.0531 0.33429,0.009 0.66873,-0.0104 1.0031,-0.0156 1.64585,-0.51366 0.39685,-0.0795 1.99472,-0.75742 0.43794,-0.18581 0.91397,-0.29272 1.32259,-0.53634 0.36967,-0.2204 0.63091,-0.58945 0.98235,-0.83789 0.44087,-0.31165 0.92451,-0.55789 1.38677,-0.83684 1.57082,-0.95274 2.9182,1.26874 1.34738,2.22148 v 0 c -1.7493,0.91647 -0.87532,0.37613 -2.60059,1.6551 -0.42583,0.24263 -0.92447,0.33171 -1.36488,0.54678 -2.37329,1.15897 -0.29458,0.58577 -2.97083,1.0879 -0.8661,0.12794 -1.83204,0.41426 -2.70373,0.0342 -1.34786,-0.58773 -1.26968,-0.79387 -1.67298,-1.92795 -0.32409,-0.91137 -0.21235,-0.54798 -0.16667,-1.73782 -0.0753,-0.44959 -0.20632,-0.89334 -0.22597,-1.34878 -0.10115,-2.34499 0.77337,-4.65619 1.84997,-6.68773 0.20817,-0.42363 0.35879,-0.88077 0.62451,-1.27089 0.43913,-0.64473 1.82854,-2.01637 2.53093,-2.39661 0.53369,-0.28891 1.49462,-0.48266 2.10066,-0.62622 0.42531,-0.005 0.87699,-0.16227 1.27594,-0.0148 1.24485,0.46024 1.57127,1.91892 1.56872,3.07556 -10e-4,0.46331 -0.7011,1.86035 -0.77784,2.03285 -0.16303,0.1306 -0.33625,0.24942 -0.48908,0.39181 -0.27105,0.25255 -1.21521,1.36518 -1.32082,1.43647 -0.40954,0.27644 -0.90607,0.39635 -1.37104,0.56351 -1.78598,0.6421 -1.91282,0.58906 -3.88011,0.99282 -1.88792,0 -1.88792,-2.66993 0,-2.66993 z m -17.79281,-8.61563 c 0.26827,1.69551 0.43146,3.00702 0.86364,4.66444 0.0716,0.27457 1.04008,3.19962 1.11403,3.52443 0.25526,1.12113 0.33725,2.27492 0.52618,3.40912 0.29197,1.8355 1.02811,3.50717 1.8192,5.16591 0.24137,0.5061 0.15654,0.48215 0.42598,0.26945 -0.57396,-0.0816 -1.15544,-0.12143 -1.72186,-0.24491 -0.0553,-0.0121 -0.0971,-0.0938 -0.0825,-0.14846 0.11474,-0.43004 0.26649,-0.85234 0.45684,-1.25466 0.30075,-0.63564 0.73422,-1.20495 1.01245,-1.85076 0.30328,-0.70396 0.48337,-1.45483 0.72505,-2.18224 0.35927,-0.75387 0.71855,-1.50773 1.07782,-2.2616 0.31984,-0.89303 0.61244,-1.7963 0.95951,-2.67911 0.36395,-0.92573 0.80398,-1.82019 1.1726,-2.74406 0.69942,-1.75299 1.33447,-3.53105 2.02024,-5.28942 0.29898,-0.76662 0.54317,-1.55618 0.8877,-2.30343 0.31025,-0.67287 0.71477,-1.29813 1.07215,-1.94719 0.71475,-1.27119 3.02256,-7.05428 5.24349,-2.98692 0.11259,0.25352 0.22517,0.50705 0.33775,0.76057 0.87329,1.79091 -1.65943,3.02593 -2.53273,1.23502 v 0 c -0.15018,-0.25225 -0.30036,-0.5045 -0.45054,-0.75675 -0.47937,-0.96038 -0.40464,-0.5396 1.7969,-0.14181 0.0405,0.007 -0.0408,0.0753 -0.0752,0.0978 -0.17737,0.11613 -0.39959,0.16765 -0.55328,0.31369 -0.31668,0.30093 -0.57767,0.65688 -0.8376,1.00801 -0.35028,0.47318 -0.66059,0.97469 -0.99089,1.46203 -2.48726,4.72318 -4.42376,9.70049 -6.05744,14.77919 -2.5584,6.39368 0.6836,-1.88169 -1.61844,4.56065 -0.2135,0.59749 -0.50425,1.16478 -0.73522,1.75573 -0.0953,0.24383 -0.96492,2.80244 -1.04465,2.85119 -0.58144,0.35552 -1.36282,0.0238 -2.04423,0.0357 -0.21899,-0.24975 -0.48506,-0.46503 -0.65698,-0.74924 -0.14146,-0.23387 -0.1592,-0.52399 -0.26549,-0.7758 -0.11124,-0.26353 -0.28113,-0.50035 -0.38559,-0.76664 -0.61252,-1.56156 -1.15759,-3.1864 -1.38614,-4.85175 -0.0855,-0.55733 -0.18482,-1.11272 -0.25659,-1.67199 -0.0613,-0.47809 -0.0513,-0.9657 -0.14262,-1.43897 -0.14712,-0.76222 -0.8511,-2.97903 -1.03471,-3.68836 -0.19253,-0.74381 -0.35452,-1.49526 -0.51941,-2.24568 -0.15623,-0.71101 -0.29593,-1.42555 -0.44389,-2.13833 -0.54788,-1.64363 1.77657,-2.41845 2.32445,-0.77482 z m -17.91734,16.91329 c -1.94363,-0.54366 -4.20524,-0.59984 -6.21072,-0.30727 -1.75601,0.25617 -0.2179,0.2079 -2.03691,0.17881 -0.26407,0.008 -0.52815,0.0159 -0.79222,0.0239 -0.25912,-0.0257 -0.51707,-0.0844 -0.77737,-0.0772 -0.006,1.5e-4 -0.59411,0.13378 -0.66013,0.14221 -2.19472,0 -2.19472,-3.1038 0,-3.1038 v 0 c 0.47409,0.57893 1.52277,0.23236 2.14189,0.20413 2.91566,0.1824 5.85172,0.0348 8.7544,0.42552 1.77742,0.29623 1.35848,2.80988 -0.41894,2.51364 z m 93.41539,-46.02944 c -0.54603,0.0587 -2.2252,0.13728 -2.87325,0.5002 -0.43198,0.24191 -0.76462,0.98927 -1.20188,1.29392 0.29604,0.19814 -0.30276,1.20978 -0.35474,1.51636 -0.007,0.0403 0.0774,-0.0541 0.11584,-0.0401 0.23872,0.0866 0.26919,0.18443 0.39042,0.36676 0.16396,0.0869 0.32791,0.17372 0.49186,0.26057 0.18418,0.17344 0.33235,0.39574 0.55255,0.5203 0.31826,0.18003 0.43086,-0.13636 0.66413,-0.221 2.65214,-0.96231 -0.59915,0.49522 1.99399,-0.72485 0.24943,-0.23227 0.48652,-0.47856 0.74831,-0.69681 0.32038,-0.2671 0.70335,-0.46027 0.99605,-0.75744 0.67001,-0.68026 0.66843,-1.60403 1.02985,-2.42326 0.13967,-0.31661 0.34884,-0.59774 0.52326,-0.89661 0.0478,-0.14035 0.14967,-0.27289 0.14352,-0.42104 -0.0176,-0.42499 -0.34614,0.75541 -0.10429,0.88772 0.61407,0.33592 0.76269,0.10643 1.45496,-0.10686 -0.40197,0.22682 0.22566,-0.95671 -0.28079,0.99746 -0.0641,0.24718 -0.24187,0.46508 -0.26271,0.71957 -0.0116,0.14145 0.12509,0.25554 0.17186,0.38953 0.10604,0.30377 0.19061,0.61461 0.28591,0.92191 0.33633,1.67163 0.4969,3.40513 0.93304,5.05642 0.6063,1.83574 0.33602,0.91412 0.81302,2.76422 0.12883,3.43381 0.0749,0.15968 -0.0711,3.56808 -0.0238,0.55432 0.0637,1.11439 -0.009,1.66445 -0.0862,0.65308 -0.65536,2.55774 -0.99543,3.18324 -0.27966,0.51439 -0.67939,0.95377 -1.01908,1.43066 -0.75825,1.35891 -1.84764,2.14437 -3.2125,2.80815 -0.53354,0.25948 -1.34557,0.61892 -1.95131,0.5366 -0.48425,-0.0658 -0.91238,-0.35055 -1.36856,-0.52582 -0.33561,-0.29593 -0.78256,-0.50061 -1.00682,-0.8878 -0.76433,-1.31961 -0.28588,-4.46647 0.27923,-5.82662 0.25208,-0.60671 0.60462,-1.16662 0.90693,-1.74994 1.82311,-1.96206 3.46871,-4.14041 5.51807,-5.88416 1.17522,-0.99997 2.36974,-1.67918 3.67351,-2.49546 3.01531,-1.31739 5.893,-3.11719 8.09761,-5.583 0.86621,-0.75636 1.32026,-1.64079 1.66625,-2.7062 0.0425,-0.13076 0.14786,-0.26543 0.10982,-0.39753 -0.32056,-1.11315 -0.32888,-0.002 -0.31589,-0.43396 -0.80247,-0.23191 -0.055,0.0292 -0.97447,-0.48196 -0.0685,-0.0381 -0.29369,-0.1069 -0.22415,-0.0708 0.80801,0.4195 0.72026,0.20502 0.14011,1.10026 -0.81883,0.73418 -0.57126,1.36925 -0.56823,2.33327 9.7e-4,0.30974 -0.0872,0.62264 -0.038,0.92846 0.0601,0.37378 0.62926,0.63477 0.85274,0.78258 1.2917,0.73948 -0.37175,-0.17101 1.43112,0.63 0.35394,0.15725 0.6672,0.40371 1.03196,0.53392 0.27827,0.0993 0.58348,0.0938 0.87422,0.14649 1.73167,0.31356 0.78413,0.26132 2.43919,0.20326 1.4473,0.28603 2.8405,-0.50377 4.19407,0.36693 0.27725,0.17835 0.41312,0.51384 0.61968,0.77076 -0.17126,0.61871 -0.22022,1.2852 -0.51378,1.85612 -0.1678,0.32634 -0.5409,0.4962 -0.8189,0.73573 -0.44383,0.3824 -0.86162,0.80271 -1.35286,1.12193 -0.65981,0.42875 -1.38516,0.74715 -2.07156,1.1319 -1.6078,0.82349 -2.77238,-1.45029 -1.16458,-2.27378 v 0 c 0.80703,-0.38938 1.53749,-0.86826 2.22266,-1.45381 0.58583,-0.50065 0.90926,-1.08243 0.97794,-0.93544 0.16473,0.35256 0.027,0.77783 0.0405,1.16675 0.5677,0.33094 0.28243,0.28197 0.99965,0.15446 0.14184,-0.0252 -0.28474,0.0444 -0.42774,0.0618 -1.00646,0.1225 -1.97616,-0.0626 -2.98943,-0.004 -1.30246,-0.17058 -2.66635,-0.25567 -3.93052,-0.63643 -1.34952,-0.40647 -2.61019,-1.11739 -3.77888,-1.88671 -0.24823,-0.31974 -0.55033,-0.60416 -0.7447,-0.95923 -0.61754,-1.12809 -0.44778,-1.25144 -0.43289,-2.45821 0.006,-0.45694 -0.0516,-0.91781 0.008,-1.37089 0.12267,-0.93456 0.44115,-1.57356 0.78808,-2.41968 0.71974,-1.27941 1.35639,-2.30259 3.04885,-2.29263 0.75603,0.004 2.08939,1.3216 2.62667,1.7273 0.22442,0.40696 0.55851,0.77054 0.67325,1.22089 0.0956,0.37513 -0.0135,0.776 -0.0668,1.15943 -0.16114,1.15873 -0.26566,1.09872 -0.87207,2.1511 -0.91352,1.58533 -0.38276,0.86034 -1.63765,2.21535 -0.35796,0.34802 -1.99564,1.95371 -2.33864,2.22898 -2.06259,1.65533 -0.84429,0.452 -3.10242,1.82108 -3.42402,2.07595 0.45693,0.26127 -3.30422,1.86908 -0.5693,0.29621 -1.17204,0.53551 -1.70792,0.88862 -1.30022,0.85679 -1.89819,1.67141 -3.00205,2.7661 -0.45979,0.45597 -0.97083,0.86081 -1.40737,1.33909 -2.85454,3.12755 0.64215,-0.1949 -2.19816,2.4105 -0.57163,1.30528 -0.86989,2.19622 -1.02646,3.60659 -0.0309,0.27848 -0.0439,0.55887 -0.0792,0.83682 -0.0157,0.12344 -0.0944,0.2433 -0.0735,0.36597 0.009,0.0549 0.0991,0.0508 0.14869,0.0761 -0.0581,0.12131 -0.27302,0.27274 -0.17417,0.36392 0.10519,0.097 0.26035,-0.12483 0.40011,-0.15553 2.01143,-0.44184 -0.20618,0.30618 1.41958,-0.55033 1.5479,-0.81549 0.31948,0.36152 1.70849,-1.3752 0.04,-0.066 1.14954,-1.88287 1.19017,-2.00016 0.25834,-0.74573 0.31652,-2.25315 0.37947,-2.99295 0.0439,-0.51575 0.13806,-1.02884 0.14067,-1.54644 0.002,-0.44579 -0.0841,-0.88761 -0.12613,-1.33142 -0.46661,-1.73067 -0.21991,-0.79952 -0.73618,-2.7945 -0.12846,-0.47778 -0.30113,-0.94454 -0.40032,-1.42925 -0.0811,-0.39629 -0.054,-0.81003 -0.13884,-1.20553 -0.73117,-3.40874 -0.19553,0.2981 -0.53589,-2.31728 -0.26769,-1.04027 -0.42195,-1.42148 -0.44425,-2.56451 -0.0189,-0.96811 0.40946,-1.96899 0.688,-2.8701 0.46758,-0.32183 0.86275,-0.79054 1.40275,-0.9655 0.28513,-0.0924 0.5895,0.12221 0.86944,0.2293 1.54538,0.59117 1.66994,1.96744 1.14769,3.32131 -0.95174,1.38428 0.14905,-0.3372 -0.8218,1.80305 -0.81767,1.80255 -2.30217,3.10448 -3.95109,4.13037 -1.7595,0.78562 -3.54187,1.74907 -5.47107,0.79458 -0.4666,-0.23085 -0.61348,-0.91663 -1.2071,-0.99095 -0.21517,-0.25224 -0.47366,-0.47318 -0.64549,-0.75671 -0.15052,-0.24838 -0.21318,-0.54054 -0.3072,-0.81533 -0.15287,-0.44676 -0.41774,-0.87676 -0.43325,-1.3487 -0.005,-0.14676 0.91429,-2.35874 0.94579,-2.61922 0.37209,-0.63268 0.28754,-0.6942 0.99664,-1.03176 0.19896,-0.0947 0.44398,-0.0745 0.63466,-0.18498 0.38372,-0.22226 0.65276,-0.63244 1.06383,-0.79878 1.00007,-0.40469 2.20804,-0.0589 3.20055,-0.48142 1.70593,-0.28432 2.10802,2.12823 0.40209,2.41255 z m -28.66464,-0.4932 c -1.01859,0.83775 -2.12294,1.61902 -2.87001,2.74104 -0.26266,0.39449 -0.30021,0.90473 -0.5293,1.31961 -0.38221,0.69216 -1.14095,1.17633 -1.15162,2.03445 -0.0107,0.66933 -0.34609,1.33585 -0.17482,2.0104 0.0295,0.11634 0.39606,-0.0973 0.0176,-0.38779 -0.21869,-0.16787 -0.51288,-0.20242 -0.76932,-0.30364 1.09379,-0.0983 2.2601,-0.81862 3.04401,-1.55877 0.47745,-0.4508 1.04801,-1.41615 1.38041,-1.92981 0.41019,-0.45056 0.87597,-0.84856 1.05633,-1.4621 0.0572,-0.1945 -0.0149,-0.40551 -0.009,-0.60814 0.009,-0.28961 0.0253,-0.57927 0.0547,-0.86752 0.0688,-0.6745 0.10677,-0.23998 0.0591,-0.6194 -0.26868,-0.87355 0.49315,0.71889 1.12771,0.98506 0.80624,0.33817 0.98886,-0.96378 0.92519,0.0613 0.21341,0.77805 0.24047,1.63362 0.52406,2.39338 0.0913,0.24462 0.27235,0.44822 0.37051,0.69018 0.42022,1.29901 0.20673,0.74584 0.59768,1.67537 -0.75201,-0.38591 0.24861,-0.3266 0.14099,-0.43418 -0.0877,-0.0877 -0.28557,0.0238 -0.36508,-0.0714 -0.0841,-0.10064 0.83966,-1.31201 0.96183,-1.49318 0.44015,-0.88028 0.98872,-1.71122 1.39123,-2.61056 0.16335,-0.36499 0.23926,-0.76821 0.42833,-1.12056 0.84252,-1.57016 0.55901,-0.32039 0.7377,-1.35772 -0.0726,0.17094 -0.40212,0.5347 -0.21771,0.51282 0.94777,-0.11244 1.7934,-0.87946 2.74547,-0.8127 0.5627,0.0394 0.36934,2.10399 0.37801,2.20462 0.0492,0.57142 0.30195,1.10662 0.45674,1.65887 0.51786,0.31111 0.52856,2.00771 0.74332,2.39511 0.0845,0.15251 0.33341,0.14917 0.43462,0.29117 0.13665,0.19172 0.11359,0.46713 0.24507,0.66244 0.0813,0.12077 -0.0582,-0.28532 -0.0872,-0.42798 -0.88696,-0.25573 -0.82179,-0.2848 -0.45444,-1.07546 0.47811,-1.02908 0.31786,-0.64687 0.66581,-1.61922 0.0997,-0.32862 0.19943,-0.65725 0.29915,-0.98587 0.0154,-0.22703 -0.0142,-0.46167 0.0461,-0.6811 0.0864,-0.31481 0.24377,-0.60636 0.38784,-0.8993 0.0983,-0.19976 0.1172,-0.54614 0.33778,-0.5761 1.88061,-0.25543 3.13187,0.7058 2.39259,0.14845 0.79964,0.90222 0.76714,2.14311 1.30013,3.16969 0.13451,0.25909 0.75181,0.95267 0.84433,1.06236 0.15101,0.21035 0.24468,0.47728 0.45302,0.63104 0.0767,0.0566 0.1731,-0.0978 0.26842,-0.0986 0.65492,-0.006 0.88403,0.28865 0.51895,-0.0742 1.87136,-0.55961 2.66277,2.08689 0.79141,2.6465 v 0 c -0.46713,0.0949 -0.92517,0.30555 -1.40138,0.28468 -0.30308,-0.0133 -0.54973,-0.25684 -0.82593,-0.38233 -1.70238,-0.77344 -1.06611,-0.22409 -2.0106,-1.37655 -0.2417,-0.34709 -0.96863,-1.36932 -1.13794,-1.71024 -0.15133,-0.30471 -0.25668,-0.63216 -0.34369,-0.96107 -0.0487,-0.18392 0.027,-0.39866 -0.0607,-0.5675 -0.25695,-0.49491 -0.85015,-0.76338 -0.4627,-0.57824 -0.16287,-0.15638 -0.70846,-0.41766 -0.48862,-0.46916 0.78577,-0.18405 1.61469,0.0494 2.42105,0.0165 0.0457,-0.002 -0.0502,-0.14754 -0.0791,-0.11211 -0.0966,0.11829 -0.13295,0.27659 -0.17503,0.42339 -0.46433,1.61996 0.0389,0.42238 -0.5586,1.69642 -0.0495,0.18374 -0.47291,1.82436 -0.61842,2.14503 -0.10849,0.23907 -0.30195,0.43127 -0.4243,0.66356 -0.20568,0.39052 -0.25733,0.87755 -0.5577,1.20096 -0.90079,0.96991 -1.40394,0.66096 -2.53317,0.55273 -0.11453,-0.1081 -0.87544,-0.77695 -1.07401,-1.07818 -0.74849,-1.13544 -1.1582,-2.40945 -1.4714,-3.72268 -0.39427,-1.65898 -0.0361,-0.11941 -0.46158,-2.06839 -0.0431,-0.19737 -0.12967,-0.38861 -0.13627,-0.59051 -0.002,-0.0589 0.0659,0.14876 0.12118,0.12849 0.84863,-0.31107 1.59309,-0.94033 2.48545,-1.08398 0.25021,-0.0403 -0.15855,0.48144 -0.23783,0.72216 -1.2264,1.67275 -1.8144,3.66718 -2.90516,5.42482 -0.36034,0.51968 -0.64097,1.1033 -1.07513,1.5631 -0.87168,0.92317 -2.26874,1.72731 -3.44789,0.80549 -0.34504,-0.26975 -0.59256,-0.64508 -0.88884,-0.96763 -1.60215,-3.54972 0.44988,1.20571 -0.51465,-1.59638 -0.11462,-0.33298 -0.33983,-0.62027 -0.45815,-0.95195 -0.10422,-0.29213 -0.11468,-0.61092 -0.2052,-0.90758 -0.59117,-1.93733 -0.44164,-0.61068 -0.50774,-2.26264 -0.0224,-0.32221 -0.11827,-0.64771 -0.0672,-0.96664 0.11874,-0.74173 0.73486,-2.17027 1.74487,-2.13304 1.64277,0.0605 1.81923,0.98839 1.87342,2.02132 -0.13591,0.64414 -0.2873,1.28624 -0.4208,1.93033 -0.35154,1.69609 -0.34879,2.13059 -1.70544,3.33867 -1.54065,2.00899 -3.16101,3.89619 -5.70993,4.52699 -0.53485,-0.005 -1.10283,0.1708 -1.60457,-0.0145 -0.79885,-0.2951 -1.16471,-2.23161 -1.15355,-2.96799 0.0137,-0.90197 0.1217,-1.01088 0.41628,-1.75174 0.26572,-0.6915 0.45862,-1.28322 0.8556,-1.92231 0.21547,-0.34687 0.48766,-0.65511 0.73067,-0.98327 0.33478,-0.45207 0.62851,-0.93739 1.0027,-1.35741 0.96333,-1.08132 2.2006,-1.90311 3.01384,-3.12924 1.37894,-1.10315 2.93904,0.84697 1.56009,1.95012 z m -25.92504,3.20434 c 1.45623,-0.69227 2.19771,-0.87887 3.33386,-2.04343 0.0654,-0.0671 1.12524,-1.78737 1.24628,-1.93429 2.89903,-3.51872 -0.63946,1.16328 1.39742,-1.57273 0.31256,-0.26467 0.5855,-0.58495 0.93768,-0.79402 0.59492,-0.35317 2.71425,-0.93454 3.24097,-0.12557 0.36257,0.55688 0.16539,1.3548 0.49724,1.93052 0.23012,1.19897 0.007,-0.20108 0.058,1.52 0.0111,0.37182 0.11311,0.73855 0.11003,1.11052 -0.005,0.63662 -0.2514,1.61317 -0.22868,2.25794 0.0123,0.35019 0.11692,0.69099 0.17537,1.03648 -0.0457,2.36178 -0.16504,-0.13271 0.20613,0.96795 0.10219,0.30304 0.0612,0.64515 0.17857,0.94265 0.074,0.18749 0.27938,0.29589 0.37913,0.47103 1.27803,2.24413 -0.54671,-0.50424 0.74839,1.38701 0.088,-0.0756 0.14886,-0.21297 0.26406,-0.22679 0.15495,-0.0186 0.29102,0.12567 0.44626,0.14155 0.621,0.0635 0.85056,-0.0483 1.43935,-0.19657 1.7964,-0.48339 2.48002,2.0571 0.68362,2.54049 v 0 c -0.5048,0.14994 -0.9896,0.40641 -1.5144,0.44983 -0.41696,0.0345 -0.82275,-0.15275 -1.2353,-0.22232 -1.54525,-0.26059 -0.77776,0.072 -2.08306,-0.86986 -1.22771,-1.25896 -0.3779,-0.22616 -1.22548,-1.73296 -0.1802,-0.32036 -0.45471,-0.58921 -0.59252,-0.92995 -0.10443,-0.25823 -0.0504,-0.55707 -0.11812,-0.82725 -0.42883,-1.7104 -0.4584,-0.59396 -0.29142,-1.93931 0.004,-0.71366 0.0499,-1.42751 0.0274,-2.14083 -0.0112,-0.35639 -0.0854,-0.70942 -0.0894,-1.06596 -0.009,-0.77589 0.18166,-1.54557 -0.0831,-2.30892 -0.0478,-0.31917 -0.46619,-0.94948 -0.14355,-0.95753 0.3699,-0.009 0.3221,0.68103 0.57968,0.94666 0.62008,0.63943 0.71619,-0.20522 0.23297,-0.0592 -0.22555,0.0682 -0.41932,0.21503 -0.62898,0.32255 -0.20937,0.25837 -0.405,0.52853 -0.62811,0.77513 -0.18168,0.2008 -0.42725,0.34386 -0.58405,0.56462 -0.284,0.39981 -0.41378,0.90144 -0.72596,1.27966 -1.26866,1.53708 -3.21386,2.21767 -4.69456,3.49586 -1.55065,0.93039 -2.86643,-1.26256 -1.31577,-2.19295 z m -9.68147,-16.06078 c -1.45642,-0.49941 -1.03708,-0.56309 -2.43409,-0.34037 -0.33632,0.0536 -0.69225,0.0701 -0.99748,0.22115 -0.21051,0.10419 -0.30126,0.36455 -0.48402,0.51208 -2.59393,2.09383 0.25955,-0.54795 -2.17838,1.79546 -0.9915,1.0555 -1.24806,1.1826 -1.92313,2.55674 -0.23849,0.48547 -0.35544,1.02251 -0.56562,1.52089 -0.36629,0.86853 -1.19423,2.35389 -1.3915,3.29298 -0.12189,0.58026 -0.061,1.18429 -0.0915,1.77643 -0.41832,1.65453 -0.52452,3.35642 0.05,4.99127 0.36365,1.03477 1.17374,1.98173 1.80338,2.8606 0.33357,0.13585 1.20633,0.55378 1.637,0.51649 0.43813,-0.0379 0.85147,-0.22046 1.27711,-0.33107 1.0593,-0.27527 2.73634,-0.67173 3.70485,-1.11318 0.72881,-0.3322 1.39025,-0.79578 2.08537,-1.19367 2.33237,-2.49946 4.87499,-4.77441 6.51643,-7.82088 0.3578,-0.66407 0.73805,-1.32692 0.96908,-2.045 0.19898,-0.61849 0.20538,-1.28309 0.30807,-1.92464 0.0454,-0.52643 0.20759,-1.05576 0.13612,-1.57929 -0.0606,-0.44427 -0.31834,-0.8402 -0.52099,-1.24019 -0.80949,-1.59774 -1.91601,-2.11459 -3.48029,-2.75502 -1.67601,0.0785 -3.3182,0.35079 -4.8492,1.08735 -0.48721,0.23439 -0.92445,0.56092 -1.38668,0.84138 -1.38596,0.80183 -2.51992,-1.15821 -1.13396,-1.96004 v 0 c 0.6978,-0.44377 2.39671,-1.57817 3.2115,-1.8946 1.58519,-0.61563 3.32824,-0.59339 4.9923,-0.5323 0.92466,0.45783 2.22315,1.01588 3.01107,1.72813 1.22564,1.10792 2.46954,3.15119 2.58653,4.81552 0.0502,0.71357 -0.17452,1.41998 -0.26177,2.12997 -0.19015,0.7212 -0.30615,1.46615 -0.57045,2.16359 -0.4761,1.25638 -1.69385,3.48028 -2.53054,4.55242 -0.54891,0.70338 -1.22842,1.29438 -1.83335,1.95021 -2.76769,3.00053 -0.90423,1.22582 -4.14513,4.03136 -0.74455,0.54302 -1.44252,1.15647 -2.23365,1.62905 -2.24413,1.3405 -5.46126,2.45564 -8.059,1.48218 -0.5063,-0.18973 -0.9103,-0.58369 -1.36545,-0.87553 -1.02951,-1.24059 -1.96695,-2.51219 -2.41883,-4.10073 -0.62281,-2.18949 -0.0171,-3.53839 0.0722,-5.7193 0.12664,-0.73207 0.21017,-1.47292 0.37992,-2.19621 0.42483,-1.81023 0.60516,-1.9004 1.31071,-3.53096 0.26492,-0.61223 0.45555,-1.2591 0.77185,-1.84644 0.64721,-1.2018 1.45271,-2.05549 2.32041,-3.08679 0.36664,-0.38572 0.70162,-0.80421 1.09991,-1.15715 0.24205,-0.21448 2.5516,-1.83289 2.66927,-1.88294 0.46884,-0.19944 0.99901,-0.22458 1.50785,-0.25028 1.9622,-0.0991 1.79479,0.0363 3.54258,0.70437 1.56763,0.78381 0.45915,3.00078 -1.10849,2.21696 z m -27.68409,19.73197 c -1.5327,-0.12435 -2.99121,0.44816 -4.49188,0.59241 -0.35525,0.0342 -0.71616,-0.0495 -1.07062,-0.008 -0.28242,0.0331 -0.54771,0.15311 -0.82156,0.22966 -0.46801,0.039 -0.93602,0.0779 -1.40403,0.11691 -1.72929,0.40751 -3.46899,0.73471 -5.22123,1.01058 -0.43892,0.0691 -0.86814,0.21476 -1.31197,0.2356 -0.38615,0.0181 -0.76901,-0.0799 -1.15352,-0.11984 -0.25864,-0.004 -0.51728,-0.008 -0.77592,-0.0126 -0.14643,0.0152 -0.29207,0.0462 -0.43928,0.0455 -0.21994,-9.5e-4 -0.22021,-0.12697 -0.46535,-0.10097 -0.45284,0.048 0.37673,0.25853 -0.33437,0.0185 -1.67701,-0.91681 -1.31065,-0.26891 -1.67325,-1.47858 -0.56141,-1.92351 2.15885,-2.71746 2.72026,-0.79395 v 0 c -0.54024,-0.29629 -0.12328,-0.0734 -1.28245,-0.60596 0.58721,-0.008 -0.54189,-0.009 0.45233,0.0919 0.15531,0.0157 0.31203,-0.0111 0.46804,-0.0167 0.15404,-0.0133 0.30817,-0.0541 0.46212,-0.0398 0.34886,0.0324 0.65409,0.31061 1.03159,0.2016 1.9341,0.28462 2.54405,-0.005 4.41781,-0.36787 2.42488,-0.46994 0.16951,0.16157 2.74437,-0.65332 0.86388,-0.13828 1.71754,-0.34397 2.58641,-0.44626 0.36735,-0.0432 1.78242,0.0355 2.00012,0.0194 1.25949,-0.0933 2.32958,-0.39563 3.56238,-0.67956 1.95256,0 1.95256,2.76134 0,2.76134 z m 137.62878,-48.33343 c -0.18766,-0.28726 1.52508,-0.55036 1.38369,-1.12849 -0.0415,-0.16957 -0.38461,0.0505 -0.48734,0.19168 -0.11638,0.15993 0.0401,0.43096 -0.0802,0.58795 -0.084,0.10958 -0.27599,0.0231 -0.41086,0.0527 -0.27309,0.0599 -0.54044,0.14357 -0.81067,0.21536 -1.68336,0.65447 -0.47812,0.10217 -1.98634,1.01435 -0.30424,0.184 -0.65256,0.29937 -0.93115,0.52027 -0.32271,0.25591 -0.5706,0.5941 -0.85266,0.8942 -1.30157,1.38481 -0.78316,0.76326 -1.85734,2.27108 -0.4973,0.69707 -1.08164,1.76064 -0.61091,2.64953 0.0653,0.12336 0.24064,0.1494 0.33279,0.25426 0.33827,0.38504 0.0525,0.44985 0.37743,0.30518 0.94909,-0.5558 2.05364,-0.75956 3.08266,-1.14665 0.40243,-0.15139 0.83599,-0.24693 1.19716,-0.48023 0.34027,-0.2198 0.57737,-0.56835 0.86607,-0.85252 0.33604,-0.23254 0.69186,-0.43882 1.00813,-0.69761 0.27182,-0.22243 0.52814,-0.4679 0.74949,-0.7406 1.05248,-1.29672 -1.79917,1.216 -0.043,1.1219 0.99102,-0.0531 1.74824,-0.93995 2.62236,-1.40992 0.39691,2.70572 0.10432,-0.17303 -0.003,2.22416 -0.0135,0.30015 0.0918,0.59598 0.0944,0.89643 0.0105,1.19126 -0.22036,1.34021 0.36943,2.41192 0.39606,0.25902 -0.0165,0.0441 0.67944,0.10302 0.22962,0.0194 0.44978,0.12576 0.68022,0.12349 1.08102,-0.0106 1.97386,-0.54934 2.96117,-0.92296 1.59731,-0.7519 2.66065,1.50706 1.06336,2.25894 v 0 c -0.43659,0.23546 -0.84865,0.52354 -1.30975,0.70638 -1.66585,0.66056 -4.00705,0.86152 -5.56802,-0.17618 -0.36631,-0.2435 -0.64975,-0.59307 -0.97462,-0.8896 -0.18361,-0.43351 -0.45342,-0.83993 -0.55083,-1.30053 -0.0758,-0.3586 0.0437,-0.73219 0.0434,-1.09872 -6.1e-4,-0.76934 -0.0183,-1.53929 -0.0679,-2.30702 -0.0173,-0.26695 -0.19528,-0.54442 -0.10377,-0.79579 0.0458,-0.12594 0.19558,0.18326 0.29343,0.2748 0.76041,-0.53815 1.35087,-1.56671 2.28122,-1.61444 0.4982,-0.0256 0.23656,1.00217 0.13464,1.49051 -0.19022,0.91141 -2.79148,1.46515 -2.76442,2.39746 -1.60529,1.14183 -2.36652,1.56267 -4.20516,2.24553 -0.62927,0.23371 -1.91476,0.76371 -2.62866,0.77768 -0.51712,0.0101 -1.02291,-0.15405 -1.53438,-0.23107 -0.2705,-0.21283 -0.59522,-0.37068 -0.81157,-0.63837 -0.19801,-0.24497 -0.26905,-0.56969 -0.39743,-0.85733 -0.17607,-0.3945 -0.43549,-0.76447 -0.51584,-1.18892 -0.29875,-1.578 0.42916,-3.10393 1.16031,-4.43554 1.43624,-1.69876 0.77505,-0.96397 2.22028,-2.4992 0.71976,-0.76458 1.25586,-1.42346 2.14334,-2.00109 1.18641,-0.77221 1.59127,-0.78985 2.92947,-1.1923 1.02887,-0.16933 2.40258,-0.56659 3.40704,0.0616 0.52904,0.33087 0.94601,0.91894 1.08126,1.52809 0.43148,1.94325 -1.6639,2.82623 -2.98634,3.37751 -1.66238,0.4735 -2.33201,-1.87746 -0.66963,-2.35096 z m -3.58082,-4.94833 c -2.46471,0.49336 -1.5104,0.16271 -3.86565,1.21512 -0.56287,0.2515 -1.13588,0.48477 -1.67634,0.78137 -0.69653,0.38227 -1.32189,0.8828 -2.00122,1.29485 -1.68342,0.79795 -2.81189,-1.58278 -1.12846,-2.38072 v 0 c 0.47763,-0.23993 1.79069,-0.90623 2.17219,-1.06177 0.58763,-0.23959 1.20839,-0.39286 1.79356,-0.63838 3.97766,-1.66889 0.27365,-0.46982 4.29717,-1.63781 1.71638,-0.28903 2.12513,2.13831 0.40875,2.42734 z m -1.2784,-12.34587 c -0.51879,0.97831 -1.05614,1.94698 -1.55646,2.93485 -0.52616,1.03905 -1.07394,2.07003 -1.52261,3.14481 -1.2953,3.10316 -1.95418,6.40196 -2.81454,9.63587 -0.26604,1.00003 -0.56236,1.99176 -0.84355,2.98764 -0.19012,1.82259 -0.93898,3.5052 -1.33541,5.27521 -0.0942,0.42066 -0.39829,2.55401 -0.45777,3.24049 -0.0276,0.31894 0.21548,1.15016 -0.0417,0.95951 -0.55635,-0.41245 -0.71198,-1.18813 -1.06796,-1.78219 1.99463,0.1035 1.84826,2.92433 -0.14637,2.82084 v 0 c -0.5045,-0.59795 -1.17162,-1.09015 -1.51352,-1.79384 -0.0994,-0.20467 0.29357,-0.36231 0.3602,-0.57988 0.13937,-0.45538 0.14344,-0.94237 0.24786,-1.407 0.555,-2.46947 1.42078,-4.85887 1.98977,-7.32496 0.34632,-0.95445 0.74124,-1.89265 1.03897,-2.86337 0.96439,-3.14433 0.70256,-3.42797 1.72222,-6.63768 0.88057,-2.77189 1.53258,-3.78119 2.62771,-6.48354 0.40226,-0.99262 0.75131,-2.00598 1.12697,-3.00897 0.62381,-1.54585 2.80997,-0.66364 2.18616,0.8822 z m -24.48923,21.1597 c -1.00532,1.08355 -1.22557,2.1763 -1.34605,3.57219 -0.004,0.0482 0.12012,0.4659 0.11745,0.46087 -0.12652,-0.23889 -0.21696,-0.4952 -0.32544,-0.74281 -0.0514,-0.17202 -0.0773,-0.11673 0.11452,-0.23699 0.80562,-0.50493 1.65706,-0.92531 2.39527,-1.53614 0.36229,-0.29978 0.68062,-0.64904 1.02093,-0.97357 1.29098,-1.12847 1.02997,-0.74697 1.90064,-2.01461 0.2221,-0.32335 0.38083,-0.69241 0.63697,-0.98954 0.13864,-0.16086 0.36182,-0.22483 0.52568,-0.35989 1.23591,-1.01864 0.32276,-0.41805 0.99604,-0.84471 0.71179,0.53283 1.68707,0.83068 2.13537,1.59849 0.20466,0.35052 -0.40416,0.70513 -0.57564,1.07302 -0.29131,0.62515 -0.17718,0.80767 -0.44236,1.51786 -1.00309,2.68644 -0.0718,-0.44103 -0.70487,1.80404 0.0953,0.52001 -0.48627,2.43903 -0.28396,2.75796 0.0831,0.13094 0.22331,-0.27597 0.1859,-0.42649 -0.28127,-1.13171 -0.49195,-0.0352 -0.35639,-0.60255 1.08959,-0.76371 1.84294,-1.42697 2.80055,-2.38063 1.24562,-1.23538 2.99271,0.52619 1.74708,1.76157 v 0 c -1.19765,1.2058 -2.32437,2.5232 -3.91282,3.22756 -1.17252,0.25996 -1.8737,0.74126 -2.86045,-0.46608 -0.71928,-0.88007 0.0931,-3.49651 0.1664,-4.52176 0.55173,-3.10657 -0.18693,0.26654 0.63509,-1.94555 0.70862,-1.90694 -0.41579,0.006 0.61789,-2.25885 0.0306,-0.0672 0.0611,0.13449 0.0917,0.2017 0.70294,0.41668 1.40588,0.83335 2.10882,1.25003 -0.1136,0.0602 -0.22711,0.12039 -0.34066,0.18058 0.0347,-0.0479 0.15728,-0.17091 0.10493,-0.14327 -0.21577,0.11404 -0.4291,0.24217 -0.60738,0.40882 -1.02128,0.95466 -1.71942,2.25642 -2.84041,3.12152 -3.15452,2.55622 0.59577,-0.45572 -2.32803,1.81475 -1.60135,1.24352 -2.46781,2.05207 -4.56628,1.33494 -0.2829,-0.37875 -0.65981,-0.70288 -0.8487,-1.13624 -0.073,-0.16756 0.11654,-0.35226 0.12023,-0.53502 0.008,-0.37259 -0.14648,-0.74677 -0.0868,-1.11462 0.0597,-0.36751 0.30574,-0.67963 0.43464,-1.02894 1.13495,-3.07531 -0.18949,0.043 1.22301,-3.13409 0.92383,-1.6597 3.27099,-0.35321 2.34717,1.30649 z m -24.68538,0.20167 c 1.87646,-1.1966 3.74168,-2.53794 5.88984,-3.21691 1.20029,-0.37937 2.36318,-0.53543 3.59516,-0.74331 1.86765,0.048 5.46098,-0.72741 6.81383,1.03666 0.36275,0.47301 0.5156,1.07493 0.77341,1.61239 -0.0999,0.62523 -0.0603,1.28952 -0.29965,1.87568 -0.2123,0.51979 -0.68628,0.8891 -1.01521,1.34416 -0.30781,0.42594 -0.55313,0.89874 -0.89469,1.29814 -0.38577,0.45106 -0.85438,0.82412 -1.27687,1.24098 -1.16866,1.15303 -0.77071,0.73675 -1.82458,2.03486 -1.43835,1.25513 -0.53812,0.60547 -2.14202,1.49071 -0.32571,0.17978 -0.61695,0.43267 -0.96825,0.55509 -0.30592,0.10662 -0.64277,0.0816 -0.9646,0.11855 -0.24043,0.0276 -0.49569,0.16072 -0.72212,0.0753 -0.42573,-0.16063 -0.75036,-0.51495 -1.12556,-0.77238 -0.0372,-0.53834 -0.0744,-1.07668 -0.11152,-1.61502 0.49789,-2.01367 3.34565,-1.30954 2.84776,0.70413 v 0 c -0.0899,-0.26861 -0.17979,-0.53723 -0.2697,-0.80585 -0.28672,-0.0901 -0.56257,-0.22845 -0.86021,-0.27029 -0.0698,-0.01 -0.23778,0.10531 -0.17024,0.12531 0.71503,0.21173 2.11017,-1.08183 2.60268,-1.42862 0.34383,-0.27492 0.70854,-0.5256 1.0315,-0.82476 1.04053,-0.96387 1.93583,-2.17721 2.79318,-3.30238 0.18396,-0.24145 0.31641,-0.52095 0.51192,-0.75315 0.12245,-0.14534 0.28932,-0.24651 0.43397,-0.36978 0.15526,-0.32396 0.19993,-0.26665 -0.31753,-0.62713 -1.15709,-0.80605 -3.22191,-0.24115 -4.48997,-0.27584 -1.28473,0.10217 -1.82836,0.059 -3.04649,0.48805 -0.47822,0.16844 -0.91339,0.44136 -1.38022,0.63917 -0.41756,0.17694 -0.87384,0.26611 -1.27136,0.48438 -0.88137,0.48395 -1.89885,1.41515 -2.65586,2.05845 -1.53909,1.05122 -3.02575,-1.12538 -1.48665,-2.17661 z m 4.71097,3.09542 c -0.44817,0.8985 -0.96135,1.76741 -1.34439,2.69555 -0.31544,0.7643 -2.00745,5.9508 -2.26308,6.73039 -0.94724,2.88874 -1.92211,5.71488 -3.09113,8.52124 -0.86125,1.85334 -1.13203,2.16618 -1.57829,4.08209 -0.10693,0.45908 -0.0791,0.94403 -0.19801,1.40015 -0.0825,0.31636 -0.0755,0.85767 -0.40022,0.89543 -0.28732,0.0334 0.2997,-0.64636 0.10607,-0.86122 -0.46117,-0.51176 -1.19946,-0.67795 -1.79895,-1.01736 0.0622,-0.009 0.12427,-0.0183 0.18647,-0.0274 1.04312,-1.58574 3.2857,-0.11053 2.24257,1.4752 v 0 c -0.3115,0.3869 -0.62298,0.7738 -0.93446,1.1607 -0.753,-0.181 -1.65871,-0.0537 -2.259,-0.54301 -0.33543,-0.27346 -0.0806,-0.87314 7e-5,-1.29832 0.0454,-0.23921 0.26208,-0.41185 0.36626,-0.6319 0.2011,-0.42463 0.38015,-0.85978 0.54821,-1.29854 1.28148,-3.34489 0.10354,-0.81972 1.83032,-4.1902 1.92078,-4.16721 0.27624,-0.41384 2.08334,-5.18066 0.38963,-1.02774 0.86158,-2.02381 1.2303,-3.05924 1.14058,-3.20298 2.01155,-6.50965 3.09387,-9.73263 0.62208,-1.54154 2.80215,-0.66179 2.18007,0.87975 z m -35.21089,-2.15757 c -1.36515,0.90072 -2.97825,1.83916 -4.15899,2.98157 -0.79067,0.76499 -1.42417,1.98871 -2.07957,2.89103 0.0176,0.38952 -0.74343,1.62254 -0.27236,2.03067 0.22578,0.19559 -0.11041,-0.6929 -0.0371,-0.75028 0.11964,-0.0936 0.29538,-0.0712 0.44307,-0.10686 1.86899,-0.18801 3.69271,-0.63587 5.2758,-1.69286 1.05362,-0.70347 1.53876,-1.31226 2.39013,-2.21233 0.25871,-0.33483 0.58959,-0.62469 0.77602,-1.00453 0.28155,-0.57367 0.37544,-2.57146 -0.20546,-3.03382 -0.0852,-0.0678 -0.21077,0.0547 -0.31615,0.082 -1.05674,-0.0274 1.39462,0.0632 -0.94684,-0.25442 -0.72012,-0.0977 -1.64367,0.73791 -2.14715,1.14949 -0.9572,1.39254 0.10774,-0.27663 -0.69832,1.44846 -0.14198,0.3038 -0.39689,0.55018 -0.51579,0.86373 -0.17827,0.47016 -0.0333,1.62318 -0.0736,0.0505 0.24722,-0.19131 1.65279,-0.0261 1.77085,-0.039 0.42029,-0.0459 0.8141,-0.23172 1.22853,-0.31537 2.45378,-0.49525 0.35684,0.16108 2.7864,-0.71651 1.4695,-0.57008 2.86598,-1.3025 4.3272,-1.89227 0.34859,-0.14069 0.72125,-0.223 1.05851,-0.38903 2.62635,-1.293 -0.98858,0.19248 1.33129,-0.72611 1.4565,-0.49106 -0.35511,-0.0385 1.33189,2.61246 0.12957,0.2036 0.33476,-0.59524 0.54508,-0.47649 0.20096,0.113 -0.13369,0.44415 -0.24034,0.64856 -0.95429,1.82834 -0.32253,0.078 -0.88362,1.87579 -0.26645,0.37816 -1.46318,2.27534 -1.44139,2.69029 0.003,0.0514 0.0732,0.0724 0.10991,0.10856 -0.017,0.13789 -0.0341,0.27573 -0.0512,0.41359 -0.41872,-0.50977 -0.99801,-0.92225 -1.25619,-1.52934 -0.0758,-0.17816 0.42348,-0.008 0.56305,-0.14248 0.23879,-0.22955 0.47928,-0.4574 0.7239,-0.68074 1.26056,-1.15097 0.74578,-0.72277 2.26103,-1.72476 1.14941,-0.92071 2.56096,-1.55819 3.58615,-2.63849 0.54352,-0.57272 0.4583,-0.87413 1.28411,-1.18447 0.45535,-0.17114 0.95204,-0.20028 1.42805,-0.30042 0.37603,0.31563 0.87399,0.52677 1.12809,0.94684 0.49553,0.81906 0.13232,2.40123 -0.16858,3.23332 -0.14421,0.3989 -0.38424,0.76022 -0.51407,1.16405 -0.0743,0.23118 -0.0618,0.48172 -0.0927,0.72258 -0.0711,0.31557 -0.14218,0.63109 -0.21327,0.94663 0.0456,0.1521 0.14305,0.29764 0.13677,0.45629 -0.008,0.19656 -0.11081,0.37776 -0.17704,0.56299 -0.0877,0.24537 -0.23282,0.98364 -0.28437,0.7282 -0.36845,-1.82563 2.60484,0.32939 -1.53593,-1.64688 1.79738,-0.68256 2.75559,-2.42957 4.14609,-3.63175 0.35048,-0.30302 0.74788,-0.54709 1.12182,-0.82063 0.55955,-0.18082 0.7008,-0.99999 1.24025,-1.19917 0.98665,-0.36431 1.99199,-0.17527 2.64117,0.73232 0.25999,0.36347 0.21851,1.46238 0.21987,1.95121 0.10737,0.86543 0.17016,0.98658 -0.0121,2.02106 -0.19875,1.12789 -0.65861,1.53791 0.0413,2.54815 0.25778,-0.45899 -0.1355,-0.29869 0.68008,-0.44666 1.78334,-0.36514 2.29971,2.1569 0.51638,2.52203 v 0 c -1.8725,0.47563 -2.37655,0.63294 -3.82038,-0.92741 -0.12823,-0.30976 -0.31654,-0.60103 -0.3847,-0.92929 -0.0778,-0.37471 -0.0381,-1.87811 0.0146,-2.25078 0.12971,-0.9176 0.47703,-1.39721 0.21884,-2.35613 -0.2746,-1.66934 -0.0375,-0.27777 0.95722,-0.22394 0.23643,0.0128 0.42089,-0.26354 0.52876,-0.47433 0.2575,-0.50334 -2.52047,2.40796 -1.27135,1.12282 -0.31178,0.19182 -0.64536,0.35205 -0.93535,0.57545 -1.05914,0.8159 -1.01978,1.04136 -1.94513,2.06509 -0.85914,0.95048 -0.96475,1.01753 -1.91593,1.71556 -0.21096,0.15483 -0.42878,0.30007 -0.64317,0.45012 -0.77149,-0.17754 -1.68255,-0.0558 -2.31449,-0.53263 -0.74093,-0.55911 -0.003,-1.22604 0.0709,-1.73525 0.25389,-1.75234 -0.18108,-0.30367 0.30997,-1.70681 0.70066,-3.30169 -0.19728,0.7793 0.5063,-2.01708 0.35193,-1.39875 -0.043,-1.35252 1.32677,-0.7518 0.17332,-0.10064 0.37924,-0.15922 0.51996,-0.30192 0.10269,-0.10409 -0.28627,0.0881 -0.39989,0.18014 -0.26756,0.21665 -0.46824,0.50665 -0.72774,0.73291 -1.13496,0.98966 -2.46731,1.67132 -3.74111,2.45727 -2.32358,2.48689 0.19654,-0.06 -2.0476,1.8236 -1.20478,1.01119 -0.58024,0.89315 -2.10471,1.7484 -0.1523,0.0855 -0.36027,0.18208 -0.51435,0.0999 -0.714,-0.38107 -1.31107,-0.94927 -1.9666,-1.42391 0.30712,-0.80426 0.0468,-1.25877 0.45163,-2.21799 0.10255,-0.24306 0.33459,-0.41052 0.4687,-0.63768 0.16445,-0.27899 0.28262,-0.58279 0.42389,-0.87422 0.14487,-0.23434 0.28973,-0.46869 0.43468,-0.70299 0.11535,-0.21546 0.25357,-0.42018 0.34597,-0.64643 0.12954,-0.31724 0.83946,-2.69176 1.03882,-2.54817 2.12786,1.53254 0.4445,3.37243 1.21707,2.49771 -1.15793,0.43361 0.54145,-0.18557 -1.26188,0.37859 -1.9211,0.60102 -0.56441,0.22466 -2.48445,1.00059 -2.93364,1.18553 -0.0183,-0.21033 -3.09807,1.35238 -2.50765,0.77065 -0.55507,0.21279 -3.1707,0.84214 -0.53123,0.12782 -1.04769,0.32584 -1.58827,0.40531 -0.42991,0.0632 -0.86893,0.0142 -1.30341,0.0198 -0.44008,0.006 -0.88654,0.0883 -1.32027,0.0136 -0.41276,-0.071 -0.78382,-0.29549 -1.17572,-0.44325 -0.28283,-0.47898 -0.70718,-0.89895 -0.84852,-1.43696 -0.17319,-0.65925 0.25548,-1.26025 0.54819,-1.7762 0.60332,-1.06335 1.10983,-2.16514 1.69789,-3.23746 0.53988,-0.46207 1.41989,-1.27811 2.07173,-1.56235 1.63899,-0.71466 3.27851,-0.31209 4.76611,0.50839 1.47077,1.75544 1.1696,1.36113 1.23346,3.56126 0.0144,0.49562 0.18213,1.00249 0.0713,1.48577 -0.10452,0.4558 -1.54767,2.54732 -1.70538,2.78543 -0.44413,0.44305 -0.84586,0.93314 -1.3324,1.32915 -1.25291,1.0198 -3.73448,2.39766 -5.26452,2.94122 -0.29144,0.10353 -2.3199,0.49631 -2.72722,0.57716 -0.98881,-0.0466 -2.17937,0.0836 -2.9516,-0.79129 -0.51071,-0.57858 -0.24049,-1.50131 -0.17388,-2.14798 0.0479,-0.46474 -0.0279,-0.95289 0.11849,-1.39658 0.11713,-0.35519 0.43005,-0.61202 0.64501,-0.91808 0.20623,-0.38491 0.36644,-0.79836 0.61923,-1.15443 0.27991,-0.39431 0.64789,-0.71806 0.96754,-1.0809 0.36831,-0.41806 0.68113,-0.89017 1.09629,-1.26174 0.40744,-0.36467 0.91517,-0.60014 1.3518,-0.92928 0.97358,-0.7339 1.86468,-1.57313 2.85138,-2.2908 1.54847,-1.05762 3.04417,1.13222 1.49571,2.18984 z m -15.8602,-14.16191 c -0.58409,0.18461 -1.16895,0.36673 -1.75224,0.55384 -0.62064,0.1991 -1.25774,0.35435 -1.8595,0.6048 -0.56097,0.23347 -1.08053,0.55619 -1.61674,0.842 -1.64872,0.87876 -3.19741,1.904 -4.8229,2.82524 -0.46527,0.41386 -0.93412,0.82374 -1.39583,1.24158 -0.57336,0.51888 -1.1141,1.07481 -1.70932,1.56847 -1.46555,1.21554 -2.4325,1.67229 -3.75857,3.01445 -0.4816,0.48743 -0.86234,1.06522 -1.30401,1.58909 -0.41353,0.4905 -0.84091,0.96915 -1.26135,1.45372 -1.08948,1.51362 -1.7253,2.67078 -1.55293,4.57192 0.019,0.20975 0.0235,0.44122 0.14129,0.61584 0.0946,0.14033 0.29478,0.16636 0.44217,0.24955 0.21547,0.12909 0.40966,0.30299 0.64607,0.38788 0.98628,0.35414 2.19243,0.40861 3.20324,0.4567 2.62524,0.12491 5.18484,-0.14031 7.79578,-0.38253 4.08755,-0.79625 1.52343,-0.23896 5.47309,-1.23267 0.85851,-0.21599 1.73054,-0.38139 2.57913,-0.6336 1.30913,-0.3891 1.98647,-0.74204 3.16382,-1.2842 1.60606,-0.73809 2.64988,1.53324 1.04383,2.27133 v 0 c -3.97406,1.15406 -7.97684,2.16723 -12.04735,2.92722 -2.72431,0.24887 -5.42203,0.58323 -8.15983,0.62418 -0.8059,0.012 -1.62148,0.11988 -2.41797,-0.004 -1.29262,-0.20026 -2.31023,-0.91883 -3.40089,-1.55287 -0.28778,-0.39689 -0.68715,-0.73317 -0.86332,-1.19066 -0.1556,-0.40407 -0.0809,-0.8628 -0.0941,-1.2956 -0.0158,-0.51761 -0.0709,-1.04161 0.007,-1.55352 0.26489,-1.7342 1.1143,-3.27372 2.33772,-4.49928 0.44707,-0.47049 2.48471,-2.62511 2.91847,-3.03868 0.56678,-0.54039 1.18353,-1.02628 1.75773,-1.55878 0.59379,-0.55064 1.14331,-1.14833 1.7454,-1.68988 0.60045,-0.54006 1.23986,-1.03517 1.85979,-1.55277 0.533,-0.48376 1.06598,-0.96753 1.59898,-1.45131 1.47466,-0.9799 1.88598,-1.29918 3.46416,-2.15638 2.29254,-1.2452 4.73964,-2.15646 7.15161,-3.13403 1.70593,-0.4859 2.3931,1.92664 0.68718,2.41255 z m -38.61226,15.23944 c -2.20914,1.67816 -4.41377,2.50674 -7.18496,2.47512 -0.46352,-0.005 -2.19789,-0.20857 -2.5592,-0.24814 -0.0523,5e-5 -1.78649,9e-4 -1.87035,0.009 -0.19841,0.0198 -0.38278,0.1222 -0.58127,0.14116 -0.37296,0.0356 -1.51848,-0.0521 -1.76863,-0.22228 -0.29403,-0.19994 -0.38833,-0.59575 -0.58249,-0.89363 0.0836,-1.91374 0.29308,-2.49089 2.20085,-1.87329 1.74709,0.97247 0.37182,3.44323 -1.37528,2.47076 v 0 c 1.75194,0.73044 1.72619,-0.25513 1.69175,-1.77719 -0.2047,-0.14095 -0.54737,-0.48092 -0.87297,-0.45718 -0.0909,0.007 0.17283,0.069 0.26396,0.0717 1.04982,0.0319 2.09481,-0.22236 3.14378,-0.0356 1.92169,0.1416 4.48688,0.734 6.19621,-0.35188 0.45889,-0.29153 0.82217,-0.71155 1.23326,-1.06732 1.24342,-1.46044 3.30879,0.29802 2.06537,1.75845 z m 69.64705,-49.20925 c 0.97411,0.10743 1.56119,0.42163 2.35801,-0.28661 0.23117,-0.20548 -0.0453,-1.95768 -0.0797,-2.23012 -0.1899,0.94365 -0.25625,0.46328 1.05974,1.27616 0.0515,0.0318 -0.0667,-0.13316 -0.12712,-0.12963 -0.14806,0.009 -0.27886,0.10171 -0.41479,0.16103 -0.86777,0.37874 -0.56165,0.24487 -1.44982,0.99784 -0.83984,0.84504 -1.69328,1.82196 -2.17353,2.93336 -0.0937,0.21763 -0.0638,0.47032 -0.11754,0.7011 -0.0849,0.3644 -0.27591,0.70874 -0.29786,1.08226 -0.0143,0.24432 0.12849,0.47232 0.19274,0.70848 0.65989,-0.56573 -0.1924,1.14728 0.21559,1.23042 0.29273,0.0597 0.19313,-0.25059 0.32279,-0.33567 0.49101,-0.32239 1.06729,-0.49113 1.60617,-0.72485 1.95249,-0.44059 0.70644,0.0268 2.47605,-1.2102 0.37662,-0.26328 0.80719,-0.44819 1.16649,-0.73467 0.81039,-0.6461 0.76325,-0.90628 1.41778,-1.63797 0.2266,-0.25331 0.48988,-0.47127 0.73482,-0.70691 1.03485,-1.71708 1.28935,-1.24651 3.02281,-0.23017 0.10046,0.0589 0.17068,0.16717 0.21647,0.27421 1.05152,2.4595 -0.8405,-1.30759 0.57725,1.42344 0.63602,1.48945 -0.11188,0.23893 0.89238,0.96199 0.22137,0.15935 0.34439,0.42848 0.5566,0.59984 0.4071,0.32875 1.40622,0.85124 1.88838,0.95024 0.30104,0.0619 0.61436,-0.0203 0.92154,-0.0305 1.32191,-0.14316 0.58054,-0.0603 2.22366,-0.25265 1.82771,-0.21257 2.12832,2.37219 0.30061,2.58475 v 0 c -1.83502,0.19025 -0.89715,0.1088 -2.81396,0.2404 -1.47988,-0.23691 -2.94054,-0.56458 -4.23623,-1.37942 -0.29106,-0.183 -0.49927,-0.47321 -0.76002,-0.69732 -0.30668,-0.2636 -0.70046,-0.4404 -0.94151,-0.76511 -0.24616,-0.3316 -0.31712,-0.76265 -0.47568,-1.14398 -0.22858,-0.36781 -0.48781,-0.71708 -0.6982,-1.0956 -0.063,-0.1133 -0.28065,-0.37162 -0.15173,-0.35807 0.55098,0.0579 1.0286,0.49122 1.58235,0.5085 0.1023,0.003 0.99974,-1.66841 -0.18767,0.24301 -2.14077,2.2144 1.00154,-0.97877 -1.59465,1.44314 -0.3522,0.32856 -0.63386,0.72971 -0.99822,1.04471 -1.2286,1.06216 -2.68278,1.90108 -4.2274,2.39598 -1.3174,0.65434 -2.85361,1.4252 -4.36314,0.70322 -1.04852,-0.50145 -1.34685,-2.11193 -1.29916,-3.11543 -0.0179,-0.94294 -0.10239,-1.72069 0.1637,-2.64769 0.13701,-0.47742 0.37926,-0.91842 0.58707,-1.36953 0.626,-1.35721 1.37033,-2.66219 2.5873,-3.57951 0.41593,-0.36875 2.66403,-2.28488 3.33824,-2.14484 0.55054,0.11436 1.1487,0.25401 1.56324,0.63393 0.29482,0.2702 0.2485,0.76026 0.37275,1.14038 0.35067,1.76577 -0.10232,3.8767 -1.87237,4.77992 -0.90795,0.46329 -2.58354,0.31893 -3.54299,0.30232 -1.77776,-0.33855 -1.29897,-2.85268 0.47879,-2.51414 z m -15.98904,6.72853 c -1.24374,2.68086 -2.51961,5.36426 -3.53268,8.14432 -0.27907,0.7657 -0.46096,1.56455 -0.74025,2.33018 -0.44622,1.22325 -0.993,2.40788 -1.45254,3.62619 -0.49425,1.31898 -0.45694,1.19117 -0.90167,2.48386 -0.09,0.26156 -0.20331,0.51684 -0.26318,0.78693 -0.0167,0.0745 0.10481,0.26128 0.0372,0.22588 -3.03062,-1.58681 -2.99909,-0.76538 -1.87014,-2.68568 0.7321,-2.01026 1.62929,-3.95368 2.71974,-5.79567 0.41314,-0.69788 0.92826,-1.33458 1.31096,-2.0496 0.61691,-1.15264 1.6828,-3.88213 2.16757,-5.08071 1.01583,-1.6525 1.54198,-3.53944 2.43519,-5.24893 0.40884,-0.78258 0.9613,-1.48355 1.38072,-2.26051 0.77132,-1.42889 0.85827,-2.22434 1.77397,-3.51643 0.30056,-0.42409 0.69675,-0.77156 1.04512,-1.15735 0.81473,-0.21756 1.20963,-1.21205 1.99161,-1.48388 1.19055,-0.41387 1.87746,-0.0245 2.86891,0.64643 0.31463,0.21296 0.61827,0.46925 0.82097,0.79057 0.28483,0.45151 0.40767,0.98677 0.6115,1.48016 0.089,0.78742 0.30716,2.18774 0.1778,3.00797 -0.0895,0.56733 -0.33559,1.09875 -0.48634,1.65296 -0.0682,0.25063 -0.61314,2.56672 -0.75715,2.8683 -0.24187,0.50656 -0.62282,0.93408 -0.93423,1.40111 -0.87124,1.31038 -1.93176,2.76207 -3.51453,3.26053 -0.39416,0.12413 -0.81347,0.27272 -1.22187,0.20968 -0.43643,-0.0674 -0.79339,-0.38798 -1.19007,-0.58202 -1.60607,-1.13515 -7.2e-4,-3.40647 1.60534,-2.27131 v 0 c -0.12183,0.017 -0.25581,-0.005 -0.36549,0.0511 -0.0601,0.0305 -0.15809,0.17969 -0.0907,0.18045 0.95291,0.0106 2.19082,-1.47937 2.65097,-2.1819 0.8455,-1.28596 1.04991,-2.10461 1.4608,-3.59659 0.17574,-0.63795 0.46549,-1.53538 0.3958,-2.21679 -0.028,-0.27408 -0.20034,-0.51331 -0.30051,-0.76995 0.21654,-1.54274 0.15701,0.22868 -0.49132,-1.11745 -0.0533,-0.11066 0.25798,-0.18866 0.21087,-0.30201 -0.19279,-0.46357 -1.6763,0.77549 -1.58112,0.60227 -0.25342,0.31422 -0.50154,0.6328 -0.76025,0.94269 -0.34115,0.40862 -0.75353,0.7634 -1.03914,1.2126 -0.39438,0.62029 -0.60589,1.3433 -0.98598,1.97245 -0.43517,0.72026 -1.02702,1.33875 -1.45308,2.06442 -0.77914,1.32703 -1.75412,3.73937 -2.35011,5.13571 -1.4388,3.52613 -0.67738,1.8212 -2.33206,5.23277 -0.66726,1.37577 -1.42561,2.71039 -2.00931,4.12365 -0.50994,1.23507 -0.77049,2.5647 -1.36844,3.76782 -0.77309,2.04239 -0.10993,1.51816 -3.27518,0.59722 -0.0853,-0.0249 0.18785,-0.042 0.24167,-0.11269 0.16823,-0.22118 0.30206,-0.47133 0.40031,-0.73127 1.05267,-2.78487 -0.49798,0.35495 0.98664,-2.44938 0.54881,-1.18112 0.98576,-2.41264 1.54798,-3.58745 0.35289,-0.7378 0.85273,-1.40206 1.17639,-2.15314 0.39631,-0.91975 0.63157,-1.90115 0.97594,-2.84158 3.20037,-8.73952 -0.74204,2.44914 2.03962,-5.51265 0.641,-1.57922 2.87437,-0.67271 2.23337,0.90652 z m -15.07669,-2.13303 c -0.57524,0.21899 -1.19296,0.34868 -1.7257,0.65696 -0.48901,0.28299 -0.86942,0.7219 -1.2964,1.09189 -0.3126,0.27088 -0.6432,0.52497 -0.92204,0.83048 -0.67104,0.73519 -1.16352,1.68369 -1.71375,2.51049 0.0535,0.44857 -0.29268,0.81947 -0.32405,1.24816 -0.004,0.0492 0.11943,-0.0307 0.12453,-0.0797 0.0182,-0.17425 -0.0694,-0.3469 -0.0619,-0.52193 10e-4,-0.0324 0.0555,-0.0349 0.0862,-0.045 0.18582,-0.0608 0.37479,-0.11146 0.56218,-0.16719 2.03533,-0.29423 3.71172,-1.51361 5.3219,-2.70521 1.82911,-1.35361 1.1592,-0.80342 2.69037,-2.2484 1.70204,-2.26407 0.0537,0.0554 1.15818,-1.8019 0.15665,-0.26336 0.44331,-0.4601 0.523,-0.75597 0.0345,-0.12811 -0.17969,-0.20142 -0.23233,-0.32321 -0.0508,-0.11742 -0.0557,-0.25028 -0.0705,-0.37739 -0.004,-0.0366 0.0258,0.0692 0.0386,0.10374 0.83277,0.20374 1.6778,0.36265 2.4983,0.61124 0.0578,0.017 -0.13295,0.0423 -0.15078,0.1 -0.0797,0.25775 -0.0468,0.54177 -0.12718,0.79931 -1.14526,3.67002 0.34411,-1.78985 -1.06989,2.07421 -0.10654,0.29119 -0.0632,0.6169 -0.0949,0.92534 -0.0606,0.39804 -0.28435,2.48487 0.34147,2.70696 0.0636,0.0226 -0.0422,-0.1659 0.0149,-0.20185 0.09,-0.0566 0.21259,-0.006 0.31887,-0.008 0.41187,-0.58519 -0.0449,-0.0279 1.23346,-0.63754 0.31711,-0.15125 0.60468,-0.35791 0.90702,-0.53686 1.49159,-0.94627 2.82981,1.16318 1.33823,2.10943 v 0 c -1.31982,0.86079 -2.51611,1.62098 -4.12977,1.83033 -0.95942,-0.2883 -1.57387,-0.308 -2.2347,-1.16962 -0.8442,-1.10069 -0.52242,-3.30001 -0.31011,-4.54986 0.11601,-0.45678 0.2321,-0.91352 0.34815,-1.37029 0.13885,-0.35007 0.31188,-0.68835 0.41749,-1.04984 0.0938,-0.32133 0.11852,-0.65893 0.17778,-0.98839 0.0766,-0.23228 0.15355,-0.46444 0.22966,-0.69688 0.0738,-0.22553 -0.0103,-0.62116 0.22037,-0.67694 0.92314,-0.22331 1.89904,-0.0436 2.84855,-0.0654 -0.0532,0.90115 0.0751,1.86573 -0.26663,2.72986 -0.0963,0.24252 -0.37187,0.37403 -0.50372,0.59919 -1.25333,2.14051 0.0625,0.85712 -1.82575,2.30623 -2.81065,2.60339 -5.69373,4.87514 -9.40136,6.06789 -0.45408,0.0465 -0.91034,0.20394 -1.36225,0.13963 -0.69884,-0.0995 -1.92806,-1.00722 -2.21254,-1.56872 -0.4939,-0.97485 0.0614,-1.24419 0.31322,-2.0053 0.12278,-0.37109 0.17697,-0.76148 0.26545,-1.14222 1.44782,-1.90401 -10e-4,-0.0343 1.50346,-1.87088 0.32098,-0.39178 0.59097,-0.82789 0.9465,-1.18861 1.29626,-1.3152 3.0183,-2.15871 4.64621,-2.96468 1.60998,-0.68036 2.57214,1.5965 0.96215,2.27684 z m -28.40692,-6.4972 c 3.24536,-1.75599 6.19087,-4.06826 9.60951,-5.50854 0.78773,-0.33188 1.61008,-0.57468 2.41512,-0.86202 0.86231,-0.25336 1.70756,-0.57429 2.5869,-0.76005 0.96303,-0.20344 1.95202,-0.25572 2.92501,-0.40432 3.01903,-0.46107 2.35863,-0.47569 5.27736,-0.78548 0.66357,-0.0704 1.32952,-0.19618 1.9957,-0.15754 0.58885,0.0342 1.15309,0.24908 1.72965,0.37362 0.44017,0.40716 1.01094,0.70796 1.32051,1.22146 2.12681,3.52776 -2.11657,6.99803 -4.27767,9.15731 -1.56279,1.20825 -2.50768,2.01127 -4.21062,3.03356 -0.74437,0.44685 -1.53915,0.80416 -2.29836,1.22528 -0.63474,0.35208 -1.23503,0.76646 -1.8828,1.09393 -1.04425,0.5279 -2.15085,0.92227 -3.22182,1.39359 -0.98829,0.10554 -1.92112,0.18494 -2.90426,0.089 -2.00146,-0.43159 -1.3911,-3.26207 0.61035,-2.83048 v 0 c -2e-4,0.0685 -0.0661,0.18678 -5e-4,0.2057 0.51559,0.14894 1.09993,-0.18099 1.60988,-0.0176 0.41463,-0.13633 0.82134,-0.29964 1.2439,-0.40898 0.53176,-0.1376 1.10393,-0.12763 1.61432,-0.33062 0.67378,-0.26798 1.25961,-0.71893 1.89645,-1.06568 0.72031,-0.3922 1.47204,-0.72793 2.17467,-1.151 1.17521,-0.70761 2.80792,-1.96932 3.90305,-2.787 1.22895,-1.29767 2.79624,-2.70953 3.46728,-4.42974 0.12036,-0.30982 0.0893,-0.66055 0.17556,-0.98153 0.22906,-0.85247 0.3322,-0.0686 0.0529,-1.01031 -2.1211,-0.6784 -2.90939,-0.52573 -5.1722,-0.19937 -2.63701,0.38033 -5.28751,0.7739 -7.83868,1.56781 -0.70997,0.28724 -1.43615,0.53727 -2.12989,0.86173 -0.66689,0.31192 -1.29266,0.70534 -1.94605,1.04462 -2.51104,1.30386 -5.00349,2.64087 -7.23849,4.39964 -1.39796,1.05129 -2.8847,-0.92569 -1.48676,-1.97699 z m 12.49172,1.44693 c -1.07951,2.30498 -0.5229,0.78291 -1.02416,3.02163 -0.10964,0.48974 -0.27335,0.96711 -0.36723,1.46011 -0.08,0.42029 -0.03,0.86468 -0.15349,1.27433 -0.12879,0.42737 -0.40411,0.79619 -0.59253,1.20083 -0.16476,0.35379 -0.31117,0.71583 -0.46671,1.07378 -0.17802,1.66432 -0.9265,3.16206 -1.29933,4.77534 -0.0906,0.39207 -0.10124,0.79859 -0.16615,1.19573 0.0571,0.0905 0.11407,0.18104 0.1711,0.27156 -0.15885,2.08959 -3.11395,1.86493 -2.9551,-0.22464 v 0 c 0.0185,-0.11904 0.0371,-0.23804 0.0557,-0.35707 0.11691,-0.70723 0.16504,-1.13621 0.40896,-1.85775 0.12018,-0.3554 0.32386,-0.67931 0.4391,-1.03635 0.65452,-2.02923 -0.0629,-0.34102 0.43951,-2.45052 0.11908,-0.49998 0.32531,-0.97509 0.48801,-1.46263 0.42436,-0.93912 1.0045,-1.93143 1.25933,-2.93401 0.12638,-0.49748 0.11408,-1.02408 0.24679,-1.5199 0.30863,-1.15321 0.93047,-2.20863 1.13803,-3.39574 0.68259,-1.68169 3.06086,-0.71636 2.37827,0.96533 z m -22.76233,11.07927 c -1.46493,-0.28813 -2.38928,-0.52335 -3.86951,-0.61419 -4.85956,-0.29826 1.60249,0.26694 -2.52529,0.0629 -1.40185,-0.0693 -0.67216,-0.41042 -1.52814,0.17472 -0.99987,-0.1512 -3.486,0.40727 -4.20328,-0.47002 -0.12089,-0.14791 0.36587,0.11001 0.54881,0.16502 2.08401,-0.75548 7.8e-4,-0.34465 -0.60228,-2.67996 1.74942,-1.00834 3.17544,1.46571 1.42602,2.47405 v 0 c -0.15867,0.11456 -0.32059,0.46259 -0.47604,0.34362 -2.70621,-2.07099 -2.38321,-1.75211 -0.83307,-3.00209 0.42318,0.0146 0.85746,-0.0537 1.26954,0.0437 0.0862,0.0203 -0.0437,0.21676 0.0313,0.26386 0.1429,0.0897 0.34121,0.0171 0.50126,0.0705 0.0679,0.0227 0.0841,0.13864 0.15494,0.1485 0.66425,0.0928 1.01946,-0.0576 1.65539,-0.21106 0.42224,-0.0213 0.84449,-0.0425 1.26673,-0.0638 0.27978,0.0672 0.55177,0.19162 0.83933,0.20151 0.40072,0.0138 0.79498,-0.14645 1.19566,-0.13155 0.55818,0.0208 1.10574,0.15921 1.65875,0.23772 2.66696,0.37867 0.96528,0.1231 3.7633,0.55991 1.71589,0.19334 1.44248,2.61998 -0.27341,2.42664 z m 48.35045,-57.84012 c -0.0795,0.51481 -0.15894,1.02964 -0.23855,1.54445 -0.0467,0.3024 -0.0907,0.60524 -0.14058,0.90713 -0.0317,0.19162 0.0887,0.59568 -0.10422,0.57333 -2.51236,-0.29096 -3.15578,-0.24346 -2.68975,-1.81139 0.95813,0.16737 1.91627,0.33474 2.87441,0.50211 -0.1045,0.0477 0.1977,1.18014 0.0372,0.91895 -0.36506,-0.59411 -0.55596,-1.27899 -0.83394,-1.91849 1.99023,0.66469 1.05021,3.47932 -0.94003,2.81463 v 0 c -0.37363,-0.69413 -0.63547,-1.46126 -1.12088,-2.08237 -0.13275,-0.16985 -0.16484,0.54864 -0.0328,0.6459 0.92029,0.0813 1.84059,0.16267 2.76088,0.24401 0.25406,-0.94606 -0.47743,-0.11718 -2.7613,-0.42229 -0.0731,-0.01 0.14223,-0.0646 0.18042,-0.12756 0.15101,-0.24905 0.30616,-0.50611 0.37541,-0.78903 0.11784,-0.48116 0.11941,-0.98352 0.17912,-1.4753 0.33652,-1.73567 2.79114,-1.25977 2.45462,0.47591 z m 17.962,12.32772 c 2.01776,-1.2304 4.2852,-2.11195 6.17166,-3.55939 0.36217,-0.27789 0.63265,-0.659 0.96774,-0.96899 2.2556,-2.08666 -0.13088,0.30886 1.8197,-1.69071 0.31675,-0.41835 0.9557,-1.22351 1.23282,-1.71888 0.18824,-0.33648 0.29901,-0.71388 0.49974,-1.04313 0.12056,-0.19822 0.32606,-0.33382 0.45514,-0.52661 0.35363,-0.52817 0.30099,-0.45798 -0.0243,-0.4241 -0.0142,-0.14735 -0.0283,-0.29466 -0.0425,-0.442 0.0101,-0.25986 0.0471,-0.52004 0.0303,-0.77955 -0.006,-0.0954 -0.0925,-0.17404 -0.098,-0.26945 -0.0142,-0.24589 0.11631,-0.50381 0.0396,-0.73785 -0.045,-0.1371 -0.18441,0.26701 -0.14815,0.40666 0.0453,0.17453 0.23916,0.26991 0.35874,0.40486 -0.0856,0.002 -0.33534,-0.0273 -0.25669,0.006 0.13678,0.0582 0.34911,-0.0453 0.44008,0.0723 0.0621,0.0801 -0.16789,0.11413 -0.24522,0.1796 -0.21784,0.18443 -0.42705,0.37884 -0.63951,0.56947 -1.13033,1.0142 -0.69212,0.47303 -1.40384,1.64875 -0.25201,0.37342 -0.50404,0.74683 -0.75607,1.12024 -0.23405,0.39631 -0.44568,0.80672 -0.70209,1.18894 -0.31595,0.47098 -0.72492,0.8785 -1.01272,1.3672 -0.30065,0.51057 -0.49293,1.07765 -0.74334,1.61464 -0.98858,2.1198 -0.54714,0.92195 -1.1989,3.1513 -0.17585,1.08841 -0.32913,2.23555 -0.62461,3.30221 -0.13861,0.50046 -0.35246,0.9775 -0.50189,1.47484 -0.25167,0.83756 -0.32479,1.68335 -0.6163,2.50879 -0.28331,1.62645 -0.0723,0.0922 0.0918,0.18932 0.1518,0.0899 0.007,0.35378 0.0348,0.52805 0.0168,0.10696 0.20395,0.32519 0.0968,0.30994 -3.08969,-0.43979 -3.20368,0.11716 -2.58936,-1.10264 0.27024,-0.88075 0.2407,-1.01599 0.97219,-1.87846 0.24192,-0.28524 0.63067,-0.42826 0.85286,-0.72913 0.19818,-0.26844 0.20121,-0.64268 0.37214,-0.92928 1.00935,-1.29482 0.57261,-0.6182 1.32108,-2.02282 1.08422,-1.35974 2.24796,-2.64218 3.67225,-3.65355 3.01772,-2.14288 -1.14249,0.95691 1.68508,-1.17075 0.25756,-0.16537 0.47442,-0.42738 0.77268,-0.49612 1.0047,-0.23159 2.43016,0.2038 2.90852,1.18534 0.35351,0.72556 0.16681,1.19772 0.0623,1.94944 -0.3599,0.82528 -0.65144,1.61087 -1.2161,2.3383 -0.24327,0.31365 -0.60082,0.52141 -0.86974,0.81338 -0.67321,0.7309 -0.90459,1.3093 -1.71176,1.91905 -0.31199,0.23567 -0.68949,0.36891 -1.03423,0.55338 -0.53368,0.27647 -0.98759,0.68143 -1.50809,0.97827 -0.0654,0.0373 -0.15537,0.0158 -0.21858,0.0567 -0.24647,0.15947 -0.4048,0.53377 -0.69835,0.53657 -0.55126,0.005 -1.23055,-0.0819 -1.57165,-0.51499 -0.35712,-0.45346 -0.12631,-1.14746 -0.18946,-1.72119 0.66456,-1.24175 1.14939,-1.09838 2.51741,-0.58837 0.17866,0.0667 0.28701,0.25747 0.45649,0.34493 0.24101,0.12437 0.50829,0.18937 0.76242,0.2841 0.28192,0.15454 0.56385,0.30907 0.84578,0.46356 0.33276,0.10966 0.67259,0.19985 0.99829,0.32899 0.33113,0.13137 0.63773,0.31968 0.96887,0.45105 0.88458,0.35069 1.276,0.33904 2.17973,0.7499 1.21846,0.55397 0.42789,0.6291 1.42692,0.34791 0.64243,0.12806 1.06789,0.25067 1.7238,0.23864 0.0588,-0.001 0.1049,-0.0532 0.1574,-0.0798 0.16641,0.007 0.33283,0.0147 0.49925,0.022 2.01167,-0.0826 2.12846,2.76235 0.1168,2.84493 v 0 c -0.93196,-0.21266 -1.89614,0.22355 -2.78789,-0.35192 -0.41101,-0.0668 -0.83309,-0.0845 -1.23303,-0.20048 -0.31526,-0.0914 -0.5881,-0.29329 -0.89266,-0.41571 -1.36106,-0.54691 -2.77501,-0.95448 -4.13781,-1.49669 -1.61467,-0.86538 -0.16646,-0.1752 -1.78336,-0.7232 -0.29684,-0.10056 -0.99889,-0.067 -0.87115,-0.35373 0.13454,-0.30197 0.66011,0.13928 0.98742,0.0928 0.33569,-0.0477 0.62651,-0.4826 0.81304,-0.70704 -0.13961,-0.50309 -0.0487,-1.14108 -0.41883,-1.50928 -0.33952,-0.33772 -0.92702,-0.26266 -1.40412,-0.30398 -0.10531,-0.009 -0.36251,0.21721 -0.27458,0.15858 0.79815,-0.53228 1.41365,-0.64938 2.19718,-1.1726 0.71365,-0.40717 1.63575,-1.0821 2.15461,-1.71164 0.25997,-0.31543 0.41459,-0.70521 0.64386,-1.04362 0.78256,-1.15514 0.18053,-0.0342 0.68491,-1.03853 0.27707,-0.0453 0.0244,0.11495 0.38094,0.15934 0.14334,0.0177 1.13516,-0.63653 10e-4,-0.14598 -0.86358,0.51193 -1.55632,1.17144 -2.36175,1.75802 -0.26635,0.19397 -0.58689,0.31015 -0.83992,0.52119 -0.42638,0.35562 -1.03875,1.23243 -1.35112,1.64944 -0.67906,0.99488 -1.27723,2.02061 -1.9396,3.02569 -0.20312,0.30818 -0.37553,0.64051 -0.61812,0.91868 -0.13696,0.15701 -0.43026,0.17416 -0.50462,0.36877 -0.091,0.23787 0.0487,0.507 0.0731,0.7605 -0.61521,1.53616 -0.10015,0.86966 -3.19844,0.39758 -0.0679,-0.0103 0.0653,-0.21548 0.0552,-0.53486 -0.0424,-1.33112 -0.48762,-1.0639 0.18634,-1.31376 0.19525,-0.59464 0.27568,-0.80174 0.4249,-1.49619 0.0957,-0.44552 0.1115,-0.90931 0.24585,-1.34474 0.12768,-0.41392 0.37093,-0.78338 0.53453,-1.18446 0.55812,-1.3673 0.57312,-1.59856 0.99502,-3.09761 0.12982,-0.69074 0.18295,-1.4004 0.38944,-2.0722 0.52424,-1.70547 1.69586,-3.14174 2.52727,-4.69288 0.26443,-0.49342 0.46337,-1.02031 0.73091,-1.51206 0.22812,-0.41931 0.50284,-0.81156 0.75427,-1.21734 0.2868,-0.37064 0.55151,-0.75947 0.86041,-1.1119 0.098,-0.11188 1.45414,-1.42452 1.60501,-1.58124 0.23094,-0.23988 0.36533,-0.6083 0.67124,-0.73982 0.56189,-0.24156 1.59099,-0.0946 2.21089,-0.0382 0.37833,0.26093 0.85932,0.41513 1.13494,0.78293 0.0589,0.0786 0.42463,1.86366 0.43276,2.1055 0.002,0.0714 -0.0965,0.10549 -0.1447,0.15825 0.042,0.22855 0.084,0.45712 0.12608,0.68567 -0.0518,0.61489 -0.0303,1.57662 -0.39715,2.16394 -0.1423,0.22779 -0.42742,0.33412 -0.59277,0.54575 -0.75813,0.97036 -1.21769,2.33774 -2.17328,3.18604 -1.1181,0.92448 -2.22683,1.92666 -3.46141,2.6957 -2.02645,1.26231 -4.27958,2.17933 -6.12011,3.74215 -1.53252,0.85151 -2.73674,-1.3158 -1.20423,-2.16731 z m -9.5391,-7.08679 c 1.37753,-0.33469 2.77451,-0.9456 3.67441,-2.10192 0.23717,-0.30474 0.34139,-0.69544 0.55725,-1.01562 1.7218,-2.5538 0.32329,0.1141 1.68244,-2.74496 0.28147,-1.10802 1.25088,-1.82132 1.71664,-2.81762 0.19687,-0.4211 0.21493,-0.90631 0.36978,-1.3446 0.28199,-0.79816 0.62978,-1.051367 0.67411,-1.900669 0.004,-0.07816 -0.10531,-0.115777 -0.15796,-0.173696 -0.46,0.564799 -1.11057,0.841558 -1.88884,1.180405 -1.24906,1.29662 -2.67103,2.43271 -3.6074,4.00573 -0.44058,0.74015 -0.74582,1.55361 -1.08209,2.34662 -0.33357,0.78661 -1.73057,4.49788 -2.0051,5.22234 -0.12597,1.77644 -0.95545,3.40176 -1.23046,5.14283 -0.12902,0.81685 -0.069,1.65295 -0.13696,2.47713 -0.10057,1.22041 -0.39621,2.93386 -0.3911,4.17985 0.002,0.42298 0.10483,0.83944 0.15723,1.25916 0.15915,0.27622 0.33791,0.54204 0.47746,0.82866 0.96685,1.98587 -0.17476,-0.0215 -0.93964,0.16413 -0.0994,0.0241 -0.12699,0.16037 -0.19053,0.24055 -0.009,-0.0944 -0.0171,-0.18887 -0.0255,-0.28327 0.79912,-1.93168 3.531,-0.80125 2.7317,1.13039 v 0 c -0.13737,0.25928 -0.27464,0.51859 -0.41201,0.77787 -0.91407,1.01068 -1.52287,1.69608 -2.96988,0.59629 -0.92489,-0.70295 -0.51876,-2.30827 -1.12347,-3.1861 -0.0404,-1.19175 -0.13563,-2.6359 0.0247,-3.81801 0.10097,-0.74454 0.35393,-1.46146 0.48454,-2.20138 0.47185,-2.67322 0.62755,-5.41376 1.68407,-7.95923 1.17461,-3.52661 2.24189,-7.28673 4.55003,-10.28047 0.5945,-0.771112 1.86358,-1.896792 2.61423,-2.589863 0.57673,-0.488314 1.38149,-1.299065 2.16682,-1.549608 1.19513,-0.381294 2.61254,-0.09825 3.41512,0.95185 0.26535,0.347202 0.31887,0.813742 0.47831,1.22062 -0.0124,0.402533 0.0524,0.814972 -0.0371,1.207599 -0.0744,0.325702 -0.31628,0.589862 -0.44351,0.898772 -0.15963,0.38767 -0.25612,0.79936 -0.41545,1.18715 -0.61044,1.48705 -1.54509,2.75468 -2.27341,4.18077 -0.80573,1.57087 -1.63195,3.18747 -2.87136,4.47722 -1.27547,1.32727 -2.9619,2.04924 -4.60254,2.80601 -1.77832,0.46281 -2.43284,-2.05212 -0.65451,-2.51493 z m -11.00243,7.09115 c -0.51258,2.89893 -1.49549,5.80382 -1.48979,8.78018 0.001,0.67084 0.17196,1.16053 0.34412,1.77848 0.43076,1.65987 -0.0431,-0.20678 -0.10604,-0.23751 -0.51975,-0.25372 -1.1543,-0.0753 -1.73144,-0.11291 1.00663,-1.54614 3.19319,-0.12255 2.18656,1.42358 v 0 c -1.08821,0.44963 -3.39617,2.23433 -3.05736,-0.57918 -0.0328,-0.85409 -0.0918,-1.65276 0.008,-2.51086 0.15551,-1.33454 0.52256,-2.6372 0.71138,-3.96743 0.11457,-0.80712 0.13749,-1.62588 0.26123,-2.43164 0.12426,-0.80919 0.32134,-1.6055 0.48201,-2.40827 0.18778,-1.69081 2.57895,-1.42525 2.39118,0.26556 z m -26.48045,-13.32435 c -1.42058,6.82537 0.45779,-1.84962 -1.41588,5.60338 -0.24721,0.98332 -0.40837,1.98638 -0.62674,2.9765 -0.19962,0.9051 -0.46697,1.79598 -0.62714,2.70888 -0.33765,1.92451 -0.37534,3.52169 -0.48883,5.46428 -0.0858,0.57796 -0.60411,4.1136 -0.73379,4.82515 -0.119,0.65292 -0.33355,1.2888 -0.41324,1.94767 -0.12008,0.99264 0.20814,1.90288 0.0258,2.87657 -0.95692,-0.2491 -2.09706,-0.13155 -2.87076,-0.74729 -0.3376,-0.26868 0.25785,-0.82363 0.37515,-1.23883 0.10017,-0.35444 0.2166,-0.70634 0.27714,-1.06964 0.32116,-1.92793 0.20779,-3.96251 0.24685,-5.9066 0.13422,-2.66316 0.30062,-5.30905 0.18439,-7.9758 -0.037,-0.84802 -0.15222,-1.69288 -0.1559,-2.54171 -0.0257,-5.92135 0.33613,0.72116 0.0161,-4.15579 0.0304,-1.45196 -0.54637,-2.8816 -0.32646,-4.3386 0.0324,-0.21471 -0.21886,0.68944 -0.005,0.65143 0.94572,-0.16814 1.76938,-0.74826 2.65406,-1.12239 -0.10574,0.39941 -0.0827,0.13372 0.20391,0.74361 0.11341,0.24137 0.18774,0.50449 0.33645,0.72588 0.23439,0.34894 1.51653,1.09975 1.89699,1.33374 0.18953,0.0536 1.69581,0.48858 1.86571,0.49544 0.37901,0.0153 0.74898,-0.12654 1.12706,-0.15735 1.29557,-0.10559 1.76431,0.0182 3.08251,-0.17839 0.5952,-0.0888 1.17663,-0.25323 1.76495,-0.37984 0.60632,-0.2133 1.21301,-0.42559 1.81898,-0.6399 2.5583,-0.90477 1.24532,-0.50229 3.82299,-1.19823 1.10259,-0.29768 2.28824,-0.47578 3.26803,-1.07989 1.07453,-0.51898 1.83951,-1.12558 2.88001,0.71143 0.40828,0.72083 -0.76952,2.03852 -1.06071,2.53474 -0.27898,0.47537 -0.50945,0.97759 -0.76416,1.46638 -1.22555,4.00804 0.13082,-0.48988 -1.15519,3.99595 -0.24729,0.86274 -0.53749,1.71328 -0.76538,2.58134 -0.73788,2.81066 -1.22706,5.69301 -1.81671,8.5369 0.10501,1.62335 -0.25452,3.22851 -0.25922,4.84622 -0.002,0.57459 0.0877,1.1459 0.14221,1.7179 0.0408,0.42812 0.0502,0.86234 0.14346,1.28217 0.0353,0.15884 0.4576,1.25868 0.58003,1.58044 0.86416,0.61349 -0.49068,-0.0894 -0.4972,-0.58294 1.62228,-0.99309 3.0267,1.3012 1.40444,2.29424 v 0 c -0.43486,0.2213 -0.81673,0.65486 -1.30457,0.6639 -1.80012,0.0333 -1.69333,-0.33406 -2.05704,-1.39575 -0.41573,-1.2313 -0.91399,-2.60586 -0.86397,-3.92583 0.0226,-0.59602 0.2844,-1.16274 0.34155,-1.75646 0.71665,-7.44508 -0.8333,3.41717 0.47667,-5.09259 0.91675,-5.31708 2.14625,-10.55441 3.33443,-15.81441 0.0197,-0.0484 0.91597,-2.40225 1.20737,-2.64869 0.13293,-0.11237 -0.0776,0.42054 0.0667,0.51781 0.52931,0.35685 1.21739,0.40926 1.7736,0.72245 0.20144,0.11356 -0.92077,0.10087 -0.65118,0.2392 -2.69259,0.94109 0.31717,-0.0155 -2.23287,0.52581 -0.52457,0.11135 -1.02862,0.30484 -1.54879,0.43515 -0.59312,0.14858 -1.20456,0.2245 -1.78991,0.40127 -0.65095,0.19657 -1.26652,0.49673 -1.91015,0.71608 -0.69856,0.23807 -1.40982,0.43704 -2.11473,0.65557 -1.26634,0.34733 -2.3498,0.70723 -3.6626,0.82918 -0.50542,0.0469 -1.01549,-0.025 -1.52278,-0.007 -1.55337,0.0547 -3.04112,0.29596 -4.44447,-0.58977 -1.1751,-0.70099 -2.31416,-1.40008 -3.17721,-2.49682 -0.35265,-0.44814 -0.45611,-1.10716 -0.76005,-1.58903 0.86715,-0.50676 1.60531,-1.39198 2.60144,-1.52026 0.38912,-0.0501 0.17615,0.76737 0.20876,1.15834 0.0111,0.13295 -0.0726,0.25902 -0.0795,0.39223 -0.0629,1.23611 0.16574,2.47193 0.0658,3.70884 -0.17429,5.05996 0.0217,-1.37103 -0.0565,4.13907 -0.0122,0.85578 -0.0796,1.71053 -0.0781,2.5664 0.002,0.88408 0.0978,1.76679 0.0872,2.65082 -0.0112,0.93418 -0.10183,1.86573 -0.15274,2.7986 0.004,0.86763 0.007,1.73526 0.0113,2.6029 0.10785,4.62506 -0.012,-0.0415 0.13773,4.51771 0.0189,0.57628 0.0689,1.15305 0.0457,1.72919 -0.019,0.47212 -0.0887,0.94195 -0.17195,1.40708 -0.0244,0.1363 -0.011,0.38109 -0.14914,0.38771 -0.93955,0.0446 -1.87399,-0.16477 -2.81099,-0.24715 0.35264,0.44011 0.0556,0.15941 0.21226,-0.61058 0.10265,-0.50447 0.30448,-0.98516 0.40984,-1.48906 0.28685,-1.37211 0.46316,-2.76507 0.70912,-4.14509 0.14881,-0.83493 0.29211,-1.67083 0.43817,-2.50625 0.23929,-1.87849 0.37243,-3.77067 0.65565,-5.64304 0.49572,-3.27726 0.59169,-2.36153 1.30227,-5.70446 0.20853,-0.9811 0.3342,-1.97799 0.50481,-2.96638 0.13616,-0.78882 0.277,-1.57681 0.4155,-2.36521 0.11407,-1.6962 2.51286,-1.53488 2.39879,0.16132 z m -18.60269,14.1813 c -0.0438,0.0117 -4.06787,1.08206 -4.21215,1.11205 -1.02893,0.21388 -2.40924,0.33743 -3.47812,0.50879 -0.96505,0.15473 -1.72832,0.32791 -2.67903,0.5291 -0.49154,0.17881 -1.08909,0.42233 -1.60846,0.49842 -0.83101,0.12175 -0.52721,-0.2236 -1.44553,0.16473 -0.1195,0.0506 0.29097,0.0934 0.38903,0.008 0.30098,-0.26063 0.47346,-0.64023 0.7102,-0.96034 -0.61037,-1.5662 -0.0684,-1.20081 -1.17361,-1.57098 2.09615,-0.0294 2.13769,2.93504 0.0415,2.9644 v 0 c -1.48316,-0.22298 -0.76929,0.13437 -1.72794,-1.65832 0.24834,-0.44225 0.37088,-0.98421 0.7449,-1.32679 1.97737,-1.81114 0.4735,-0.0621 1.17081,-0.16298 0.26257,-0.038 0.5014,-0.18303 0.76327,-0.22564 2.39586,-0.38981 -1.29292,0.53612 1.69235,-0.27967 0.933,-0.15218 1.8561,-0.37046 2.79503,-0.48021 0.26917,-0.0315 3.00756,-0.1449 3.21085,-0.18495 0.21072,-0.0415 3.13543,-1.00639 3.49916,-1.12565 1.54824,-0.92469 2.85595,1.26485 1.3077,2.18955 z m 81.45268,-45.535524 c -1.00949,0.510398 -3.92853,1.446652 -4.65661,2.380411 -0.35199,0.451421 0.13365,0.685301 0.15076,1.064139 0.0127,0.280431 -0.0765,0.556187 -0.1147,0.834274 0.044,0.829583 -0.21356,3.269592 -0.88011,0.243006 -0.0354,-0.16079 0.30039,-0.136518 0.45695,-0.187478 0.30563,-0.09947 0.61841,-0.175438 0.92762,-0.263168 1.58656,-0.654819 2.69321,-1.58341 3.91708,-2.749404 0.49235,-0.469079 1.02936,-0.896123 1.47291,-1.411611 0.54589,-0.634455 2.17838,-3.106424 2.63401,-3.783793 0.44602,-1.480889 1.55266,-2.635171 2.1364,-4.043317 0.24219,-0.583396 0.32955,-1.219974 0.46885,-1.836093 0.33887,-1.498878 0.34252,-2.632523 0.29565,-4.145605 -0.0112,-0.381744 0.0711,-0.777955 -0.0336,-1.145229 -0.0607,-0.212805 -0.24422,-0.389968 -0.43571,-0.500855 -0.24736,-0.143237 -0.2691,0.183269 -0.24122,0.267207 0.0363,0.109375 0.17466,0.195923 0.15436,0.309367 -0.0514,0.287177 -0.23537,0.53389 -0.35301,0.800854 -1.35028,2.000157 -2.02557,4.34796 -2.73961,6.627491 -0.29863,0.953222 -0.65432,1.893966 -0.85132,2.873253 -0.20464,1.017335 -0.2228,2.063503 -0.34895,3.093518 -0.12984,1.060185 -0.27931,2.117877 -0.41897,3.176816 -0.12921,3.231941 -0.56917,5.87424 0.70673,8.909344 0.0794,0.210425 0.15872,0.420844 0.23808,0.631259 0.53199,1.902736 -2.15889,2.655086 -2.69087,0.752351 v 0 c 0.0153,0.03913 0.0307,0.07839 0.046,0.117519 -0.63978,-1.459741 -0.22618,-0.241204 -0.43495,-1.914107 -0.0594,-0.475589 -0.21613,-0.937743 -0.25106,-1.415744 -0.17978,-2.459854 0.51815,-4.86065 0.43175,-7.321207 0.1455,-1.06679 0.29939,-2.13247 0.43648,-3.200374 0.14138,-1.101318 0.20718,-2.213418 0.39891,-3.307093 0.61769,-3.523495 1.86363,-6.971689 3.27479,-10.241925 0.70834,-1.199324 1.00315,-2.320693 2.58691,-2.634578 0.43142,-0.0855 0.87802,0.16527 1.26549,0.373361 1.46098,0.784635 1.95661,2.15176 1.81485,3.725982 0.006,0.971147 0.0673,2.217759 -0.14678,3.173876 -0.12873,0.575067 -0.39306,1.111165 -0.5813,1.669592 -0.23676,0.702151 -0.38857,1.436724 -0.69373,2.111963 -0.66613,1.47391 -1.8743,2.674508 -2.22587,4.311703 -0.46363,0.677397 -0.93425,1.35007 -1.3909,2.032194 -0.47315,0.706781 -0.86625,1.470785 -1.39838,2.134304 -0.62714,0.782001 -2.31543,2.20409 -3.08085,2.858797 -0.51261,0.438462 -0.99389,0.918443 -1.54686,1.304779 -0.49183,0.343612 -1.04865,0.583259 -1.57298,0.874893 -0.34106,0.127481 -2.3846,0.944983 -2.70787,0.826103 -1.36381,-0.501542 -1.67796,-1.293036 -1.50353,-2.40729 0.0134,-0.08565 0.11582,-0.129011 0.17374,-0.193526 0.009,-0.203527 0.0174,-0.407043 0.0261,-0.610563 0.0301,-0.471762 0.11625,-2.159464 0.25065,-2.464597 0.46871,-1.064085 1.44603,-1.496756 2.37239,-2.033579 2.0113,-1.165527 1.58515,-0.90711 3.73031,-1.872737 1.55957,-0.659038 2.49159,1.546511 0.93203,2.205549 z m -44.48435,8.446992 c 2.46978,-2.972786 0.79915,-0.765117 2.94411,-4.182076 0.43374,-0.690961 0.91119,-1.353739 1.34829,-2.042568 0.38603,-0.60835 0.69591,-1.266304 1.12067,-1.848271 0.34938,-0.478674 0.80744,-0.868177 1.19143,-1.319549 0.32486,-0.381877 0.62269,-0.78594 0.93404,-1.178903 0.62167,-0.712884 2.86677,-3.44362 4.10442,-2.782509 1.92113,1.026227 1.39931,1.646165 1.08714,3.091959 -0.5554,1.200282 -0.65508,2.49392 -0.85175,3.778213 -0.11323,0.73941 -0.30459,1.487444 -0.2271,2.246072 0.036,0.352598 0.16889,0.688457 0.25335,1.032684 -0.47624,-0.204852 0.35366,1.255725 0.4894,0.932115 0.0794,-0.190327 -0.32827,-0.359699 -0.2689,-0.557189 0.0439,-0.145986 0.3176,0.0111 0.45371,-0.05755 0.13081,-0.06595 0.18109,-0.23502 0.29889,-0.322077 0.33596,-0.248373 0.70271,-0.452108 1.05407,-0.678158 1.59573,-0.527005 2.6511,-1.758449 3.93502,-2.743837 1.06739,-0.819193 2.25913,-1.516989 3.36931,-2.281246 0.76481,-0.39818 2.98407,-1.193317 3.32744,0.456514 0.46058,2.21293 -0.99863,2.040824 -2.03606,2.120244 -2.05324,-1.252473 -0.98726,-1.115915 1.64584,-0.950849 0.10134,0.0064 -0.25671,0.190932 -0.28955,0.09482 -0.0375,-0.109529 -0.021,-0.805229 -0.014,-1.144989 0.0545,-0.034 0.0995,-0.09568 0.16339,-0.10191 0.39358,-0.03841 0.48925,0.192109 0.85426,0.342422 0.52917,0.216946 0.94445,0.237607 1.5456,0.314289 0.51848,-0.282438 1.21253,0.05033 1.72575,-0.191913 0.10694,-0.05049 0.91642,-1.0105 -0.17822,0.185694 -0.0927,0.04516 0.0289,-0.346305 -0.0806,-0.324844 -0.0536,0.01052 -0.0102,0.358547 -0.0256,0.349115 -1.38419,-0.847898 -0.0955,-0.419153 -0.93228,-0.665549 -0.41001,-0.04148 -0.83663,-0.176157 -1.22702,0.04449 -0.1052,0.0595 -0.15691,0.183964 -0.23949,0.272227 -0.71989,0.769692 -1.2882,1.540172 -1.81423,2.454945 0.0838,0.931607 -0.0618,2.028117 0.23007,2.927149 0.14222,0.438047 1.51081,2.084358 1.84579,2.48259 2.19646,1.42717 4.52891,0.733044 6.77725,-0.180412 1.13013,-0.619584 0.69035,-0.257175 1.39453,-0.988908 1.44956,-1.218401 3.17265,0.831592 1.72308,2.049989 v 0 c -1.45697,0.857573 -0.72184,0.416219 -2.20473,1.325164 -1.73075,0.54792 -3.16306,1.066627 -5.00444,1.054375 -0.57973,-0.0039 -1.16913,0.023 -1.7366,-0.09567 -0.97737,-0.204394 -2.13145,-0.971237 -2.95652,-1.44834 -0.69217,-0.78682 -1.26267,-1.337474 -1.74514,-2.288877 -0.96774,-1.908351 -0.9339,-4.141772 -0.54496,-6.191265 0.21284,-0.406332 0.37137,-0.846087 0.63842,-1.219032 0.25551,-0.356835 0.60922,-0.631898 0.91339,-0.948269 0.64745,-0.67343 1.45,-1.663875 2.38463,-1.976432 0.36404,-0.121752 1.97974,0.139115 2.3712,0.192695 2.1443,0.854175 3.52978,1.327824 2.91884,3.963232 -0.19976,0.359992 -0.33529,0.764098 -0.59936,1.079939 -0.1309,0.156566 -0.35497,0.203037 -0.54191,0.284899 -1.29572,0.567414 -2.01556,0.358228 -3.35075,0.581587 -0.58781,-0.08956 -1.18705,-0.10835 -1.76862,-0.232122 -0.13192,-0.02807 -0.23387,-0.137663 -0.36097,-0.182779 -0.25953,-0.09196 -0.43769,-0.04207 -0.71057,-0.01882 -0.19921,-0.06651 -0.35123,-0.230412 -0.52686,-0.345572 -0.36417,-0.11382 -0.8559,-0.04222 -1.0925,-0.341558 -0.337,-0.426358 -0.3048,-1.044144 -0.42221,-1.574771 -0.0248,-0.111823 -0.11258,-0.312798 -0.002,-0.343525 0.40117,-0.111736 4.77224,-0.09526 1.92909,-1.189295 -0.94799,0.08138 -1.9109,-0.04603 -1.32801,2.043579 0.55003,1.971813 2.57516,0.158374 0.65636,0.807963 -1.44328,0.453063 -0.002,-0.08008 -1.79508,0.978372 -0.4385,0.2588 -0.94147,0.4031 -1.36488,0.685933 -1.39008,0.92855 -2.39923,2.388321 -3.99698,3.019254 -0.89924,0.676597 -1.41794,1.187011 -2.544,1.514867 -0.37676,0.109693 -0.79025,0.170389 -1.17395,0.08812 -2.07702,-0.445335 -2.18046,-0.974616 -2.48625,-2.773494 -0.0582,-1.381736 -0.19762,-2.788614 0.0657,-4.159957 0.0705,-0.366925 0.24066,-0.70885 0.32389,-1.073094 0.71173,-3.116383 -0.20692,0.07235 0.57086,-2.493437 0.10697,-1.426002 -0.18143,-0.221886 1.30086,0.132916 0.16963,0.04058 0.4428,-0.357402 0.28765,-0.437063 -0.23621,-0.12124 -1.06831,0.679565 -1.43659,1.0674 -0.31139,0.327913 -0.58768,0.687473 -0.8815,1.031202 -0.8954,0.799754 -1.35552,1.148758 -2.1302,2.124329 -2.03953,2.56839 -3.5618,5.500461 -5.37934,8.217872 -1.05544,1.349072 -2.96331,-0.143535 -1.90788,-1.492611 z m -28.42702,-22.454201 c 1.21722,-1.487608 2.61244,-3.039974 4.52827,-3.6246 0.63162,-0.192731 1.30696,-0.191651 1.96286,-0.268351 2.08957,-0.244332 1.85474,-0.183212 4.04394,-0.217262 2.17457,0.100624 5.43,-0.354803 7.09737,1.485921 1.11393,1.229765 0.91495,2.13922 0.99684,3.630237 -0.67219,3.246118 -2.37257,6.130612 -4.91591,8.262893 -0.46356,0.388641 -0.96795,0.725807 -1.45193,1.088709 -1.35835,0.46826 -2.11871,1.835859 -3.45107,2.344454 -0.20709,0.07905 -0.51492,0.28408 -0.6554,0.112605 -0.55932,-0.682734 -0.79339,-1.57684 -1.19008,-2.36525 0.93181,-0.712685 1.25458,-1.204898 2.52869,-1.195806 0.58799,0.0042 1.1456,0.275782 1.72884,0.350461 0.62409,0.07989 1.26158,0.02162 1.88423,0.112091 1.31343,0.190822 2.53469,0.634227 3.79134,1.03289 0.62714,0.235017 1.30081,0.371277 1.88138,0.705148 2.67985,1.541375 4.33361,4.777641 4.53736,7.78518 0.0589,0.869959 -0.0979,1.741157 -0.14689,2.611738 -0.19374,0.913653 -0.28877,1.853971 -0.58123,2.740972 -0.29692,0.900613 -0.76429,1.736194 -1.17654,2.590188 -1.01615,2.104771 -2.42051,4.684866 -4.25521,6.215091 -0.55888,0.46613 -1.24936,0.746745 -1.87404,1.120119 -0.54847,0.289283 -1.07488,0.624925 -1.6454,0.867841 -1.36266,0.580218 -3.69324,0.697768 -4.74419,-0.601707 -0.29318,-0.362508 -0.34014,-0.868187 -0.51022,-1.302283 -0.66777,-1.77493 1.84236,-2.719308 2.51013,-0.944387 v 0 c -0.2868,0.517533 -0.12868,0.306389 0.44636,0.602291 0.0999,0.05143 0.15799,0.209018 0.27008,0.20147 0.40385,-0.02703 2.11225,-0.612848 2.42519,-0.714861 1.17655,-0.740008 1.95623,-1.112642 2.88458,-2.223921 0.48304,-0.578213 0.83945,-1.251825 1.23496,-1.893098 0.45278,-0.734142 0.92832,-1.458096 1.30922,-2.231979 0.59418,-1.20729 1.19557,-3.134567 1.62611,-4.418565 -0.0396,-1.185561 -0.0247,-3.041397 -0.3448,-4.230583 -0.6049,-2.247033 -2.40082,-3.707585 -4.41844,-4.662208 -1.8182,-0.497697 -3.29084,-0.870191 -5.18496,-0.933887 -0.43372,-0.01458 -0.86813,-0.0076 -1.30187,0.006 -0.17039,0.0054 -0.39205,0.175054 -0.50885,0.05089 -0.10124,-0.107683 0.11486,-0.272337 0.17229,-0.408506 -0.51661,-0.602142 -0.96524,-1.270038 -1.54982,-1.806439 -0.0736,-0.06741 -0.32269,0.06336 -0.26284,0.14319 0.0852,0.113689 0.28639,0.11409 0.4208,0.06741 0.21704,-0.07495 0.36407,-0.280843 0.55713,-0.405161 2.21438,-1.425934 -0.24381,0.301867 2.10556,-1.395365 1.92763,-1.134499 0.7779,-0.283596 2.3372,-1.908683 0.36933,-0.384898 0.80427,-0.708688 1.13935,-1.123742 1.00179,-1.240885 1.65913,-2.728553 1.68161,-4.330688 0.032,-0.156901 0.29382,-1.233078 0.18239,-1.448382 -0.81752,-1.579697 -4.10715,-1.195351 -5.47458,-1.238896 -1.70817,0.0545 -4.83848,-0.02126 -6.39225,0.821725 -1.13251,0.614419 -1.36587,1.227495 -2.09424,2.267299 -0.93515,1.522767 -3.08866,0.200283 -2.15353,-1.322488 z m 10.09201,4.764238 c -0.4114,2.082952 -0.62033,4.196402 -0.99029,6.286308 -0.30652,1.731444 -0.5612,2.492071 -0.70032,4.240596 -0.0472,0.592584 -0.018,1.188775 -0.0271,1.783153 -0.30904,1.054321 -0.15843,2.187477 -0.40887,3.250366 -0.0938,0.397995 -0.31972,0.753917 -0.44452,1.143296 -0.0633,0.197419 -0.10856,0.403593 -0.11767,0.610701 -0.002,0.03479 0.11732,0.0746 0.0884,0.05531 -0.70964,-0.47203 -1.42034,-0.94247 -2.13052,-1.413703 -0.45343,0.630745 -0.36106,0.79782 -0.45597,0.346499 0.0102,-2.013604 2.85787,-1.999161 2.84766,0.01444 v 0 c -0.1098,1.689248 0.19026,0.970265 -0.80167,2.195477 -0.77208,-0.393789 -1.65611,-0.619758 -2.31626,-1.181325 -0.16665,-0.14179 0.12607,-0.419066 0.18852,-0.628773 0.0969,-0.325222 0.1931,-0.650671 0.28964,-0.976016 0.13753,-0.221573 0.32558,-0.418865 0.41274,-0.664673 0.34969,-0.986231 0.28612,-1.995488 0.32458,-3.023475 0.28538,-2.044778 0.76336,-4.051081 1.03198,-6.097554 0.0941,-0.717044 0.11246,-1.442836 0.2103,-2.159389 0.53208,-3.896872 0.25228,-0.232909 0.45092,-3.581967 -0.14097,-1.801944 2.40736,-2.001294 2.54833,-0.19935 z m -21.3466,19.138879 c -1.40808,0.01259 -2.81662,0.0397 -4.2237,0.09694 -0.29703,0.01207 -0.59388,0.06197 -0.89068,0.04513 -2.42894,-0.137803 -0.23384,-0.200035 -1.68925,-0.136728 -0.44586,0.149737 -2.78239,0.07376 -2.91141,0.443328 0.0362,-0.951939 0.99268,-3.609998 -0.61691,-2.753764 1.92397,-0.637563 2.82561,2.083336 0.90164,2.720898 v 0 c -1.88515,0.03261 -1.41171,0.668707 -1.22343,-2.799872 0.48883,-0.166085 0.64113,-0.256635 1.22371,-0.237354 0.0984,0.0032 0.17503,0.119393 0.2732,0.111973 0.27846,-0.02083 0.5367,-0.171655 0.81509,-0.193487 0.54393,-0.04266 1.07943,0.392484 1.63605,0.04985 2.17417,0.05856 4.34525,0.57587 6.49455,-0.0466 1.90888,-0.149323 2.12007,2.550253 0.21118,2.699573 z m -0.42879,-44.722116 c -1.68841,0.307732 -3.40992,0.550244 -5.12311,0.674147 -0.38444,0.0278 -0.77175,-0.01812 -1.15631,0.008 -1.26392,0.178846 -0.63649,0.118572 -1.88194,0.184651 -0.61621,-0.04822 -1.20644,2.2e-4 -1.81137,0.112794 -0.0639,0.01186 -0.10167,0.102113 -0.16656,0.100835 -0.33869,-0.0067 -0.67703,-0.02588 -1.01553,-0.03882 -0.25429,-0.1071 -0.58819,-0.107711 -0.76286,-0.321297 -0.69683,-0.852046 -0.90494,-2.003771 0.3567,-2.658703 0.39724,-0.206205 0.88305,0.148047 1.32701,0.204695 0.14216,0.01814 0.28634,0.01297 0.42952,0.01944 1.94277,0.866612 0.7172,3.614092 -1.22557,2.747485 v 0 c -0.46913,-0.234234 0.20939,0.140776 0.5831,-0.184138 0.38125,-0.331497 0.79965,-0.757883 0.84018,-1.261477 0.049,-0.608994 -0.68052,-1.105707 -1.09542,-1.436178 -0.16927,0.08336 -0.48297,0.06304 -0.50779,0.250078 -0.023,0.173352 0.32624,-0.130095 0.49691,-0.16813 0.77326,-0.17232 1.64721,-0.229226 2.41887,-0.06988 2.55664,-0.09872 5.1923,0.310743 7.59405,-0.817495 1.87666,-0.495055 2.57678,2.158936 0.70012,2.653993 z m 139.98399,-6.865051 c 2.38917,-0.795805 0.0704,0.123008 2.01251,-1.055681 0.55603,-0.337466 0.78119,-0.146899 1.22733,-0.62252 0.0449,-0.04784 -0.13821,-0.02732 -0.19677,0.0022 -0.0866,0.04365 -0.13916,0.13493 -0.20871,0.202406 0.1922,-0.298039 0.38441,-0.596075 0.57661,-0.894114 -0.10787,0.163137 -0.21575,0.326273 -0.32367,0.489391 -0.0451,-0.02123 -0.15406,-0.110051 -0.13546,-0.06372 0.21234,0.527944 0.73159,0.733081 -0.21482,0.616458 -0.034,-0.01919 -0.0686,-0.0779 -0.10185,-0.0575 -0.11812,0.07246 -0.18487,0.207659 -0.29007,0.297853 -0.15722,0.13475 -0.3677,0.211912 -0.49521,0.375077 -0.14798,0.189355 -0.18165,0.447345 -0.30743,0.652112 -0.38153,0.621019 -0.83324,1.19662 -1.22413,1.811791 -0.35562,1.407614 -1.26563,3.530224 -0.84271,4.960372 0.0375,0.126928 0.15911,0.211596 0.23866,0.317393 0.41456,0.291957 0.91197,1.141831 1.39378,1.28565 0.18552,0.05538 0.39321,-0.08147 0.58002,-0.03061 1.74111,0.474034 -0.22057,0.464705 1.59156,0.340623 1.29044,-0.381706 2.6545,-0.430457 3.93472,-0.858578 0.44852,-0.149987 0.8589,-0.397558 1.29935,-0.569798 0.52095,-0.20372 1.05525,-0.371529 1.58288,-0.557295 1.63829,-0.544091 2.40776,1.772808 0.76947,2.316898 v 0 c -1.00293,0.385784 -1.98071,0.840459 -3.00157,1.175928 -2.12645,0.698791 -1.05729,0.207719 -3.10448,0.668715 -0.55806,0.125668 -1.10157,0.308958 -1.65235,0.463441 -0.45944,0.02914 -0.92386,0.16098 -1.3783,0.08742 -0.33937,-0.05493 -0.60459,-0.330615 -0.92312,-0.459941 -0.34328,-0.139366 -0.71663,-0.197414 -1.05692,-0.343933 -1.14273,-0.492019 -1.79124,-1.400351 -2.46871,-2.405464 -0.16454,-0.49818 -0.4059,-0.977276 -0.49363,-1.494538 -0.11656,-0.687188 0.12947,-1.645189 0.20878,-2.320515 0.059,-0.502752 0.0443,-1.01473 0.1364,-1.512488 0.16427,-0.887791 0.48868,-1.500095 0.8471,-2.309003 1.66564,-2.406709 2.08556,-4.690475 5.54812,-4.62782 0.58146,0.126576 1.2747,0.207012 1.72596,0.664935 0.8384,0.850786 0.89957,1.767699 0.3976,2.776561 -0.029,0.05824 -0.079,-0.10345 -0.11847,-0.155178 -0.11055,0.334047 -0.14798,0.702028 -0.33174,1.002104 -0.73475,1.200144 -3.43757,1.567692 -4.52305,2.400468 -1.81664,0.479229 -2.49437,-2.089895 -0.67773,-2.569124 z m -6.86888,-1.150181 c -0.39475,-0.08232 -1.11728,-0.277139 -1.50485,-0.14212 -0.25103,0.08744 -0.40086,0.349371 -0.60702,0.517171 -1.02023,0.830401 -1.9732,1.71189 -2.99681,2.540171 -1.52169,1.125095 -3.11282,-1.026886 -1.59113,-2.151981 v 0 c 0.32068,-0.214324 0.65955,-0.40366 0.96204,-0.642972 1.88096,-1.48813 3.3296,-3.337436 6.08342,-2.702382 0.61158,0.141036 1.14735,0.509176 1.72102,0.763762 1.28576,1.461348 -0.78089,3.2797 -2.06667,1.818348 z m -2.50684,-16.540028 c -0.65378,2.620162 -0.96274,5.316441 -1.25039,7.9971 -0.10758,1.002451 -0.2809,2.003387 -0.28044,3.011596 0.005,10.087493 0.68577,-3.883697 0.11976,5.712158 -0.39172,3.462752 -0.31949,1.556456 -0.16613,4.805723 0.10203,2.161709 -0.0977,1.845994 0.55486,3.810077 0.33653,1.012864 0.13152,0.861028 0.79165,1.005308 0.65837,1.152581 0.46325,0.546989 -1.90251,-0.153978 1.41704,-1.434234 3.44535,0.569767 2.02831,2.004 v 0 c -2.66019,-0.293941 -3.38723,-0.641416 -2.40878,-0.204092 -0.16372,-0.285865 -0.37641,-0.548801 -0.49117,-0.857601 -0.16187,-0.435574 -0.24226,-0.89805 -0.33077,-1.354217 -0.58882,-3.034757 -0.52031,-6.135107 -0.29216,-9.205054 0.1045,-0.871421 0.26823,-1.737766 0.3135,-2.614262 0.10512,-2.035207 -0.20035,-4.08055 0.0883,-6.113123 0.19259,-3.325319 0.21249,-2.534851 0.65994,-5.773816 0.11825,-0.85604 0.21607,-1.714776 0.32411,-2.572162 0.35521,-1.585265 2.59711,-1.08292 2.2419,0.502343 z m -17.53587,20.463298 c -0.61467,-0.693558 -0.79116,-1.341461 -1.8089,-1.178512 -0.39553,0.06333 -1.25006,1.54457 -1.40185,1.74667 -0.272,0.362122 -0.59926,0.679216 -0.89889,1.018822 -0.51138,1.540328 -1.81059,3.607931 -1.68714,5.26134 0.0195,0.261862 0.1312,0.508537 0.19679,0.762805 0.0581,0.180819 0.0415,0.406769 0.17438,0.542459 0.0603,0.06157 0.15383,-0.122943 0.15211,-0.209112 -0.008,-0.37319 -0.37815,-0.230549 -0.25709,-0.366856 0.31855,-0.358658 1.38676,-0.680775 1.63285,-0.777803 0.40497,-0.914216 1.5126,-1.093461 2.08371,-1.816599 0.25123,-0.3181 0.23558,-0.783012 0.43688,-1.134838 0.24504,-0.428195 0.65529,-0.748747 0.8893,-1.183063 0.17632,-0.327252 0.49123,-1.624591 0.60215,-2.055903 0.10522,-0.256555 0.23519,-0.504184 0.31657,-0.76929 0.37773,-1.226688 -0.56951,-2.222413 2.82177,-1.10649 0.55606,0.182975 0.25086,2.077613 0.21753,2.420145 -0.0767,0.281021 -0.21546,0.552086 -0.23018,0.843064 -0.0117,0.229219 0.1347,0.442535 0.15292,0.671312 0.13588,1.705201 -0.0913,0.535994 -0.15384,2.133598 -0.0276,0.704439 0.085,1.407406 0.12312,2.111353 0.10685,0.203015 0.19269,0.418564 0.32056,0.609042 0.32458,0.483508 0.29823,0.65699 0.69228,0.426023 0.17014,-0.09973 -0.52444,0.25923 -0.2645,-0.235728 0.0827,-0.157552 0.29499,-0.199114 0.44249,-0.298669 0.98579,-0.615678 2.06425,-1.28811 2.73766,-2.267868 0.20086,-0.292251 1.17035,-2.088409 1.31945,-2.361593 0.78458,-1.55831 2.98836,-0.44876 2.20379,1.109555 v 0 c -0.62452,1.344272 -1.31019,2.773497 -2.32088,3.888304 -0.68268,0.752994 -1.64173,1.276042 -2.39725,1.950469 -0.6765,0.383353 -1.32046,0.837366 -2.15034,0.855373 -0.3691,0.008 -0.72932,-0.155463 -1.06115,-0.317281 -1.30864,-0.638154 -1.66935,-1.901253 -2.20057,-3.155689 -0.009,-0.166956 -0.118,-2.245306 -0.11473,-2.433347 0.0103,-0.59229 0.19191,-1.177048 0.16977,-1.769013 -0.0938,-2.508537 -0.28482,-0.02321 -0.04,-2.261034 0.35001,-0.653856 -0.14117,0.08616 0.33695,-0.01163 0.78616,-0.160751 1.51649,-0.53034 2.29268,-0.733813 0.0687,-0.01801 -0.0941,0.107215 -0.13193,0.167369 -0.11425,0.182042 -0.24708,0.356924 -0.32316,0.557929 -0.11188,0.294242 -0.15626,0.609905 -0.23434,0.914876 -0.17197,0.336474 -0.36651,0.662336 -0.51591,1.009421 -0.18401,0.426748 -0.26355,0.897904 -0.48125,1.308472 -0.24855,0.468517 -0.62625,0.85733 -0.90647,1.307624 -0.31653,0.508664 -0.5163,1.091457 -0.88181,1.566134 -0.14303,0.185681 -2.36136,2.176849 -2.47393,2.278652 -0.91965,0.61973 -2.07718,1.63711 -3.27743,1.577149 -0.89081,-0.0445 -1.71271,-0.796892 -2.09558,-1.535246 -0.18721,-0.361024 -0.19744,-0.789021 -0.29616,-1.183529 -0.0851,-0.448485 -0.27208,-0.889261 -0.25543,-1.34545 0.0161,-0.441064 0.2412,-0.849228 0.35108,-1.276685 0.0958,-0.373066 0.14781,-0.7579 0.26597,-1.124509 0.44602,-1.383971 1.19091,-2.660195 1.70085,-4.018323 0.79651,-1.057963 2.0771,-3.054837 3.38158,-3.491643 2.0099,-0.673005 3.50735,0.287101 4.88645,1.585513 1.26992,1.443334 -0.77126,3.239267 -2.04118,1.795934 z m -9.01252,-21.216437 c -0.15666,0.650807 -0.34287,1.295205 -0.47,1.952423 -0.15466,0.799453 -0.24515,1.610012 -0.37465,2.413925 -0.28437,1.765078 -0.56702,3.14836 -0.72947,4.935325 -0.7081,7.788439 0.51513,-2.844188 -0.4519,5.170628 -0.54898,4.323239 -0.86641,8.71235 -0.75672,13.074206 -0.0275,0.521387 -0.44354,3.369313 -1.75926,2.7572 -2.15614,-1.003094 -1.56445,-1.855582 -1.13033,-3.063065 0.63596,-1.881995 3.2975,-0.982622 2.66155,0.899374 v 0 c -0.47405,1.241035 0.30454,-0.386361 -1.70615,-0.722835 -0.42074,-0.07041 -0.71937,0.459958 -1.06217,0.713864 -0.0406,0.03003 0.098,-0.02402 0.14705,-0.03603 0.0995,-0.221145 0.19839,-0.442516 0.29759,-0.663774 0.0488,-2.908732 -0.0744,0.29741 0.32363,-3.138079 0.38672,-3.337969 0.33131,-6.727355 0.78318,-10.061597 0.30259,-2.563378 0.4389,-5.167399 0.82742,-7.718596 0.1235,-0.810964 0.35239,-1.603763 0.47079,-2.415485 0.29751,-2.039791 0.24192,-2.618284 0.26339,-4.605199 0.359,-1.885161 3.02502,-1.377453 2.66602,0.507708 z m -23.43572,18.084146 c -0.47365,0.388634 -1.00483,0.716198 -1.42093,1.16591 -0.53343,0.576525 -2.131,3.119682 -2.46258,3.90703 -0.25898,0.614108 -0.44975,1.672606 -0.58802,2.33652 -0.33264,0.765289 -0.81618,1.762191 -0.33464,2.59443 0.0488,0.08432 0.11912,0.199163 0.21651,0.196388 0.0679,-0.0019 0.0115,-0.135355 0.0171,-0.203052 0.13668,0.01561 0.27337,0.03124 0.41005,0.04685 2.30992,-0.06594 4.55614,-0.489305 6.66031,-1.498601 0.53493,-0.256579 1.02889,-0.591004 1.54333,-0.886504 1.69842,-1.501519 0.40267,-0.214178 1.61976,-1.777013 0.20042,-0.2574 0.48215,-0.452627 0.64766,-0.733762 0.11583,-0.196833 0.095,-0.44845 0.1744,-0.662607 0.29983,-0.809412 0.44633,-0.385774 0.13033,-0.910301 0.25864,-0.655806 -0.0608,0.03439 0.59705,1.140414 0.14212,0.09441 0.28424,0.188822 0.42635,0.283235 -0.0757,0.03066 -0.26163,0.01804 -0.22701,0.09199 0.0384,0.08203 0.18117,0.0024 0.27175,0.0036 -0.17733,0.239596 -0.35468,0.479184 -0.53202,0.718776 -0.13997,0.221749 -0.33565,0.416938 -0.41982,0.665289 -0.0648,0.191156 0.005,0.4042 -0.0108,0.605368 -0.0281,0.347434 -0.0558,0.696356 -0.12212,1.038558 -0.0763,0.393882 -0.22406,0.771392 -0.3049,1.164375 -0.16764,0.815083 -0.11891,0.967218 -0.10069,1.785454 0.14207,0.891417 0.0452,0.9556 0.50268,1.657723 0.20442,0.313694 -0.14561,-0.283026 0.088,-0.336464 0.17989,-0.04114 0.36341,0.07918 0.54794,0.07887 0.25411,-4.14e-4 0.50532,-0.05402 0.75798,-0.08103 0.95926,-0.526686 0.19854,-0.02117 1.12316,-1.000655 0.76224,-0.807456 1.62637,-1.551658 2.15336,-2.558297 0.15904,-0.303806 0.2378,-0.643287 0.3567,-0.96493 0.27841,-0.828176 0.37131,-1.571662 -0.0542,-2.366966 -0.38368,-0.717115 -0.56532,-0.891012 -1.29401,-0.753023 -0.60326,0.07853 -1.23847,-0.375365 -1.72469,0.06719 -1.77672,0.852172 -2.98187,-1.660487 -1.20515,-2.512658 v 0 c 1.51289,-0.642511 2.01813,-0.606071 3.58939,-0.261296 0.40553,0.145121 0.85479,0.201647 1.21657,0.435361 1.56424,1.010523 2.54387,3.359189 2.22038,5.181878 -0.0698,0.393152 -0.29478,0.742206 -0.4431,1.112933 -0.40811,1.277164 -0.40795,1.609166 -1.22677,2.741506 -0.23957,0.331256 -0.56968,0.586638 -0.84534,0.888523 -0.32093,0.351488 -0.58751,0.755997 -0.94411,1.071242 -0.94885,0.838805 -1.57157,1.032479 -2.69977,1.561821 -1.22646,0.08123 -2.50683,0.31925 -3.59517,-0.489025 -1.00055,-0.743088 -1.04806,-2.289811 -1.09157,-3.375213 -0.0219,-0.428166 -0.0742,-0.855855 -0.0658,-1.2845 0.0256,-1.30141 0.47526,-3.53406 0.84958,-4.756685 0.10458,-0.341671 0.2781,-0.658297 0.4172,-0.987427 0.51405,-0.499423 0.93196,-1.095221 1.46782,-1.571169 1.22888,-1.091489 3.38898,-0.498672 3.22363,1.443686 -0.22923,0.548799 -0.35129,1.139643 -0.59559,1.6819 -0.3703,0.821922 -1.63969,2.519042 -2.2805,3.079538 -0.47196,0.412801 -1.03837,0.703132 -1.55755,1.0547 -1.19751,0.539756 -2.35901,1.161328 -3.57639,1.65463 -1.91873,0.777501 -4.12385,1.148403 -6.18392,1.184871 -0.9466,-0.230938 -1.5996,-0.224456 -2.25974,-1.083082 -0.24318,-0.316295 -0.29936,-0.741003 -0.4123,-1.123651 -0.47695,-1.615851 -0.30482,-2.262954 0.40665,-3.765947 0.12577,-0.403716 0.25653,-0.805908 0.37728,-1.211157 0.1531,-0.513865 0.20217,-1.0676 0.44442,-1.545941 0.25294,-0.499525 0.70301,-0.873384 1.01596,-1.337683 0.32268,-0.47876 0.56505,-1.008516 0.88796,-1.487123 1.08369,-1.606231 1.21447,-1.613858 2.56636,-2.991556 1.32695,-1.167513 2.97806,0.709073 1.65112,1.876589 z m -15.43213,-1.670085 c 0.43647,-0.370885 -0.94294,-0.980618 -1.14173,-0.5995 -0.0704,0.1348 0.20404,0.284899 0.15528,0.428921 -0.0977,0.288578 -0.40248,0.463813 -0.54814,0.731409 -0.42583,0.782365 -0.72848,1.899775 -0.98953,2.724905 -0.41159,1.083167 -0.78376,1.784171 -0.84184,2.949265 -0.0598,1.200461 0.27316,2.84241 0.80352,3.918563 0.17894,0.363092 0.46978,0.659328 0.70468,0.988996 0.22776,0.227952 0.40665,0.518582 0.68328,0.683856 0.18312,0.109403 0.42156,0.06562 0.63177,0.101829 0.21504,0.03704 0.42615,0.131647 0.64392,0.117881 0.96988,-0.06133 1.97477,-1.17033 2.59897,-1.770988 0.59868,-0.988362 0.9274,-1.324614 1.11971,-2.515322 0.074,-0.45781 -0.0111,-0.928329 0.0188,-1.39111 0.0384,-0.594488 0.24749,-1.184951 0.18593,-1.777495 -0.0525,-0.504817 -0.34936,-0.95307 -0.51931,-1.431301 -0.13943,-0.392299 -0.27253,-0.786807 -0.4088,-1.180211 -0.5595,-1.23904 -1.08831,-1.791648 -2.38928,-2.143309 -0.16069,-0.04343 -0.33236,-0.136955 -0.4915,-0.08819 -0.13803,0.04231 -0.17494,0.232642 -0.28492,0.326155 -0.10499,0.08929 -0.23509,0.143963 -0.35263,0.215946 -0.009,0.08908 -0.0177,0.178166 -0.0266,0.267249 -1.06126,1.602778 -3.32793,0.101927 -2.26667,-1.500851 v 0 c 0.34481,-0.389857 0.68962,-0.779714 1.03444,-1.169566 0.36066,-0.20406 0.68345,-0.498665 1.08199,-0.612181 0.93688,-0.266848 1.68309,-0.101463 2.5309,0.287171 1.5952,0.731245 2.67862,1.849828 3.42072,3.439031 0.217,0.559865 0.50977,1.095996 0.65101,1.679597 0.50881,2.102452 0.40967,5.721323 -0.48348,7.710977 -0.28726,0.63991 -0.74009,1.191758 -1.11013,1.787635 -0.49288,0.46705 -0.92294,1.010945 -1.47866,1.401146 -1.73064,1.215212 -4.31898,1.529395 -5.98094,0.02733 -0.36905,-0.333545 -0.59544,-0.797027 -0.89316,-1.19554 -0.57132,-0.942101 -1.29972,-2.000257 -1.59464,-3.082371 -0.15771,-0.578657 -0.17486,-1.187962 -0.21525,-1.786365 -0.11898,-1.763185 0.0487,-3.433884 0.91907,-5.00509 0.14955,-0.605095 0.23229,-1.230739 0.44852,-1.815339 0.60612,-1.638724 1.92167,-3.837456 3.94568,-3.951537 1.16249,-0.06553 2.02157,1.217101 2.64395,1.90148 0.93826,1.559176 -1.26674,2.886077 -2.20501,1.326897 z m -13.68803,-24.1593321 c -1.06097,3.2735416 -2.43879,6.4821341 -3.0639,9.8844351 -0.15131,0.823575 -0.18113,1.665362 -0.30543,2.493446 -0.13803,0.919653 -0.32085,1.832023 -0.48129,2.748031 -1.6973,6.455754 0.0893,-0.614145 -1.37262,6.075545 -0.20736,0.948875 -0.5178,1.874214 -0.70423,2.827422 -0.16662,0.851899 -0.23241,1.720464 -0.35338,2.580032 -1.17298,8.334699 0.46589,-3.468319 -0.56433,3.970321 -0.24894,0.91875 0.0652,1.880809 -0.0824,2.804219 -0.0601,0.375895 -0.25798,0.716929 -0.36164,1.083199 -0.0221,0.07836 -0.0254,0.324457 -0.0139,0.243839 0.21219,-1.484577 0.13962,-0.667597 -2.33314,-1.15243 0.31853,-0.576587 0.56405,-1.191833 0.88829,-1.765216 0.25257,-0.44677 0.55251,-0.865379 0.81149,-1.308472 3.28752,-5.624765 -1.74258,2.863984 1.53454,-2.929214 0.29648,-0.524111 0.64405,-1.017634 0.96608,-1.526451 0.82509,-1.295397 1.96384,-2.326291 2.8838,-3.545935 0.36225,-0.480261 0.79396,-1.300779 1.4113,-1.546786 0.45966,-0.183172 0.97922,-0.143157 1.46882,-0.214735 0.47311,0.429109 1.066,0.755231 1.41933,1.287326 0.24192,0.364308 0.38847,2.265591 0.38637,2.638791 -0.003,0.555455 -0.12345,1.106302 -0.1241,1.661766 -0.006,5.035736 0.34142,-1.831089 0.003,3.565256 0.42535,3.109107 0.65629,6.288158 1.88164,9.206343 0.0181,0.02479 0.3263,0.77325 0.58221,0.389582 0.16952,-0.254141 -0.45071,-0.200228 -0.38663,-0.351298 0.0933,-0.219239 0.30078,-0.369606 0.45118,-0.554407 0.11157,-0.172251 0.22324,-0.344464 0.33483,-0.516707 0.95997,-1.68988 3.34982,-0.332281 2.38985,1.357599 v 0 c -0.19503,0.304478 -0.39006,0.608956 -0.5851,0.91343 -0.60097,1.233592 -1.32264,1.725958 -2.74522,1.717826 -0.39696,-0.0023 -0.82128,-0.0349 -1.16929,-0.225893 -0.75283,-0.41317 -1.08799,-1.311103 -1.45169,-2.005761 -0.31706,-1.040048 -0.38188,-1.136388 -0.56084,-2.333388 -0.0766,-0.512557 -0.0907,-1.033152 -0.16695,-1.545766 -0.2027,-1.363056 -0.61823,-2.690788 -0.78811,-4.058317 -0.0795,-0.640006 -0.046,-1.289028 -0.069,-1.933545 -0.0751,-1.684748 -0.12966,-3.369831 -0.20065,-5.05471 -0.0133,-0.315553 -0.0122,-0.631916 -0.037,-0.946769 -0.0153,-0.194498 -0.22903,-0.449795 -0.0832,-0.579411 0.15296,-0.135954 0.40169,0.07855 0.60254,0.117826 0.14738,-0.09854 0.31353,-0.173567 0.44211,-0.295622 0.0936,-0.08879 -0.23589,0.111154 -0.33489,0.193824 -0.24754,0.206734 -0.46978,0.442126 -0.69868,0.669329 -1.26104,1.251635 -0.6793,0.662977 -1.85168,2.095549 -0.30949,0.378171 -0.62679,0.749887 -0.94018,1.12483 -1.81892,3.073879 0.20882,-0.433099 -1.63608,3.041857 -0.8229,1.549999 -1.74111,3.015222 -2.07388,4.775894 -0.93411,0.05546 -1.89829,0.407909 -2.80233,0.166373 -0.31883,-0.08518 -0.20804,-0.639175 -0.20239,-0.969148 0.0163,-0.951005 0.25375,-0.630473 0.53148,-1.31045 0.42169,-1.033593 0.34233,-1.448675 0.44847,-2.664374 0.17018,-3.239153 -0.10376,-0.732082 0.7028,-4.125437 0.20281,-0.853301 0.33297,-1.722551 0.52665,-2.577969 0.66504,-2.937355 1.51663,-5.839397 1.88137,-8.839199 0.81768,-4.207853 0.26189,-1.223645 0.9628,-5.305035 0.1515,-0.8822 0.25362,-1.774918 0.46406,-2.644943 0.99379,-4.1086045 0.54215,-1.036912 1.68548,-4.9828752 0.22885,-0.7898233 0.34027,-1.6090338 0.51039,-2.413553 0.41714,-1.6778042 2.78991,-1.0878809 2.37277,0.5899223 z m -15.48416,3.9181754 c -0.28307,-0.2704395 -0.49594,-0.6425972 -0.84922,-0.8113193 -0.60083,-0.2869609 -0.92072,0.1166498 -1.37338,0.3364519 -0.28152,0.1367023 -0.58484,0.2258817 -0.86414,0.3670437 -1.0847,0.548178 -1.54671,0.8966214 -2.57852,1.5751664 -1.52436,0.507865 -2.44087,1.645813 -3.60844,2.659751 -0.99171,0.86123 -2.18518,1.672574 -3.04233,2.687473 -0.43732,0.517809 -0.76035,1.122224 -1.14052,1.683336 -0.94289,1.699286 -1.89543,3.450393 -2.51506,5.301727 -0.57804,1.727095 -0.91572,3.799843 -1.36868,5.588821 -0.0591,3.105117 -0.0621,6.268596 1.06337,9.212836 0.17012,0.445046 0.40672,0.861747 0.61009,1.292625 0.48753,1.063399 1.19005,2.014402 2.34972,2.393505 0.34029,0.111237 0.70281,0.263983 1.05514,0.200482 0.41387,-0.0746 0.72895,-0.423237 1.11436,-0.591511 0.50984,-0.222603 1.04366,-0.385687 1.56548,-0.578529 2.03252,-0.886542 4.101,-1.639372 6.02686,-2.754784 0.72921,-0.422337 1.42329,-0.902611 2.13493,-1.353917 1.35123,-0.809992 2.49673,1.100951 1.1455,1.910938 v 0 c -0.77318,0.406104 -1.54636,0.812208 -2.31954,1.218312 -0.69194,0.470732 -1.34843,0.998307 -2.07579,1.4122 -0.16959,0.09651 -3.78011,1.708169 -3.999,1.806173 -0.94618,0.378744 -2.8365,1.224641 -3.87265,1.267064 -0.66424,0.02719 -1.32907,-0.158217 -1.96046,-0.366325 -2.08384,-0.686842 -2.52902,-1.887011 -3.58713,-3.638637 -0.47878,-1.742002 -1.13042,-3.429567 -1.36023,-5.231752 -0.27768,-2.177609 -0.082,-2.064426 -0.068,-4.275995 0.005,-0.776604 -0.0318,-1.552916 -0.0477,-2.329371 0.43701,-2.046537 0.74429,-4.150994 1.46224,-6.125639 0.73089,-2.010218 1.88946,-3.82974 2.80112,-5.7548 0.99136,-1.267692 1.73047,-2.283639 2.85397,-3.439737 0.46491,-0.478391 0.98968,-0.894999 1.47102,-1.356845 1.23521,-1.185171 2.31813,-2.5189526 4.01334,-3.055787 0.44361,-0.2196428 0.8996,-0.4158714 1.33082,-0.6589304 0.49547,-0.2792821 2.44025,-1.6043584 2.94055,-1.7522823 1.09247,-0.32302 2.46013,-0.091392 3.41142,0.5163464 0.55185,0.3525479 0.94508,0.9067045 1.41763,1.360061 0.90923,1.5109399 -1.22758,2.7967803 -2.13679,1.2858486 z" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6281"
d="m 359.96997,166.15013 c -1.25059,-0.29855 -2.47553,-0.73972 -3.75178,-0.89564 -1.36062,-0.16622 -2.74401,0.0265 -4.11169,-0.065 -1.31828,-0.0882 -2.62373,-0.31402 -3.9353,-0.47347 -13.80436,-1.67825 7.53571,1.03101 -7.40246,-1.32843 -1.266,-0.19996 -2.55439,-0.21465 -3.83158,-0.32197 -9.0885,-1.44837 0.0911,-0.12992 -10.06486,-1.0957 -1.96054,-0.18644 -3.90387,-0.53204 -5.86472,-0.71514 -4.46569,-0.41699 -7.2132,-0.29022 -11.63863,-0.92788 -1.91043,-0.27527 -3.79009,-0.73306 -5.68513,-1.09959 -10.69157,-1.77098 -1.06356,-0.29288 -11.71104,-1.59516 -2.02185,-0.2473 -4.03041,-0.5979 -6.05378,-0.83237 -2.0543,-0.23805 -4.12361,-0.335 -6.17651,-0.58486 -20.90255,-2.54407 7.27813,0.49641 -11.51882,-1.47942 -4.71899,-0.28267 -9.2334,-1.78529 -13.97608,-1.82085 -1.06666,-0.008 -2.12377,0.21128 -3.18914,0.26409 -3.76669,0.1867 -1.29268,-0.34462 -4.47183,0.5821 -0.58932,-0.0195 -1.17837,-0.0664 -1.76796,-0.0586 -0.20352,0.003 -2.98791,0.29311 -2.9586,-0.0934 0.43653,-5.75516 -0.65065,-5.40894 1.99974,-5.54192 2.07974,-0.0929 3.95055,0.73464 5.82753,1.54613 3.83344,0.9383 2.50649,6.3596 -1.32695,5.42131 v 0 c -0.50523,-0.18078 -1.00901,-0.36567 -1.51569,-0.54232 -0.36448,-0.12707 -0.79106,-0.13435 -1.0977,-0.3688 -0.10579,-0.0809 0.23954,-0.33578 0.11489,-0.38265 -0.27945,-0.10506 -1.63439,0.10755 -1.95444,0.15025 -2.61175,0.27872 -0.43668,0.27281 -0.87611,-5.69424 -0.007,-0.10097 -0.32698,-0.23502 -0.23532,-0.19203 0.84507,0.39639 0.46229,0.5498 1.63534,0.52478 0.54614,-0.0117 1.08316,-0.14278 1.62474,-0.21417 2.87681,-0.26057 5.8553,-0.25033 8.7276,0.11318 4.6359,0.58671 9.2022,1.83939 13.88584,2.1282 5.88119,0.75802 11.75672,1.56504 17.63151,2.37076 2.03133,0.27859 4.04607,0.69329 6.08811,0.87776 2.06553,0.18659 4.15759,-0.008 6.21742,0.23385 1.93342,0.2267 3.81492,0.77741 5.72239,1.16611 1.82513,0.33617 3.63592,0.7626 5.47539,1.0085 3.85181,0.5149 7.74148,0.69022 11.60998,1.05941 1.91961,0.1832 3.83425,0.44067 5.76034,0.53349 1.92227,0.0926 3.85039,-0.052 5.77344,0.0224 1.51378,0.0585 3.01942,0.25076 4.52912,0.37614 1.34475,0.24211 2.68331,0.52145 4.03423,0.72632 1.44933,0.21979 5.88258,0.67574 7.32051,0.829 1.1935,0.18012 2.35791,0.52891 3.55271,0.70013 3.49631,0.50104 5.11091,0.46056 8.60809,0.57577 3.61614,0.72323 2.59334,5.83722 -1.0228,5.114 z"
inkscape:connector-curvature="0" />
<path
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path6283"
d="m 376.5,251.53818 c -3.27708,-0.80939 -6.63197,-0.89565 -9.96845,-1.16682 -1.05541,-0.0858 -2.09794,-0.33244 -3.15655,-0.35712 -9.62889,-0.22453 2.57463,0.92441 -8.2594,-0.31547 -1.66114,-0.31865 -3.31423,-0.68259 -4.98342,-0.95596 -5.90241,-0.96667 -11.8528,-1.53701 -17.74375,-2.59947 -1.71609,-0.3095 -12.03062,-2.41109 -13.54435,-2.71802 -2.33264,-0.58083 -4.6447,-1.25161 -6.99791,-1.74247 -2.49719,-0.5209 -5.03466,-0.82744 -7.54318,-1.2907 -2.55811,-0.47241 -5.09361,-1.06415 -7.65541,-1.51609 -6.67414,-1.1774 -13.37468,-2.13041 -20.03999,-3.37531 -5.60698,-0.17436 -11.04495,-1.55713 -16.56111,-2.40798 -1.44948,-0.22357 -2.91054,-0.36736 -4.35989,-0.59184 -4.92489,-0.76277 -1.86231,-0.68871 -6.28693,-0.49824 -0.65812,0.14496 -1.32146,0.26797 -1.97436,0.43488 -0.54481,0.13928 -3.35444,1.66273 -3.6464,0.40251 -0.42321,-1.82672 -0.15855,-3.74685 -0.23782,-5.62027 1.46523,-0.4134 2.82252,-0.13185 4.30661,-0.17002 4.04323,0.1028 3.89786,5.82079 -0.14538,5.718 v 0 c -0.11225,0.009 -3.00243,0.27839 -1.46967,-0.14152 -0.19877,-1.7619 -0.17149,-3.56427 -0.59632,-5.2857 -0.17272,-0.69986 -1.22315,-0.15284 -0.94032,-0.0622 1.05477,0.33789 4.00133,-1.46862 4.74003,-0.36603 1.56408,0.14524 6.01095,0.52402 7.41824,0.80719 1.37005,0.27567 2.67801,0.80671 4.03894,1.12435 1.59212,0.3716 3.21658,0.59123 4.81346,0.94179 8.82794,1.93799 1.80612,0.87943 11.4488,1.98622 6.74749,1.16613 13.38452,2.68973 20.09981,4.01336 11.28932,2.22519 3.89612,0.58671 15.33465,2.52266 2.38011,0.40283 4.74207,0.90635 7.1131,1.35952 2.22682,0.55695 4.43163,1.21072 6.68045,1.67086 9.61618,1.9676 19.46266,2.31782 29.12948,3.92327 1.3038,0.0896 2.60467,0.24951 3.9114,0.26877 4.55254,0.0671 3.16765,-0.36654 7.52955,-0.22722 2.72879,0.0872 3.68044,0.42939 6.38668,0.81281 1.05027,0.1488 2.10627,0.25388 3.15941,0.38082 3.56486,0 3.56486,5.04148 0,5.04148 z"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="Tampon"
style="display:inline;opacity:1">
<circle
r="170.16066"
cy="230.56793"
cx="212.5325"
id="path1463"
style="opacity:0.517096;vector-effect:none;fill:#f9f9eb;fill-opacity:1;stroke:none;stroke-width:37.7953;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000000" />
<g
id="g5331-7"
style="display:inline;filter:url(#filter5342-8-1)"
transform="matrix(0.5950607,-0.13807097,0.13807097,0.5950607,-57.104153,-153.87079)">
<circle
transform="translate(-102.28479,397.66658)"
r="262.311"
cy="316.49588"
cx="392.64163"
id="path5165-3"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6851);stroke-width:36.5938;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<circle
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6851);stroke-width:22.1881;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="circle5167-6"
cx="392.64163"
cy="316.49588"
r="163.32573"
transform="translate(-102.28479,397.66658)" />
<path
inkscape:connector-curvature="0"
d="m 41.74217,78.53304 c 2.23193,1.63922 6.63675,0.65053 9.28212,1.84176 6.34952,2.85921 14.15494,6.04542 12.71857,0.40455 0,0 -1.61577,1.34204 -1.61577,1.34204 0,0 -0.0315,-2.55754 -0.0315,-2.55754 0,0 -3.75198,0.91629 -3.75198,0.91629 0,0 -2.90617,-2.33276 -4.23852,-3.10199 -0.27829,-0.16067 -1.7077,1.29281 -1.7077,1.29281 0,0 -0.25697,-1.5438 -0.25697,-1.5438 -1.85737,-0.19764 -3.69616,-0.28481 -5.31515,-0.27182 -3.88094,0.0311 -6.49906,0.63774 -5.08307,1.6777 z m 28.75783,-63.03304 16.3,16.6 c 1.5,1.5 1.5,4.6 0.6,5.5 l -8.1,-6.6 -1.6,9.7 -6.7,-3.6 -10.9,6.9 -3.6,-14.5 -5.8,12.6 -14.5,-0.1 c -2.8,0 -2.4,-2.9 0.5,-5.8 5.7,-6.3 16.8,-17 20.3,-20.7 3.6,-3.7 9.9,-3.6 13.5,0 z m -16.4,-3 -41.2,42.2 c -15.6,15.6 10.1,14.3 19.4,20.2 4.3,2.8 -13.8,6.4 -10.1,10.1 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 l -42.7,-43.7 c -5.3,-5 -14,-5 -18.9,0 z m 47.3,81.3 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z"
style="opacity:0.99;fill:url(#linearGradient6851);fill-opacity:1;fill-rule:evenodd;stroke:none"
transform="matrix(2.0698373,0,0,2.0691897,157.70008,578.02363)"
id="path5221-1" />
<text
id="text5314-2"
style="font-style:normal;font-weight:normal;font-size:12px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;opacity:0.99;fill:url(#linearGradient6851);fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><textPath
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:60px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:10px;fill:url(#linearGradient6851);stroke:none"
id="textPath5320-9"
xlink:href="#circle5318-8-4">INKSCAPE</textPath></text>
<circle
transform="rotate(-149.85394,395.04818,529.10266)"
r="184.77254"
cy="316.49588"
cx="392.64163"
id="circle5497"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
<circle
cx="392.64163"
cy="316.49588"
r="234.26518"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="circle5499"
transform="matrix(-0.90266723,0.43033925,0.43033925,0.90266723,508.58097,259.5029)" />
<text
transform="matrix(0.97588804,0,0,0.97588804,7.0856806,18.820531)"
y="0"
x="390.7182"
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:12px;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;opacity:0.99;fill:url(#linearGradient6851);fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
id="text5325-3"><textPath
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:60px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';text-align:start;letter-spacing:10px;text-anchor:start;fill:url(#linearGradient6851);stroke:none"
id="textPath5329-1"
xlink:href="#circle5323-9-5"> 1.0 <tspan
id="tspan1816"
style="fill:#f57900">BETA</tspan></textPath></text>
</g>
<text
transform="translate(344.2659,780.1048)"
xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;opacity:1;fill:url(#linearGradient6851);fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="90"
y="-165"
id="text12013"><tspan
sodipodi:role="line"
id="tspan12015"
x="90"
y="-165"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:30px;line-height:10;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:url(#linearGradient6851);stroke:none">www.inkscape.org</tspan></text>
</g>
<g
sodipodi:insensitive="true"
inkscape:groupmode="layer"
id="layer8"
inkscape:label="Plis"
style="display:inline;opacity:1;filter:url(#filter11720)" />
</g>
<g
inkscape:label="test freely"
id="layer4"
inkscape:groupmode="layer">
<path
inkscape:connector-curvature="0"
id="path1564"
d="M 423.2583,391.38361 C 423.43543,391.37491 423.12062,391.71062 423.05127,391.87384 422.98811,391.73449 422.92498,391.59523 422.86182,391.45588 422.99401,391.43009 423.12436,391.39019 423.2583,391.38361 Z"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000" />
<path
inkscape:connector-curvature="0"
id="path1562"
d="M 406.3357,388.50726 C 405.64222,391.0965 404.94913,393.86668 405.84721,396.49631 404.35382,398.57233 406.23531,401.76687 405.49396,404.26645 404.18873,406.71965 407.06155,410.59598 408.82224,407.24359 410.0924,405.65062 408.75102,401.68575 409.98597,400.83103 413.30531,400.89899 416.60724,401.17228 419.84923,401.93386 421.67125,402.89951 422.64362,402.1655 423.17511,400.41569 424.2829,398.65274 420.23253,399.4108 419.15226,398.61288 416.74735,398.06113 414.3521,397.2762 411.95819,396.80233 408.74209,398.34268 409.48885,394.32546 408.98179,392.22814 408.52403,390.8386 410.8903,387.97411 408.42477,388.52112 407.72841,388.5165 407.03206,388.51188 406.3357,388.50726 Z"
style="opacity:1;vector-effect:none;fill:#63615b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000" />
<path
inkscape:connector-curvature="0"
id="path1560"
d="M 413.66163,372.9862 C 411.13401,373.05407 409.06891,373.89501 409.28594,376.81173 409.57367,378.21628 406.72074,382.0341 408.84924,381.65191 407.47016,383.80219 409.98656,383.46086 411.65895,384.11434 415.21165,385.3969 418.21364,387.7394 421.24216,389.93064 422.84061,393.21849 425.89779,391.1932 426.55821,388.45812 425.7369,385.328 424.86588,382.13489 426.52284,379.14211 426.4897,377.05712 429.78332,373.38418 426.76461,372.56518 423.78559,373.95628 422.31855,377.37416 421.67991,380.44092 421.24639,382.16132 422.1813,384.76954 421.91479,385.86867 420.64949,384.69199 416.60901,382.80138 416.72828,382.22192 418.81499,382.56649 418.70377,380.51671 419.15311,379.00764 419.16168,377.47847 422.27778,373.95433 418.89537,375.26228 415.7211,375.11854 416.54361,378.98207 415.33857,381.07279 414.84064,382.37293 412.45982,380.5252 411.09008,380.65231 411.96436,378.51873 411.85077,375.34346 413.66888,374.00521 413.81079,373.63807 413.70175,373.31242 413.66163,372.9862 Z"
style="opacity:1;vector-effect:none;fill:#63615b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000" />
<path
inkscape:connector-curvature="0"
id="path1558"
d="M 414.3794,373.18439 C 415.07478,373.32608 415.7665,373.50545 416.46338,373.63361 416.46264,373.63825 416.46216,373.64072 416.46143,373.64533 416.55229,373.6234 416.48064,373.35008 416.3794,373.3465 415.53558,373.31668 414.89954,373.25161 414.3794,373.18439 Z"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000" />
<path
inkscape:connector-curvature="0"
id="path1556"
d="M 413.1958,373.01056 C 413.46302,373.04972 413.81606,373.11159 414.3794,373.18439 413.98725,373.10449 413.59327,373.04262 413.1958,373.01056 Z"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000" />
<path
inkscape:connector-curvature="0"
id="path1554"
d="M 412.98682,372.97931 C 412.60697,372.93891 412.58466,373.05016 412.68409,373.48322 412.77238,373.32024 412.73774,372.97594 412.92237,372.98322 413.01418,372.98684 413.10441,373.00319 413.1958,373.01056 413.1443,373.00301 413.02925,372.98383 412.98682,372.97931 Z"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000" />
<path
inkscape:connector-curvature="0"
id="path1552"
d="M 432.1626,367.8172 C 432.1516,367.7082 432.24384,368.0244 432.25245,368.13361 432.25716,368.19352 432.24041,368.25694 432.23291,368.31916 432.20865,368.15556 432.18773,368.06628 432.1626,367.8172 Z"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000" />
<path
inkscape:connector-curvature="0"
id="path1550"
d="M 417.13526,355.45392 C 414.46768,356.66875 411.91236,358.81944 411.63945,361.9347 411.25458,364.99832 414.38563,366.76474 415.8208,369.05158 418.73271,371.03889 422.56811,368.47037 423.67769,365.57528 424.30446,363.37648 426.13092,359.42862 428.07277,363.06345 429.23381,364.52315 430.97401,367.20361 428.4337,368.21814 427.78821,371.65355 432.76026,371.69685 432.55612,368.36491 432.66786,368.09343 433.04298,365.92166 433.01026,367.48908 433.90984,364.30592 431.4373,361.55404 429.67823,359.18634 427.58137,356.65795 422.98909,358.25895 421.90088,361.03595 421.89435,362.7357 419.45897,365.87483 419.65076,366.31758 421.26844,365.93628 417.40597,367.94875 417.48095,365.85159 415.62622,363.96273 413.29165,361.44877 415.87114,358.99547 417.05537,358.23789 416.78583,356.72607 417.13526,355.45392 Z"
style="opacity:1;vector-effect:none;fill:#63615b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000" />
<path
inkscape:connector-curvature="0"
id="path1548"
d="M 429.36573,334.71369 C 426.95001,337.03202 425.1384,340.03644 422.99403,342.64015 421.11867,344.23084 419.0456,347.45124 418.63667,349.14939 419.60886,349.24374 420.58104,349.33809 421.55323,349.43244 422.62004,347.65531 424.17304,344.26261 425.98556,347.26898 428.58298,348.62304 429.80008,351.14756 431.70441,353.12003 433.43683,353.51573 435.98022,356.65674 437.27695,354.76942 437.9556,353.83856 439.7041,352.67978 437.54238,352.36531 435.99646,351.47998 433.56807,350.54844 433.50778,348.78791 432.13115,346.39009 429.51974,345.09979 427.62818,343.16183 427.22784,340.90659 430.68352,338.76105 432.06971,336.75272 431.70343,335.93571 430.4267,334.78443 429.36573,334.71369 Z"
style="opacity:1;vector-effect:none;fill:#63615b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000" />
<path
inkscape:connector-curvature="0"
id="path1546"
d="M 493.74023,288.61914 C 493.67559,288.61371 493.61433,288.625 493.55664,288.66016 492.67449,289.19787 492.03086,290.05182 491.26758,290.74805 491.11306,291.20857 490.50583,292.78031 490.60547,293.35156 490.87321,294.88655 491.8071,295.41744 492.7832,296.52539 493.97371,297.8767 495.11168,299.27488 496.29688,300.63086 496.36816,300.70726 496.43167,300.78998 496.50195,300.86719 496.48395,301.54155 496.46706,302.2178 496.47656,302.89453 496.48723,303.65479 496.58949,304.41154 496.58984,305.17188 496.59013,305.86956 496.51547,306.56501 496.47852,307.26172 L 498.18164,307.06445 C 498.05518,307.31483 497.9338,307.56874 497.70898,307.72266 497.01689,308.1965 494.9228,309.03961 493.89844,309.46484 492.64063,310.04248 491.95689,310.61811 490.51953,310.33984 488.84448,310.01555 487.05183,308.19661 486.13281,306.8125 486.29603,305.33598 486.59459,304.90898 487.70117,303.89062 487.96986,303.64335 488.33174,303.48891 488.54883,303.19531 488.63306,303.08139 488.274,303.26574 488.13672,303.30078 488.40145,303.12001 488.66691,302.93858 488.93164,302.75781 489.09666,302.62368 489.23648,302.44846 489.42773,302.35547 490.47421,301.84663 490.01039,303.57065 489.83789,303.8457 489.53352,304.33099 489.1083,304.73015 488.71484,305.14648 488.47755,305.39757 488.20461,305.61306 487.94922,305.8457 L 487.73828,307.47461 C 489.44598,306.45438 492.2344,305.26633 492.41211,302.84766 492.4476,302.3645 492.35229,301.84265 492.10547,301.42578 491.86836,301.0253 491.47063,300.69962 491.03906,300.52539 490.82926,300.4407 490.60295,300.42858 490.37305,300.43359 490.14315,300.4386 489.90948,300.46215 489.68359,300.44922 487.43441,301.34063 484.14576,303.1608 483.34961,305.67773 483.19121,306.17848 483.24007,306.72372 483.18555,307.24609 483.45237,307.82202 483.6314,308.44643 483.98633,308.97266 484.33105,309.48375 484.80508,309.89799 485.25781,310.31641 486.79186,311.73418 488.66266,313.05797 490.88281,312.87891 491.71777,312.81157 492.49607,312.42697 493.30273,312.20117 497.67418,309.53688 496.39752,310.09293 498.33398,307.04688 L 498.66211,307.00977 C 498.74528,305.8674 498.74144,304.72594 498.72656,303.58398 499.42866,304.52184 500.10802,305.47857 500.79297,306.42773 501.1713,306.95198 501.37173,307.66751 501.92383,308.00391 502.50558,308.35837 503.26776,308.23207 503.93945,308.3457 L 504.05469,308.25 C 504.04852,307.69019 504.23446,307.09422 504.03711,306.57031 503.81313,305.97572 503.23412,305.58394 502.85742,305.07227 501.51946,303.25493 500.33048,301.31536 498.72266,299.7168 498.79942,297.48931 499.04846,297.37359 498.5332,295.10352 498.37638,294.41261 498.08379,293.75989 497.85938,293.08789 497.2124,291.34279 496.12485,289.63954 494.33789,288.87695 494.15148,288.79739 493.93414,288.63546 493.74023,288.61914 Z M 493.78516,291.67578 C 494.61121,292.25536 495.08863,293.14164 495.50586,294.11719 495.72025,294.69146 495.99457,295.24699 496.15039,295.83984 496.24032,296.18199 496.30361,296.52578 496.35742,296.86914 496.08289,296.50866 495.94824,296.32105 494.86523,294.94922 494.51628,294.50722 494.1151,294.10677 493.76953,293.66211 493.62331,293.47396 493.42538,293.29071 493.39258,293.05469 493.33471,292.63825 493.55741,292.13196 493.78516,291.67578 Z M 514.41602,295.4668 C 513.93415,295.49101 513.28647,295.81547 512.41211,296.58789 512.05547,296.90295 512.91447,298.48819 513.66211,299.73242 513.54388,300.59331 513.38046,301.44954 513.32227,302.31641 513.29318,302.74978 513.67151,303.27028 513.41016,303.61719 513.02374,304.13012 512.33164,304.4799 511.68945,304.48242 509.05057,304.49278 508.25888,301.21135 507.61719,299.35938 L 505.44922,300.18555 C 506.49898,302.42928 507.4047,305.52922 510.25391,306.15625 511.099,306.34223 512.10945,306.30908 512.83008,305.83008 514.65191,304.61912 515.30635,303.75211 515.5918,302.6875 517.00903,304.75946 518.387,306.86706 519.35352,309.19336 519.76918,310.19382 520.37044,311.49966 519.79492,312.62305 519.53976,313.12113 519.01638,313.42817 518.62695,313.83008 517.50378,313.94205 516.49459,314.54827 515.38867,314.72266 513.01019,315.09771 510.01553,314.87018 507.6543,314.8125 500.88348,314.6471 504.77819,314.90621 498.08789,314.24414 494.35517,313.69842 490.13001,312.67637 486.52148,314.49219 485.04465,315.23533 483.4928,316.06144 482.48633,317.37305 481.52719,318.62298 480.75746,320.25484 480.89648,321.82422 481.05567,323.62118 482.50418,325.05326 483.30859,326.66797 L 483.44727,326.61328 C 483.31129,325.03614 482.78363,323.44278 483.04102,321.88086 483.0582,321.77661 484.79363,317.50353 485.94336,316.85156 489.40617,314.88794 493.3947,315.60539 497.0957,316.15234 501.65994,316.62102 506.23968,316.98807 510.83008,317.08984 512.67265,317.13069 515.79316,317.26377 517.6543,316.45312 518.92781,315.89844 520.01062,314.98476 521.18945,314.25 521.59077,313.54375 522.1811,312.91462 522.39453,312.13086 522.77805,310.72253 522.04475,309.24183 521.46875,308.05273 520.11106,305.24995 518.23084,302.75441 516.79297,299.99609 516.4791,299.35185 516.15006,298.71398 515.85156,298.0625 515.73164,296.79981 515.48328,295.41319 514.41602,295.4668 Z M 496.19727,296.74414 C 496.28539,296.85156 496.28341,296.84345 496.36914,296.94727 496.36962,296.95047 496.36867,296.95384 496.36914,296.95703 496.43573,297.03849 496.12641,296.65778 496.19727,296.74414 Z M 478.91211,304.98047 C 478.82024,304.97273 478.73079,304.97697 478.64062,305.00195 477.74313,305.25073 476.86616,305.6478 476.11133,306.19336 475.64784,306.52834 475.39587,307.08651 475.08789,307.56836 474.22372,308.92037 473.96423,309.9832 473.79102,311.53906 474.05727,314.18984 475.27434,315.28385 477.76758,316.24609 478.45644,316.51195 479.16798,316.83302 479.90625,316.82031 480.84015,316.80424 481.72291,316.3813 482.63086,316.16211 483.67317,315.09381 484.7155,314.02533 485.75781,312.95703 L 485.61719,312.9043 C 484.83818,313.14511 484.0583,313.38615 483.2793,313.62695 482.67523,313.84282 482.10533,314.21391 481.4668,314.27539 480.22612,314.39483 478.49562,313.7107 477.56836,312.77148 479.01443,312.50449 480.00072,312.26669 481.46875,310.84375 482.9628,309.39559 482.1603,307.05593 480.88477,305.87695 480.55861,305.57548 480.12566,305.4162 479.74609,305.18555 479.46928,305.13969 479.18772,305.00368 478.91211,304.98047 Z M 478.83008,307.58203 C 479.24045,307.63462 479.48917,308.21855 479.76953,308.91406 479.72166,309.31545 479.41135,309.63973 479.25781,310.01367 479.19775,310.15993 479.27019,310.39595 479.13086,310.4707 478.54251,310.78633 477.86411,310.89114 477.23047,311.10156 L 477,311.7832 C 476.95125,311.55181 476.93056,311.31211 476.88672,311.0332 476.91928,309.91089 477.17167,309.07326 477.875,308.15234 478.27958,307.70964 478.58386,307.55048 478.83008,307.58203 Z M 455.88672,308.21484 C 453.37787,308.24705 450.62876,308.22535 448.49023,309.73047 447.21586,310.61402 446.67801,312.22381 446.84766,313.72461 446.92291,315.82806 447.77128,318.24868 449.91211,319.03906 451.89693,319.88119 454.05287,320.60205 455.48828,322.31055 456.33224,323.15091 456.82109,324.29807 457.16602,325.4082 457.43701,327.66819 458.16987,330.17338 456.92969,332.2832 456.46009,333.14407 455.56529,333.58941 454.78711,334.11719 453.04201,333.69417 451.43007,332.54137 450.74609,330.84375 450.50796,331.8725 450.81087,333.48556 451.54102,334.44727 452.30162,335.49198 453.71553,335.69028 454.87891,335.30664 455.9608,335.01709 457.09194,334.87711 457.8457,333.96484 459.78137,332.45556 460.14977,329.78323 459.86719,327.49219 459.68882,326.23877 459.53631,324.94422 459.06836,323.76562 458.50294,322.50559 457.8591,321.25692 456.85938,320.28125 457.36263,320.5 457.86589,320.71875 458.36914,320.9375 460.03444,320.01846 461.82778,319.32554 463.43555,318.30859 462.16943,317.53895 460.53894,317.5667 459.29297,318.36523 458.3704,318.87302 457.50159,319.47061 456.58008,319.98047 455.00775,318.34861 452.83457,317.56999 450.86133,316.56641 449.40427,315.50834 449.26387,313.46217 449.52734,311.82617 449.74507,311.5407 450.07331,311.12939 449.60938,311.00977 451.07754,309.6888 453.19222,309.8997 455.01758,309.97656 455.30729,309.38932 455.59701,308.80208 455.88672,308.21484 Z M 469.21289,309.90039 C 468.1442,309.94876 467.16843,310.45483 466.23828,310.9375 465.79338,311.45305 465.44479,312.05703 465.06055,312.62305 464.51883,313.50171 464.17918,314.56451 464.4082,315.59766 464.46242,316.29616 464.81198,316.92823 465.06445,317.57227 464.62871,317.85171 465.58071,318.22759 465.56055,318.64453 466.34615,320.19168 466.91536,321.84428 467.79102,323.3457 468.17689,323.77637 468.50216,324.19931 468.90625,324.61719 469.26973,325.19722 470.10025,325.16428 470.33789,324.49023 470.6603,323.90154 470.9269,323.26384 471.06836,322.60938 470.9203,322.04554 470.35325,321.70092 470.1875,321.12891 469.73516,320.19021 469.19579,319.29327 468.74805,318.35547 468.24066,317.19205 467.73139,316.01992 467.43555,314.78125 467.37874,314.2306 467.65731,313.12038 468.28516,313.25977 469.18475,313.69813 470.27255,313.93688 471.21484,313.47656 471.87933,313.18583 472.48069,312.77472 473.10156,312.4043 473.06237,312.00812 472.13853,312.23499 471.84375,311.85352 471.29114,311.47865 470.81751,310.98265 470.2168,310.68359 469.89934,310.41325 469.68604,309.90986 469.21289,309.90039 Z"
style="opacity:1;vector-effect:none;fill:#63615b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers;stop-color:#000000" />
</g>
<g
sodipodi:insensitive="true"
inkscape:groupmode="layer"
id="layer21"
inkscape:label="Sign"
style="display:inline;opacity:1">
<g
id="g7343"
style="opacity:0.56;filter:url(#filter7371)">
<g
id="g7405"
transform="matrix(1.4674186,0,0,1.4674186,-655.98927,79.012377)"
style="fill:#777777;fill-opacity:1;stroke:none;stroke-width:0.0371926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<g
id="g7407"
style="font-style:normal;font-weight:normal;font-size:12px;line-height:1000%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#777777;fill-opacity:1;stroke:none;stroke-width:0.0371926;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1">
<path
sodipodi:nodetypes="ssccsscsccscsscscscscs"
inkscape:connector-curvature="0"
id="path7409"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;fill:#777777;fill-opacity:1;stroke:none;stroke-width:0.0371926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 913.7431,-27.043766 c -0.096,0 -1.5894,-0.06455 -1.7414,-0.08855 -0.152,-0.024 -0.28,-0.056 -0.384,-0.096 l 0.144,-0.912 c 0.08,0.024 0.172,0.044 0.276,0.06 0.104,0.016 1.5694,0.07655 1.6574,0.07655 0.384,0 0.656,-0.12 0.816,-0.36 0.168,-0.232 0.252,-0.576 0.252,-1.032 v -6.132 h 1.116 v 6.12 c 0,0.8 -0.184,1.392 -0.552,1.776 -0.36,0.392 -0.888,0.588 -1.584,0.588 z m 1.572,-9.612 c -0.2,0 -0.372,-0.064 -0.516,-0.192 -0.136,-0.136 -0.204,-0.316 -0.204,-0.54 0,-0.224 0.068,-0.4 0.204,-0.528 0.144,-0.136 0.316,-0.204 0.516,-0.204 0.2,0 0.368,0.068 0.504,0.204 0.144,0.128 0.216,0.304 0.216,0.528 0,0.224 -0.072,0.404 -0.216,0.54 -0.136,0.128 -0.304,0.192 -0.504,0.192 z" />
<path
sodipodi:nodetypes="sccccscsccccccccccscs"
inkscape:connector-curvature="0"
id="path7411"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;fill:#777777;fill-opacity:1;stroke:none;stroke-width:0.0371926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 920.24598,-38.599766 c 0.328,0 0.608,0.024 0.84,0.072 0.24,0.048 0.408,0.092 0.504,0.132 l -0.204,0.96 c -0.096,-0.048 -0.232,-0.092 -0.408,-0.132 -0.176,-0.048 -0.392,-0.072 -0.648,-0.072 -0.52,0 -0.884,0.144 -1.092,0.432 -0.208,0.28 -0.312,0.66 -0.312,1.14 v 0.54 h 1.9541 v 0.936 h -1.9541 v 5.304 h -1.116 v -5.304 h -2 v -0.936 h 2 v -0.564 c 0,-0.8 0.196,-1.416 0.588,-1.848 0.392,-0.44 1.008,-0.66 1.848,-0.66 z" />
<path
transform="translate(-1.1147567)"
inkscape:connector-curvature="0"
id="path7413"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Ubuntu;-inkscape-font-specification:Ubuntu;fill:#777777;fill-opacity:1;stroke:none;stroke-width:0.0371926;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 923.5666,-35.251766 q 0.204,-0.132 0.612,-0.276 0.42,-0.144 0.96,-0.144 0.672,0 1.188,0.24 0.528,0.24 0.888,0.672 0.36,0.432 0.54,1.032 0.192,0.6 0.192,1.32 0,0.756 -0.228,1.368 -0.216,0.6 -0.624,1.02 -0.408,0.42 -0.984,0.648 -0.576,0.228 -1.296,0.228 -0.78,0 -1.38,-0.108 -0.6,-0.108 -0.984,-0.216 v -8.94 l 1.116,-0.192 z m 0,4.992 q 0.168,0.048 0.468,0.096 0.312,0.036 0.768,0.036 0.9,0 1.44,-0.588 0.54,-0.6 0.54,-1.692 0,-0.48 -0.096,-0.9 -0.096,-0.42 -0.312,-0.72 -0.216,-0.312 -0.564,-0.48 -0.336,-0.18 -0.816,-0.18 -0.456,0 -0.84,0.156 -0.384,0.156 -0.588,0.324 z" />
</g>
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#777777;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.0408374;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m 920.04492,-43.433594 c -6.16157,0 -11.17187,5.012259 -11.17187,11.173828 0,6.16157 5.0103,11.171875 11.17187,11.171875 6.16157,0 11.17383,-5.010305 11.17383,-11.171875 0,-6.161569 -5.01226,-11.173828 -11.17383,-11.173828 z m 0,1.53711 c 5.33081,0 9.63672,4.305911 9.63672,9.636718 0,5.330807 -4.30591,9.634766 -9.63672,9.634766 -5.33081,0 -9.63476,-4.303959 -9.63476,-9.634766 0,-5.330807 4.30395,-9.636718 9.63476,-9.636718 z"
id="path7415"
inkscape:connector-curvature="0"
transform="matrix(0.9107493,0,0,0.9107493,81.978479,-3.589219)" />
</g>
</g>
</g>
<style
id="style26"
type="text/css">
.specularity {opacity:0.5;}
.low-specularity {opacity:0.25;}
.full-specularity {opacity:1;}
.black {fill:#000000;}
.white {fill:#ffffff;}
.outline-big {stroke-width:16;stroke:none;opacity:0.1;fill:none;}
.outline-small {stroke-width:8;stroke:none;opacity:0.2;fill:none;}
.stroke-highlight {fill:none;stroke:none;opacity:0.2;}
.base-shadow {fill:black;opacity:75;}
</style>
<style
id="style26-1"
type="text/css">
.specularity {opacity:0.5;}
.low-specularity {opacity:0.25;}
.full-specularity {opacity:1;}
.black {fill:#000000;}
.white {fill:#ffffff;}
.outline-big {stroke-width:16;stroke:none;opacity:0.1;fill:none;}
.outline-small {stroke-width:8;stroke:none;opacity:0.2;fill:none;}
.stroke-highlight {fill:none;stroke:none;opacity:0.2;}
.base-shadow {fill:black;opacity:75;}
</style>
</svg>
|