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
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="300"
id="svg11300"
inkscape:export-filename="/home/jimmac/Desktop/wi-fi.png"
inkscape:export-xdpi="90.000000"
inkscape:export-ydpi="90.000000"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
inkscape:version="0.46"
sodipodi:docname="system-search.svg"
sodipodi:version="0.32"
style="display:inline;enable-background:new"
version="1.0"
width="400">
<title
id="title8836">Optical Drive</title>
<metadata
id="metadata154">
<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:creator>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:creator>
<dc:contributor>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:contributor>
<dc:source />
<cc:license
rdf:resource="" />
<dc:subject>
<rdf:Bag />
</dc:subject>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
bordercolor="#666666"
borderopacity="0.25490196"
fill="#f57900"
gridtolerance="12"
guidetolerance="13"
height="300px"
id="base"
inkscape:current-layer="layer2"
inkscape:cx="416.94"
inkscape:cy="87.105301"
inkscape:document-units="px"
inkscape:grid-bbox="true"
inkscape:guide-bbox="true"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:showpageshadow="false"
inkscape:snap-bbox="true"
inkscape:snap-nodes="true"
inkscape:window-height="876"
inkscape:window-width="968"
inkscape:window-x="132"
inkscape:window-y="25"
inkscape:zoom="1"
objecttolerance="7"
pagecolor="#ffffff"
showgrid="false"
showguides="true"
stroke="#ef2929"
width="400px">
<inkscape:grid
empspacing="2"
enabled="true"
id="grid5883"
spacingx="0.5px"
spacingy="0.5px"
type="xygrid"
visible="true" />
</sodipodi:namedview>
<defs
id="defs3">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 150 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="400 : 150 : 1"
inkscape:persp3d-origin="200 : 100 : 1"
id="perspective562" />
<linearGradient
id="linearGradient6817"
inkscape:collect="always">
<stop
id="stop6819"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop6821"
offset="1"
style="stop-color:#eeeeec;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient5493">
<stop
id="stop5495"
offset="0"
style="stop-color:#d3d7cf;stop-opacity:1" />
<stop
id="stop5497"
offset="0.26851073"
style="stop-color:#f6eef0;stop-opacity:1;" />
<stop
id="stop5499"
offset="0.34727389"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop5501"
offset="0.59278351"
style="stop-color:#eedee2;stop-opacity:1;" />
<stop
id="stop5503"
offset="1"
style="stop-color:#cb9ea7;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient7672">
<stop
id="stop7674"
offset="0"
style="stop-color:#000000;stop-opacity:1" />
<stop
id="stop7676"
offset="1"
style="stop-color:#000000;stop-opacity:0" />
</linearGradient>
<linearGradient
id="linearGradient7598">
<stop
id="stop7600"
offset="0"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
id="stop7602"
offset="1"
style="stop-color:#ffffff;stop-opacity:0" />
</linearGradient>
<linearGradient
id="linearGradient7586">
<stop
id="stop7588"
offset="0"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
id="stop7590"
offset="1"
style="stop-color:#ffffff;stop-opacity:0" />
</linearGradient>
<linearGradient
id="linearGradient2818">
<stop
id="stop2820"
offset="0"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
id="stop2822"
offset="1"
style="stop-color:#ffffff;stop-opacity:0" />
</linearGradient>
<linearGradient
id="linearGradient2631">
<stop
id="stop2633"
offset="0"
style="stop-color:#010101;stop-opacity:1" />
<stop
id="stop2635"
offset="1"
style="stop-color:#959595;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient2591">
<stop
id="stop2593"
offset="0"
style="stop-color:#7a7a7a;stop-opacity:1" />
<stop
id="stop2595"
offset="1"
style="stop-color:#000000;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient6949">
<stop
id="stop6951"
offset="0"
style="stop-color:#888a85;stop-opacity:1" />
<stop
id="stop6953"
offset="1"
style="stop-color:#555753;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient6985">
<stop
id="stop6987"
offset="0"
style="stop-color:#888a85;stop-opacity:1" />
<stop
id="stop6991"
offset="0.34042552"
style="stop-color:#babdb6;stop-opacity:1" />
<stop
id="stop6989"
offset="1"
style="stop-color:#555753;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient7428">
<stop
id="stop7430"
offset="0"
style="stop-color:#888a85;stop-opacity:0" />
<stop
id="stop7432"
offset="1"
style="stop-color:#babdb6;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient7469">
<stop
id="stop7471"
offset="0"
style="stop-color:#555753;stop-opacity:1" />
<stop
id="stop7473"
offset="1"
style="stop-color:#888a85;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient7743">
<stop
id="stop7745"
offset="0"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
id="stop7747"
offset="1"
style="stop-color:#ffffff;stop-opacity:0" />
</linearGradient>
<linearGradient
id="linearGradient7769">
<stop
id="stop7771"
offset="0"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
id="stop7773"
offset="1"
style="stop-color:#ffffff;stop-opacity:0" />
</linearGradient>
<linearGradient
id="linearGradient7798">
<stop
id="stop7800"
offset="0"
style="stop-color:#f9f9f9;stop-opacity:1" />
<stop
id="stop7802"
offset="1"
style="stop-color:#f9f9f9;stop-opacity:0" />
</linearGradient>
<linearGradient
id="linearGradient7927">
<stop
id="stop7929"
offset="0"
style="stop-color:#000000;stop-opacity:1" />
<stop
id="stop7931"
offset="1"
style="stop-color:#000000;stop-opacity:0" />
</linearGradient>
<linearGradient
id="linearGradient7941">
<stop
id="stop7943"
offset="0"
style="stop-color:#000000;stop-opacity:1" />
<stop
id="stop7945"
offset="1"
style="stop-color:#000000;stop-opacity:0" />
</linearGradient>
<linearGradient
id="linearGradient5791">
<stop
id="stop5793"
offset="0"
style="stop-color:#000000;stop-opacity:1" />
<stop
id="stop5795"
offset="1"
style="stop-color:#000000;stop-opacity:0" />
</linearGradient>
<radialGradient
cx="34.206291"
cy="24.753864"
fx="34.206291"
fy="24.753864"
gradientTransform="matrix(1,0,0,0.7592593,0,5.9592628)"
gradientUnits="userSpaceOnUse"
id="radialGradient7678"
r="4.7729707"
xlink:href="#linearGradient7672" />
<radialGradient
cx="34.206291"
cy="24.753864"
fx="34.206291"
fy="24.753864"
gradientTransform="matrix(1,0,0,0.7592593,0,5.9592628)"
gradientUnits="userSpaceOnUse"
id="radialGradient7680"
r="4.7729707"
xlink:href="#linearGradient7672" />
<radialGradient
cx="23.78125"
cy="27.46875"
fx="23.78125"
fy="27.46875"
gradientTransform="matrix(1,0,0,0.5562701,0,12.188706)"
gradientUnits="userSpaceOnUse"
id="radialGradient5625"
inkscape:collect="always"
r="9.71875"
xlink:href="#linearGradient7941" />
<radialGradient
cx="23.78125"
cy="27.46875"
fx="23.78125"
fy="27.46875"
gradientTransform="matrix(1,0,0,0.5562701,0,12.188706)"
gradientUnits="userSpaceOnUse"
id="radialGradient5627"
inkscape:collect="always"
r="9.71875"
xlink:href="#linearGradient7941" />
<radialGradient
cx="23.78125"
cy="27.46875"
fx="23.78125"
fy="27.46875"
gradientTransform="matrix(1,0,0,0.5562701,0,12.188706)"
gradientUnits="userSpaceOnUse"
id="radialGradient5629"
inkscape:collect="always"
r="9.71875"
xlink:href="#linearGradient7941" />
<radialGradient
cx="14.5"
cy="25.78125"
fx="14.5"
fy="25.78125"
gradientTransform="matrix(1,0,0,2.1420455,0,-29.443359)"
gradientUnits="userSpaceOnUse"
id="radialGradient5631"
inkscape:collect="always"
r="5.5"
xlink:href="#linearGradient7927" />
<radialGradient
cx="14.5"
cy="25.78125"
fx="14.5"
fy="25.78125"
gradientTransform="matrix(1,0,0,2.1420455,0,-29.443359)"
gradientUnits="userSpaceOnUse"
id="radialGradient5633"
inkscape:collect="always"
r="5.5"
xlink:href="#linearGradient7927" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient5635"
inkscape:collect="always"
x1="15.910872"
x2="17.822588"
xlink:href="#linearGradient6949"
y1="5.5152001"
y2="4.4475551" />
<radialGradient
cx="17.34375"
cy="5.0044641"
fx="17.34375"
fy="5.0044641"
gradientTransform="matrix(2.0376534,0,0,2.8527147,-17.996801,-9.8700587)"
gradientUnits="userSpaceOnUse"
id="radialGradient5637"
inkscape:collect="always"
r="2.5"
xlink:href="#linearGradient7798" />
<linearGradient
gradientTransform="matrix(-0.5,0.8660254,0.8660254,0.5,22.120835,-12.77147)"
gradientUnits="userSpaceOnUse"
id="linearGradient5639"
inkscape:collect="always"
x1="15.910872"
x2="17.822588"
xlink:href="#linearGradient6949"
y1="5.5152001"
y2="4.4475551" />
<radialGradient
cx="17.34375"
cy="5.0044641"
fx="17.34375"
fy="5.0044641"
gradientTransform="matrix(-1.0188267,1.7646596,2.4705234,1.4263573,22.571514,-33.292186)"
gradientUnits="userSpaceOnUse"
id="radialGradient5641"
inkscape:collect="always"
r="2.5"
xlink:href="#linearGradient7798" />
<linearGradient
gradientTransform="translate(0,-56)"
gradientUnits="userSpaceOnUse"
id="linearGradient5643"
inkscape:collect="always"
x1="14.937631"
x2="19.445436"
xlink:href="#linearGradient6985"
y1="68.506096"
y2="70.892586" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient5645"
inkscape:collect="always"
x1="15.3125"
x2="15.3125"
xlink:href="#linearGradient7469"
y1="76.232018"
y2="83.3125" />
<linearGradient
gradientTransform="translate(0,-56)"
gradientUnits="userSpaceOnUse"
id="linearGradient5647"
inkscape:collect="always"
x1="14.507583"
x2="14.287912"
xlink:href="#linearGradient7428"
y1="75.603554"
y2="73.9664" />
<linearGradient
gradientTransform="matrix(-1,0,0,1,48.0625,-56)"
gradientUnits="userSpaceOnUse"
id="linearGradient5649"
inkscape:collect="always"
x1="20.240931"
x2="15.423766"
xlink:href="#linearGradient6985"
y1="70.804199"
y2="70.229668" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient5651"
inkscape:collect="always"
x1="15.3125"
x2="15.3125"
xlink:href="#linearGradient7469"
y1="76.232018"
y2="83.3125" />
<linearGradient
gradientTransform="matrix(-1,0,0,1,48.0625,-56)"
gradientUnits="userSpaceOnUse"
id="linearGradient5653"
inkscape:collect="always"
x1="14.507583"
x2="14.287912"
xlink:href="#linearGradient7428"
y1="75.603554"
y2="73.9664" />
<linearGradient
gradientTransform="translate(0,-3)"
gradientUnits="userSpaceOnUse"
id="linearGradient5655"
inkscape:collect="always"
x1="21.812019"
x2="26"
xlink:href="#linearGradient6985"
y1="16.46875"
y2="16.46875" />
<linearGradient
gradientTransform="translate(0,-96)"
gradientUnits="userSpaceOnUse"
id="linearGradient5657"
inkscape:collect="always"
x1="32.432842"
x2="42.548504"
xlink:href="#linearGradient6985"
y1="116.58936"
y2="116.58936" />
<linearGradient
gradientTransform="translate(-30,-96)"
gradientUnits="userSpaceOnUse"
id="linearGradient5659"
inkscape:collect="always"
x1="32.432842"
x2="42.548504"
xlink:href="#linearGradient6985"
y1="116.58936"
y2="116.58936" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient5661"
inkscape:collect="always"
x1="22.15625"
x2="22.15625"
xlink:href="#linearGradient7469"
y1="69.6875"
y2="80.97287" />
<radialGradient
cx="22.957685"
cy="22.990465"
fx="22.957685"
fy="22.990465"
gradientTransform="matrix(0.881525,0,0,0.7101255,2.9647845,-1.513614)"
gradientUnits="userSpaceOnUse"
id="radialGradient5663"
inkscape:collect="always"
r="3.9375"
xlink:href="#linearGradient7743" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient5665"
inkscape:collect="always"
x1="23.909048"
x2="21.058523"
xlink:href="#linearGradient7769"
y1="76.483147"
y2="67.290756" />
<radialGradient
cx="16.875"
cy="23.672499"
fx="16.875"
fy="23.672499"
gradientTransform="matrix(1,0,0,1.013514,0,-0.304899)"
gradientUnits="userSpaceOnUse"
id="radialGradient5667"
inkscape:collect="always"
r="4.625"
xlink:href="#linearGradient2591" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient5669"
inkscape:collect="always"
x1="12.835793"
x2="18.422049"
xlink:href="#linearGradient2631"
y1="18.849401"
y2="27.072878" />
<radialGradient
cx="14.75"
cy="22.6875"
fx="14.75"
fy="22.6875"
gradientTransform="matrix(1,0,0,1.035714,0,-0.810268)"
gradientUnits="userSpaceOnUse"
id="radialGradient5671"
inkscape:collect="always"
r="1.75"
xlink:href="#linearGradient2818" />
<radialGradient
cx="16.875"
cy="23.672499"
fx="16.875"
fy="23.672499"
gradientTransform="matrix(1,0,0,1.013514,0,-0.304899)"
gradientUnits="userSpaceOnUse"
id="radialGradient5673"
inkscape:collect="always"
r="4.625"
xlink:href="#linearGradient2591" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient5675"
inkscape:collect="always"
x1="12.835793"
x2="18.422049"
xlink:href="#linearGradient2631"
y1="18.849401"
y2="27.072878" />
<radialGradient
cx="14.75"
cy="22.6875"
fx="14.75"
fy="22.6875"
gradientTransform="matrix(1,0,0,1.035714,0,-0.810268)"
gradientUnits="userSpaceOnUse"
id="radialGradient5677"
inkscape:collect="always"
r="1.75"
xlink:href="#linearGradient2818" />
<radialGradient
cx="11.313708"
cy="19.083185"
fx="11.313708"
fy="19.083185"
gradientTransform="matrix(1.8188639,0,0,0.5459777,4.4160698,20.581007)"
gradientUnits="userSpaceOnUse"
id="radialGradient5686"
inkscape:collect="always"
r="9.8994951"
xlink:href="#linearGradient5791" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient5690"
inkscape:collect="always"
x1="24.999897"
x2="28.726213"
xlink:href="#linearGradient7586"
y1="-34.974133"
y2="1.4193407" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient5692"
inkscape:collect="always"
x1="26.568039"
x2="26.568039"
xlink:href="#linearGradient7598"
y1="-15.856338"
y2="-33.089272" />
<linearGradient
gradientTransform="translate(10,-1)"
gradientUnits="userSpaceOnUse"
id="linearGradient6807"
inkscape:collect="always"
x1="8.6218872"
x2="21.996887"
xlink:href="#linearGradient5493"
y1="9.2498398"
y2="33.621563" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient6823"
inkscape:collect="always"
x1="21.081476"
x2="22.024235"
xlink:href="#linearGradient6817"
y1="13.108311"
y2="22.654253" />
<linearGradient
id="linearGradient7543"
inkscape:collect="always">
<stop
id="stop7545"
offset="0"
style="stop-color:#2e3436;stop-opacity:1;" />
<stop
id="stop7547"
offset="1"
style="stop-color:#2e3436;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient7535"
inkscape:collect="always">
<stop
id="stop7537"
offset="0"
style="stop-color:#2e3436;stop-opacity:1;" />
<stop
id="stop7539"
offset="1"
style="stop-color:#2e3436;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient7552"
inkscape:collect="always">
<stop
id="stop7554"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop7556"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient7534">
<stop
id="stop7536"
offset="0"
style="stop-color:#729fcf;stop-opacity:1" />
<stop
id="stop7538"
offset="1"
style="stop-color:#3465a4;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient7491"
inkscape:collect="always">
<stop
id="stop7493"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop7495"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient7487"
inkscape:collect="always">
<stop
id="stop7489"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop7491"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient7194"
inkscape:collect="always">
<stop
id="stop7196"
offset="0"
style="stop-color:#000000;stop-opacity:1;" />
<stop
id="stop7198"
offset="1"
style="stop-color:#000000;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient7118"
inkscape:collect="always">
<stop
id="stop7120"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop7122"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient7084"
inkscape:collect="always">
<stop
id="stop7086"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop7088"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient7070"
inkscape:collect="always">
<stop
id="stop7072"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop7074"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
gradientTransform="translate(74,-1)"
gradientUnits="userSpaceOnUse"
id="linearGradient6232"
inkscape:collect="always"
x1="0.97256702"
x2="5.2889619"
xlink:href="#linearGradient6985"
y1="17.53125"
y2="17.53125" />
<radialGradient
cx="10.606602"
cy="11.194525"
fx="10.606602"
fy="11.194525"
gradientTransform="matrix(1,0,0,0.8210228,0,2.003565)"
gradientUnits="userSpaceOnUse"
id="radialGradient6264"
inkscape:collect="always"
r="7.7781744"
xlink:href="#linearGradient7194" />
<radialGradient
cx="10.606602"
cy="11.194525"
fx="10.606602"
fy="11.194525"
gradientTransform="matrix(1,0,0,0.8210228,0,2.003565)"
gradientUnits="userSpaceOnUse"
id="radialGradient6266"
inkscape:collect="always"
r="7.7781744"
xlink:href="#linearGradient7194" />
<linearGradient
gradientTransform="translate(68,-1)"
gradientUnits="userSpaceOnUse"
id="linearGradient6268"
inkscape:collect="always"
x1="6.2755728"
x2="7.564043"
xlink:href="#linearGradient6949"
y1="4.8968549"
y2="4.8968549" />
<linearGradient
gradientTransform="translate(60,-1)"
gradientUnits="userSpaceOnUse"
id="linearGradient6270"
inkscape:collect="always"
x1="6.2755728"
x2="7.564043"
xlink:href="#linearGradient6949"
y1="4.8968549"
y2="4.8968549" />
<linearGradient
gradientTransform="translate(60,-1)"
gradientUnits="userSpaceOnUse"
id="linearGradient6272"
inkscape:collect="always"
x1="0.97256702"
x2="5.2889619"
xlink:href="#linearGradient6985"
y1="17.53125"
y2="17.53125" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient6274"
inkscape:collect="always"
x1="-0.20097332"
x2="6.3455257"
xlink:href="#linearGradient7070"
y1="17.427599"
y2="19.181728" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient6276"
inkscape:collect="always"
x1="-0.20097332"
x2="6.3455257"
xlink:href="#linearGradient7070"
y1="17.427599"
y2="19.181728" />
<linearGradient
gradientTransform="translate(60,-1)"
gradientUnits="userSpaceOnUse"
id="linearGradient6278"
inkscape:collect="always"
x1="1.484375"
x2="8.5470304"
xlink:href="#linearGradient7084"
y1="17.453125"
y2="17.453125" />
<linearGradient
gradientTransform="translate(74,-1)"
gradientUnits="userSpaceOnUse"
id="linearGradient6280"
inkscape:collect="always"
x1="1.484375"
x2="8.5470304"
xlink:href="#linearGradient7084"
y1="17.453125"
y2="17.453125" />
<linearGradient
gradientTransform="translate(60,-1)"
gradientUnits="userSpaceOnUse"
id="linearGradient6282"
inkscape:collect="always"
x1="2.28125"
x2="6.825891"
xlink:href="#linearGradient6985"
y1="10.53125"
y2="10.53125" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient6284"
inkscape:collect="always"
x1="-6.5"
x2="-0.78125"
xlink:href="#linearGradient7118"
y1="8.625"
y2="15.5" />
<linearGradient
gradientTransform="translate(71,-1)"
gradientUnits="userSpaceOnUse"
id="linearGradient6286"
inkscape:collect="always"
x1="2.28125"
x2="6.825891"
xlink:href="#linearGradient6985"
y1="10.53125"
y2="10.53125" />
<linearGradient
gradientTransform="matrix(-1,0,0,1,-8.96875,0)"
gradientUnits="userSpaceOnUse"
id="linearGradient6288"
inkscape:collect="always"
x1="-6.5"
x2="-0.78125"
xlink:href="#linearGradient7118"
y1="8.625"
y2="15.5" />
<linearGradient
gradientTransform="matrix(0.6,0,0,1,64.4,-1)"
gradientUnits="userSpaceOnUse"
id="linearGradient6290"
inkscape:collect="always"
x1="8.5163479"
x2="12.945535"
xlink:href="#linearGradient6985"
y1="9.5593405"
y2="9.5593405" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient6292"
inkscape:collect="always"
x1="-19.40625"
x2="-19"
xlink:href="#linearGradient7487"
y1="6.375"
y2="10.71875" />
<radialGradient
cx="10.606602"
cy="11.194525"
fx="10.606602"
fy="11.194525"
gradientTransform="matrix(1,0,0,0.8210228,0,2.003565)"
gradientUnits="userSpaceOnUse"
id="radialGradient6338"
inkscape:collect="always"
r="7.7781744"
xlink:href="#linearGradient7194" />
<radialGradient
cx="10.606602"
cy="11.194525"
fx="10.606602"
fy="11.194525"
gradientTransform="matrix(1,0,0,0.8210228,0,2.003565)"
gradientUnits="userSpaceOnUse"
id="radialGradient6340"
inkscape:collect="always"
r="7.7781744"
xlink:href="#linearGradient7194" />
<linearGradient
gradientTransform="translate(68,-1)"
gradientUnits="userSpaceOnUse"
id="linearGradient6342"
inkscape:collect="always"
x1="6.2755728"
x2="7.564043"
xlink:href="#linearGradient6949"
y1="4.8968549"
y2="4.8968549" />
<linearGradient
gradientTransform="translate(60,-1)"
gradientUnits="userSpaceOnUse"
id="linearGradient6344"
inkscape:collect="always"
x1="6.2755728"
x2="7.564043"
xlink:href="#linearGradient6949"
y1="4.8968549"
y2="4.8968549" />
<linearGradient
gradientTransform="translate(60,-1)"
gradientUnits="userSpaceOnUse"
id="linearGradient6346"
inkscape:collect="always"
x1="0.97256702"
x2="5.2889619"
xlink:href="#linearGradient6985"
y1="17.53125"
y2="17.53125" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient6348"
inkscape:collect="always"
x1="-0.20097332"
x2="6.3455257"
xlink:href="#linearGradient7070"
y1="17.427599"
y2="19.181728" />
<linearGradient
gradientTransform="translate(74,-1)"
gradientUnits="userSpaceOnUse"
id="linearGradient6350"
inkscape:collect="always"
x1="0.97256702"
x2="5.2889619"
xlink:href="#linearGradient6985"
y1="17.53125"
y2="17.53125" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient6352"
inkscape:collect="always"
x1="-0.20097332"
x2="6.3455257"
xlink:href="#linearGradient7070"
y1="17.427599"
y2="19.181728" />
<linearGradient
gradientTransform="translate(60,-1)"
gradientUnits="userSpaceOnUse"
id="linearGradient6354"
inkscape:collect="always"
x1="1.484375"
x2="8.5470304"
xlink:href="#linearGradient7084"
y1="17.453125"
y2="17.453125" />
<linearGradient
gradientTransform="translate(74,-1)"
gradientUnits="userSpaceOnUse"
id="linearGradient6356"
inkscape:collect="always"
x1="1.484375"
x2="8.5470304"
xlink:href="#linearGradient7084"
y1="17.453125"
y2="17.453125" />
<linearGradient
gradientTransform="translate(60,-1)"
gradientUnits="userSpaceOnUse"
id="linearGradient6358"
inkscape:collect="always"
x1="2.28125"
x2="6.825891"
xlink:href="#linearGradient6985"
y1="10.53125"
y2="10.53125" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient6360"
inkscape:collect="always"
x1="-6.5"
x2="-0.78125"
xlink:href="#linearGradient7118"
y1="8.625"
y2="15.5" />
<linearGradient
gradientTransform="translate(71,-1)"
gradientUnits="userSpaceOnUse"
id="linearGradient6362"
inkscape:collect="always"
x1="2.28125"
x2="6.825891"
xlink:href="#linearGradient6985"
y1="10.53125"
y2="10.53125" />
<linearGradient
gradientTransform="matrix(-1,0,0,1,-8.96875,0)"
gradientUnits="userSpaceOnUse"
id="linearGradient6364"
inkscape:collect="always"
x1="-6.5"
x2="-0.78125"
xlink:href="#linearGradient7118"
y1="8.625"
y2="15.5" />
<linearGradient
gradientTransform="matrix(0.6,0,0,1,64.4,-1)"
gradientUnits="userSpaceOnUse"
id="linearGradient6366"
inkscape:collect="always"
x1="8.5163479"
x2="12.945535"
xlink:href="#linearGradient6985"
y1="9.5593405"
y2="9.5593405" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient6368"
inkscape:collect="always"
x1="-19.40625"
x2="-19"
xlink:href="#linearGradient7487"
y1="6.375"
y2="10.71875" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient7600"
inkscape:collect="always"
x1="11.443501"
x2="17.464556"
xlink:href="#linearGradient7491"
y1="17.795679"
y2="32.919998" />
<radialGradient
cx="16.037378"
cy="30.99523"
fx="16.037378"
fy="30.99523"
gradientTransform="matrix(1.4132237,0,0,1.4132237,-7.0492445,-15.818799)"
gradientUnits="userSpaceOnUse"
id="radialGradient7602"
inkscape:collect="always"
r="8.143054"
xlink:href="#linearGradient7534" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient7604"
inkscape:collect="always"
x1="10.536715"
x2="12.720174"
xlink:href="#linearGradient7552"
y1="20.320419"
y2="32.346565" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient7608"
inkscape:collect="always"
x1="11.443501"
x2="17.464556"
xlink:href="#linearGradient7491"
y1="17.795679"
y2="32.919998" />
<radialGradient
cx="16.037378"
cy="30.99523"
fx="16.037378"
fy="30.99523"
gradientTransform="matrix(1.4132237,0,0,1.4132237,-7.0492445,-15.818799)"
gradientUnits="userSpaceOnUse"
id="radialGradient7610"
inkscape:collect="always"
r="8.143054"
xlink:href="#linearGradient7534" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient7612"
inkscape:collect="always"
x1="10.536715"
x2="12.720174"
xlink:href="#linearGradient7552"
y1="20.320419"
y2="32.346565" />
<linearGradient
gradientTransform="translate(0,90.28125)"
gradientUnits="userSpaceOnUse"
id="linearGradient7619"
inkscape:collect="always"
x1="3.4464669"
x2="16.233637"
xlink:href="#linearGradient6985"
y1="81.852737"
y2="81.852737" />
<linearGradient
gradientTransform="translate(29,90.28125)"
gradientUnits="userSpaceOnUse"
id="linearGradient7626"
inkscape:collect="always"
x1="3.4464669"
x2="16.233637"
xlink:href="#linearGradient6985"
y1="81.852737"
y2="81.852737" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient7816"
inkscape:collect="always"
x1="16.484426"
x2="20.429724"
xlink:href="#linearGradient6985"
y1="6.1923113"
y2="6.1923113" />
<radialGradient
cx="17.34375"
cy="5.0044641"
fx="17.34375"
fy="5.0044641"
gradientTransform="matrix(2.0376534,0,0,2.8527147,-17.996801,-9.8700587)"
gradientUnits="userSpaceOnUse"
id="radialGradient7818"
inkscape:collect="always"
r="2.5"
xlink:href="#linearGradient7798" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient7541"
inkscape:collect="always"
x1="13.077905"
x2="13.298875"
xlink:href="#linearGradient7535"
y1="-43.175999"
y2="-44.36924" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient7549"
inkscape:collect="always"
x1="18.999924"
x2="18.999924"
xlink:href="#linearGradient7543"
y1="-42.910835"
y2="-43.971947" />
<radialGradient
cx="23.78125"
cy="27.46875"
fx="23.78125"
fy="27.46875"
gradientTransform="matrix(1,0,0,0.5562701,0,12.188706)"
gradientUnits="userSpaceOnUse"
id="radialGradient7660"
inkscape:collect="always"
r="9.71875"
xlink:href="#linearGradient7941" />
<radialGradient
cx="23.78125"
cy="27.46875"
fx="23.78125"
fy="27.46875"
gradientTransform="matrix(1,0,0,0.5562701,0,12.188706)"
gradientUnits="userSpaceOnUse"
id="radialGradient7662"
inkscape:collect="always"
r="9.71875"
xlink:href="#linearGradient7941" />
<radialGradient
cx="23.78125"
cy="27.46875"
fx="23.78125"
fy="27.46875"
gradientTransform="matrix(1,0,0,0.5562701,0,12.188706)"
gradientUnits="userSpaceOnUse"
id="radialGradient7664"
inkscape:collect="always"
r="9.71875"
xlink:href="#linearGradient7941" />
<radialGradient
cx="14.5"
cy="25.78125"
fx="14.5"
fy="25.78125"
gradientTransform="matrix(1,0,0,2.1420455,0,-29.443359)"
gradientUnits="userSpaceOnUse"
id="radialGradient7666"
inkscape:collect="always"
r="5.5"
xlink:href="#linearGradient7927" />
<radialGradient
cx="14.5"
cy="25.78125"
fx="14.5"
fy="25.78125"
gradientTransform="matrix(1,0,0,2.1420455,0,-29.443359)"
gradientUnits="userSpaceOnUse"
id="radialGradient7668"
inkscape:collect="always"
r="5.5"
xlink:href="#linearGradient7927" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient7670"
inkscape:collect="always"
x1="15.910872"
x2="17.822588"
xlink:href="#linearGradient6949"
y1="5.5152001"
y2="4.4475551" />
<radialGradient
cx="17.34375"
cy="5.0044641"
fx="17.34375"
fy="5.0044641"
gradientTransform="matrix(2.0376534,0,0,2.8527147,-17.996801,-9.8700587)"
gradientUnits="userSpaceOnUse"
id="radialGradient7672"
inkscape:collect="always"
r="2.5"
xlink:href="#linearGradient7798" />
<linearGradient
gradientTransform="matrix(-0.5,0.8660254,0.8660254,0.5,22.120835,-12.77147)"
gradientUnits="userSpaceOnUse"
id="linearGradient7674"
inkscape:collect="always"
x1="15.910872"
x2="17.822588"
xlink:href="#linearGradient6949"
y1="5.5152001"
y2="4.4475551" />
<radialGradient
cx="17.34375"
cy="5.0044641"
fx="17.34375"
fy="5.0044641"
gradientTransform="matrix(-1.0188267,1.7646596,2.4705234,1.4263573,22.571514,-33.292186)"
gradientUnits="userSpaceOnUse"
id="radialGradient7676"
inkscape:collect="always"
r="2.5"
xlink:href="#linearGradient7798" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient7680"
inkscape:collect="always"
x1="15.3125"
x2="15.3125"
xlink:href="#linearGradient7469"
y1="76.232018"
y2="83.3125" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient7684"
inkscape:collect="always"
x1="15.3125"
x2="15.3125"
xlink:href="#linearGradient7469"
y1="76.232018"
y2="83.3125" />
<linearGradient
gradientTransform="matrix(0.6446194,0,0,0.7325482,0.5330709,4.8960662)"
gradientUnits="userSpaceOnUse"
id="linearGradient7686"
inkscape:collect="always"
x1="21.812019"
x2="26"
xlink:href="#linearGradient6985"
y1="16.46875"
y2="16.46875" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient7688"
inkscape:collect="always"
x1="22.15625"
x2="22.15625"
xlink:href="#linearGradient7469"
y1="69.6875"
y2="80.97287" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient7690"
inkscape:collect="always"
x1="23.909048"
x2="21.058523"
xlink:href="#linearGradient7769"
y1="76.483147"
y2="67.290756" />
<radialGradient
cx="16.875"
cy="23.672499"
fx="16.875"
fy="23.672499"
gradientTransform="matrix(1,0,0,1.013514,0,-0.304899)"
gradientUnits="userSpaceOnUse"
id="radialGradient7702"
inkscape:collect="always"
r="4.625"
xlink:href="#linearGradient2591" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient7704"
inkscape:collect="always"
x1="12.835793"
x2="18.422049"
xlink:href="#linearGradient2631"
y1="18.849401"
y2="27.072878" />
<radialGradient
cx="14.75"
cy="22.6875"
fx="14.75"
fy="22.6875"
gradientTransform="matrix(1,0,0,1.035714,0,-0.810268)"
gradientUnits="userSpaceOnUse"
id="radialGradient7706"
inkscape:collect="always"
r="1.75"
xlink:href="#linearGradient2818" />
<radialGradient
cx="16.875"
cy="23.672499"
fx="16.875"
fy="23.672499"
gradientTransform="matrix(1,0,0,1.013514,0,-0.304899)"
gradientUnits="userSpaceOnUse"
id="radialGradient7708"
inkscape:collect="always"
r="4.625"
xlink:href="#linearGradient2591" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient7710"
inkscape:collect="always"
x1="12.835793"
x2="18.422049"
xlink:href="#linearGradient2631"
y1="18.849401"
y2="27.072878" />
<radialGradient
cx="14.75"
cy="22.6875"
fx="14.75"
fy="22.6875"
gradientTransform="matrix(1,0,0,1.035714,0,-0.810268)"
gradientUnits="userSpaceOnUse"
id="radialGradient7712"
inkscape:collect="always"
r="1.75"
xlink:href="#linearGradient2818" />
<radialGradient
cx="22.957685"
cy="22.990465"
fx="22.957685"
fy="22.990465"
gradientTransform="matrix(0.5682481,0,0,0.4735992,-67.555771,-59.504815)"
gradientUnits="userSpaceOnUse"
id="radialGradient7731"
inkscape:collect="always"
r="3.9375"
xlink:href="#linearGradient7743" />
<linearGradient
gradientTransform="matrix(0.6446194,0,0,0.649013,-88.805511,-121.18325)"
gradientUnits="userSpaceOnUse"
id="linearGradient7735"
inkscape:collect="always"
x1="32.432842"
x2="42.548504"
xlink:href="#linearGradient6985"
y1="116.58936"
y2="116.58936" />
<linearGradient
gradientTransform="matrix(0.6446194,0,0,0.649013,-69.466929,-121.18325)"
gradientUnits="userSpaceOnUse"
id="linearGradient7742"
inkscape:collect="always"
x1="32.432842"
x2="42.548504"
xlink:href="#linearGradient6985"
y1="116.58936"
y2="116.58936" />
<linearGradient
gradientTransform="matrix(-0.6446194,0,0,0.6669232,-38.484909,-96.84305)"
gradientUnits="userSpaceOnUse"
id="linearGradient7745"
inkscape:collect="always"
x1="14.507583"
x2="14.287912"
xlink:href="#linearGradient7428"
y1="75.603554"
y2="73.9664" />
<linearGradient
gradientTransform="matrix(-0.6517091,0,0,0.7159521,-38.452563,-100.54272)"
gradientUnits="userSpaceOnUse"
id="linearGradient7755"
inkscape:collect="always"
x1="20.240931"
x2="15.423766"
xlink:href="#linearGradient6985"
y1="70.804199"
y2="70.229668" />
<linearGradient
gradientTransform="matrix(0.6487524,0,0,0.6912938,-69.485786,-98.853628)"
gradientUnits="userSpaceOnUse"
id="linearGradient7760"
inkscape:collect="always"
x1="14.937631"
x2="19.445436"
xlink:href="#linearGradient6985"
y1="68.506096"
y2="70.892586" />
<radialGradient
cx="11.313708"
cy="19.083185"
fx="11.313708"
fy="19.083185"
gradientTransform="matrix(1,0,0,0.2767857,0,13.801232)"
gradientUnits="userSpaceOnUse"
id="radialGradient5797"
inkscape:collect="always"
r="9.8994951"
xlink:href="#linearGradient5791" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient5787"
inkscape:collect="always"
x1="11"
x2="11"
xlink:href="#linearGradient5781"
y1="1.84375"
y2="14.625" />
<linearGradient
gradientTransform="matrix(6.61949e-2,0,0,-7.3912158e-2,8.5653309,43.495039)"
gradientUnits="userSpaceOnUse"
id="linearGradient5779"
inkscape:collect="always"
x1="16.008299"
x2="117.8379"
xlink:href="#linearGradient5579"
y1="521.35834"
y2="333.0986" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient5775"
inkscape:collect="always"
x1="11.344039"
x2="11.283378"
xlink:href="#linearGradient5769"
y1="15.724428"
y2="9.0953016" />
<linearGradient
id="linearGradient5579">
<stop
id="stop5581"
offset="0"
style="stop-color:#eddee1;stop-opacity:1;" />
<stop
id="stop5583"
offset="1"
style="stop-color:#cb9ea7;stop-opacity:1;" />
</linearGradient>
<linearGradient
id="linearGradient5769"
inkscape:collect="always">
<stop
id="stop5771"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop5773"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient5781"
inkscape:collect="always">
<stop
id="stop5783"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop5785"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient7746"
inkscape:collect="always">
<stop
id="stop7748"
offset="0"
style="stop-color:#000000;stop-opacity:1;" />
<stop
id="stop7750"
offset="1"
style="stop-color:#000000;stop-opacity:0;" />
</linearGradient>
<linearGradient
gradientTransform="matrix(0.6,0,0,0.6666667,91.4,-0.3333335)"
gradientUnits="userSpaceOnUse"
id="linearGradient8198"
inkscape:collect="always"
x1="10.759808"
x2="13.518933"
xlink:href="#linearGradient6949"
y1="9.5593405"
y2="9.5593405" />
<linearGradient
gradientTransform="matrix(0.8287938,0,0,1,105.71729,-3)"
gradientUnits="userSpaceOnUse"
id="linearGradient8196"
inkscape:collect="always"
x1="-6.5"
x2="-0.78125"
xlink:href="#linearGradient7118"
y1="8.625"
y2="15.5" />
<linearGradient
gradientTransform="matrix(0.8715953,0,0,1,97.192607,-3)"
gradientUnits="userSpaceOnUse"
id="linearGradient8194"
inkscape:collect="always"
x1="2.28125"
x2="6.825891"
xlink:href="#linearGradient6985"
y1="10.53125"
y2="10.53125" />
<linearGradient
gradientTransform="translate(94,-3)"
gradientUnits="userSpaceOnUse"
id="linearGradient8192"
inkscape:collect="always"
x1="6.2755728"
x2="7.564043"
xlink:href="#linearGradient6949"
y1="4.8968549"
y2="4.8968549" />
<linearGradient
gradientTransform="matrix(0.8333333,0,0,1,97.75,-3)"
gradientUnits="userSpaceOnUse"
id="linearGradient8190"
inkscape:collect="always"
x1="-6.5"
x2="-0.78125"
xlink:href="#linearGradient7118"
y1="8.625"
y2="15.5" />
<linearGradient
gradientTransform="matrix(0.8754864,0,0,1,89.18677,-3)"
gradientUnits="userSpaceOnUse"
id="linearGradient8188"
inkscape:collect="always"
x1="2.28125"
x2="6.825891"
xlink:href="#linearGradient6985"
y1="10.53125"
y2="10.53125" />
<linearGradient
gradientTransform="translate(88,-3)"
gradientUnits="userSpaceOnUse"
id="linearGradient8186"
inkscape:collect="always"
x1="6.2755728"
x2="7.564043"
xlink:href="#linearGradient6949"
y1="4.8968549"
y2="4.8968549" />
<linearGradient
gradientTransform="translate(0,-4)"
gradientUnits="userSpaceOnUse"
id="linearGradient8184"
inkscape:collect="always"
x1="1.484375"
x2="8.5470304"
xlink:href="#linearGradient7084"
y1="17.453125"
y2="17.453125" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient8182"
inkscape:collect="always"
x1="-0.20097332"
x2="6.3455257"
xlink:href="#linearGradient7070"
y1="17.427599"
y2="19.181728" />
<linearGradient
gradientTransform="translate(0,-4)"
gradientUnits="userSpaceOnUse"
id="linearGradient8180"
inkscape:collect="always"
x1="0.97256702"
x2="5.2889619"
xlink:href="#linearGradient6985"
y1="17.53125"
y2="17.53125" />
<linearGradient
gradientTransform="translate(0,-4)"
gradientUnits="userSpaceOnUse"
id="linearGradient8178"
inkscape:collect="always"
x1="1.484375"
x2="8.5470304"
xlink:href="#linearGradient7084"
y1="17.453125"
y2="17.453125" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient8176"
inkscape:collect="always"
x1="-0.20097332"
x2="6.3455257"
xlink:href="#linearGradient7070"
y1="17.427599"
y2="19.181728" />
<linearGradient
gradientTransform="translate(0,-4)"
gradientUnits="userSpaceOnUse"
id="linearGradient8174"
inkscape:collect="always"
x1="0.97256702"
x2="5.2889619"
xlink:href="#linearGradient6985"
y1="17.53125"
y2="17.53125" />
<radialGradient
cx="11.313708"
cy="19.083185"
fx="11.313708"
fy="19.083185"
gradientTransform="matrix(1,0,0,0.2767857,0,13.801232)"
gradientUnits="userSpaceOnUse"
id="radialGradient6551"
inkscape:collect="always"
r="9.8994951"
xlink:href="#linearGradient5791" />
<linearGradient
gradientTransform="matrix(6.61949e-2,0,0,-7.3912158e-2,8.5653909,43.510459)"
gradientUnits="userSpaceOnUse"
id="linearGradient6553"
inkscape:collect="always"
x1="16.008299"
x2="117.8379"
xlink:href="#linearGradient5579"
y1="521.35834"
y2="333.0986" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient6555"
inkscape:collect="always"
x1="11.344039"
x2="11.283378"
xlink:href="#linearGradient5769"
y1="15.724428"
y2="9.0953016" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient6557"
inkscape:collect="always"
x1="11"
x2="11"
xlink:href="#linearGradient5781"
y1="1.84375"
y2="14.625" />
<radialGradient
cx="9.25"
cy="20.75"
fx="9.25"
fy="20.75"
gradientTransform="matrix(1,0,0,0.1764706,0,17.088235)"
gradientUnits="userSpaceOnUse"
id="radialGradient7744"
inkscape:collect="always"
r="4.25"
xlink:href="#linearGradient7428" />
<radialGradient
cx="9.25"
cy="20.75"
fx="9.25"
fy="20.75"
gradientTransform="matrix(1,0,0,0.1764706,0,17.088235)"
gradientUnits="userSpaceOnUse"
id="radialGradient7752"
inkscape:collect="always"
r="4.25"
xlink:href="#linearGradient7746" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient5937"
inkscape:collect="always"
x1="5.4349723"
x2="8"
xlink:href="#linearGradient5931"
y1="4.6587892"
y2="13.790071" />
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient5929"
inkscape:collect="always"
x1="7.875"
x2="7.875"
xlink:href="#linearGradient5923"
y1="11.625"
y2="7.5" />
<linearGradient
id="linearGradient5923"
inkscape:collect="always">
<stop
id="stop5925"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop5927"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient5931">
<stop
id="stop5933"
offset="0"
style="stop-color:#eeeeec;stop-opacity:1" />
<stop
id="stop5935"
offset="1"
style="stop-color:#bbbbbb;stop-opacity:1;" />
</linearGradient>
<linearGradient
gradientTransform="translate(0,-4)"
gradientUnits="userSpaceOnUse"
id="linearGradient6266"
inkscape:collect="always"
x1="0.97256702"
x2="5.2889619"
xlink:href="#linearGradient6985"
y1="17.53125"
y2="17.53125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5769"
id="linearGradient2935"
gradientUnits="userSpaceOnUse"
x1="11.344039"
y1="15.724428"
x2="11.283378"
y2="9.0953016" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7428"
id="linearGradient2937"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6446194,0,0,0.7013467,-69.466929,-99.338661)"
x1="14.507583"
y1="75.603554"
x2="14.287912"
y2="73.9664" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7194"
id="radialGradient2939"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.8210228,0,2.003565)"
cx="10.606602"
cy="11.194525"
fx="10.606602"
fy="11.194525"
r="7.7781744" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7194"
id="radialGradient2941"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.8210228,0,2.003565)"
cx="10.606602"
cy="11.194525"
fx="10.606602"
fy="11.194525"
r="7.7781744" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6949"
id="linearGradient2943"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(68,-1)"
x1="6.2755728"
y1="4.8968549"
x2="7.564043"
y2="4.8968549" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6949"
id="linearGradient2945"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(60,-1)"
x1="6.2755728"
y1="4.8968549"
x2="7.564043"
y2="4.8968549" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient2947"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(60,-1)"
x1="0.97256702"
y1="17.53125"
x2="5.2889619"
y2="17.53125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7070"
id="linearGradient2949"
gradientUnits="userSpaceOnUse"
x1="-0.20097332"
y1="17.427599"
x2="6.3455257"
y2="19.181728" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient2951"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(74,-1)"
x1="0.97256702"
y1="17.53125"
x2="5.2889619"
y2="17.53125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7070"
id="linearGradient2953"
gradientUnits="userSpaceOnUse"
x1="-0.20097332"
y1="17.427599"
x2="6.3455257"
y2="19.181728" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7084"
id="linearGradient2955"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(60,-1)"
x1="1.484375"
y1="17.453125"
x2="8.5470304"
y2="17.453125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7084"
id="linearGradient2957"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(74,-1)"
x1="1.484375"
y1="17.453125"
x2="8.5470304"
y2="17.453125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient2959"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(60,-1)"
x1="2.28125"
y1="10.53125"
x2="6.825891"
y2="10.53125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7118"
id="linearGradient2961"
gradientUnits="userSpaceOnUse"
x1="-6.5"
y1="8.625"
x2="-0.78125"
y2="15.5" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient2963"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(71,-1)"
x1="2.28125"
y1="10.53125"
x2="6.825891"
y2="10.53125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7118"
id="linearGradient2965"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,1,-8.96875,0)"
x1="-6.5"
y1="8.625"
x2="-0.78125"
y2="15.5" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient2967"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6,0,0,1,64.4,-1)"
x1="8.5163479"
y1="9.5593405"
x2="12.945535"
y2="9.5593405" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7487"
id="linearGradient2969"
gradientUnits="userSpaceOnUse"
x1="-19.40625"
y1="6.375"
x2="-19"
y2="10.71875" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7194"
id="radialGradient2971"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.8210228,0,2.003565)"
cx="10.606602"
cy="11.194525"
fx="10.606602"
fy="11.194525"
r="7.7781744" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7194"
id="radialGradient2973"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.8210228,0,2.003565)"
cx="10.606602"
cy="11.194525"
fx="10.606602"
fy="11.194525"
r="7.7781744" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6949"
id="linearGradient2975"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(68,-1)"
x1="6.2755728"
y1="4.8968549"
x2="7.564043"
y2="4.8968549" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6949"
id="linearGradient2977"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(60,-1)"
x1="6.2755728"
y1="4.8968549"
x2="7.564043"
y2="4.8968549" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient2979"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(60,-1)"
x1="0.97256702"
y1="17.53125"
x2="5.2889619"
y2="17.53125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7070"
id="linearGradient2981"
gradientUnits="userSpaceOnUse"
x1="-0.20097332"
y1="17.427599"
x2="6.3455257"
y2="19.181728" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient2983"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(74,-1)"
x1="0.97256702"
y1="17.53125"
x2="5.2889619"
y2="17.53125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7070"
id="linearGradient2985"
gradientUnits="userSpaceOnUse"
x1="-0.20097332"
y1="17.427599"
x2="6.3455257"
y2="19.181728" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7084"
id="linearGradient2987"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(60,-1)"
x1="1.484375"
y1="17.453125"
x2="8.5470304"
y2="17.453125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7084"
id="linearGradient2989"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(74,-1)"
x1="1.484375"
y1="17.453125"
x2="8.5470304"
y2="17.453125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient2991"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(60,-1)"
x1="2.28125"
y1="10.53125"
x2="6.825891"
y2="10.53125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7118"
id="linearGradient2993"
gradientUnits="userSpaceOnUse"
x1="-6.5"
y1="8.625"
x2="-0.78125"
y2="15.5" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient2995"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(71,-1)"
x1="2.28125"
y1="10.53125"
x2="6.825891"
y2="10.53125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7118"
id="linearGradient2997"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,1,-8.96875,0)"
x1="-6.5"
y1="8.625"
x2="-0.78125"
y2="15.5" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient2999"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6,0,0,1,64.4,-1)"
x1="8.5163479"
y1="9.5593405"
x2="12.945535"
y2="9.5593405" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7487"
id="linearGradient3001"
gradientUnits="userSpaceOnUse"
x1="-19.40625"
y1="6.375"
x2="-19"
y2="10.71875" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient3003"
gradientUnits="userSpaceOnUse"
x1="16.484426"
y1="6.1923113"
x2="20.429724"
y2="6.1923113" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7798"
id="radialGradient3005"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.0376534,0,0,2.8527147,-17.996801,-9.8700587)"
cx="17.34375"
cy="5.0044641"
fx="17.34375"
fy="5.0044641"
r="2.5" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient3007"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(0,90.28125)"
x1="3.4464669"
y1="81.852737"
x2="16.233637"
y2="81.852737" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7491"
id="linearGradient3009"
gradientUnits="userSpaceOnUse"
x1="11.443501"
y1="17.795679"
x2="17.464556"
y2="32.919998" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7534"
id="radialGradient3011"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.4132237,0,0,1.4132237,-7.0492445,-15.818799)"
cx="16.037378"
cy="30.99523"
fx="16.037378"
fy="30.99523"
r="8.143054" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7552"
id="linearGradient3013"
gradientUnits="userSpaceOnUse"
x1="10.536715"
y1="20.320419"
x2="12.720174"
y2="32.346565" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient3015"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(29,90.28125)"
x1="3.4464669"
y1="81.852737"
x2="16.233637"
y2="81.852737" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7491"
id="linearGradient3017"
gradientUnits="userSpaceOnUse"
x1="11.443501"
y1="17.795679"
x2="17.464556"
y2="32.919998" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7534"
id="radialGradient3019"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.4132237,0,0,1.4132237,-7.0492445,-15.818799)"
cx="16.037378"
cy="30.99523"
fx="16.037378"
fy="30.99523"
r="8.143054" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7552"
id="linearGradient3021"
gradientUnits="userSpaceOnUse"
x1="10.536715"
y1="20.320419"
x2="12.720174"
y2="32.346565" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient3030"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(12,216.28125)"
x1="3.4464669"
y1="81.852737"
x2="16.233637"
y2="81.852737" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient3037"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(-17,216.28125)"
x1="3.4464669"
y1="81.852737"
x2="16.233637"
y2="81.852737" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6949"
id="linearGradient3156"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(68,-1)"
x1="6.2755728"
y1="4.8968549"
x2="7.564043"
y2="4.8968549" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6949"
id="linearGradient3158"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(60,-1)"
x1="6.2755728"
y1="4.8968549"
x2="7.564043"
y2="4.8968549" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient3160"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(60,-1)"
x1="0.97256702"
y1="17.53125"
x2="5.2889619"
y2="17.53125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7070"
id="linearGradient3162"
gradientUnits="userSpaceOnUse"
x1="-0.20097332"
y1="17.427599"
x2="6.3455257"
y2="19.181728" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7070"
id="linearGradient3164"
gradientUnits="userSpaceOnUse"
x1="-0.20097332"
y1="17.427599"
x2="6.3455257"
y2="19.181728" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7084"
id="linearGradient3166"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(60,-1)"
x1="1.484375"
y1="17.453125"
x2="8.5470304"
y2="17.453125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7084"
id="linearGradient3168"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(74,-1)"
x1="1.484375"
y1="17.453125"
x2="8.5470304"
y2="17.453125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient3170"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(60,-1)"
x1="2.28125"
y1="10.53125"
x2="6.825891"
y2="10.53125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7118"
id="linearGradient3172"
gradientUnits="userSpaceOnUse"
x1="-6.5"
y1="8.625"
x2="-0.78125"
y2="15.5" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient3174"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(71,-1)"
x1="2.28125"
y1="10.53125"
x2="6.825891"
y2="10.53125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7118"
id="linearGradient3176"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1,0,0,1,-8.96875,0)"
x1="-6.5"
y1="8.625"
x2="-0.78125"
y2="15.5" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient3178"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6,0,0,1,64.4,-1)"
x1="8.5163479"
y1="9.5593405"
x2="12.945535"
y2="9.5593405" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient3187"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(682,267.28125)"
x1="3.4464669"
y1="81.852737"
x2="16.233637"
y2="81.852737" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient3194"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(653,267.28125)"
x1="3.4464669"
y1="81.852737"
x2="16.233637"
y2="81.852737" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient5791"
id="radialGradient2906"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.2767857,0,13.801232)"
cx="11.313708"
cy="19.083185"
fx="11.313708"
fy="19.083185"
r="9.8994951" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5579"
id="linearGradient2908"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(6.61949e-2,0,0,-7.3912158e-2,8.5653309,43.495039)"
x1="16.008299"
y1="521.35834"
x2="117.8379"
y2="333.0986" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5769"
id="linearGradient2910"
gradientUnits="userSpaceOnUse"
x1="11.344039"
y1="15.724428"
x2="11.283378"
y2="9.0953016" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient5781"
id="linearGradient2912"
gradientUnits="userSpaceOnUse"
x1="11"
y1="1.84375"
x2="11"
y2="14.625" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7941"
id="radialGradient2914"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.5562701,0,12.188706)"
cx="23.78125"
cy="27.46875"
fx="23.78125"
fy="27.46875"
r="9.71875" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7941"
id="radialGradient2916"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.5562701,0,12.188706)"
cx="23.78125"
cy="27.46875"
fx="23.78125"
fy="27.46875"
r="9.71875" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7941"
id="radialGradient2918"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.5562701,0,12.188706)"
cx="23.78125"
cy="27.46875"
fx="23.78125"
fy="27.46875"
r="9.71875" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7927"
id="radialGradient2920"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,2.1420455,0,-29.443359)"
cx="14.5"
cy="25.78125"
fx="14.5"
fy="25.78125"
r="5.5" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7927"
id="radialGradient2922"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,2.1420455,0,-29.443359)"
cx="14.5"
cy="25.78125"
fx="14.5"
fy="25.78125"
r="5.5" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6949"
id="linearGradient2924"
gradientUnits="userSpaceOnUse"
x1="15.910872"
y1="5.5152001"
x2="17.822588"
y2="4.4475551" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7798"
id="radialGradient2926"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(2.0376534,0,0,2.8527147,-17.996801,-9.8700587)"
cx="17.34375"
cy="5.0044641"
fx="17.34375"
fy="5.0044641"
r="2.5" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6949"
id="linearGradient2928"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.5,0.8660254,0.8660254,0.5,22.120835,-12.77147)"
x1="15.910872"
y1="5.5152001"
x2="17.822588"
y2="4.4475551" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7798"
id="radialGradient2930"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-1.0188267,1.7646596,2.4705234,1.4263573,22.571514,-33.292186)"
cx="17.34375"
cy="5.0044641"
fx="17.34375"
fy="5.0044641"
r="2.5" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient2932"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6487524,0,0,0.6912938,-69.485786,-98.853628)"
x1="14.937631"
y1="68.506096"
x2="19.445436"
y2="70.892586" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7469"
id="linearGradient2934"
gradientUnits="userSpaceOnUse"
x1="15.3125"
y1="76.232018"
x2="15.3125"
y2="83.3125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient2936"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.6517091,0,0,0.7159521,-38.452563,-100.54272)"
x1="20.240931"
y1="70.804199"
x2="15.423766"
y2="70.229668" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7469"
id="linearGradient2938"
gradientUnits="userSpaceOnUse"
x1="15.3125"
y1="76.232018"
x2="15.3125"
y2="83.3125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient2940"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6446194,0,0,0.7325482,0.5330709,4.8960662)"
x1="21.812019"
y1="16.46875"
x2="26"
y2="16.46875" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7469"
id="linearGradient2942"
gradientUnits="userSpaceOnUse"
x1="22.15625"
y1="69.6875"
x2="22.15625"
y2="80.97287" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7769"
id="linearGradient2944"
gradientUnits="userSpaceOnUse"
x1="23.909048"
y1="76.483147"
x2="21.058523"
y2="67.290756" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7428"
id="linearGradient2946"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(-0.6446194,0,0,0.6669232,-38.484909,-96.84305)"
x1="14.507583"
y1="75.603554"
x2="14.287912"
y2="73.9664" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7428"
id="linearGradient2948"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6446194,0,0,0.7013467,-69.466929,-99.338661)"
x1="14.507583"
y1="75.603554"
x2="14.287912"
y2="73.9664" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient7743"
id="radialGradient2950"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.5682481,0,0,0.4735992,-67.555771,-59.504815)"
cx="22.957685"
cy="22.990465"
fx="22.957685"
fy="22.990465"
r="3.9375" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7535"
id="linearGradient2952"
gradientUnits="userSpaceOnUse"
x1="13.077905"
y1="-43.175999"
x2="13.298875"
y2="-44.36924" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient2954"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6446194,0,0,0.649013,-88.805511,-121.18325)"
x1="32.432842"
y1="116.58936"
x2="42.548504"
y2="116.58936" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient2591"
id="radialGradient2956"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,1.013514,0,-0.304899)"
cx="16.875"
cy="23.672499"
fx="16.875"
fy="23.672499"
r="4.625" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2631"
id="linearGradient2958"
gradientUnits="userSpaceOnUse"
x1="12.835793"
y1="18.849401"
x2="18.422049"
y2="27.072878" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient2818"
id="radialGradient2960"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,1.035714,0,-0.810268)"
cx="14.75"
cy="22.6875"
fx="14.75"
fy="22.6875"
r="1.75" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7543"
id="linearGradient2962"
gradientUnits="userSpaceOnUse"
x1="18.999924"
y1="-42.910835"
x2="18.999924"
y2="-43.971947" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6985"
id="linearGradient2964"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.6446194,0,0,0.649013,-69.466929,-121.18325)"
x1="32.432842"
y1="116.58936"
x2="42.548504"
y2="116.58936" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient2591"
id="radialGradient2966"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,1.013514,0,-0.304899)"
cx="16.875"
cy="23.672499"
fx="16.875"
fy="23.672499"
r="4.625" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2631"
id="linearGradient2968"
gradientUnits="userSpaceOnUse"
x1="12.835793"
y1="18.849401"
x2="18.422049"
y2="27.072878" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient2818"
id="radialGradient2970"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,1.035714,0,-0.810268)"
cx="14.75"
cy="22.6875"
fx="14.75"
fy="22.6875"
r="1.75" />
</defs>
<g
id="layer6"
inkscape:groupmode="layer"
inkscape:label="baseplate"
style="display:none">
<rect
height="48"
id="rect6284"
inkscape:label="48x48"
style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
width="48"
x="296"
y="50" />
<rect
height="32"
id="rect6592"
inkscape:label="32x32"
style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
width="32"
x="303"
y="126" />
<rect
height="22"
id="rect6749"
inkscape:label="22x22"
style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
width="22"
x="303"
y="177" />
<rect
height="16"
id="rect6833"
inkscape:label="16x16"
style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
width="16"
x="303"
y="219" />
<text
id="context"
inkscape:label="context"
style="font-size:18.30070686px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:Bitstream Vera Sans"
x="20.970737"
xml:space="preserve"
y="21.513618"><tspan
id="tspan2716"
sodipodi:role="line"
x="20.970737"
y="21.513618">actions</tspan></text>
<text
id="icon-name"
inkscape:label="icon-name"
sodipodi:linespacing="125%"
style="font-size:18.30070686px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
x="191.97073"
xml:space="preserve"
y="21.513618"><tspan
id="tspan3023"
sodipodi:role="line"
x="191.97073"
y="21.513618">system-search</tspan></text>
</g>
<g
id="layer2"
inkscape:groupmode="layer"
inkscape:label="small sizes"
style="display:inline">
<g
id="g48"
style="display:inline;enable-background:new"
transform="translate(296,50)">
<path
d="M 25,1.5 C 24.6205,1.5 24.248131,1.537244 23.875,1.5625 L 23.0625,4.65625 C 22.562787,4.728499 22.074231,4.812017 21.59375,4.9375 L 19.71875,2.375 C 19.007591,2.615546 18.320304,2.918806 17.65625,3.25 L 17.65625,4.25 L 17.96875,6.5 C 17.593474,6.7338417 17.225718,6.9845461 16.875,7.25 L 14.15625,5.625 C 13.591011,6.120304 13.055582,6.620272 12.5625,7.1875 L 12.5625,8.1875 L 13.875,10.4375 C 13.704891,10.685347 13.52753,10.928096 13.375,11.1875 L 10.21875,10.6875 C 9.886574,11.357702 9.614932,12.063371 9.375,12.78125 L 9.375,13.78125 L 11.71875,15.53125 C 11.675744,15.73482 11.653623,15.947647 11.625,16.15625 L 8.5625,16.90625 C 8.538613,17.26923 8.5,17.631009 8.5,18 C 8.5507621,18.334078 8.5,18.665892 8.5,19 C 8.5,19.390009 8.535838,19.772979 8.5625,20.15625 L 11.65625,20.9375 C 11.68556,21.140222 11.746182,21.331995 11.78125,21.53125 L 9.40625,23.28125 L 9.40625,24.28125 C 9.646074,24.988695 9.920437,25.682965 10.25,26.34375 L 13.40625,25.90625 C 13.563264,26.168948 13.758283,26.407146 13.9375,26.65625 L 12.59375,28.84375 C 12.711179,28.978108 12.848452,29.089281 12.96875,29.21875 L 12.59375,29.84375 C 13.093016,30.414989 13.614905,30.939752 14.1875,31.4375 L 16.96875,29.8125 C 17.31088,30.067085 17.665372,30.30864 18.03125,30.53125 L 17.6875,32.78125 C 17.737812,32.806186 17.79308,32.819387 17.84375,32.84375 L 17.6875,33.78125 C 18.348972,34.109099 19.042036,34.386959 19.75,34.625 L 21.6875,32.0625 C 22.159007,32.182176 22.635226,32.27522 23.125,32.34375 L 23.90625,35.4375 C 24.26923,35.461387 24.631009,35.5 25,35.5 C 25.390009,35.5 25.772979,35.464162 26.15625,35.4375 L 26.9375,32.34375 C 27.426902,32.272991 27.904014,32.184349 28.375,32.0625 L 30.25,34.625 C 30.971071,34.382552 31.670979,34.085541 32.34375,33.75 L 32.21875,32.8125 C 32.260427,32.792113 32.302278,32.770684 32.34375,32.75 L 32.03125,30.5 C 32.406526,30.266158 32.774282,30.015454 33.125,29.75 L 35.84375,31.40625 C 36.414989,30.906984 36.939752,30.385096 37.4375,29.8125 L 37.0625,29.1875 C 37.182814,29.058068 37.320428,28.947177 37.4375,28.8125 L 36.125,26.59375 C 36.294989,26.345632 36.472162,26.102506 36.625,25.84375 L 39.75,26.34375 C 40.085542,25.670979 40.382552,24.971071 40.625,24.25 L 40.625,23.25 L 38.21875,21.4375 C 38.253412,21.248545 38.3168,21.06761 38.34375,20.875 L 41.4375,20.125 C 41.462756,19.751869 41.5,19.3795 41.5,19 C 41.449428,18.665908 41.5,18.334092 41.5,18 C 41.5,17.6205 41.462756,17.248131 41.4375,16.875 L 38.34375,16.09375 C 38.314902,15.890949 38.25402,15.69921 38.21875,15.5 L 40.625,13.75 L 40.625,12.75 C 40.385554,12.037857 40.080296,11.352579 39.75,10.6875 L 36.59375,11.125 C 36.436295,10.860379 36.274012,10.593728 36.09375,10.34375 L 37.40625,8.15625 L 37.40625,7.15625 C 36.911664,6.590366 36.379085,6.087553 35.8125,5.59375 L 33.0625,7.21875 C 32.709612,6.9544171 32.345156,6.7019972 31.96875,6.46875 L 32.3125,4.25 L 32.3125,3.25 C 31.647421,2.919704 30.962143,2.614446 30.25,2.375 L 28.34375,4.9375 C 27.852954,4.811728 27.354374,4.726509 26.84375,4.65625 L 26.09375,1.5625 C 25.73077,1.538613 25.368991,1.5 25,1.5 z M 25,11.5 C 28.974251,11.5 32.21445,14.589674 32.46875,18.5 C 32.21445,22.410327 28.974251,25.5 25,25.5 C 21.025749,25.5 17.78555,22.410326 17.53125,18.5 C 17.78555,14.589674 21.025749,11.5 25,11.5 z"
id="path6195"
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccscc"
style="opacity:1;fill:url(#linearGradient6823);fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
<path
d="M 24.5625,3.125 C 24.420265,3.1665368 24.31308,3.2911509 24.28125,3.4375 L 23.65625,5.8125 C 23.594273,6.0547043 23.386207,6.2103954 23.15625,6.25 C 22.676207,6.3194052 22.209297,6.4112999 21.75,6.53125 C 21.508607,6.5923543 21.270165,6.4744882 21.125,6.28125 L 19.71875,4.375 C 19.610636,4.2229595 19.392702,4.1825794 19.21875,4.25 C 19.026665,4.3273243 18.830019,4.4238554 18.59375,4.53125 C 18.444562,4.5979277 18.341641,4.7448869 18.34375,4.90625 L 18.34375,4.9375 L 18.6875,7.3125 C 18.719927,7.5498995 18.618188,7.8051061 18.40625,7.9375 C 18.035371,8.1591741 17.670744,8.3886116 17.3125,8.65625 C 17.313807,8.6666257 17.313807,8.6771243 17.3125,8.6875 C 17.30061,8.6964066 17.293173,8.7097601 17.28125,8.71875 C 17.282557,8.7291257 17.282557,8.7396243 17.28125,8.75 C 17.270874,8.7513071 17.260376,8.7513071 17.25,8.75 C 17.047121,8.9073792 16.781645,8.9161404 16.5625,8.78125 C 16.552124,8.7825571 16.541626,8.7825571 16.53125,8.78125 C 16.529943,8.7708743 16.529943,8.7603757 16.53125,8.75 L 16.5,8.75 C 16.498693,8.7396243 16.498693,8.7291257 16.5,8.71875 L 14.5,7.53125 C 14.335891,7.4347056 14.130512,7.4863669 14,7.625 C 13.835386,7.7789546 13.702999,7.9198171 13.5625,8.0625 C 13.43577,8.1891147 13.415996,8.3730252 13.5,8.53125 L 14.6875,10.65625 C 14.805346,10.866035 14.796843,11.118035 14.65625,11.3125 C 14.389833,11.67053 14.131292,12.030123 13.90625,12.40625 C 13.906016,12.414217 13.906016,12.429533 13.90625,12.4375 C 13.901873,12.444863 13.91061,12.461368 13.90625,12.46875 C 13.897772,12.48094 13.88719,12.491522 13.875,12.5 C 13.74652,12.72405 13.491081,12.817003 13.25,12.78125 L 10.90625,12.40625 C 10.716647,12.368028 10.54459,12.478321 10.46875,12.65625 C 10.381816,12.861499 10.302018,13.058355 10.21875,13.28125 C 10.151329,13.455201 10.19171,13.673136 10.34375,13.78125 L 12.28125,15.21875 C 12.48441,15.361347 12.586911,15.604301 12.53125,15.84375 C 12.412421,16.31192 12.284215,16.772896 12.21875,17.25 C 12.192643,17.495028 12.034926,17.71385 11.78125,17.78125 L 9.4375,18.3125 C 9.2590941,18.355613 9.1306788,18.504047 9.125,18.6875 C 9.1192151,18.806293 9.125,18.929145 9.125,19 C 9.125,19.091803 9.1183729,19.236379 9.125,19.375 C 9.1408607,19.549285 9.2672388,19.678279 9.4375,19.71875 L 11.8125,20.3125 C 12.054166,20.375665 12.216856,20.574105 12.25,20.8125 C 12.319514,21.293297 12.411647,21.79203 12.53125,22.25 C 12.592354,22.491393 12.474488,22.729835 12.28125,22.875 L 10.40625,24.28125 C 10.25421,24.389364 10.213829,24.607299 10.28125,24.78125 C 10.36492,24.999898 10.438268,25.192227 10.53125,25.40625 C 10.604843,25.574091 10.756113,25.682436 10.9375,25.65625 L 13.3125,25.3125 C 13.549899,25.280073 13.805106,25.381812 13.9375,25.59375 C 14.159174,25.964629 14.388612,26.329256 14.65625,26.6875 C 14.659828,26.692289 14.683909,26.682706 14.6875,26.6875 C 14.69969,26.695978 14.710272,26.70656 14.71875,26.71875 C 14.729126,26.717443 14.739624,26.717443 14.75,26.71875 C 14.751307,26.729126 14.751307,26.739624 14.75,26.75 C 14.90738,26.952879 14.91614,27.218356 14.78125,27.4375 C 14.782557,27.447876 14.782557,27.458374 14.78125,27.46875 C 14.770874,27.470057 14.760376,27.470057 14.75,27.46875 L 14.6875,27.5 L 13.5,29.5 C 13.403455,29.664109 13.455117,29.869488 13.59375,30 C 13.750808,30.163558 13.896715,30.310635 14.0625,30.46875 C 14.193012,30.607383 14.398391,30.659045 14.5625,30.5625 L 16.6875,29.3125 C 16.89145,29.197931 17.124523,29.207848 17.3125,29.34375 C 17.67053,29.610167 18.030123,29.868708 18.40625,30.09375 C 18.414217,30.093984 18.429533,30.093984 18.4375,30.09375 C 18.447876,30.092443 18.458374,30.092443 18.46875,30.09375 C 18.48094,30.102228 18.491522,30.11281 18.5,30.125 C 18.72405,30.25348 18.817002,30.50892 18.78125,30.75 L 18.40625,33.09375 C 18.368028,33.283353 18.478321,33.45541 18.65625,33.53125 C 18.876585,33.626116 19.065088,33.679189 19.25,33.75 C 19.423951,33.817421 19.641886,33.77704 19.75,33.625 L 21.21875,31.6875 C 21.363915,31.494262 21.602357,31.376396 21.84375,31.4375 C 22.286721,31.549933 22.773531,31.683332 23.25,31.75 C 23.488395,31.783144 23.686835,31.945834 23.75,32.1875 L 24.34375,34.5625 C 24.384221,34.732761 24.513215,34.859139 24.6875,34.875 C 24.806294,34.880786 24.929145,34.875 25,34.875 C 25.091802,34.875 25.236376,34.881628 25.375,34.875 C 25.549285,34.859139 25.678279,34.732761 25.71875,34.5625 L 26.3125,32.1875 C 26.375665,31.945834 26.574105,31.783144 26.8125,31.75 C 27.276409,31.682927 27.764157,31.586358 28.21875,31.46875 C 28.460143,31.407646 28.698585,31.525512 28.84375,31.71875 L 30.25,33.625 C 30.358114,33.77704 30.576049,33.817421 30.75,33.75 C 30.956927,33.668608 31.161779,33.609398 31.40625,33.5 C 31.574091,33.426407 31.682436,33.275137 31.65625,33.09375 L 31.3125,30.6875 C 31.280073,30.450101 31.381812,30.194894 31.59375,30.0625 C 31.964629,29.840826 32.329256,29.611388 32.6875,29.34375 C 32.692289,29.340172 32.682706,29.316091 32.6875,29.3125 C 32.695978,29.30031 32.70656,29.289728 32.71875,29.28125 C 32.717443,29.270874 32.717443,29.260376 32.71875,29.25 C 32.729126,29.248693 32.739624,29.248693 32.75,29.25 C 32.952879,29.09262 33.218356,29.08386 33.4375,29.21875 C 33.447876,29.217443 33.458374,29.217443 33.46875,29.21875 C 33.470057,29.229126 33.470057,29.239624 33.46875,29.25 C 33.48094,29.258478 33.491522,29.26906 33.5,29.28125 C 33.501307,29.291626 33.501307,29.302124 33.5,29.3125 L 35.5,30.5 C 35.664109,30.596545 35.869488,30.544883 36,30.40625 C 36.179452,30.23393 36.302944,30.078169 36.4375,29.9375 C 36.576133,29.806988 36.627795,29.601609 36.53125,29.4375 L 35.3125,27.375 C 35.188001,27.163349 35.197304,26.914331 35.34375,26.71875 C 35.629673,26.335967 35.893793,25.922685 36.125,25.53125 C 36.251438,25.326577 36.477849,25.210093 36.71875,25.25 L 39.0625,25.625 C 39.252103,25.663222 39.42416,25.552929 39.5,25.375 C 39.598732,25.15328 39.66762,24.959439 39.75,24.75 C 39.817421,24.576049 39.77704,24.358114 39.625,24.25 L 37.6875,22.78125 C 37.494262,22.636085 37.376396,22.397643 37.4375,22.15625 C 37.549933,21.713279 37.683332,21.226469 37.75,20.75 C 37.783144,20.511605 37.945834,20.313165 38.1875,20.25 L 40.5625,19.71875 C 40.740906,19.675637 40.869321,19.527203 40.875,19.34375 C 40.881224,19.215046 40.875,19.081128 40.875,19 C 40.875,18.918872 40.881224,18.784954 40.875,18.65625 C 40.859139,18.481965 40.732761,18.352971 40.5625,18.3125 L 38.1875,17.71875 C 37.945834,17.655585 37.783144,17.457145 37.75,17.21875 C 37.682026,16.740899 37.587962,16.24204 37.46875,15.78125 C 37.407646,15.539857 37.525512,15.301415 37.71875,15.15625 L 39.625,13.75 C 39.77704,13.641886 39.817421,13.423951 39.75,13.25 C 39.674024,13.061203 39.574962,12.858973 39.46875,12.625 C 39.402073,12.475812 39.255113,12.372891 39.09375,12.375 C 39.083665,12.375132 39.072674,12.374112 39.0625,12.375 L 36.6875,12.71875 C 36.450101,12.751177 36.194894,12.649438 36.0625,12.4375 C 35.842283,12.067399 35.612482,11.704354 35.34375,11.34375 C 35.336565,11.334108 35.28849,11.353419 35.28125,11.34375 C 35.279943,11.333374 35.279943,11.322876 35.28125,11.3125 C 35.270874,11.313807 35.260376,11.313807 35.25,11.3125 C 35.248693,11.302124 35.248693,11.291626 35.25,11.28125 C 35.09262,11.078371 35.08386,10.812894 35.21875,10.59375 C 35.217443,10.583374 35.217443,10.572876 35.21875,10.5625 C 35.229126,10.561193 35.239624,10.561193 35.25,10.5625 C 35.258478,10.55031 35.26906,10.539728 35.28125,10.53125 L 35.3125,10.53125 L 36.5,8.53125 C 36.596545,8.3671415 36.544883,8.1617618 36.40625,8.03125 C 36.240698,7.8633377 36.088583,7.7346016 35.9375,7.59375 C 35.806988,7.4551169 35.601609,7.4034556 35.4375,7.5 L 33.4375,8.6875 L 33.40625,8.71875 C 33.407557,8.7291257 33.407557,8.7396243 33.40625,8.75 C 33.395874,8.7513071 33.385376,8.7513071 33.375,8.75 C 33.155856,8.8848909 32.890379,8.8761294 32.6875,8.71875 C 32.677124,8.7200571 32.666626,8.7200571 32.65625,8.71875 C 32.654943,8.7083743 32.654943,8.6978757 32.65625,8.6875 C 32.649118,8.6821526 32.63211,8.6928358 32.625,8.6875 C 32.623693,8.6771243 32.623693,8.6666257 32.625,8.65625 C 32.620014,8.6525064 32.629976,8.6287376 32.625,8.625 C 32.257705,8.3491363 31.895581,8.0901992 31.53125,7.875 C 31.335583,7.7541252 31.224487,7.5415669 31.25,7.3125 C 31.250234,7.3045326 31.250234,7.2892174 31.25,7.28125 C 31.248693,7.2708743 31.248693,7.2603757 31.25,7.25 L 31.59375,4.9375 C 31.594638,4.9273255 31.593618,4.9163352 31.59375,4.90625 C 31.595859,4.7448869 31.492938,4.5979277 31.34375,4.53125 C 31.132432,4.4357415 30.94363,4.3279216 30.75,4.25 C 30.576048,4.1825794 30.358114,4.2229595 30.25,4.375 L 28.8125,6.28125 C 28.669903,6.48441 28.426949,6.5869108 28.1875,6.53125 C 27.744864,6.4178196 27.262682,6.3205419 26.75,6.25 C 26.504972,6.2238931 26.28615,6.0661755 26.21875,5.8125 L 25.6875,3.4375 C 25.644387,3.2590938 25.495953,3.1306786 25.3125,3.125 C 25.193706,3.1192145 25.070855,3.125 25,3.125 C 24.910639,3.125 24.766144,3.1177018 24.625,3.125 C 24.617041,3.1245311 24.60172,3.125 24.59375,3.125 C 24.58578,3.125 24.570459,3.1245311 24.5625,3.125 z M 25,10.90625 C 29.469066,10.90625 33.09375,14.530935 33.09375,19 C 33.093748,23.469063 29.469065,27.09375 25,27.09375 C 20.530934,27.093751 16.90625,23.469064 16.90625,19 C 16.906249,14.530934 20.530933,10.90625 25,10.90625 z"
id="path6805"
inkscape:original="M 24.5625 3 C 24.35923 3.04421 24.20046 3.2029805 24.15625 3.40625 L 23.53125 5.78125 C 23.483468 5.9679799 23.314948 6.092286 23.125 6.125 C 22.64098 6.1949802 22.182858 6.2850435 21.71875 6.40625 C 21.527529 6.4546541 21.337224 6.3764578 21.21875 6.21875 L 19.8125 4.3125 C 19.671606 4.1143607 19.414194 4.0371373 19.1875 4.125 C 18.993802 4.2029735 18.76936 4.2980184 18.53125 4.40625 C 18.324518 4.4986463 18.199064 4.7119167 18.21875 4.9375 L 18.5625 7.34375 C 18.588547 7.5344413 18.506981 7.7417825 18.34375 7.84375 C 17.944518 8.0823706 17.574961 8.3317366 17.1875 8.625 C 17.187194 8.6354144 17.187194 8.6458356 17.1875 8.65625 C 17.026256 8.7813317 16.798789 8.7944724 16.625 8.6875 C 16.625306 8.6770856 16.625306 8.6666644 16.625 8.65625 L 14.5625 7.4375 C 14.348688 7.3117153 14.07629 7.3506293 13.90625 7.53125 C 13.738318 7.6883073 13.607866 7.8274718 13.46875 7.96875 C 13.30352 8.1338298 13.265476 8.3874571 13.375 8.59375 L 14.59375 10.71875 C 14.687088 10.884906 14.674159 11.095556 14.5625 11.25 C 14.280808 11.628558 14.018884 12.002113 13.78125 12.40625 C 13.780944 12.416664 13.780944 12.427086 13.78125 12.4375 C 13.681033 12.612264 13.480531 12.685804 13.28125 12.65625 L 10.9375 12.28125 C 10.690523 12.231462 10.442539 12.36198 10.34375 12.59375 C 10.254602 12.804225 10.176361 13.028864 10.09375 13.25 C 10.005887 13.476694 10.083111 13.734106 10.28125 13.875 L 12.21875 15.3125 C 12.382115 15.427165 12.451441 15.618092 12.40625 15.8125 C 12.287936 16.278641 12.160701 16.730819 12.09375 17.21875 C 12.072258 17.420467 11.946058 17.604159 11.75 17.65625 L 9.40625 18.1875 C 9.173707 18.243695 9.007402 18.448378 9 18.6875 C 8.993827 18.814263 9 18.937357 9 19 C 9 19.084932 8.992997 19.228517 9 19.375 C 9.020684 19.602286 9.184211 19.790972 9.40625 19.84375 L 11.78125 20.4375 C 11.972543 20.487499 12.097773 20.647913 12.125 20.84375 C 12.19498 21.32777 12.285044 21.817142 12.40625 22.28125 C 12.454654 22.472471 12.376458 22.662776 12.21875 22.78125 L 10.34375 24.1875 C 10.145611 24.328394 10.068387 24.585806 10.15625 24.8125 C 10.238399 25.027173 10.310236 25.247747 10.40625 25.46875 C 10.502176 25.687526 10.732318 25.815383 10.96875 25.78125 L 13.34375 25.4375 C 13.534441 25.411453 13.741782 25.493019 13.84375 25.65625 C 14.082371 26.055482 14.331737 26.425039 14.625 26.8125 C 14.635414 26.812806 14.645836 26.812806 14.65625 26.8125 C 14.781332 26.973744 14.794472 27.201212 14.6875 27.375 C 14.677086 27.374694 14.666664 27.374694 14.65625 27.375 L 13.40625 29.4375 C 13.280465 29.651312 13.319379 29.92371 13.5 30.09375 C 13.657889 30.258173 13.801484 30.402972 13.96875 30.5625 C 14.13879 30.743121 14.411188 30.782035 14.625 30.65625 L 16.75 29.40625 C 16.916156 29.312912 17.095556 29.325841 17.25 29.4375 C 17.628558 29.719192 18.002113 29.981116 18.40625 30.21875 C 18.416664 30.219056 18.427086 30.219056 18.4375 30.21875 C 18.612264 30.318967 18.685803 30.519469 18.65625 30.71875 L 18.28125 33.0625 C 18.231462 33.309477 18.36198 33.557461 18.59375 33.65625 C 18.825809 33.756164 19.046289 33.808957 19.21875 33.875 C 19.445444 33.962863 19.702856 33.885639 19.84375 33.6875 L 21.3125 31.75 C 21.430974 31.592292 21.621279 31.514096 21.8125 31.5625 C 22.253565 31.674449 22.731402 31.80681 23.21875 31.875 C 23.414587 31.902227 23.575001 32.027457 23.625 32.21875 L 24.21875 34.59375 C 24.271528 34.815789 24.460214 34.979316 24.6875 35 C 24.814265 35.006174 24.937358 35 25 35 C 25.08493 35 25.228513 35.007004 25.375 35 C 25.602286 34.979316 25.790972 34.815789 25.84375 34.59375 L 26.4375 32.21875 C 26.487499 32.027457 26.647913 31.902227 26.84375 31.875 C 27.312058 31.807291 27.790615 31.712598 28.25 31.59375 C 28.441221 31.545346 28.631526 31.623542 28.75 31.78125 L 30.15625 33.6875 C 30.297144 33.885639 30.554556 33.962863 30.78125 33.875 C 30.976376 33.79825 31.212629 33.739611 31.46875 33.625 C 31.687526 33.529074 31.815383 33.298932 31.78125 33.0625 L 31.4375 30.65625 C 31.411453 30.465559 31.493019 30.258218 31.65625 30.15625 C 32.055482 29.917629 32.425039 29.668263 32.8125 29.375 C 32.812806 29.364586 32.812806 29.354164 32.8125 29.34375 C 32.973744 29.218668 33.201212 29.205528 33.375 29.3125 C 33.374694 29.322914 33.374694 29.333336 33.375 29.34375 L 35.4375 30.59375 C 35.651312 30.719535 35.92371 30.680621 36.09375 30.5 C 36.279543 30.321591 36.402509 30.16584 36.53125 30.03125 C 36.711871 29.86121 36.750785 29.588812 36.625 29.375 L 35.40625 27.3125 C 35.30624 27.142481 35.319273 26.939144 35.4375 26.78125 C 35.727071 26.393583 35.986008 25.987783 36.21875 25.59375 C 36.323106 25.424823 36.491608 25.342549 36.6875 25.375 L 39.03125 25.75 C 39.278227 25.799788 39.526211 25.66927 39.625 25.4375 C 39.727622 25.207044 39.795239 24.984031 39.875 24.78125 C 39.962863 24.554556 39.885639 24.297144 39.6875 24.15625 L 37.75 22.6875 C 37.592292 22.569026 37.514096 22.378721 37.5625 22.1875 C 37.674449 21.746435 37.80681 21.268598 37.875 20.78125 C 37.902227 20.585413 38.027457 20.424999 38.21875 20.375 L 40.59375 19.84375 C 40.826293 19.787555 40.992598 19.582872 41 19.34375 C 41.006608 19.207108 41 19.073651 41 19 C 41 18.926349 41.006608 18.792892 41 18.65625 C 40.979316 18.428964 40.815789 18.240278 40.59375 18.1875 L 38.21875 17.59375 C 38.027457 17.543751 37.902227 17.383337 37.875 17.1875 C 37.80649 16.70588 37.714411 16.216393 37.59375 15.75 C 37.545346 15.558779 37.623542 15.368474 37.78125 15.25 L 39.6875 13.84375 C 39.885639 13.702856 39.962863 13.445444 39.875 13.21875 C 39.79832 13.028203 39.70079 12.798297 39.59375 12.5625 C 39.501354 12.355768 39.288083 12.230314 39.0625 12.25 L 36.65625 12.59375 C 36.465559 12.619797 36.258218 12.538231 36.15625 12.375 C 35.918968 11.976219 35.669283 11.609037 35.375 11.21875 C 35.364586 11.218444 35.354164 11.218444 35.34375 11.21875 C 35.218668 11.057506 35.205528 10.830038 35.3125 10.65625 C 35.322914 10.656556 35.333336 10.656556 35.34375 10.65625 L 36.59375 8.59375 C 36.719535 8.379938 36.680621 8.1075398 36.5 7.9375 C 36.330071 7.7651484 36.179375 7.6380939 36.03125 7.5 C 35.86121 7.3193793 35.588812 7.2804653 35.375 7.40625 L 33.3125 8.625 C 33.312194 8.6354144 33.312194 8.6458356 33.3125 8.65625 C 33.138712 8.7632224 32.911244 8.7500817 32.75 8.625 C 32.750306 8.6145856 32.750306 8.6041644 32.75 8.59375 C 32.355623 8.2983399 31.990985 8.0158843 31.59375 7.78125 C 31.424823 7.6768941 31.342549 7.5083924 31.375 7.3125 C 31.375306 7.3020856 31.375306 7.2916644 31.375 7.28125 L 31.71875 4.9375 C 31.738436 4.7119167 31.612982 4.4986463 31.40625 4.40625 C 31.197556 4.3119273 30.98133 4.2055171 30.78125 4.125 C 30.554556 4.0371373 30.297144 4.1143607 30.15625 4.3125 L 28.71875 6.21875 C 28.604085 6.3821152 28.413158 6.4514408 28.21875 6.40625 C 27.771755 6.2917026 27.298694 6.1961972 26.78125 6.125 C 26.579533 6.1035077 26.395841 5.9773076 26.34375 5.78125 L 25.8125 3.40625 C 25.756305 3.1737068 25.551622 3.0074018 25.3125 3 C 25.185735 2.9938263 25.062642 3 25 3 C 24.918552 3 24.774567 2.9922663 24.625 3 C 24.604185 2.9987736 24.583315 2.9987736 24.5625 3 z M 25 11.03125 C 29.401528 11.03125 32.96875 14.598473 32.96875 19 C 32.968748 23.401525 29.401527 26.96875 25 26.96875 C 20.598472 26.968751 17.03125 23.401526 17.03125 19 C 17.031249 14.598472 20.598471 11.03125 25 11.03125 z "
inkscape:radius="-0.125"
sodipodi:type="inkscape:offset"
style="fill:url(#linearGradient6807);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1" />
<g
id="g5679"
style="opacity:1"
transform="translate(0,1)">
<path
d="M 42.999999,31 C 43.001998,33.985471 34.939925,36.405991 24.994165,36.405991 C 15.048404,36.405991 6.9863318,33.985471 6.9883311,31 C 6.9863318,28.01453 15.048404,25.594009 24.994165,25.594009 C 34.939925,25.594009 43.001998,28.01453 42.999999,31 z"
id="path5789"
style="opacity:0.4;fill:url(#radialGradient5686);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible;enable-background:accumulate" />
<g
id="g7620"
transform="translate(0,41)">
<path
d="M 24.65625,-38.46875 L 24.03125,-36.09375 C 23.931894,-35.705471 23.613725,-35.411775 23.21875,-35.34375 C 22.735976,-35.27395 22.267915,-35.204525 21.84375,-35.09375 C 21.446372,-34.993161 21.027454,-35.141014 20.78125,-35.46875 L 19.375,-37.375 C 19.164597,-37.290302 18.958431,-37.219741 18.75,-37.125 L 19.09375,-34.71875 C 19.147914,-34.322215 18.964432,-33.930787 18.625,-33.71875 C 18.254815,-33.497491 17.882144,-33.226739 17.5,-32.9375 C 17.165242,-32.677818 16.70455,-32.652916 16.34375,-32.875 L 14.28125,-34.09375 C 14.128479,-33.950872 13.987517,-33.802252 13.84375,-33.65625 L 15.0625,-31.53125 C 15.25664,-31.185651 15.232244,-30.758735 15,-30.4375 C 14.728348,-30.072434 14.476735,-29.698102 14.25,-29.3125 C 14.041861,-28.949535 13.632632,-28.751121 13.21875,-28.8125 L 10.84375,-29.1875 C 10.756945,-28.982556 10.673152,-28.775045 10.59375,-28.5625 L 12.53125,-27.125 C 12.870632,-26.88679 13.031381,-26.46637 12.9375,-26.0625 C 12.815507,-25.581864 12.684034,-25.148985 12.625,-24.71875 C 12.580372,-24.299891 12.282106,-23.951914 11.875,-23.84375 L 9.53125,-23.28125 C 9.5269912,-23.1938 9.53125,-23.081215 9.53125,-23 C 9.53125,-22.897085 9.5260245,-22.765556 9.53125,-22.65625 L 11.90625,-22.0625 C 12.303754,-21.958602 12.599672,-21.625694 12.65625,-21.21875 C 12.72605,-20.735976 12.795475,-20.267915 12.90625,-19.84375 C 13.006839,-19.446372 12.858986,-19.027454 12.53125,-18.78125 L 10.65625,-17.375 C 10.738347,-17.160462 10.816205,-16.957263 10.90625,-16.75 L 13.28125,-17.09375 C 13.677785,-17.147914 14.069213,-16.964432 14.28125,-16.625 C 14.502509,-16.254815 14.773261,-15.882144 15.0625,-15.5 C 15.322182,-15.165242 15.347084,-14.70455 15.125,-14.34375 L 13.875,-12.28125 C 14.028803,-12.121082 14.18335,-11.965479 14.34375,-11.8125 L 16.46875,-13.0625 C 16.814349,-13.25664 17.241265,-13.232244 17.5625,-13 C 17.927566,-12.728348 18.301898,-12.476735 18.6875,-12.25 C 19.050465,-12.041861 19.248879,-11.632632 19.1875,-11.21875 L 18.8125,-8.84375 C 19.00554,-8.7606362 19.207885,-8.7009625 19.40625,-8.625 L 20.875,-10.5625 C 21.121204,-10.890236 21.540122,-11.038089 21.9375,-10.9375 C 22.372579,-10.82707 22.826979,-10.719812 23.28125,-10.65625 C 23.688194,-10.599672 24.021102,-10.303754 24.125,-9.90625 L 24.71875,-7.53125 C 24.8062,-7.5269912 24.918785,-7.53125 25,-7.53125 C 25.102915,-7.53125 25.234444,-7.5260245 25.34375,-7.53125 L 25.9375,-9.90625 C 26.041398,-10.303754 26.374306,-10.599672 26.78125,-10.65625 C 27.244255,-10.723192 27.699447,-10.796155 28.125,-10.90625 C 28.522378,-11.006839 28.941296,-10.858986 29.1875,-10.53125 L 30.59375,-8.625 C 30.814551,-8.7118489 31.033285,-8.7780231 31.25,-8.875 L 30.90625,-11.28125 C 30.852086,-11.677785 31.035568,-12.069213 31.375,-12.28125 C 31.745185,-12.502509 32.117856,-12.773261 32.5,-13.0625 C 32.834758,-13.322182 33.29545,-13.347084 33.65625,-13.125 L 35.71875,-11.875 C 35.873635,-12.02373 36.008112,-12.188882 36.15625,-12.34375 L 34.9375,-14.40625 C 34.729669,-14.759568 34.754311,-15.203128 35,-15.53125 C 35.269571,-15.892141 35.520921,-16.299668 35.75,-16.6875 C 35.966825,-17.038488 36.374237,-17.223675 36.78125,-17.15625 L 39.125,-16.78125 C 39.217616,-16.989237 39.291717,-17.194515 39.375,-17.40625 L 37.4375,-18.875 C 37.109764,-19.121204 36.961911,-19.540122 37.0625,-19.9375 C 37.17293,-20.372579 37.280188,-20.826979 37.34375,-21.28125 C 37.400328,-21.688194 37.696246,-22.021102 38.09375,-22.125 L 40.46875,-22.6875 C 40.473508,-22.785884 40.46875,-22.908027 40.46875,-23 C 40.46875,-23.091973 40.473508,-23.214116 40.46875,-23.3125 L 38.09375,-23.90625 C 37.696246,-24.010148 37.400328,-24.343056 37.34375,-24.75 C 37.275695,-25.22842 37.204717,-25.696077 37.09375,-26.125 C 36.993161,-26.522378 37.141014,-26.941296 37.46875,-27.1875 L 39.375,-28.59375 C 39.291659,-28.800848 39.21845,-29.012891 39.125,-29.21875 L 36.71875,-28.875 C 36.322215,-28.820836 35.930787,-29.004318 35.71875,-29.34375 C 35.499798,-29.711725 35.228788,-30.082435 34.9375,-30.46875 C 34.677818,-30.803508 34.652916,-31.2642 34.875,-31.625 L 36.125,-33.6875 C 35.975527,-33.839104 35.814663,-33.977315 35.65625,-34.125 L 33.59375,-32.90625 C 33.23295,-32.684166 32.772258,-32.709068 32.4375,-32.96875 C 32.044927,-33.262809 31.675776,-33.535424 31.3125,-33.75 C 30.961512,-33.966825 30.776325,-34.374237 30.84375,-34.78125 L 31.1875,-37.125 C 30.99041,-37.214078 30.791981,-37.295227 30.59375,-37.375 L 29.15625,-35.46875 C 28.91804,-35.129368 28.49762,-34.968619 28.09375,-35.0625 C 27.656368,-35.174584 27.207928,-35.276442 26.71875,-35.34375 C 26.299891,-35.388378 25.951914,-35.686644 25.84375,-36.09375 L 25.28125,-38.46875 C 25.1938,-38.473009 25.081215,-38.46875 25,-38.46875 C 24.898829,-38.46875 24.76521,-38.474384 24.65625,-38.46875 z"
id="path7569"
style="opacity:0.4570136;fill:none;fill-opacity:1;stroke:url(#linearGradient5690);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1" />
<path
d="M 32.261746,-22.843262 C 32.261746,-18.864796 29.036562,-15.639611 25.058096,-15.639611 C 21.079629,-15.639611 17.854445,-18.864796 17.854445,-22.843262 C 17.854445,-26.821728 21.079629,-30.046913 25.058096,-30.046913 C 29.036562,-30.046913 32.261746,-26.821728 32.261746,-22.843262 L 32.261746,-22.843262 z"
id="path7596"
style="opacity:1;fill:none;fill-opacity:1;stroke:url(#linearGradient5692);stroke-width:0.84748834;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1"
transform="matrix(1.1799574,0,0,1.1799572,-4.567485,3.9540723)" />
</g>
</g>
<path
d="M 38.979262,24.753864 C 38.980025,26.755711 36.84287,28.378835 34.206291,28.378835 C 31.569713,28.378835 29.432558,26.755711 29.433321,24.753864 C 29.432558,22.752017 31.569713,21.128893 34.206291,21.128893 C 36.84287,21.128893 38.980025,22.752017 38.979262,24.753864 L 38.979262,24.753864 z"
id="path7668"
style="opacity:1;fill:url(#radialGradient7678);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1"
transform="matrix(1.1523221,0,0,1.1559004,-4.9166644,-4.4241085)" />
<path
d="M 38.979262,24.753864 C 38.980025,26.755711 36.84287,28.378835 34.206291,28.378835 C 31.569713,28.378835 29.432558,26.755711 29.433321,24.753864 C 29.432558,22.752017 31.569713,21.128893 34.206291,21.128893 C 36.84287,21.128893 38.980025,22.752017 38.979262,24.753864 L 38.979262,24.753864 z"
id="path7670"
style="opacity:1;fill:url(#radialGradient7680);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1"
transform="matrix(1.1523221,0,0,1.1559004,-23.916664,-4.4241085)" />
<g
id="g5801"
style="display:inline"
transform="translate(0.999996,11)">
<g
id="g6939"
style="display:inline">
<path
d="M 33.5,27.46875 C 33.5,30.454539 29.148767,32.875 23.78125,32.875 C 18.413733,32.875 14.0625,30.454539 14.0625,27.46875 C 14.0625,24.482961 18.413733,22.0625 23.78125,22.0625 C 29.148767,22.0625 33.5,24.482961 33.5,27.46875 z"
id="path6941"
style="opacity:0.2;fill:url(#radialGradient5625);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="matrix(1.0924855,0,0,1.0924855,-1.918172,-7.5092124)" />
<path
d="M 33.5,27.46875 C 33.5,30.454539 29.148767,32.875 23.78125,32.875 C 18.413733,32.875 14.0625,30.454539 14.0625,27.46875 C 14.0625,24.482961 18.413733,22.0625 23.78125,22.0625 C 29.148767,22.0625 33.5,24.482961 33.5,27.46875 z"
id="path6943"
style="opacity:0.2;fill:url(#radialGradient5627);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline"
transform="matrix(0.9260451,0,0,0.7398844,-13.022512,12.676301)" />
<path
d="M 33.5,27.46875 C 33.5,30.454539 29.148767,32.875 23.78125,32.875 C 18.413733,32.875 14.0625,30.454539 14.0625,27.46875 C 14.0625,24.482961 18.413733,22.0625 23.78125,22.0625 C 29.148767,22.0625 33.5,24.482961 33.5,27.46875 z"
id="path6945"
style="opacity:0.2;fill:url(#radialGradient5629);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline"
transform="matrix(0.9260451,0,0,0.7398844,16.977488,12.676301)" />
<path
d="M 20,25.78125 C 20,32.287855 17.537566,37.5625 14.5,37.5625 C 11.462434,37.5625 9,32.287855 9,25.78125 C 9,19.274645 11.462434,14 14.5,14 C 17.537566,14 20,19.274645 20,25.78125 L 20,25.78125 z"
id="path6947"
style="opacity:0.4;fill:url(#radialGradient5631);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="matrix(2.1162557,0,-0.2469898,1.0185676,-13.318001,-0.2599454)" />
<path
d="M 20,25.78125 C 20,32.287855 17.537566,37.5625 14.5,37.5625 C 11.462434,37.5625 9,32.287855 9,25.78125 C 9,19.274645 11.462434,14 14.5,14 C 17.537566,14 20,19.274645 20,25.78125 L 20,25.78125 z"
id="path6949"
style="opacity:0.4;fill:url(#radialGradient5633);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline"
transform="matrix(-2.1162563,0,0.2469899,1.0185676,61.318007,-0.2599454)" />
<g
id="g6951"
transform="translate(0,-3)">
<g
id="g6953"
transform="matrix(0.8660254,0.5,-0.5,0.8660254,4.2283803,2.4870101)">
<path
d="M 18.5,2.5 C 16.844,2.5 15.5,3.844 15.5,5.5 L 15.5,7.5 C 15.5,9.156 16.844,10.5 18.5,10.5 C 20.156,10.5 21.5,9.156 21.5,7.5 L 21.5,5.5 C 21.5,3.844 20.156,2.5 18.5,2.5 z"
id="path6955"
style="opacity:1;fill:url(#linearGradient5635);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 18.5,3.5 C 17.387994,3.5 16.5,4.387994 16.5,5.5 L 16.5,7.5 C 16.5,8.612006 17.387994,9.5 18.5,9.5 C 19.612006,9.5 20.5,8.612006 20.5,7.5 L 20.5,5.5 C 20.5,4.387994 19.612006,3.5 18.5,3.5 z"
id="path6957"
style="opacity:0.25;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient5637);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1" />
</g>
<g
id="g6959"
transform="matrix(-0.8660254,0.5,0.5,0.8660254,43.77132,2.4870101)">
<path
d="M 18.5,2.5 C 16.844,2.5 15.5,3.844 15.5,5.5 L 15.5,7.5 C 15.5,9.156 16.844,10.5 18.5,10.5 C 20.156,10.5 21.5,9.156 21.5,7.5 L 21.5,5.5 C 21.5,3.844 20.156,2.5 18.5,2.5 z"
id="path6961"
style="opacity:1;fill:url(#linearGradient5639);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 18.5,3.5 C 17.387994,3.5 16.5,4.387994 16.5,5.5 L 16.5,7.5 C 16.5,8.612006 17.387994,9.5 18.5,9.5 C 19.612006,9.5 20.5,8.612006 20.5,7.5 L 20.5,5.5 C 20.5,4.387994 19.612006,3.5 18.5,3.5 z"
id="path6963"
style="opacity:0.25;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient5641);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1" />
</g>
</g>
<path
d="M 19.0625,12.5 C 20.444903,12.499999 21.5625,13.652119 21.5625,15.09375 L 21.5625,18.90625 C 21.5625,19.058086 21.554827,19.199537 21.53125,19.34375 C 21.151042,21.144729 20.780852,22.947837 20.40625,24.75 C 19.965248,25.779567 18.93511,26.5 17.75,26.5 L 7.4375,26.5 C 5.84475,26.5 4.5625,25.195999 4.5625,23.59375 L 4.5625,21.375 C 4.5625,20.852604 4.69857,20.357151 4.9375,19.9375 L 7.9375,15.65625 C 8.047735,15.447971 8.184782,15.261757 8.34375,15.09375 C 8.797291,14.614423 9.424583,14.3125 10.125,14.3125 L 13.28125,14.3125 C 14.583154,14.313517 15.885601,12.501686 17.1875,12.5 L 19.0625,12.5 z"
id="path6965"
style="opacity:1;fill:url(#linearGradient5643);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 15.5,73 C 14.969704,73.000662 14.281345,73.406279 13.53125,73.90625 C 12.781155,74.406221 11.970034,75.000731 11,75 L 7.375,75 C 6.0459402,75 5,76.036836 5,77.375 L 5,79.59375 C 5,80.931916 6.0524142,82 7.375,82 L 17.6875,82 C 19.010085,82 20.0625,80.931913 20.0625,79.59375 L 20.0625,75.375 C 20.0625,74.036833 19.01656,72.999999 17.6875,73 L 15.5,73 z"
id="path6967"
style="opacity:1;fill:url(#linearGradient5645);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="translate(0,-56)" />
<path
d="M 7.375,18.497268 L 11,18.5 C 12.5,18.50113 14.000001,16.501873 15.5,16.5 L 17.6875,16.497268 C 19.28025,16.497268 20.5625,17.787165 20.5625,19.389415 L 20.5625,23.607854 C 20.5625,25.210103 19.28025,26.5 17.6875,26.5 L 7.375,26.5 C 5.78225,26.5 4.5,25.210103 4.5,23.607854 L 4.5,21.389415 C 4.5,19.787165 5.78225,18.497268 7.375,18.497268 z"
id="path6969"
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5647);stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 17.1875,69.5 C 17.000012,69.500243 16.463779,69.765575 15.8125,70.21875 C 15.161221,70.671925 14.396355,71.313371 13.28125,71.3125 L 10.125,71.3125 C 9.7119575,71.3125 9.3437446,71.484015 9.0625,71.78125 C 8.9598651,71.889721 8.8777145,72.001783 8.8125,72.125 C 8.793445,72.1574 8.7725785,72.188699 8.75,72.21875 L 5.8125,76.4375 C 5.6602457,76.704916 5.5625,77.026253 5.5625,77.375 L 5.5625,79.59375 C 5.5625,80.662478 6.3905569,81.5 7.4375,81.5 L 17.75,81.5 C 18.51409,81.5 19.173788,81.020586 19.46875,80.375 C 19.827438,78.648225 20.166176,76.917947 20.53125,75.1875 C 20.543602,75.111949 20.5625,75.024396 20.5625,74.90625 L 20.5625,71.09375 C 20.5625,70.16894 19.88929,69.499999 19.0625,69.5 L 17.1875,69.5 z"
id="path6971"
style="opacity:0.17803028;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="translate(0,-56)" />
<path
d="M 29,12.5 C 27.617597,12.499999 26.5,13.652119 26.5,15.09375 L 26.5,18.90625 C 26.5,19.058086 26.507673,19.199537 26.53125,19.34375 C 26.911458,21.144729 27.281648,22.947837 27.65625,24.75 C 28.097252,25.779567 29.12739,26.5 30.3125,26.5 L 40.625,26.5 C 42.21775,26.5 43.5,25.195999 43.5,23.59375 L 43.5,21.375 C 43.5,20.852604 43.36393,20.357151 43.125,19.9375 L 40.125,15.65625 C 40.014765,15.447971 39.877718,15.261757 39.71875,15.09375 C 39.265209,14.614423 38.637917,14.3125 37.9375,14.3125 L 34.78125,14.3125 C 33.479346,14.313517 32.176899,12.501686 30.875,12.5 L 29,12.5 z"
id="path6973"
style="opacity:1;fill:url(#linearGradient5649);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 15.5,73 C 14.969704,73.000662 14.281345,73.406279 13.53125,73.90625 C 12.781155,74.406221 11.970034,75.000731 11,75 L 7.375,75 C 6.0459402,75 5,76.036836 5,77.375 L 5,79.59375 C 5,80.931916 6.0524142,82 7.375,82 L 17.6875,82 C 19.010085,82 20.0625,80.931913 20.0625,79.59375 L 20.0625,75.375 C 20.0625,74.036833 19.01656,72.999999 17.6875,73 L 15.5,73 z"
id="path6975"
style="opacity:1;fill:url(#linearGradient5651);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="matrix(-1,0,0,1,48.0625,-56)" />
<path
d="M 40.6875,18.497268 L 37.0625,18.5 C 35.5625,18.50113 34.062499,16.501873 32.5625,16.5 L 30.375,16.497268 C 28.78225,16.497268 27.5,17.787165 27.5,19.389415 L 27.5,23.607854 C 27.5,25.210103 28.78225,26.5 30.375,26.5 L 40.6875,26.5 C 42.28025,26.5 43.5625,25.210103 43.5625,23.607854 L 43.5625,21.389415 C 43.5625,19.787165 42.28025,18.497268 40.6875,18.497268 z"
id="path6977"
style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5653);stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 17.1875,69.5 C 17.000012,69.500243 16.463779,69.765575 15.8125,70.21875 C 15.161221,70.671925 14.396355,71.313371 13.28125,71.3125 L 10.125,71.3125 C 9.7119575,71.3125 9.3437446,71.484015 9.0625,71.78125 C 8.9598651,71.889721 8.8777145,72.001783 8.8125,72.125 C 8.793445,72.1574 8.7725785,72.188699 8.75,72.21875 L 5.8125,76.4375 C 5.6602457,76.704916 5.5625,77.026253 5.5625,77.375 L 5.5625,79.59375 C 5.5625,80.662478 6.3905569,81.5 7.4375,81.5 L 17.75,81.5 C 18.51409,81.5 19.173788,81.020586 19.46875,80.375 C 19.827438,78.648225 20.166176,76.917947 20.53125,75.1875 C 20.543602,75.111949 20.5625,75.024396 20.5625,74.90625 L 20.5625,71.09375 C 20.5625,70.16894 19.88929,69.499999 19.0625,69.5 L 17.1875,69.5 z"
id="path6979"
style="opacity:0.17803028;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="matrix(-1,0,0,1,48.0625,-56)" />
<path
d="M 24.0625,11.5 C 22.678983,11.500004 21.505554,12.302724 20.9375,13.46875 C 20.655792,14.456405 20.438887,15.459771 20.25,16.46875 C 21.054848,17.179411 21.5625,18.221009 21.5625,19.375 L 21.5625,20.59375 C 22.248627,21.146517 23.113597,21.5 24.0625,21.5 C 24.991104,21.500001 25.820886,21.15659 26.5,20.625 L 26.5,19.375 C 26.5,18.20552 27.020137,17.14875 27.84375,16.4375 C 27.64453,15.431793 27.423318,14.435011 27.1875,13.4375 C 26.614573,12.285057 25.436064,11.5 24.0625,11.5 z"
id="path6981"
style="opacity:1;fill:url(#linearGradient5655);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 38.5,17.53125 C 34.640729,17.53125 31.5,20.64073 31.5,24.5 L 31.53125,27 C 31.53125,31.13527 34.86473,34.46875 39,34.46875 C 43.135271,34.46875 46.5,31.13527 46.5,27 C 46.5,22.5 43.500098,17.53125 38.5,17.53125 z"
id="path6983"
style="fill:url(#linearGradient5657);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 22,24.882097 C 22,29.004608 18.658045,32.346563 14.535534,32.346563 C 10.413023,32.346563 7.0710678,29.004608 7.0710678,24.882097 C 7.0710678,20.759586 10.413023,17.417631 14.535534,17.417631 C 18.658045,17.417631 22,20.759586 22,24.882097 L 22,24.882097 z"
id="path6985"
style="opacity:0.8;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:#babdb6;stroke-width:1.14686775;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="matrix(0.8719402,0,0,0.8719402,26.334452,5.29573)" />
<path
d="M 9.5,17.53125 C 13.359271,17.53125 16.5,20.64073 16.5,24.5 L 16.46875,27 C 16.46875,31.13527 13.13527,34.46875 9,34.46875 C 4.864729,34.46875 1.5,31.13527 1.5,27 C 1.5,22.5 4.499902,17.53125 9.5,17.53125 z"
id="path6987"
style="fill:url(#linearGradient5659);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 22,24.882097 C 22,29.004608 18.658045,32.346563 14.535534,32.346563 C 10.413023,32.346563 7.0710678,29.004608 7.0710678,24.882097 C 7.0710678,20.759586 10.413023,17.417631 14.535534,17.417631 C 18.658045,17.417631 22,20.759586 22,24.882097 L 22,24.882097 z"
id="path6989"
style="opacity:0.8;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:#babdb6;stroke-width:1.14686775;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="matrix(0.8719402,0,0,0.8719402,-3.665548,5.29573)" />
<path
d="M 24,70 C 22.60089,70 21.379011,70.795226 20.8125,71.96875 C 20.808658,71.976708 20.816283,71.992008 20.8125,72 C 20.791956,72.109567 20.770286,72.228153 20.75,72.34375 C 21.524698,73.132113 22.0625,74.188764 22.0625,75.375 L 22.0625,76.3125 C 22.321925,76.49694 22.570259,76.667165 22.875,76.78125 C 23.01934,76.835286 23.209186,76.897263 23.40625,76.9375 C 23.645128,76.986275 23.855443,77 24.0625,77 C 24.269804,76.996807 24.493078,76.983718 24.71875,76.9375 C 24.89692,76.901055 25.066453,76.838043 25.21875,76.78125 C 25.140905,76.809722 25.135087,76.794301 25.25,76.75 C 25.41727,76.684154 25.470832,76.708618 25.375,76.75 C 25.370984,76.751699 25.391231,76.723543 25.46875,76.6875 C 25.613525,76.620184 25.763344,76.530543 25.90625,76.4375 C 26.025724,76.359242 26.053353,76.348925 25.96875,76.40625 C 25.909223,76.446478 25.991888,76.38484 26,76.375 L 26,75.375 C 26,74.203124 26.522622,73.161863 27.28125,72.375 C 26.810497,70.991968 25.546657,70 24,70 z"
id="path6991"
style="opacity:1;fill:url(#linearGradient5661);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="translate(0,-56)" />
<path
d="M 20.480251,18.5 C 20.480251,16.292 22.057099,14.5 24,14.5 C 25.942902,14.5 27.519749,16.292 27.519749,18.5"
id="path6993"
style="opacity:0.90909095;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient5663);stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 27,26.5 C 27,28.432997 25.432997,30 23.5,30 C 21.567003,30 20,28.432997 20,26.5 C 20,24.567003 21.567003,23 23.5,23 C 25.432997,23 27,24.567003 27,26.5 z"
id="path6995"
style="opacity:0.57954544;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:7.00000191;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="matrix(0.142857,0,0,0.142857,20.64286,14.21429)" />
<path
d="M 24.0625,68.5 C 23.080826,68.500003 22.291628,69.055575 21.875,69.875 C 21.658543,70.650161 21.470426,71.444468 21.3125,72.25 C 22.048694,73.105251 22.5625,74.166742 22.5625,75.375 L 22.5625,75.9375 C 23.021615,76.223554 23.499922,76.5 24.0625,76.5 C 24.605354,76.500001 25.052065,76.242077 25.5,75.96875 L 25.5,75.375 C 25.5,74.151111 26.027166,73.079642 26.78125,72.21875 C 26.621842,71.438907 26.463645,70.653835 26.28125,69.875 C 26.278414,69.862891 26.252841,69.85586 26.25,69.84375 C 25.832588,69.040197 25.039733,68.5 24.0625,68.5 z"
id="path6997"
style="opacity:0.15530306;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5665);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="translate(0,-56)" />
<g
id="g6999"
transform="matrix(0.7957586,0,0,0.7854084,78.571696,-29.229826)">
<path
d="M 19.875,22.5625 C 19.875,24.875192 18.028175,26.75 15.75,26.75 C 13.471825,26.75 11.625,24.875192 11.625,22.5625 C 11.625,20.249808 13.471825,18.375 15.75,18.375 C 18.028175,18.375 19.875,20.249808 19.875,22.5625 L 19.875,22.5625 z"
id="path7001"
style="fill:url(#radialGradient5667);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5669);stroke-width:0.75428027;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
transform="matrix(1.676984,0,0,1.676984,-113.8461,33.756151)" />
<path
d="M 16.5,22.6875 C 16.5,23.688516 15.716498,24.5 14.75,24.5 C 13.783502,24.5 13,23.688516 13,22.6875 C 13,21.686484 13.783502,20.875 14.75,20.875 C 15.716498,20.875 16.5,21.686484 16.5,22.6875 z"
id="path7003"
style="opacity:0.60759499;fill:#ffffff;fill-opacity:0.52866247;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
transform="matrix(1.676984,0,0,1.676984,-111.83457,33.611503)" />
<path
d="M 16.5,22.6875 C 16.5,23.688516 15.716498,24.5 14.75,24.5 C 13.783502,24.5 13,23.688516 13,22.6875 C 13,21.686484 13.783502,20.875 14.75,20.875 C 15.716498,20.875 16.5,21.686484 16.5,22.6875 z"
id="path7005"
style="opacity:0.37341769;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
transform="matrix(1.673245,0,0,1.673245,-114.00058,31.80613)" />
<path
d="M 16.5,22.6875 C 16.5,23.688516 15.716498,24.5 14.75,24.5 C 13.783502,24.5 13,23.688516 13,22.6875 C 13,21.686484 13.783502,20.875 14.75,20.875 C 15.716498,20.875 16.5,21.686484 16.5,22.6875 z"
id="path7007"
style="fill:url(#radialGradient5671);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
transform="matrix(0.41273,0,0,0.41273,-89.88316,65.788647)" />
<path
d="M 16.5,22.6875 C 16.5,23.688516 15.716498,24.5 14.75,24.5 C 13.783502,24.5 13,23.688516 13,22.6875 C 13,21.686484 13.783502,20.875 14.75,20.875 C 15.716498,20.875 16.5,21.686484 16.5,22.6875 z"
id="path7009"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
transform="matrix(0.45611,0,0,0.45611,-97.03183,58.199937)" />
</g>
<path
d="M 9.25,24.65625 C 7.9608977,24.65625 6.9374999,25.744724 6.9375,27.0625 C 6.9375,27.367347 6.9917161,27.638143 7.09375,27.90625 C 7.2264692,27.930288 7.3605638,27.9375 7.5,27.9375 C 8.7862281,27.9375 9.8124996,26.877338 9.8125,25.5625 C 9.8125,25.267207 9.783725,24.979772 9.6875,24.71875 C 9.5448256,24.690872 9.4005829,24.65625 9.25,24.65625 z"
id="path7011"
style="opacity:0.7;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans" />
<g
id="g7013"
style="display:inline"
transform="matrix(0.7957586,0,0,0.7854084,108.5717,-29.229826)">
<path
d="M 19.875,22.5625 C 19.875,24.875192 18.028175,26.75 15.75,26.75 C 13.471825,26.75 11.625,24.875192 11.625,22.5625 C 11.625,20.249808 13.471825,18.375 15.75,18.375 C 18.028175,18.375 19.875,20.249808 19.875,22.5625 L 19.875,22.5625 z"
id="path7015"
style="fill:url(#radialGradient5673);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5675);stroke-width:0.75428027;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
transform="matrix(1.676984,0,0,1.676984,-113.8461,33.756151)" />
<path
d="M 16.5,22.6875 C 16.5,23.688516 15.716498,24.5 14.75,24.5 C 13.783502,24.5 13,23.688516 13,22.6875 C 13,21.686484 13.783502,20.875 14.75,20.875 C 15.716498,20.875 16.5,21.686484 16.5,22.6875 z"
id="path7017"
style="opacity:0.60759499;fill:#ffffff;fill-opacity:0.52866247;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
transform="matrix(1.676984,0,0,1.676984,-111.83457,33.611503)" />
<path
d="M 16.5,22.6875 C 16.5,23.688516 15.716498,24.5 14.75,24.5 C 13.783502,24.5 13,23.688516 13,22.6875 C 13,21.686484 13.783502,20.875 14.75,20.875 C 15.716498,20.875 16.5,21.686484 16.5,22.6875 z"
id="path7019"
style="opacity:0.37341769;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
transform="matrix(1.673245,0,0,1.673245,-114.00058,31.80613)" />
<path
d="M 16.5,22.6875 C 16.5,23.688516 15.716498,24.5 14.75,24.5 C 13.783502,24.5 13,23.688516 13,22.6875 C 13,21.686484 13.783502,20.875 14.75,20.875 C 15.716498,20.875 16.5,21.686484 16.5,22.6875 z"
id="path7021"
style="fill:url(#radialGradient5677);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
transform="matrix(0.41273,0,0,0.41273,-89.88316,65.788647)" />
<path
d="M 16.5,22.6875 C 16.5,23.688516 15.716498,24.5 14.75,24.5 C 13.783502,24.5 13,23.688516 13,22.6875 C 13,21.686484 13.783502,20.875 14.75,20.875 C 15.716498,20.875 16.5,21.686484 16.5,22.6875 z"
id="path7023"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
transform="matrix(0.45611,0,0,0.45611,-97.03183,58.199937)" />
</g>
<path
d="M 39.25,24.65625 C 37.960898,24.65625 36.9375,25.744724 36.9375,27.0625 C 36.9375,27.367347 36.991716,27.638143 37.09375,27.90625 C 37.226469,27.930288 37.360564,27.9375 37.5,27.9375 C 38.786228,27.9375 39.8125,26.877338 39.8125,25.5625 C 39.8125,25.267207 39.783725,24.979772 39.6875,24.71875 C 39.544826,24.690872 39.400583,24.65625 39.25,24.65625 z"
id="path7025"
style="opacity:0.7;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans" />
</g>
</g>
</g>
<g
id="g2847"
transform="translate(320,0)">
<g
id="g5855"
inkscape:label="Layer 1"
transform="translate(-11.937444,127)">
<path
d="M 21.213203,19.083185 A 9.8994951,2.7400389 0 1 1 1.4142132,19.083185 A 9.8994951,2.7400389 0 1 1 21.213203,19.083185 z"
id="path312"
sodipodi:cx="11.313708"
sodipodi:cy="19.083185"
sodipodi:rx="9.8994951"
sodipodi:ry="2.7400389"
sodipodi:type="arc"
style="opacity:0.50285716;fill:url(#radialGradient2906);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible;enable-background:accumulate"
transform="matrix(1.0600708,0,0,1.0322581,-1.2099528,-0.5271983)" />
<path
d="M 10.8125,0.5 C 9.7516847,0.51744441 10.255778,2.5571859 9.21875,2.78125 C 8.1817212,3.005314 7.7858898,0.95292703 6.8125,1.375 C 5.8391102,1.797073 7.0910943,3.4898882 6.21875,4.09375 C 5.3464059,4.6976119 4.2065247,2.9250552 3.46875,3.6875 C 2.7309754,4.4499447 4.5123529,5.5457728 3.9375,6.4375 C 3.3626471,7.3292273 1.60859,6.1695087 1.21875,7.15625 C 0.8289101,8.1429912 2.9085955,8.4561647 2.71875,9.5 C 2.5289044,10.543835 0.4825556,10.126685 0.5,11.1875 C 0.51744441,12.248315 2.5571859,11.744221 2.78125,12.78125 C 3.005314,13.818279 0.95292699,14.21411 1.375,15.1875 C 1.797073,16.16089 3.4898881,14.908906 4.09375,15.78125 C 4.6976119,16.653594 2.9250553,17.793476 3.6875,18.53125 C 4.4499447,19.269025 5.5457727,17.487646 6.4375,18.0625 C 7.3292273,18.637353 6.169509,20.391411 7.15625,20.78125 C 8.1429912,21.17109 8.4561651,19.091404 9.5,19.28125 C 10.543835,19.471096 10.126684,21.517445 11.1875,21.5 C 12.248315,21.482556 11.744221,19.442815 12.78125,19.21875 C 13.818279,18.994686 14.214111,21.047073 15.1875,20.625 C 16.16089,20.202927 14.908906,18.510111 15.78125,17.90625 C 16.653594,17.302388 17.793476,19.074945 18.53125,18.3125 C 19.269025,17.550055 17.487648,16.454227 18.0625,15.5625 C 18.637353,14.670773 20.39141,15.830491 20.78125,14.84375 C 21.17109,13.857009 19.091404,13.543835 19.28125,12.5 C 19.471096,11.456165 21.517444,11.873315 21.5,10.8125 C 21.482556,9.7516847 19.442814,10.255779 19.21875,9.21875 C 18.994686,8.1817212 21.047073,7.7858899 20.625,6.8125 C 20.202927,5.8391102 18.510113,7.0910939 17.90625,6.21875 C 17.302388,5.3464059 19.074944,4.2065246 18.3125,3.46875 C 17.550055,2.7309754 16.454228,4.5123528 15.5625,3.9375 C 14.670773,3.3626471 15.830491,1.6085899 14.84375,1.21875 C 13.857009,0.8289101 13.543835,2.9085956 12.5,2.71875 C 11.456165,2.5289044 11.873315,0.48255558 10.8125,0.5 z M 11,5.5 C 14.036,5.5 16.5,7.964 16.5,11 C 16.5,14.036 14.036,16.5 11,16.5 C 7.964,16.5 5.5,14.036 5.5,11 C 5.5,7.964 7.964,5.5 11,5.5 z"
id="path5665"
style="opacity:1;fill:url(#linearGradient2908);fill-opacity:1;fill-rule:nonzero;stroke:#888a85;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible;enable-background:accumulate" />
<path
d="M 17.324116,10.863069 A 6.5407376,6.5407376 0 1 1 4.242641,10.863069 A 6.5407376,6.5407376 0 1 1 17.324116,10.863069 z"
id="path5767"
sodipodi:cx="10.783379"
sodipodi:cy="10.863069"
sodipodi:rx="6.5407376"
sodipodi:ry="6.5407376"
sodipodi:type="arc"
style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient2910);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible;enable-background:accumulate"
transform="translate(8.8388348e-2,8.8388348e-2)" />
<path
d="M 10.84375,2.34375 C 10.794368,2.5019025 10.781638,2.6301844 10.6875,2.8125 C 10.486028,3.2026895 10.037627,3.6828343 9.4375,3.8125 C 8.8390777,3.9417972 8.2518588,3.7066387 7.90625,3.4375 C 7.7511433,3.3167125 7.6706959,3.2119036 7.5625,3.09375 C 7.5759468,3.2516595 7.6095973,3.3691607 7.59375,3.5625 C 7.557846,4.0005343 7.3179063,4.6188932 6.8125,4.96875 C 6.3068534,5.3187732 5.6413972,5.3090807 5.21875,5.1875 C 5.0359628,5.1349186 4.9532775,5.0670663 4.8125,5 C 4.8847521,5.142718 4.9417715,5.2502283 5,5.4375 C 5.1300587,5.8557884 5.1443375,6.4852449 4.8125,7 C 4.479614,7.5163817 3.9033337,7.7882657 3.46875,7.84375 C 3.251646,7.8714682 3.1123195,7.8529346 2.9375,7.84375 C 3.0652879,7.9500167 3.1794012,7.9990357 3.3125,8.15625 C 3.5963589,8.4915398 3.8599217,9.0831132 3.75,9.6875 C 3.6405,10.289568 3.1930294,10.752122 2.8125,10.96875 C 2.6275731,11.074025 2.5045471,11.099452 2.34375,11.15625 C 2.5019025,11.205632 2.6301843,11.218362 2.8125,11.3125 C 3.2026897,11.513972 3.6828345,11.962373 3.8125,12.5625 C 3.9417971,13.160922 3.7066387,13.748141 3.4375,14.09375 C 3.3167125,14.248857 3.2119036,14.329304 3.09375,14.4375 C 3.2516595,14.424053 3.3691608,14.390403 3.5625,14.40625 C 4.0005342,14.442154 4.6188931,14.682094 4.96875,15.1875 C 5.3187733,15.693147 5.3090807,16.358603 5.1875,16.78125 C 5.1349186,16.964037 5.0670663,17.046722 5,17.1875 C 5.1427181,17.115248 5.2502281,17.058229 5.4375,17 C 5.8557887,16.869941 6.485245,16.855662 7,17.1875 C 7.5163818,17.520386 7.7882656,18.096666 7.84375,18.53125 C 7.8714682,18.748354 7.8529346,18.887681 7.84375,19.0625 C 7.9500167,18.934712 7.9990357,18.820599 8.15625,18.6875 C 8.4915398,18.403641 9.0831131,18.140078 9.6875,18.25 C 10.289568,18.3595 10.752122,18.806971 10.96875,19.1875 C 11.074025,19.372427 11.099452,19.495453 11.15625,19.65625 C 11.205632,19.498097 11.218362,19.369816 11.3125,19.1875 C 11.513972,18.79731 11.962373,18.317166 12.5625,18.1875 C 13.160922,18.058203 13.748141,18.293361 14.09375,18.5625 C 14.248857,18.683287 14.329304,18.788096 14.4375,18.90625 C 14.424053,18.74834 14.390403,18.630839 14.40625,18.4375 C 14.442154,17.999466 14.682093,17.381107 15.1875,17.03125 C 15.693147,16.681227 16.358603,16.690919 16.78125,16.8125 C 16.964037,16.865081 17.046722,16.932934 17.1875,17 C 17.115248,16.857282 17.058229,16.749772 17,16.5625 C 16.869941,16.144212 16.855663,15.514755 17.1875,15 C 17.520386,14.483618 18.096666,14.211734 18.53125,14.15625 C 18.748354,14.128532 18.887681,14.147065 19.0625,14.15625 C 18.934712,14.049983 18.820599,14.000964 18.6875,13.84375 C 18.403641,13.50846 18.140078,12.916887 18.25,12.3125 C 18.3595,11.710432 18.806971,11.247878 19.1875,11.03125 C 19.372427,10.925975 19.495453,10.900548 19.65625,10.84375 C 19.498097,10.794368 19.369816,10.781638 19.1875,10.6875 C 18.79731,10.486028 18.317166,10.037627 18.1875,9.4375 C 18.058203,8.8390777 18.293361,8.2518588 18.5625,7.90625 C 18.683287,7.7511433 18.788096,7.6706959 18.90625,7.5625 C 18.74834,7.5759468 18.630839,7.6095973 18.4375,7.59375 C 17.999466,7.557846 17.381107,7.3179057 17.03125,6.8125 C 16.681227,6.3068535 16.690919,5.6413973 16.8125,5.21875 C 16.865081,5.0359628 16.932934,4.9532776 17,4.8125 C 16.857282,4.8847521 16.749772,4.9417715 16.5625,5 C 16.144212,5.1300587 15.514755,5.1443371 15,4.8125 C 14.483618,4.4796139 14.211734,3.9033336 14.15625,3.46875 C 14.128532,3.251646 14.147065,3.1123194 14.15625,2.9375 C 14.049983,3.0652879 14.000964,3.1794012 13.84375,3.3125 C 13.50846,3.5963588 12.916887,3.8599218 12.3125,3.75 C 11.710432,3.6405 11.247878,3.1930294 11.03125,2.8125 C 10.925975,2.6275731 10.900548,2.5045471 10.84375,2.34375 z M 11,4.4375 C 14.607918,4.4375 17.5625,7.3920816 17.5625,11 C 17.5625,14.607918 14.607918,17.5625 11,17.5625 C 7.3920816,17.5625 4.4375,14.607918 4.4375,11 C 4.4375,7.3920816 7.3920816,4.4375 11,4.4375 z"
id="path5777"
inkscape:href="#path5665"
inkscape:original="M 10.8125 0.5 C 9.7516847 0.51744441 10.255778 2.5571859 9.21875 2.78125 C 8.1817212 3.005314 7.7858898 0.95292703 6.8125 1.375 C 5.8391102 1.797073 7.0910943 3.4898882 6.21875 4.09375 C 5.3464059 4.6976119 4.2065247 2.9250552 3.46875 3.6875 C 2.7309754 4.4499447 4.5123529 5.5457728 3.9375 6.4375 C 3.3626471 7.3292273 1.60859 6.1695087 1.21875 7.15625 C 0.8289101 8.1429912 2.9085955 8.4561647 2.71875 9.5 C 2.5289044 10.543835 0.4825556 10.126685 0.5 11.1875 C 0.51744441 12.248315 2.5571859 11.744221 2.78125 12.78125 C 3.005314 13.818279 0.95292699 14.21411 1.375 15.1875 C 1.797073 16.16089 3.4898881 14.908906 4.09375 15.78125 C 4.6976119 16.653594 2.9250553 17.793476 3.6875 18.53125 C 4.4499447 19.269025 5.5457727 17.487646 6.4375 18.0625 C 7.3292273 18.637353 6.169509 20.391411 7.15625 20.78125 C 8.1429912 21.17109 8.4561651 19.091404 9.5 19.28125 C 10.543835 19.471096 10.126684 21.517445 11.1875 21.5 C 12.248315 21.482556 11.744221 19.442815 12.78125 19.21875 C 13.818279 18.994686 14.214111 21.047073 15.1875 20.625 C 16.16089 20.202927 14.908906 18.510111 15.78125 17.90625 C 16.653594 17.302388 17.793476 19.074945 18.53125 18.3125 C 19.269025 17.550055 17.487648 16.454227 18.0625 15.5625 C 18.637353 14.670773 20.39141 15.830491 20.78125 14.84375 C 21.17109 13.857009 19.091404 13.543835 19.28125 12.5 C 19.471096 11.456165 21.517444 11.873315 21.5 10.8125 C 21.482556 9.7516847 19.442814 10.255779 19.21875 9.21875 C 18.994686 8.1817212 21.047073 7.7858899 20.625 6.8125 C 20.202927 5.8391102 18.510113 7.0910939 17.90625 6.21875 C 17.302388 5.3464059 19.074944 4.2065246 18.3125 3.46875 C 17.550055 2.7309754 16.454228 4.5123528 15.5625 3.9375 C 14.670773 3.3626471 15.830491 1.6085899 14.84375 1.21875 C 13.857009 0.8289101 13.543835 2.9085956 12.5 2.71875 C 11.456165 2.5289044 11.873315 0.48255558 10.8125 0.5 z M 11 5.5 C 14.036 5.5 16.5 7.964 16.5 11 C 16.5 14.036 14.036 16.5 11 16.5 C 7.964 16.5 5.5 14.036 5.5 11 C 5.5 7.964 7.964 5.5 11 5.5 z "
inkscape:radius="-1.0570278"
sodipodi:type="inkscape:offset"
style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient2912);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible;enable-background:accumulate"
xlink:href="#path5665" />
</g>
<g
id="g7803"
transform="translate(53,193)">
<g
id="g7373"
transform="matrix(0.6814573,0,0,0.6814573,-70.318541,-86.976179)">
<path
d="M 33.5,27.46875 A 9.71875,5.40625 0 1 1 14.0625,27.46875 A 9.71875,5.40625 0 1 1 33.5,27.46875 z"
id="path7939"
sodipodi:cx="23.78125"
sodipodi:cy="27.46875"
sodipodi:rx="9.71875"
sodipodi:ry="5.40625"
sodipodi:type="arc"
style="opacity:0.2;fill:url(#radialGradient2914);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="matrix(1.0924855,0,0,1.0924855,-1.918172,32.490788)" />
<path
d="M 33.5,27.46875 A 9.71875,5.40625 0 1 1 14.0625,27.46875 A 9.71875,5.40625 0 1 1 33.5,27.46875 z"
id="path7949"
sodipodi:cx="23.78125"
sodipodi:cy="27.46875"
sodipodi:rx="9.71875"
sodipodi:ry="5.40625"
sodipodi:type="arc"
style="opacity:0.2;fill:url(#radialGradient2916);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline"
transform="matrix(0.9260451,0,0,0.7398844,-13.022512,52.676301)" />
<path
d="M 33.5,27.46875 A 9.71875,5.40625 0 1 1 14.0625,27.46875 A 9.71875,5.40625 0 1 1 33.5,27.46875 z"
id="path7953"
sodipodi:cx="23.78125"
sodipodi:cy="27.46875"
sodipodi:rx="9.71875"
sodipodi:ry="5.40625"
sodipodi:type="arc"
style="opacity:0.2;fill:url(#radialGradient2918);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline"
transform="matrix(0.9260451,0,0,0.7398844,16.977488,52.676301)" />
<path
d="M 20,25.78125 A 5.5,11.78125 0 1 1 9,25.78125 A 5.5,11.78125 0 1 1 20,25.78125 z"
id="path7925"
sodipodi:cx="14.5"
sodipodi:cy="25.78125"
sodipodi:rx="5.5"
sodipodi:ry="11.78125"
sodipodi:type="arc"
style="opacity:0.4;fill:url(#radialGradient2920);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="matrix(2.1162557,0,-0.2469898,1.0185676,-13.318001,39.740055)" />
<path
d="M 20,25.78125 A 5.5,11.78125 0 1 1 9,25.78125 A 5.5,11.78125 0 1 1 20,25.78125 z"
id="path7935"
sodipodi:cx="14.5"
sodipodi:cy="25.78125"
sodipodi:rx="5.5"
sodipodi:ry="11.78125"
sodipodi:type="arc"
style="opacity:0.4;fill:url(#radialGradient2922);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline"
transform="matrix(-2.1162563,0,0.2469899,1.0185676,61.318007,39.740055)" />
</g>
<g
id="g7836"
transform="matrix(0.6446194,0,0,0.6669232,-69.466929,-62.496121)">
<g
id="g7806"
transform="matrix(0.8660254,0.5,-0.5,0.8660254,4.2283803,2.4870101)">
<path
d="M 18.5,2.5 C 16.844,2.5 15.5,3.844 15.5,5.5 L 15.5,7.5 C 15.5,9.156 16.844,10.5 18.5,10.5 C 20.156,10.5 21.5,9.156 21.5,7.5 L 21.5,5.5 C 21.5,3.844 20.156,2.5 18.5,2.5 z"
id="path6444"
sodipodi:nodetypes="cccsccc"
style="opacity:1;fill:url(#linearGradient2924);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.52514255;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 18.5,4 C 17.654248,4 17,4.6542483 17,5.5 L 17,7.5 C 17,8.3457517 17.654248,9 18.5,9 C 19.345752,9 20,8.3457517 20,7.5 L 20,5.5 C 20,4.6542483 19.345752,4 18.5,4 z"
id="path7794"
inkscape:original="M 18.5 2.5 C 16.844 2.5 15.5 3.844 15.5 5.5 L 15.5 7.5 C 15.5 9.156 16.844 10.5 18.5 10.5 C 20.156 10.5 21.5 9.156 21.5 7.5 L 21.5 5.5 C 21.5 3.844 20.156 2.5 18.5 2.5 z "
inkscape:radius="-1.4975125"
sodipodi:type="inkscape:offset"
style="opacity:0.25;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient2926);stroke-width:1.52514255;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1" />
</g>
<g
id="g7826"
transform="matrix(-0.8660254,0.5,0.5,0.8660254,43.77132,2.4870101)">
<path
d="M 18.5,2.5 C 16.844,2.5 15.5,3.844 15.5,5.5 L 15.5,7.5 C 15.5,9.156 16.844,10.5 18.5,10.5 C 20.156,10.5 21.5,9.156 21.5,7.5 L 21.5,5.5 C 21.5,3.844 20.156,2.5 18.5,2.5 z"
id="path7828"
sodipodi:nodetypes="cccsccc"
style="opacity:1;fill:url(#linearGradient2928);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.52514255;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 18.5,4.0625 C 17.690925,4.0625 17.0625,4.6909252 17.0625,5.5 L 17.0625,7.5 C 17.0625,8.3090748 17.690925,8.9375 18.5,8.9375 C 19.309075,8.9375 19.9375,8.3090748 19.9375,7.5 L 19.9375,5.5 C 19.9375,4.6909252 19.309075,4.0625 18.5,4.0625 z"
id="path7830"
inkscape:original="M 18.5 2.5 C 16.844 2.5 15.5 3.844 15.5 5.5 L 15.5 7.5 C 15.5 9.156 16.844 10.5 18.5 10.5 C 20.156 10.5 21.5 9.156 21.5 7.5 L 21.5 5.5 C 21.5 3.844 20.156 2.5 18.5 2.5 z "
inkscape:radius="-1.5652993"
sodipodi:type="inkscape:offset"
style="opacity:0.25;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient2930);stroke-width:1.52514255;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1" />
</g>
</g>
<path
d="M -57.118944,-51.5 C -56.222106,-51.500001 -55.497062,-50.703547 -55.497062,-49.706957 L -55.497062,-47.071399 C -55.497062,-46.966435 -55.50204,-46.868651 -55.517337,-46.768958 C -55.763997,-45.523953 -56.004159,-44.277475 -56.247182,-43.031651 C -56.533284,-42.319918 -57.201588,-41.821886 -57.970431,-41.821886 L -64.66069,-41.821886 C -65.69399,-41.821886 -66.525853,-42.723335 -66.525853,-43.830959 L -66.525853,-45.364767 C -66.525853,-45.725897 -66.437577,-46.0684 -66.282571,-46.358503 L -64.336314,-49.318104 C -64.264799,-49.462086 -64.175889,-49.590814 -64.072758,-49.706957 C -63.778522,-50.038312 -63.371565,-50.24703 -62.917168,-50.24703 L -60.869543,-50.24703 C -60.02493,-50.246327 -59.179965,-51.498834 -58.335354,-51.5 L -57.118944,-51.5 z"
id="path6392"
sodipodi:nodetypes="cccccccccccscccc"
style="fill:url(#linearGradient2932);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 15.5,73 C 14.969704,73.000662 14.281345,73.406279 13.53125,73.90625 C 12.781155,74.406221 11.970034,75.000731 11,75 L 7.375,75 C 6.0459402,75 5,76.036836 5,77.375 L 5,79.59375 C 5,80.931916 6.0524142,82 7.375,82 L 17.6875,82 C 19.010085,82 20.0625,80.931913 20.0625,79.59375 L 20.0625,75.375 C 20.0625,74.036833 19.01656,72.999999 17.6875,73 L 15.5,73 z"
id="path7467"
inkscape:original="M 15.5 72.5 C 14.000001 72.501873 12.5 74.50113 11 74.5 L 7.375 74.5 C 5.78225 74.5 4.5 75.772753 4.5 77.375 L 4.5 79.59375 C 4.5 81.195999 5.78225 82.5 7.375 82.5 L 17.6875 82.5 C 19.28025 82.5 20.5625 81.195996 20.5625 79.59375 L 20.5625 75.375 C 20.5625 73.77275 19.28025 72.499999 17.6875 72.5 L 15.5 72.5 z "
inkscape:radius="-0.49498126"
sodipodi:type="inkscape:offset"
style="fill:url(#linearGradient2934);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="matrix(0.6446194,0,0,0.6669232,-69.466929,-96.84305)" />
<path
d="M 17.1875,70 C 17.226922,69.999949 16.745123,70.17176 16.09375,70.625 C 15.442377,71.07824 14.623603,71.813549 13.28125,71.8125 L 10.125,71.8125 C 9.8526555,71.8125 9.6343886,71.916917 9.4375,72.125 C 9.3624457,72.204322 9.2931725,72.26218 9.25,72.34375 C 9.2219675,72.397697 9.190659,72.449878 9.15625,72.5 L 6.21875,76.6875 C 6.1089319,76.880382 6.0625,77.111271 6.0625,77.375 L 6.0625,79.59375 C 6.0625,80.401267 6.6577828,81 7.4375,81 L 17.75,81 C 18.315017,81 18.780891,80.655336 19,80.1875 C 19.352229,78.491167 19.703383,76.795851 20.0625,75.09375 C 20.064785,75.079772 20.060762,75.049164 20.0625,75.03125 C 20.065977,74.995421 20.0625,74.974018 20.0625,74.90625 L 20.0625,71.09375 C 20.0625,70.421974 19.617264,70 19.0625,70 L 17.1875,70 z"
id="path7460"
inkscape:original="M 17.1875 68.5 C 15.885601 68.501686 14.583154 70.313517 13.28125 70.3125 L 10.125 70.3125 C 9.424583 70.3125 8.797291 70.614423 8.34375 71.09375 C 8.184782 71.261757 8.047735 71.447971 7.9375 71.65625 L 4.9375 75.9375 C 4.69857 76.357151 4.5625 76.852604 4.5625 77.375 L 4.5625 79.59375 C 4.5625 81.195999 5.84475 82.5 7.4375 82.5 L 17.75 82.5 C 18.93511 82.5 19.965248 81.779567 20.40625 80.75 C 20.780852 78.947837 21.151042 77.144729 21.53125 75.34375 C 21.554827 75.199537 21.5625 75.058086 21.5625 74.90625 L 21.5625 71.09375 C 21.5625 69.652119 20.444903 68.499999 19.0625 68.5 L 17.1875 68.5 z "
inkscape:radius="-1.4895978"
sodipodi:type="inkscape:offset"
style="opacity:0.17803028;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.45850801;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="matrix(0.6446194,0,0,0.7292542,-69.466929,-101.56959)" />
<path
d="M -50.875767,-51.499999 C -51.776691,-51.5 -52.505039,-50.675137 -52.505039,-49.642999 L -52.505039,-46.913431 C -52.505039,-46.804723 -52.500039,-46.703451 -52.484674,-46.600202 C -52.236888,-45.310788 -51.995633,-44.019848 -51.751501,-42.729586 C -51.464096,-41.992466 -50.792745,-41.476669 -50.020399,-41.476669 L -43.299649,-41.476669 C -42.261639,-41.476669 -41.425985,-42.410272 -41.425985,-43.557405 L -41.425985,-45.145924 C -41.425985,-45.519935 -41.514664,-45.874655 -41.670376,-46.175106 L -43.625504,-49.240276 C -43.697344,-49.389393 -43.786659,-49.522713 -43.89026,-49.642999 C -44.185838,-49.986173 -44.594649,-50.202336 -45.051118,-50.202336 L -47.108074,-50.202336 C -47.956536,-50.201608 -48.805353,-51.498792 -49.653812,-51.499999 L -50.875767,-51.499999 z"
id="path7520"
sodipodi:nodetypes="cccccccccccscccc"
style="fill:url(#linearGradient2936);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 15.5,73 C 14.969704,73.000662 14.281345,73.406279 13.53125,73.90625 C 12.781155,74.406221 11.970034,75.000731 11,75 L 7.375,75 C 6.0459402,75 5,76.036836 5,77.375 L 5,79.59375 C 5,80.931916 6.0524142,82 7.375,82 L 17.6875,82 C 19.010085,82 20.0625,80.931913 20.0625,79.59375 L 20.0625,75.375 C 20.0625,74.036833 19.01656,72.999999 17.6875,73 L 15.5,73 z"
id="path7522"
inkscape:original="M 15.5 72.5 C 14.000001 72.501873 12.5 74.50113 11 74.5 L 7.375 74.5 C 5.78225 74.5 4.5 75.772753 4.5 77.375 L 4.5 79.59375 C 4.5 81.195999 5.78225 82.5 7.375 82.5 L 17.6875 82.5 C 19.28025 82.5 20.5625 81.195996 20.5625 79.59375 L 20.5625 75.375 C 20.5625 73.77275 19.28025 72.499999 17.6875 72.5 L 15.5 72.5 z "
inkscape:radius="-0.49498126"
sodipodi:type="inkscape:offset"
style="fill:url(#linearGradient2938);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="matrix(-0.6446194,0,0,0.6669232,-38.484909,-96.84305)" />
<path
d="M 17.1875,70 C 17.234994,69.999938 16.745126,70.203008 16.09375,70.65625 C 15.442374,71.109492 14.631688,71.813555 13.28125,71.8125 L 10.125,71.8125 C 9.857661,71.8125 9.6313875,71.920089 9.4375,72.125 C 9.3634269,72.203285 9.3236383,72.294911 9.28125,72.375 C 9.2430906,72.429795 9.2013319,72.481993 9.15625,72.53125 L 6.25,76.6875 C 6.1416916,76.87773 6.0625,77.114295 6.0625,77.375 L 6.0625,79.59375 C 6.0625,80.391974 6.6672898,81 7.4375,81 L 17.75,81 C 18.308157,81 18.783714,80.649309 19,80.1875 C 19.351793,78.493264 19.672584,76.793823 20.03125,75.09375 C 20.03791,75.053012 20.0625,75.007315 20.0625,74.90625 L 20.0625,71.09375 C 20.0625,70.430976 19.607586,70 19.0625,70 L 17.1875,70 z"
id="path7526"
inkscape:original="M 17.1875 68.5 C 15.885601 68.501686 14.583154 70.313517 13.28125 70.3125 L 10.125 70.3125 C 9.424583 70.3125 8.797291 70.614423 8.34375 71.09375 C 8.184782 71.261757 8.047735 71.447971 7.9375 71.65625 L 4.9375 75.9375 C 4.69857 76.357151 4.5625 76.852604 4.5625 77.375 L 4.5625 79.59375 C 4.5625 81.195999 5.84475 82.5 7.4375 82.5 L 17.75 82.5 C 18.93511 82.5 19.965248 81.779567 20.40625 80.75 C 20.780852 78.947837 21.151042 77.144729 21.53125 75.34375 C 21.554827 75.199537 21.5625 75.058086 21.5625 74.90625 L 21.5625 71.09375 C 21.5625 69.652119 20.444903 68.499999 19.0625 68.5 L 17.1875 68.5 z "
inkscape:radius="-1.5070159"
sodipodi:type="inkscape:offset"
style="opacity:0.17803028;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.46049368;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="matrix(-0.6446194,0,0,0.7272726,-38.484909,-101.40908)" />
<g
id="g7338"
transform="translate(-70,-67)">
<path
d="M 16.044225,15.518016 C 15.152383,15.518019 14.395968,16.10605 14.02979,16.96022 C 13.848195,17.683725 13.708374,18.418739 13.586614,19.157865 C 14.105434,19.678458 14.432677,20.441479 14.432677,21.286833 L 14.432677,22.179627 C 14.874967,22.584555 15.432544,22.843498 16.044225,22.843498 C 16.642821,22.843499 17.177715,22.591934 17.615485,22.202518 L 17.615485,21.286833 C 17.615485,20.430133 17.950775,19.655997 18.481692,19.134972 C 18.353271,18.398244 18.210674,17.668053 18.058661,16.937328 C 17.689341,16.093108 16.929651,15.518016 16.044225,15.518016 z"
id="path7705"
style="fill:url(#linearGradient2940);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 24,70 C 22.60089,70 21.379011,70.795226 20.8125,71.96875 C 20.808658,71.976708 20.816283,71.992008 20.8125,72 C 20.791956,72.109567 20.770286,72.228153 20.75,72.34375 C 21.524698,73.132113 22.0625,74.188764 22.0625,75.375 L 22.0625,76.3125 C 22.321925,76.49694 22.570259,76.667165 22.875,76.78125 C 23.01934,76.835286 23.209186,76.897263 23.40625,76.9375 C 23.645128,76.986275 23.855443,77 24.0625,77 C 24.269804,76.996807 24.493078,76.983718 24.71875,76.9375 C 24.89692,76.901055 25.066453,76.838043 25.21875,76.78125 C 25.140905,76.809722 25.135087,76.794301 25.25,76.75 C 25.41727,76.684154 25.470832,76.708618 25.375,76.75 C 25.370984,76.751699 25.391231,76.723543 25.46875,76.6875 C 25.613525,76.620184 25.763344,76.530543 25.90625,76.4375 C 26.025724,76.359242 26.053353,76.348925 25.96875,76.40625 C 25.909223,76.446478 25.991888,76.38484 26,76.375 L 26,75.375 C 26,74.203124 26.522622,73.161863 27.28125,72.375 C 26.810497,70.991968 25.546657,70 24,70 z"
id="path7739"
inkscape:original="M 24 69.5 C 22.402892 69.5 21.016059 70.426833 20.375 71.78125 C 20.328595 72.010547 20.293057 72.23875 20.25 72.46875 C 21.054848 73.179411 21.5625 74.221009 21.5625 75.375 L 21.5625 76.59375 C 21.905563 76.870134 22.298129 77.092533 22.71875 77.25 C 22.907897 77.32081 23.111147 77.365137 23.3125 77.40625 C 23.558911 77.456563 23.801402 77.5 24.0625 77.5 C 24.316622 77.496086 24.571948 77.455515 24.8125 77.40625 C 25.007057 77.366453 25.192339 77.318116 25.375 77.25 C 25.396567 77.242112 25.416108 77.226997 25.4375 77.21875 C 25.477525 77.202994 25.523097 77.204515 25.5625 77.1875 C 25.605169 77.169443 25.645602 77.144481 25.6875 77.125 C 25.859582 77.044987 26.029732 76.94647 26.1875 76.84375 C 26.206681 76.831186 26.231022 76.825359 26.25 76.8125 C 26.27495 76.795639 26.287954 76.767405 26.3125 76.75 C 26.380362 76.701882 26.435356 76.6459 26.5 76.59375 L 26.5 75.375 C 26.5 74.20552 27.020137 73.14875 27.84375 72.4375 C 27.37878 70.743458 25.84103 69.5 24 69.5 z "
inkscape:radius="-0.48725843"
sodipodi:type="inkscape:offset"
style="fill:url(#linearGradient2942);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="matrix(0.6446194,0,0,0.6669232,0.5330709,-28.84305)" />
<path
d="M 27,26.5 A 3.5,3.5 0 1 1 20,26.5 A 3.5,3.5 0 1 1 27,26.5 z"
id="path7760"
sodipodi:cx="23.5"
sodipodi:cy="26.5"
sodipodi:rx="3.5"
sodipodi:ry="3.5"
sodipodi:type="arc"
style="opacity:0.57954544;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:10.6760006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="matrix(9.2088394e-2,0,0,9.5274648e-2,13.839859,17.984489)" />
<path
d="M 24.0625,68.5 C 23.080826,68.500003 22.291628,69.055575 21.875,69.875 C 21.658543,70.650161 21.470426,71.444468 21.3125,72.25 C 22.048694,73.105251 22.5625,74.166742 22.5625,75.375 L 22.5625,75.9375 C 23.021615,76.223554 23.499922,76.5 24.0625,76.5 C 24.605354,76.500001 25.052065,76.242077 25.5,75.96875 L 25.5,75.375 C 25.5,74.151111 26.027166,73.079642 26.78125,72.21875 C 26.621842,71.438907 26.463645,70.653835 26.28125,69.875 C 26.278414,69.862891 26.252841,69.85586 26.25,69.84375 C 25.832588,69.040197 25.039733,68.5 24.0625,68.5 z"
id="path7767"
inkscape:original="M 24.0625 67.5 C 22.678983 67.500004 21.505554 68.302724 20.9375 69.46875 C 20.655792 70.456405 20.438887 71.459771 20.25 72.46875 C 21.054848 73.179411 21.5625 74.221009 21.5625 75.375 L 21.5625 76.59375 C 22.248627 77.146517 23.113597 77.5 24.0625 77.5 C 24.991104 77.500001 25.820886 77.15659 26.5 76.625 L 26.5 75.375 C 26.5 74.20552 27.020137 73.14875 27.84375 72.4375 C 27.64453 71.431793 27.423318 70.435011 27.1875 69.4375 C 26.614573 68.285057 25.436064 67.5 24.0625 67.5 z "
inkscape:radius="-0.99687952"
sodipodi:type="inkscape:offset"
style="opacity:0.15530306;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2944);stroke-width:1.48073387;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="matrix(0.6446194,0,0,0.7075264,0.5330709,-31.949197)" />
</g>
<path
d="M -43.238977,-47.159094 L -45.575723,-47.157272 C -46.542652,-47.156518 -47.509581,-48.489869 -48.47651,-48.491118 L -49.886615,-48.49294 C -50.913332,-48.49294 -51.739896,-47.632678 -51.739896,-46.5641 L -51.739896,-43.750725 C -51.739896,-42.682148 -50.913332,-41.821886 -49.886615,-41.821886 L -43.238977,-41.821886 C -42.21226,-41.821886 -41.385696,-42.682148 -41.385696,-43.750725 L -41.385696,-45.230254 C -41.385696,-46.298831 -42.21226,-47.159094 -43.238977,-47.159094 z"
id="path7524"
sodipodi:nodetypes="csscccccccc"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2946);stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M -64.712861,-47.090248 L -62.376116,-47.088332 C -61.409187,-47.087539 -60.442257,-48.489711 -59.475328,-48.491025 L -58.065223,-48.492941 C -57.038506,-48.492941 -56.211943,-47.588276 -56.211943,-46.464543 L -56.211943,-43.505954 C -56.211943,-42.382222 -57.038506,-41.477558 -58.065223,-41.477558 L -64.712861,-41.477558 C -65.739579,-41.477558 -66.566142,-42.382222 -66.566142,-43.505954 L -66.566142,-45.06185 C -66.566142,-46.185582 -65.739579,-47.090248 -64.712861,-47.090248 z"
id="rect6374"
sodipodi:nodetypes="csscccccccc"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2948);stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M -56.264962,-46.157272 C -56.264962,-47.629838 -55.248495,-48.824965 -53.996064,-48.824965 C -52.743631,-48.824965 -51.727165,-47.629838 -51.727165,-46.157272"
id="path7741"
sodipodi:nodetypes="csc"
style="opacity:0.90909095;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient2950);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 12.881056,-51.5 C 13.777894,-51.500001 14.502938,-50.703547 14.502938,-49.706957 L 14.502938,-47.071399 C 14.502938,-46.966435 14.49796,-46.868651 14.482663,-46.768958 C 14.236003,-45.523953 13.995841,-44.277475 13.752818,-43.031651 C 13.466716,-42.319918 12.798412,-41.821886 12.029569,-41.821886 L 5.33931,-41.821886 C 4.30601,-41.821886 3.474147,-42.723335 3.474147,-43.830959 L 3.474147,-45.364767 C 3.474147,-45.725897 3.562423,-46.0684 3.717429,-46.358503 L 5.663686,-49.318104 C 5.735201,-49.462086 5.824111,-49.590814 5.927242,-49.706957 C 6.221478,-50.038312 6.628435,-50.24703 7.082832,-50.24703 L 9.130457,-50.24703 C 9.97507,-50.246327 10.820035,-51.498834 11.664646,-51.5 L 12.881056,-51.5 z"
id="path6561"
sodipodi:nodetypes="cccccccccccscccc"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2952);stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline"
transform="translate(-70,0)" />
<g
id="g7775">
<path
d="M -63.343045,-47.5 C -60.855284,-47.5 -58.830709,-45.481907 -58.830709,-42.97719 L -58.850853,-41.354658 C -58.850853,-38.670814 -60.999679,-36.507343 -63.665354,-36.507343 C -66.33103,-36.507343 -68.5,-38.670814 -68.5,-41.354658 C -68.5,-44.275217 -66.566205,-47.5 -63.343045,-47.5 z"
id="path7657"
sodipodi:nodetypes="cccscc"
style="fill:url(#linearGradient2954);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 22,24.882097 A 7.4644661,7.4644661 0 1 1 7.0710678,24.882097 A 7.4644661,7.4644661 0 1 1 22,24.882097 z"
id="path7661"
sodipodi:cx="14.535534"
sodipodi:cy="24.882097"
sodipodi:rx="7.4644661"
sodipodi:ry="7.4644661"
sodipodi:type="arc"
style="opacity:0.8;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:#babdb6;stroke-width:1.91069221;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="matrix(0.51446,0,0,0.5324356,-71.137781,-54.742256)" />
<g
id="g7311"
transform="matrix(0.7983329,0,0,0.8070458,-68.723075,-62.114941)">
<g
id="g5881"
transform="matrix(0.5129614,0,0,0.5238071,51.18191,-11.9894)">
<path
d="M 19.875,22.5625 A 4.125,4.1875 0 1 1 11.625,22.5625 A 4.125,4.1875 0 1 1 19.875,22.5625 z"
id="path2589"
sodipodi:cx="15.75"
sodipodi:cy="22.5625"
sodipodi:rx="4.125"
sodipodi:ry="4.1875"
sodipodi:type="arc"
style="fill:url(#radialGradient2956);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient2958);stroke-width:1.43318415;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
transform="matrix(1.676984,0,0,1.676984,-113.8461,33.756151)" />
<path
d="M 16.5,22.6875 A 1.75,1.8125 0 1 1 13,22.6875 A 1.75,1.8125 0 1 1 16.5,22.6875 z"
id="path2599"
sodipodi:cx="14.75"
sodipodi:cy="22.6875"
sodipodi:rx="1.75"
sodipodi:ry="1.8125"
sodipodi:type="arc"
style="opacity:0.60759499;fill:#ffffff;fill-opacity:0.52866247;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
transform="matrix(1.676984,0,0,1.676984,-111.83457,33.611503)" />
<path
d="M 16.5,22.6875 A 1.75,1.8125 0 1 1 13,22.6875 A 1.75,1.8125 0 1 1 16.5,22.6875 z"
id="path2601"
sodipodi:cx="14.75"
sodipodi:cy="22.6875"
sodipodi:rx="1.75"
sodipodi:ry="1.8125"
sodipodi:type="arc"
style="opacity:0.37341769;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
transform="matrix(1.673245,0,0,1.673245,-114.00058,31.80613)" />
<path
d="M 16.5,22.6875 A 1.75,1.8125 0 1 1 13,22.6875 A 1.75,1.8125 0 1 1 16.5,22.6875 z"
id="path8405"
sodipodi:cx="14.75"
sodipodi:cy="22.6875"
sodipodi:rx="1.75"
sodipodi:ry="1.8125"
sodipodi:type="arc"
style="fill:url(#radialGradient2960);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
transform="matrix(0.41273,0,0,0.41273,-89.88316,65.788647)" />
<path
d="M 16.5,22.6875 A 1.75,1.8125 0 1 1 13,22.6875 A 1.75,1.8125 0 1 1 16.5,22.6875 z"
id="path2629"
sodipodi:cx="14.75"
sodipodi:cy="22.6875"
sodipodi:rx="1.75"
sodipodi:ry="1.8125"
sodipodi:type="arc"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
transform="matrix(0.45611,0,0,0.45611,-97.03183,58.199937)" />
</g>
<path
d="M 6.4958003,23.948474 C 5.66482,23.948474 5.0051179,24.674403 5.005118,25.553258 C 5.005118,25.756568 5.0400667,25.937168 5.1058398,26.115975 C 5.1913931,26.132006 5.2778331,26.136816 5.3677164,26.136816 C 6.196844,26.136816 6.8583985,25.429769 6.8583988,24.552873 C 6.8583988,24.355936 6.8398498,24.164239 6.7778213,23.990157 C 6.6858507,23.971564 6.592869,23.948474 6.4958003,23.948474 z"
id="path6884"
style="opacity:0.7;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans" />
</g>
</g>
<path
d="M 19.124233,-51.499999 C 18.223309,-51.5 17.494961,-50.675137 17.494961,-49.642999 L 17.494961,-46.913431 C 17.494961,-46.804723 17.499961,-46.703451 17.515326,-46.600202 C 17.763112,-45.310788 18.004367,-44.019848 18.248499,-42.729586 C 18.535904,-41.992466 19.207255,-41.476669 19.979601,-41.476669 L 26.700351,-41.476669 C 27.738361,-41.476669 28.574015,-42.410272 28.574015,-43.557405 L 28.574015,-45.145924 C 28.574015,-45.519935 28.485336,-45.874655 28.329624,-46.175106 L 26.374496,-49.240276 C 26.302656,-49.389393 26.213341,-49.522713 26.10974,-49.642999 C 25.814162,-49.986173 25.405351,-50.202336 24.948882,-50.202336 L 22.891926,-50.202336 C 22.043464,-50.201608 21.194647,-51.498792 20.346188,-51.499999 L 19.124233,-51.499999 z"
id="path6563"
sodipodi:nodetypes="cccccccccccscccc"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2962);stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline"
transform="translate(-70,0)" />
<g
id="g7787">
<path
d="M -44.649082,-47.5 C -47.136843,-47.5 -49.161418,-45.481907 -49.161418,-42.97719 L -49.141274,-41.354658 C -49.141274,-38.670814 -46.992448,-36.507343 -44.326773,-36.507343 C -41.661097,-36.507343 -39.492127,-38.670814 -39.492127,-41.354658 C -39.492127,-44.275217 -41.425922,-47.5 -44.649082,-47.5 z"
id="path6457"
sodipodi:nodetypes="cccscc"
style="fill:url(#linearGradient2964);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 22,24.882097 A 7.4644661,7.4644661 0 1 1 7.0710678,24.882097 A 7.4644661,7.4644661 0 1 1 22,24.882097 z"
id="path7631"
sodipodi:cx="14.535534"
sodipodi:cy="24.882097"
sodipodi:rx="7.4644661"
sodipodi:ry="7.4644661"
sodipodi:type="arc"
style="opacity:0.8;fill:#babdb6;fill-opacity:1;fill-rule:evenodd;stroke:#babdb6;stroke-width:1.9139719;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="matrix(0.5119252,0,0,0.5332397,-51.762354,-54.787772)" />
<g
id="g7296"
transform="matrix(0.8082624,0,0,0.8173562,-65.111576,-62.344879)">
<g
id="g5895"
style="display:inline"
transform="matrix(0.5129614,0,0,0.5238071,70.520495,-11.9894)">
<path
d="M 19.875,22.5625 A 4.125,4.1875 0 1 1 11.625,22.5625 A 4.125,4.1875 0 1 1 19.875,22.5625 z"
id="path5897"
sodipodi:cx="15.75"
sodipodi:cy="22.5625"
sodipodi:rx="4.125"
sodipodi:ry="4.1875"
sodipodi:type="arc"
style="fill:url(#radialGradient2966);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient2968);stroke-width:1.41534138;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
transform="matrix(1.676984,0,0,1.676984,-113.8461,33.756151)" />
<path
d="M 16.5,22.6875 A 1.75,1.8125 0 1 1 13,22.6875 A 1.75,1.8125 0 1 1 16.5,22.6875 z"
id="path5899"
sodipodi:cx="14.75"
sodipodi:cy="22.6875"
sodipodi:rx="1.75"
sodipodi:ry="1.8125"
sodipodi:type="arc"
style="opacity:0.60759499;fill:#ffffff;fill-opacity:0.52866247;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
transform="matrix(1.676984,0,0,1.676984,-111.83457,33.611503)" />
<path
d="M 16.5,22.6875 A 1.75,1.8125 0 1 1 13,22.6875 A 1.75,1.8125 0 1 1 16.5,22.6875 z"
id="path5901"
sodipodi:cx="14.75"
sodipodi:cy="22.6875"
sodipodi:rx="1.75"
sodipodi:ry="1.8125"
sodipodi:type="arc"
style="opacity:0.37341769;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
transform="matrix(1.673245,0,0,1.673245,-114.00058,31.80613)" />
<path
d="M 16.5,22.6875 A 1.75,1.8125 0 1 1 13,22.6875 A 1.75,1.8125 0 1 1 16.5,22.6875 z"
id="path5903"
sodipodi:cx="14.75"
sodipodi:cy="22.6875"
sodipodi:rx="1.75"
sodipodi:ry="1.8125"
sodipodi:type="arc"
style="fill:url(#radialGradient2970);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
transform="matrix(0.41273,0,0,0.41273,-89.88316,65.788647)" />
<path
d="M 16.5,22.6875 A 1.75,1.8125 0 1 1 13,22.6875 A 1.75,1.8125 0 1 1 16.5,22.6875 z"
id="path5905"
sodipodi:cx="14.75"
sodipodi:cy="22.6875"
sodipodi:rx="1.75"
sodipodi:ry="1.8125"
sodipodi:type="arc"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans"
transform="matrix(0.45611,0,0,0.45611,-97.03183,58.199937)" />
</g>
<path
d="M 25.834382,23.948474 C 25.003402,23.948474 24.3437,24.674403 24.3437,25.553258 C 24.3437,25.756568 24.378649,25.937168 24.444422,26.115975 C 24.529975,26.132006 24.616415,26.136816 24.706298,26.136816 C 25.535426,26.136816 26.196981,25.429769 26.196981,24.552873 C 26.196981,24.355936 26.178432,24.164239 26.116403,23.990157 C 26.024433,23.971564 25.931451,23.948474 25.834382,23.948474 z"
id="path6892"
style="opacity:0.7;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans" />
</g>
</g>
</g>
</g>
<path
transform="matrix(1.2867647,0,0,1.2559195,300.59743,171.93967)"
style="opacity:0.5;fill:url(#radialGradient7752);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:0.31372549"
sodipodi:type="arc"
sodipodi:ry="0.75"
sodipodi:rx="4.25"
sodipodi:cy="20.75"
sodipodi:cx="9.25"
id="path6559"
d="M 13.5,20.75 A 4.25,0.75 0 1 1 5,20.75 A 4.25,0.75 0 1 1 13.5,20.75 z" />
<path
transform="matrix(1.2941176,0,0,1.2559195,309.52941,171.93967)"
style="opacity:0.5;fill:url(#radialGradient7744);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:0.31372549;display:inline"
sodipodi:type="arc"
sodipodi:ry="0.75"
sodipodi:rx="4.25"
sodipodi:cy="20.75"
sodipodi:cx="9.25"
id="path7728"
d="M 13.5,20.75 A 4.25,0.75 0 1 1 5,20.75 A 4.25,0.75 0 1 1 13.5,20.75 z" />
<g
transform="matrix(0.9534899,0,0,0.955646,302.99991,177.00744)"
id="g6545">
<path
transform="matrix(1.0600708,0,0,1.0322581,-1.2098928,-0.5117783)"
style="opacity:0.50285716;fill:url(#radialGradient6551);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible;enable-background:accumulate"
sodipodi:type="arc"
sodipodi:ry="2.7400389"
sodipodi:rx="9.8994951"
sodipodi:cy="19.083185"
sodipodi:cx="11.313708"
id="path445"
d="M 21.213203,19.083185 A 9.8994951,2.7400389 0 1 1 1.4142132,19.083185 A 9.8994951,2.7400389 0 1 1 21.213203,19.083185 z" />
<path
style="fill:url(#linearGradient6553);fill-opacity:1;fill-rule:nonzero;stroke:#888a85;stroke-width:1.04759502;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible;enable-background:accumulate"
id="path447"
d="M 10.81256,0.51542 C 9.7517447,0.53286441 10.255838,2.5726059 9.21881,2.79667 C 8.1817812,3.020734 7.7859498,0.96834703 6.81256,1.39042 C 5.8391702,1.812493 7.0911543,3.5053082 6.21881,4.10917 C 5.3464659,4.7130319 4.2065847,2.9404752 3.46881,3.70292 C 2.7310354,4.4653647 4.5124129,5.5611928 3.93756,6.45292 C 3.3627071,7.3446473 1.60865,6.1849287 1.21881,7.17167 C 0.8289701,8.1584112 2.9086555,8.4715847 2.71881,9.51542 C 2.5289644,10.559255 0.4826156,10.142105 0.50006,11.20292 C 0.51750441,12.263735 2.5572459,11.759641 2.78131,12.79667 C 3.005374,13.833699 0.95298699,14.22953 1.37506,15.20292 C 1.797133,16.17631 3.4899481,14.924326 4.09381,15.79667 C 4.6976719,16.669014 2.9251153,17.808896 3.68756,18.54667 C 4.4500047,19.284445 5.5458327,17.503066 6.43756,18.07792 C 7.3292873,18.652773 6.169569,20.406831 7.15631,20.79667 C 8.1430512,21.18651 8.4562251,19.106824 9.50006,19.29667 C 10.543895,19.486516 10.126744,21.532865 11.18756,21.51542 C 12.248375,21.497976 11.744281,19.458235 12.78131,19.23417 C 13.818339,19.010106 14.214171,21.062493 15.18756,20.64042 C 16.16095,20.218347 14.908966,18.525531 15.78131,17.92167 C 16.653654,17.317808 17.793536,19.090365 18.53131,18.32792 C 19.269085,17.565475 17.487708,16.469647 18.06256,15.57792 C 18.637413,14.686193 20.39147,15.845911 20.78131,14.85917 C 21.17115,13.872429 19.091464,13.559255 19.28131,12.51542 C 19.471156,11.471585 21.517504,11.888735 21.50006,10.82792 C 21.482616,9.7671047 19.442874,10.271199 19.21881,9.23417 C 18.994746,8.1971412 21.047133,7.8013099 20.62506,6.82792 C 20.202987,5.8545302 18.510173,7.1065139 17.90631,6.23417 C 17.302448,5.3618259 19.075004,4.2219446 18.31256,3.48417 C 17.550115,2.7463954 16.454288,4.5277728 15.56256,3.95292 C 14.670833,3.3780671 15.830551,1.6240099 14.84381,1.23417 C 13.857069,0.8443301 13.543895,2.9240156 12.50006,2.73417 C 11.456225,2.5443244 11.873375,0.49797558 10.81256,0.51542 z M 11.00006,5.51542 C 14.03606,5.51542 16.50006,7.97942 16.50006,11.01542 C 16.50006,14.05142 14.03606,16.51542 11.00006,16.51542 C 7.96406,16.51542 5.50006,14.05142 5.50006,11.01542 C 5.50006,7.97942 7.96406,5.51542 11.00006,5.51542 z" />
<path
transform="translate(8.8448348e-2,0.1038083)"
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6555);stroke-width:1.04759502;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible;enable-background:accumulate"
sodipodi:type="arc"
sodipodi:ry="6.5407376"
sodipodi:rx="6.5407376"
sodipodi:cy="10.863069"
sodipodi:cx="10.783379"
id="path449"
d="M 17.324116,10.863069 A 6.5407376,6.5407376 0 1 1 4.242641,10.863069 A 6.5407376,6.5407376 0 1 1 17.324116,10.863069 z" />
<path
xlink:href="#path5665"
transform="translate(6e-5,1.542e-2)"
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6557);stroke-width:1.04759502;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible;enable-background:accumulate"
sodipodi:type="inkscape:offset"
inkscape:radius="-1.0570278"
inkscape:original="M 10.8125 0.5 C 9.7516847 0.51744441 10.255778 2.5571859 9.21875 2.78125 C 8.1817212 3.005314 7.7858898 0.95292703 6.8125 1.375 C 5.8391102 1.797073 7.0910943 3.4898882 6.21875 4.09375 C 5.3464059 4.6976119 4.2065247 2.9250552 3.46875 3.6875 C 2.7309754 4.4499447 4.5123529 5.5457728 3.9375 6.4375 C 3.3626471 7.3292273 1.60859 6.1695087 1.21875 7.15625 C 0.8289101 8.1429912 2.9085955 8.4561647 2.71875 9.5 C 2.5289044 10.543835 0.4825556 10.126685 0.5 11.1875 C 0.51744441 12.248315 2.5571859 11.744221 2.78125 12.78125 C 3.005314 13.818279 0.95292699 14.21411 1.375 15.1875 C 1.797073 16.16089 3.4898881 14.908906 4.09375 15.78125 C 4.6976119 16.653594 2.9250553 17.793476 3.6875 18.53125 C 4.4499447 19.269025 5.5457727 17.487646 6.4375 18.0625 C 7.3292273 18.637353 6.169509 20.391411 7.15625 20.78125 C 8.1429912 21.17109 8.4561651 19.091404 9.5 19.28125 C 10.543835 19.471096 10.126684 21.517445 11.1875 21.5 C 12.248315 21.482556 11.744221 19.442815 12.78125 19.21875 C 13.818279 18.994686 14.214111 21.047073 15.1875 20.625 C 16.16089 20.202927 14.908906 18.510111 15.78125 17.90625 C 16.653594 17.302388 17.793476 19.074945 18.53125 18.3125 C 19.269025 17.550055 17.487648 16.454227 18.0625 15.5625 C 18.637353 14.670773 20.39141 15.830491 20.78125 14.84375 C 21.17109 13.857009 19.091404 13.543835 19.28125 12.5 C 19.471096 11.456165 21.517444 11.873315 21.5 10.8125 C 21.482556 9.7516847 19.442814 10.255779 19.21875 9.21875 C 18.994686 8.1817212 21.047073 7.7858899 20.625 6.8125 C 20.202927 5.8391102 18.510113 7.0910939 17.90625 6.21875 C 17.302388 5.3464059 19.074944 4.2065246 18.3125 3.46875 C 17.550055 2.7309754 16.454228 4.5123528 15.5625 3.9375 C 14.670773 3.3626471 15.830491 1.6085899 14.84375 1.21875 C 13.857009 0.8289101 13.543835 2.9085956 12.5 2.71875 C 11.456165 2.5289044 11.873315 0.48255558 10.8125 0.5 z M 11 5.5 C 14.036 5.5 16.5 7.964 16.5 11 C 16.5 14.036 14.036 16.5 11 16.5 C 7.964 16.5 5.5 14.036 5.5 11 C 5.5 7.964 7.964 5.5 11 5.5 z "
inkscape:href="#path5665"
id="path451"
d="M 10.84375,2.34375 C 10.794368,2.5019025 10.781638,2.6301844 10.6875,2.8125 C 10.486028,3.2026895 10.037627,3.6828343 9.4375,3.8125 C 8.8390777,3.9417972 8.2518588,3.7066387 7.90625,3.4375 C 7.7511433,3.3167125 7.6706959,3.2119036 7.5625,3.09375 C 7.5759468,3.2516595 7.6095973,3.3691607 7.59375,3.5625 C 7.557846,4.0005343 7.3179063,4.6188932 6.8125,4.96875 C 6.3068534,5.3187732 5.6413972,5.3090807 5.21875,5.1875 C 5.0359628,5.1349186 4.9532775,5.0670663 4.8125,5 C 4.8847521,5.142718 4.9417715,5.2502283 5,5.4375 C 5.1300587,5.8557884 5.1443375,6.4852449 4.8125,7 C 4.479614,7.5163817 3.9033337,7.7882657 3.46875,7.84375 C 3.251646,7.8714682 3.1123195,7.8529346 2.9375,7.84375 C 3.0652879,7.9500167 3.1794012,7.9990357 3.3125,8.15625 C 3.5963589,8.4915398 3.8599217,9.0831132 3.75,9.6875 C 3.6405,10.289568 3.1930294,10.752122 2.8125,10.96875 C 2.6275731,11.074025 2.5045471,11.099452 2.34375,11.15625 C 2.5019025,11.205632 2.6301843,11.218362 2.8125,11.3125 C 3.2026897,11.513972 3.6828345,11.962373 3.8125,12.5625 C 3.9417971,13.160922 3.7066387,13.748141 3.4375,14.09375 C 3.3167125,14.248857 3.2119036,14.329304 3.09375,14.4375 C 3.2516595,14.424053 3.3691608,14.390403 3.5625,14.40625 C 4.0005342,14.442154 4.6188931,14.682094 4.96875,15.1875 C 5.3187733,15.693147 5.3090807,16.358603 5.1875,16.78125 C 5.1349186,16.964037 5.0670663,17.046722 5,17.1875 C 5.1427181,17.115248 5.2502281,17.058229 5.4375,17 C 5.8557887,16.869941 6.485245,16.855662 7,17.1875 C 7.5163818,17.520386 7.7882656,18.096666 7.84375,18.53125 C 7.8714682,18.748354 7.8529346,18.887681 7.84375,19.0625 C 7.9500167,18.934712 7.9990357,18.820599 8.15625,18.6875 C 8.4915398,18.403641 9.0831131,18.140078 9.6875,18.25 C 10.289568,18.3595 10.752122,18.806971 10.96875,19.1875 C 11.074025,19.372427 11.099452,19.495453 11.15625,19.65625 C 11.205632,19.498097 11.218362,19.369816 11.3125,19.1875 C 11.513972,18.79731 11.962373,18.317166 12.5625,18.1875 C 13.160922,18.058203 13.748141,18.293361 14.09375,18.5625 C 14.248857,18.683287 14.329304,18.788096 14.4375,18.90625 C 14.424053,18.74834 14.390403,18.630839 14.40625,18.4375 C 14.442154,17.999466 14.682093,17.381107 15.1875,17.03125 C 15.693147,16.681227 16.358603,16.690919 16.78125,16.8125 C 16.964037,16.865081 17.046722,16.932934 17.1875,17 C 17.115248,16.857282 17.058229,16.749772 17,16.5625 C 16.869941,16.144212 16.855663,15.514755 17.1875,15 C 17.520386,14.483618 18.096666,14.211734 18.53125,14.15625 C 18.748354,14.128532 18.887681,14.147065 19.0625,14.15625 C 18.934712,14.049983 18.820599,14.000964 18.6875,13.84375 C 18.403641,13.50846 18.140078,12.916887 18.25,12.3125 C 18.3595,11.710432 18.806971,11.247878 19.1875,11.03125 C 19.372427,10.925975 19.495453,10.900548 19.65625,10.84375 C 19.498097,10.794368 19.369816,10.781638 19.1875,10.6875 C 18.79731,10.486028 18.317166,10.037627 18.1875,9.4375 C 18.058203,8.8390777 18.293361,8.2518588 18.5625,7.90625 C 18.683287,7.7511433 18.788096,7.6706959 18.90625,7.5625 C 18.74834,7.5759468 18.630839,7.6095973 18.4375,7.59375 C 17.999466,7.557846 17.381107,7.3179057 17.03125,6.8125 C 16.681227,6.3068535 16.690919,5.6413973 16.8125,5.21875 C 16.865081,5.0359628 16.932934,4.9532776 17,4.8125 C 16.857282,4.8847521 16.749772,4.9417715 16.5625,5 C 16.144212,5.1300587 15.514755,5.1443371 15,4.8125 C 14.483618,4.4796139 14.211734,3.9033336 14.15625,3.46875 C 14.128532,3.251646 14.147065,3.1123194 14.15625,2.9375 C 14.049983,3.0652879 14.000964,3.1794012 13.84375,3.3125 C 13.50846,3.5963588 12.916887,3.8599218 12.3125,3.75 C 11.710432,3.6405 11.247878,3.1930294 11.03125,2.8125 C 10.925975,2.6275731 10.900548,2.5045471 10.84375,2.34375 z M 11,4.4375 C 14.607918,4.4375 17.5625,7.3920816 17.5625,11 C 17.5625,14.607918 14.607918,17.5625 11,17.5625 C 7.3920816,17.5625 4.4375,14.607918 4.4375,11 C 4.4375,7.3920816 7.3920816,4.4375 11,4.4375 z" />
</g>
<g
transform="translate(309.0112,182.00306)"
style="display:inline"
inkscape:label="Livello 1"
id="g6128">
<g
transform="translate(-90,1)"
style="display:inline"
id="g8136">
<g
transform="matrix(0.8578739,0,0,1,99.065945,-1)"
id="g8138">
<path
style="fill:url(#linearGradient8174);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.07966304;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1"
sodipodi:nodetypes="ccccccc"
id="path8140"
d="M 2.5,8.5 L 0.5,13.5 L 0.5,15.5 L 7.5,15.5 L 7.5,13.5 L 5.5,8.5 L 2.5,8.5 z" />
<path
transform="matrix(0.9375077,0,0,1,0.24748,-4)"
style="opacity:0.50757578;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8176);stroke-width:1.11506665;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
sodipodi:type="inkscape:offset"
inkscape:radius="-1.015625"
inkscape:original="M 2.5 12.5 L 0.5 17.5 L 0.5 19.5 L 7.5 19.5 L 7.5 17.5 L 5.5 12.5 L 2.5 12.5 z "
id="path8142"
d="M 3.1875,13.5 L 1.5,17.71875 L 1.5,18.5 L 6.5,18.5 L 6.5,17.71875 L 4.8125,13.5 L 3.1875,13.5 z" />
<path
style="opacity:0.46969694;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8178);stroke-width:1.07966316px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
id="path8144"
d="M 1.5,13.5 L 6.5,13.5" />
</g>
<g
transform="matrix(0.8578739,0,0,1,90.065945,-1)"
id="g8146">
<path
style="fill:url(#linearGradient8180);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.07966304;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1"
sodipodi:nodetypes="ccccccc"
id="path8148"
d="M 2.5,8.5 L 0.5,13.5 L 0.5,15.5 L 7.5,15.5 L 7.5,13.5 L 5.5,8.5 L 2.5,8.5 z" />
<path
transform="matrix(0.9375077,0,0,1,0.24748,-4)"
style="opacity:0.50757578;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8182);stroke-width:1.11506665;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
sodipodi:type="inkscape:offset"
inkscape:radius="-1.015625"
inkscape:original="M 2.5 12.5 L 0.5 17.5 L 0.5 19.5 L 7.5 19.5 L 7.5 17.5 L 5.5 12.5 L 2.5 12.5 z "
id="path8150"
d="M 3.1875,13.5 L 1.5,17.71875 L 1.5,18.5 L 6.5,18.5 L 6.5,17.71875 L 4.8125,13.5 L 3.1875,13.5 z" />
<path
style="opacity:0.46969694;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8184);stroke-width:1.07966316px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
id="path8152"
d="M 1.5,13.5 L 6.5,13.5" />
</g>
<rect
y="0.5"
x="93.5"
width="3"
style="fill:url(#linearGradient8186);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
ry="0.53125"
rx="0.53125"
id="rect8154"
height="6" />
<path
style="fill:url(#linearGradient8188);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
sodipodi:nodetypes="ccccccccccc"
id="path8156"
d="M 94.220817,2.5 C 93.145678,2.5 93.524258,4.5 92.250973,4.5 L 91.594358,4.5 C 90.993285,4.5 90.5,5.0634405 90.5,5.75 L 90.5,8.3125 C 90.5,8.999059 90.993285,9.53125 91.594358,9.53125 L 96.436892,9.53125 C 97.037965,9.53125 97.53125,8.99906 97.53125,8.3125 L 97.53125,3.75 C 97.53125,3.0634407 97.037965,2.5 96.436892,2.5 L 94.220817,2.5 z" />
<path
style="opacity:0.3;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8190);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1"
sodipodi:nodetypes="csscccccccccc"
id="path8158"
d="M 94.286458,3.5 C 94.262937,3.5433628 94.195832,3.6641722 94.104167,3.90625 C 94.004028,4.1707047 93.894962,4.5554448 93.609375,4.90625 C 93.323789,5.2570552 92.830307,5.5 92.333334,5.5 L 91.708334,5.5 C 91.599254,5.5 91.5,5.6191044 91.5,5.75 L 91.5,8.3125 C 91.5,8.443395 91.573572,8.5 91.708334,8.5 L 96.317708,8.5 C 96.452471,8.5 96.5,8.443397 96.5,8.3125 L 96.5,3.75 C 96.5,3.6191047 96.426788,3.5 96.317708,3.5 L 94.286458,3.5 z" />
<rect
y="0.5"
x="99.5"
width="3"
style="fill:url(#linearGradient8192);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
ry="0.53125"
rx="0.53125"
id="rect8160"
height="6" />
<path
style="fill:url(#linearGradient8194);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
sodipodi:nodetypes="ccccccccccc"
id="path8162"
d="M 101.79572,2.5 C 102.86608,2.5 102.48918,4.5 103.75681,4.5 L 104.41051,4.5 C 105.00891,4.5 105.5,5.063441 105.5,5.75 L 105.5,8.3125 C 105.5,8.999059 105.00891,9.53125 104.41051,9.53125 L 99.589494,9.53125 C 98.991092,9.53125 98.5,8.99906 98.5,8.3125 L 98.5,3.75 C 98.5,3.063441 98.991092,2.5 99.589494,2.5 L 101.79572,2.5 z" />
<path
style="opacity:0.3;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8196);stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1"
sodipodi:nodetypes="csscccccccccc"
id="path8164"
d="M 101.72872,3.5 C 101.75211,3.5433628 101.81885,3.6641722 101.91002,3.90625 C 102.00961,4.1707047 102.11808,4.5554448 102.40211,4.90625 C 102.68615,5.2570552 103.17694,5.5 103.67121,5.5 L 104.2928,5.5 C 104.40129,5.5 104.5,5.6191044 104.5,5.75 L 104.5,8.3125 C 104.5,8.443395 104.42683,8.5 104.2928,8.5 L 99.708536,8.5 C 99.574508,8.5 99.527237,8.443397 99.527237,8.3125 L 99.527237,3.75 C 99.527237,3.6191047 99.60005,3.5 99.708536,3.5 L 101.72872,3.5 z" />
<rect
y="4"
x="96.5"
width="3"
style="fill:url(#linearGradient8198);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
id="rect8166"
height="4.0000005" />
<g
transform="translate(90,0)"
style="opacity:0.2"
id="g8168">
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
id="path8170"
d="M 1.5,10.5 L 5.5,10.5" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
id="path8172"
d="M 10.5,10.5 L 14.5,10.5" />
</g>
</g>
</g>
<g
id="g16"
style="display:inline;enable-background:new"
transform="translate(303,219)">
<g
id="layer1"
inkscape:label="Layer 1"
transform="matrix(0.9916704,0,0,1,6.6637e-2,-9.3531872e-2)">
<path
d="M 17.324116,10.863069 A 6.5407376,6.5407376 0 1 1 4.242641,10.863069 A 6.5407376,6.5407376 0 1 1 17.324116,10.863069 z"
id="path619"
sodipodi:cx="10.783379"
sodipodi:cy="10.863069"
sodipodi:rx="6.5407376"
sodipodi:ry="6.5407376"
sodipodi:type="arc"
style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5775);stroke-width:1.39043987;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible;enable-background:accumulate"
transform="matrix(0.722211,0,0,0.722211,0.2026987,0.2026987)" />
<path
d="M 9.375,0.59375 C 8.4843797,0.63115784 8.4655815,2.454446 7.4375,2.5625 C 6.3408795,2.6777576 5.9135808,0.64526462 4.90625,1.09375 C 3.8989191,1.5422354 5.1319367,3.1996876 4.3125,3.9375 C 3.4930632,4.6753123 1.9575805,3.2950831 1.40625,4.25 C 0.85491951,5.204917 2.8230062,5.8277023 2.59375,6.90625 C 2.3644939,7.9847978 0.32224055,7.747147 0.4375,8.84375 C 0.55275945,9.9403528 2.5202573,9.2739357 2.96875,10.28125 C 3.4172426,11.288565 1.6059259,12.305576 2.34375,13.125 C 3.0815742,13.944424 4.2950678,12.261178 5.25,12.8125 C 6.2049324,13.363822 5.3276847,15.239497 6.40625,15.46875 C 7.4848152,15.698002 7.4658794,13.646508 8.5625,13.53125 C 9.6591205,13.415992 10.086419,15.417235 11.09375,14.96875 C 12.101081,14.520265 10.868063,12.894062 11.6875,12.15625 C 12.506937,11.418438 15.002257,12.854003 14.5625,11.84375 L 13.40625,9.1875 L 13.03125,5.8125 C 12.582757,4.8051853 14.394074,3.7881737 13.65625,2.96875 C 12.918426,2.1493264 11.704933,3.8325717 10.75,3.28125 C 9.7950676,2.7299284 10.672315,0.85425243 9.59375,0.625 C 9.5263397,0.61067172 9.4343747,0.59125614 9.375,0.59375 z M 8,5.125 C 9.6100822,5.125 10.90625,6.4211678 10.90625,8.03125 C 10.90625,9.6413319 9.6100822,10.96875 8,10.96875 C 6.3899179,10.96875 5.09375,9.6413322 5.09375,8.03125 C 5.0937498,6.4211676 6.3899178,5.125 8,5.125 z"
id="path5916"
sodipodi:nodetypes="cssssssssssssssccsssccsssc"
style="opacity:1;fill:url(#linearGradient5937);fill-opacity:1;fill-rule:nonzero;stroke:#888a85;stroke-width:1.00419092;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible;enable-background:accumulate" />
<path
d="M 11.5625,8 A 3.6875,3.6875 0 1 1 4.1875,8 A 3.6875,3.6875 0 1 1 11.5625,8 z"
id="path5921"
sodipodi:cx="7.875"
sodipodi:cy="8"
sodipodi:rx="3.6875"
sodipodi:ry="3.6875"
sodipodi:type="arc"
style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5929);stroke-width:0.97126669;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:10;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible;enable-background:accumulate"
transform="matrix(1.0338983,0,0,1.0338983,-0.1419492,-0.1461864)" />
</g>
<g
id="g6249"
transform="translate(-29,1)">
<g
id="g5820"
transform="matrix(0.606599,0,0,1,40.037733,-1)">
<path
d="M 2.5,8.5 L 0.5,13.5 L 0.5,15.5 L 7.5,15.5 L 7.5,13.5 L 5.5,8.5 L 2.5,8.5 z"
id="path5822"
sodipodi:nodetypes="ccccccc"
style="fill:url(#linearGradient6266);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.28395295;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 3.1875,13.5 L 1.5,17.71875 L 1.5,18.5 L 6.5,18.5 L 6.5,17.71875 L 4.8125,13.5 L 3.1875,13.5 z"
id="path626"
inkscape:original="M 2.5 12.5 L 0.5 17.5 L 0.5 19.5 L 7.5 19.5 L 7.5 17.5 L 5.5 12.5 L 2.5 12.5 z "
inkscape:radius="-1.015625"
sodipodi:type="inkscape:offset"
style="opacity:0.50757578;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6268);stroke-width:1.32605553;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="matrix(0.9375077,0,0,1,0.24748,-4)" />
<path
d="M 1.5,13.5 L 6.5,13.5"
id="path628"
style="opacity:0.46969694;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6270);stroke-width:1.28395307px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<g
id="g5826"
transform="matrix(0.6072517,0,0,1,33.10924,-1)">
<path
d="M 2.5,8.5 L 0.5,13.5 L 0.5,15.5 L 7.5,15.5 L 7.5,13.5 L 5.5,8.5 L 2.5,8.5 z"
id="path5828"
sodipodi:nodetypes="ccccccc"
style="fill:url(#linearGradient6272);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.28326273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 3.1875,13.5 L 1.5,17.71875 L 1.5,18.5 L 6.5,18.5 L 6.5,17.71875 L 4.8125,13.5 L 3.1875,13.5 z"
id="path632"
inkscape:original="M 2.5 12.5 L 0.5 17.5 L 0.5 19.5 L 7.5 19.5 L 7.5 17.5 L 5.5 12.5 L 2.5 12.5 z "
inkscape:radius="-1.015625"
sodipodi:type="inkscape:offset"
style="opacity:0.50757578;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6274);stroke-width:1.32534266;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
transform="matrix(0.9375077,0,0,1,0.24748,-4)" />
<path
d="M 1.5,13.5 L 6.5,13.5"
id="path634"
style="opacity:0.46969694;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6276);stroke-width:1.28326285px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<rect
height="6"
id="rect5832"
rx="0.53125"
ry="0.53125"
style="fill:url(#linearGradient6278);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
width="3"
x="34.505119"
y="4.5" />
<path
d="M 36.165158,6.4999999 C 35.395054,6.4999999 35.666225,7.9311111 34.754192,7.9311111 L 34.283869,7.9311111 C 33.853331,7.9311111 33.499999,8.3342841 33.499999,8.8255556 L 33.499999,10.659167 C 33.499999,11.150438 33.853331,11.53125 34.283869,11.53125 L 37.752497,11.53125 C 38.183036,11.53125 38.536368,11.150438 38.536368,10.659167 L 38.536368,7.3944445 C 38.536368,6.9031731 38.183036,6.4999999 37.752497,6.4999999 L 36.165158,6.4999999 z"
id="path5834"
sodipodi:nodetypes="ccccccccccc"
style="fill:url(#linearGradient6280);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 36.174729,7.5 C 36.160592,7.5260177 36.12026,7.5985033 36.065167,7.74375 C 36.004981,7.9024228 35.93943,8.1332669 35.767785,8.34375 C 35.596141,8.5542331 35.299547,8.7 35.000854,8.7 L 34.625214,8.7 C 34.559655,8.7 34.500001,8.7714626 34.500001,8.85 L 34.500001,10.3875 C 34.500001,10.466037 34.54422,10.5 34.625214,10.5 L 37.395558,10.5 C 37.476553,10.5 37.505119,10.466038 37.505119,10.3875 L 37.505119,7.65 C 37.505119,7.5714628 37.461117,7.5 37.395558,7.5 L 36.174729,7.5 z"
id="path5836"
sodipodi:nodetypes="csscccccccccc"
style="opacity:0.3;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6282);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<rect
height="6"
id="rect5838"
rx="0.53125"
ry="0.53125"
style="fill:url(#linearGradient6284);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
width="3"
x="40.505119"
y="4.5" />
<path
d="M 41.856795,6.5 C 42.620555,6.5 42.351616,7.9311112 43.25614,7.9311112 L 43.72259,7.9311112 C 44.149581,7.9311112 44.500001,8.3342846 44.500001,8.8255557 L 44.500001,10.659167 C 44.500001,11.150438 44.149581,11.53125 43.72259,11.53125 L 40.282532,11.53125 C 39.855539,11.53125 39.505119,11.150438 39.505119,10.659167 L 39.505119,7.3944446 C 39.505119,6.9031734 39.855539,6.5 40.282532,6.5 L 41.856795,6.5 z"
id="path5840"
sodipodi:nodetypes="ccccccccccc"
style="fill:url(#linearGradient6286);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<path
d="M 41.846157,7.5 C 41.860116,7.5260177 41.899945,7.5985034 41.954353,7.74375 C 42.013787,7.9024229 42.078519,8.1332669 42.248022,8.34375 C 42.417531,8.5542332 42.710425,8.7 43.005395,8.7 L 43.376348,8.7 C 43.441092,8.7 43.500001,8.7714627 43.500001,8.85 L 43.500001,10.3875 C 43.500001,10.466037 43.456334,10.5 43.376348,10.5 L 40.640552,10.5 C 40.560567,10.5 40.532356,10.466038 40.532356,10.3875 L 40.532356,7.65 C 40.532356,7.5714629 40.57581,7.5 40.640552,7.5 L 41.846157,7.5 z"
id="path5842"
sodipodi:nodetypes="csscccccccccc"
style="opacity:0.3;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6288);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
<rect
height="2"
id="rect5844"
style="fill:url(#linearGradient6290);fill-opacity:1;fill-rule:evenodd;stroke:#2e3436;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
width="3"
x="37.5"
y="8" />
</g>
</g>
<text
xml:space="preserve"
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial Black;-inkscape-font-specification:Arial Black"
x="24"
y="138"
id="text2972"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan2974"
x="24"
y="138">This one sucks</tspan><tspan
sodipodi:role="line"
x="24"
y="158"
id="tspan2976">we need a better metaphor</tspan></text>
</g>
<g
id="layer4"
inkscape:groupmode="layer"
inkscape:label="hires"
style="display:inline" />
</svg>
|