summaryrefslogtreecommitdiff
path: root/src/fullcolor/legacy/applications-office.svg
blob: 07747ff04d1bda394b29fb78f08658ce5a653e5e (plain)
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
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
<?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+devel"
   sodipodi:docname="applications-office.svg"
   sodipodi:version="0.32"
   style="display:inline;enable-background:new"
   version="1.0"
   width="400">
  <metadata
     id="metadata173">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
        <dc:creator>
          <cc:Agent>
            <dc:title>Lapo Calamandrei</dc:title>
          </cc:Agent>
        </dc:creator>
        <dc:date>2009-07-23</dc:date>
        <dc:description>Based of Jakub Steiner work</dc:description>
        <dc:contributor>
          <cc:Agent>
            <dc:title>Jakub Steiner</dc:title>
          </cc:Agent>
        </dc:contributor>
        <dc:title>Office</dc:title>
      </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="layer3"
     inkscape:cx="281.83855"
     inkscape:cy="143.97665"
     inkscape:document-units="px"
     inkscape:grid-bbox="true"
     inkscape:pageopacity="0"
     inkscape:pageshadow="2"
     inkscape:showpageshadow="false"
     inkscape:snap-bbox="true"
     inkscape:snap-nodes="true"
     inkscape:window-height="879"
     inkscape:window-width="1278"
     inkscape:window-x="97"
     inkscape:window-y="227"
     inkscape:zoom="1"
     objecttolerance="7"
     pagecolor="#000000"
     showgrid="false"
     stroke="#ef2929"
     width="400px"
     inkscape:window-maximized="0">
    <inkscape:grid
       enabled="true"
       id="grid5883"
       spacingx="1px"
       spacingy="1px"
       type="xygrid"
       visible="true"
       empspacing="4"
       snapvisiblegridlinesonly="true" />
  </sodipodi:namedview>
  <defs
     id="defs3">
    <linearGradient
       id="linearGradient5494">
      <stop
         id="stop5496"
         offset="0"
         style="stop-color:#000000;stop-opacity:0.01834862" />
      <stop
         id="stop5498"
         offset="1"
         style="stop-color:#000000;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient5478">
      <stop
         style="stop-color:#000000;stop-opacity:0.01834862"
         offset="0"
         id="stop5480" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop5482" />
    </linearGradient>
    <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="perspective611" />
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4502">
      <stop
         style="stop-color:#808080;stop-opacity:1;"
         offset="0"
         id="stop4504" />
      <stop
         style="stop-color:#808080;stop-opacity:0;"
         offset="1"
         id="stop4506" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4102">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop4104" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0.8"
         offset="1"
         id="stop4106" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4093">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop4095" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop4097" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4080">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop4082" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop4084" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4068">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop4070" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop4072" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3632">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop3634" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop3636" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4673">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop4675" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop4677" />
    </linearGradient>
    <pattern
       inkscape:collect="always"
       xlink:href="#pattern2420"
       id="pattern3141"
       patternTransform="matrix(-0.4789012,-0.9664643,-0.9664643,0.4789012,-203.23134,327.64378)" />
    <inkscape:path-effect
       effect="spiro"
       id="path-effect3136"
       is_visible="true" />
    <inkscape:path-effect
       is_visible="true"
       id="path-effect3133"
       effect="spiro" />
    <linearGradient
       id="linearGradient4116">
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="0"
         id="stop4118" />
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="1"
         id="stop4120" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4089">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop4091" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop4093" />
    </linearGradient>
    <linearGradient
       id="linearGradient4048">
      <stop
         id="stop4050"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0.35921115"
         id="stop4052" />
      <stop
         id="stop4054"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient4004">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop4006" />
      <stop
         id="stop4012"
         offset="0.89537036"
         style="stop-color:#000000;stop-opacity:1;" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop4008" />
    </linearGradient>
    <linearGradient
       id="linearGradient3845">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop3847" />
      <stop
         id="stop3882"
         offset="0.43349564"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop3849" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient9288">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop9290" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop9292" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3854">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop3856" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop3858" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3834">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop3836" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop3838" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3824">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop3826" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop3828" />
    </linearGradient>
    <linearGradient
       id="linearGradient15367">
      <stop
         id="stop15369"
         offset="0"
         style="stop-color:#000000;stop-opacity:0;" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="0.35225523"
         id="stop15371" />
      <stop
         id="stop15373"
         offset="1"
         style="stop-color:#000000;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient15339">
      <stop
         id="stop15341"
         offset="0"
         style="stop-color:#000000;stop-opacity:0;" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="0.68916255"
         id="stop15343" />
      <stop
         id="stop15345"
         offset="1"
         style="stop-color:#000000;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient15321">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop15323" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop15325" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient15299">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop15301" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop15303" />
    </linearGradient>
    <linearGradient
       id="linearGradient15055">
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="0"
         id="stop15057" />
      <stop
         id="stop15063"
         offset="0.41215107"
         style="stop-color:#000000;stop-opacity:0;" />
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="1"
         id="stop15059" />
    </linearGradient>
    <filter
       inkscape:collect="always"
       id="filter5448">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.74353448"
         id="feGaussianBlur5450" />
    </filter>
    <filter
       inkscape:collect="always"
       id="filter5734">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.8362069"
         id="feGaussianBlur5736" />
    </filter>
    <filter
       inkscape:collect="always"
       id="filter5694">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.42025862"
         id="feGaussianBlur5696" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient5451">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop5453" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop5455" />
    </linearGradient>
    <filter
       inkscape:collect="always"
       x="-0.053382952"
       width="1.1067659"
       y="-0.13104333"
       height="1.2620867"
       id="filter5973">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.2536155"
         id="feGaussianBlur5975" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient5977">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop5979" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop5981" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient5861">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop5863" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop5865" />
    </linearGradient>
    <filter
       inkscape:collect="always"
       id="filter5897">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.26364111"
         id="feGaussianBlur5899" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient5851">
      <stop
         id="stop5855"
         offset="0"
         style="stop-color:#000000;stop-opacity:0;" />
      <stop
         id="stop5853"
         offset="1"
         style="stop-color:#000000;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient5740">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop5742" />
      <stop
         style="stop-color:#707070;stop-opacity:1;"
         offset="1"
         id="stop5744" />
    </linearGradient>
    <linearGradient
       id="linearGradient5903">
      <stop
         style="stop-color:#dfe2e3;stop-opacity:1"
         offset="0"
         id="stop5905" />
      <stop
         id="stop5907"
         offset="0.14285721"
         style="stop-color:#282a2a;stop-opacity:1;" />
      <stop
         id="stop5909"
         offset="0.46561521"
         style="stop-color:#c7c7c7;stop-opacity:1;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0.77618349"
         id="stop5911" />
      <stop
         id="stop5913"
         offset="0.89721245"
         style="stop-color:#a0a1a0;stop-opacity:1;" />
      <stop
         style="stop-color:#eeeeec;stop-opacity:1"
         offset="1"
         id="stop5915" />
    </linearGradient>
    <linearGradient
       id="linearGradient5461">
      <stop
         id="stop5463"
         offset="0"
         style="stop-color:#dfe2e3;stop-opacity:1" />
      <stop
         style="stop-color:#282a2a;stop-opacity:1;"
         offset="0.14285721"
         id="stop5475" />
      <stop
         style="stop-color:#cacaca;stop-opacity:1;"
         offset="0.46561521"
         id="stop5465" />
      <stop
         id="stop5467"
         offset="0.77618349"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         style="stop-color:#a0a1a0;stop-opacity:1;"
         offset="0.89721245"
         id="stop5473" />
      <stop
         id="stop5469"
         offset="1"
         style="stop-color:#eeeeec;stop-opacity:1" />
    </linearGradient>
    <filter
       inkscape:collect="always"
       id="filter5935">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.46767241"
         id="feGaussianBlur5937" />
    </filter>
    <filter
       inkscape:collect="always"
       id="filter5445">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.18020551"
         id="feGaussianBlur5447" />
    </filter>
    <linearGradient
       id="linearGradient4788">
      <stop
         style="stop-color:#2e3436;stop-opacity:1"
         offset="0"
         id="stop4790" />
      <stop
         id="stop4792"
         offset="0.31578946"
         style="stop-color:#eeeeec;stop-opacity:1" />
      <stop
         style="stop-color:#7f8383;stop-opacity:1;"
         offset="0.61764693"
         id="stop4796" />
      <stop
         style="stop-color:#eeeeec;stop-opacity:1"
         offset="1"
         id="stop4794" />
    </linearGradient>
    <filter
       height="1.0863838"
       y="-0.043191914"
       width="1.4324048"
       x="-0.21620239"
       id="filter1290"
       inkscape:collect="always"
       color-interpolation-filters="sRGB">
      <feGaussianBlur
         id="feGaussianBlur1292"
         stdDeviation="0.6163846"
         inkscape:collect="always" />
    </filter>
    <filter
       id="filter5558-4-0"
       inkscape:collect="always"
       color-interpolation-filters="sRGB">
      <feGaussianBlur
         id="feGaussianBlur5560-4-8"
         stdDeviation="0.13003822"
         inkscape:collect="always" />
    </filter>
    <filter
       id="filter4171-9"
       inkscape:collect="always"
       color-interpolation-filters="sRGB">
      <feGaussianBlur
         id="feGaussianBlur4173-5"
         stdDeviation="0.38947335"
         inkscape:collect="always" />
    </filter>
    <filter
       height="1.3114623"
       y="-0.15573114"
       width="1.410762"
       x="-0.20538102"
       id="filter4139-3"
       inkscape:collect="always"
       color-interpolation-filters="sRGB">
      <feGaussianBlur
         id="feGaussianBlur4141-9"
         stdDeviation="0.77922653"
         inkscape:collect="always" />
    </filter>
    <filter
       height="2.5520616"
       y="-0.77603084"
       width="1.3082058"
       x="-0.15410294"
       id="filter4161-0"
       inkscape:collect="always"
       color-interpolation-filters="sRGB">
      <feGaussianBlur
         id="feGaussianBlur4163-9"
         stdDeviation="0.75526875"
         inkscape:collect="always" />
    </filter>
    <filter
       inkscape:collect="always"
       id="filter130946-7-2-7"
       color-interpolation-filters="sRGB">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="1.09875"
         id="feGaussianBlur130948-6-7-3" />
    </filter>
    <linearGradient
       id="linearGradient1350"
       inkscape:collect="always">
      <stop
         id="stop1352"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop1354"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient1306"
       inkscape:collect="always">
      <stop
         id="stop1308"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop1310"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient1294"
       inkscape:collect="always">
      <stop
         id="stop1296"
         offset="0"
         style="stop-color:#000000;stop-opacity:1;" />
      <stop
         id="stop1298"
         offset="1"
         style="stop-color:#000000;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient5665-9"
       inkscape:collect="always">
      <stop
         id="stop5667-0"
         offset="0"
         style="stop-color:#eeeeec;stop-opacity:1;" />
      <stop
         id="stop5669-4"
         offset="1"
         style="stop-color:#eeeeec;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient5530-1-8"
       inkscape:collect="always">
      <stop
         id="stop5532-4-9"
         offset="0"
         style="stop-color:#eeeeec;stop-opacity:1;" />
      <stop
         id="stop5534-7-6"
         offset="1"
         style="stop-color:#eeeeec;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient131408-9">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop131410-5" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop131412-6" />
    </linearGradient>
    <linearGradient
       id="linearGradient6960"
       inkscape:collect="always">
      <stop
         id="stop6962"
         offset="0"
         style="stop-color:#767676;stop-opacity:1;" />
      <stop
         id="stop6964"
         offset="1"
         style="stop-color:#767676;stop-opacity:0;" />
    </linearGradient>
    <clipPath
       id="clipPath4177-6"
       clipPathUnits="userSpaceOnUse">
      <path
         sodipodi:nodetypes="ccccc"
         id="path4179-2"
         d="m -164.25,115.75 c 6.51359,3.72071 6.23152,15.4465 0,19.25 l 12.25,0 c 6.21029,-2.22292 6.05816,-16.86423 0,-19.5 l -12.25,0.25 z"
         style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
    </clipPath>
    <linearGradient
       id="linearGradient4181-0"
       inkscape:collect="always">
      <stop
         id="stop4183-2"
         offset="0"
         style="stop-color:#000000;stop-opacity:1;" />
      <stop
         id="stop4185-4"
         offset="1"
         style="stop-color:#000000;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient4099-6"
       inkscape:collect="always">
      <stop
         id="stop4101-1"
         offset="0"
         style="stop-color:#dddddd;stop-opacity:1;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:1"
         offset="0.34467545"
         id="stop4107-2" />
      <stop
         id="stop4109-5"
         offset="0.72694808"
         style="stop-color:#737373;stop-opacity:1" />
      <stop
         id="stop4103-9"
         offset="1"
         style="stop-color:#bbbbbb;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient5933-6">
      <stop
         style="stop-color:#9e5a5a;stop-opacity:1"
         offset="0"
         id="stop5935-7" />
      <stop
         style="stop-color:#e3a4a4;stop-opacity:1"
         offset="1"
         id="stop5937-9" />
    </linearGradient>
    <linearGradient
       id="linearGradient5693-9-5"
       inkscape:collect="always">
      <stop
         id="stop5695-9-8"
         offset="0"
         style="stop-color:#000000;stop-opacity:1;" />
      <stop
         id="stop5697-5-7"
         offset="1"
         style="stop-color:#000000;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient4117-1"
       inkscape:collect="always">
      <stop
         style="stop-color:#f9a9a9;stop-opacity:1"
         offset="0"
         id="stop4121-0" />
      <stop
         style="stop-color:#ab5f5f;stop-opacity:1"
         offset="1"
         id="stop4119-1" />
    </linearGradient>
    <pattern
       patternUnits="userSpaceOnUse"
       width="60.000004"
       height="47.05036"
       patternTransform="matrix(-0.53889115,-1.0875293,-1.0875293,0.53889115,338.55681,221.39883)"
       id="pattern2972-8">
      <image
         xlink:href="file:///home/jimmac/Desktop/wood.png"
         width="60.000004"
         height="47.050358"
         id="image2245-7"
         x="1.9334462e-07"
         y="-5.1105055e-15" />
    </pattern>
    <pattern
       patternTransform="matrix(-0.44399845,-0.89602756,-0.89602756,0.44399845,102.06984,310.32098)"
       id="pattern756"
       xlink:href="#pattern2972-8"
       inkscape:collect="always" />
    <pattern
       patternTransform="matrix(-0.44399845,-0.89602756,-0.89602756,0.44399845,100.28115,311.20731)"
       id="pattern2156"
       xlink:href="#pattern756"
       inkscape:collect="always" />
    <pattern
       patternTransform="matrix(-0.44399845,-0.89602756,-0.89602756,0.44399845,99.837986,310.31297)"
       id="pattern2222"
       xlink:href="#pattern2156"
       inkscape:collect="always" />
    <pattern
       patternTransform="matrix(-0.44399845,-0.89602756,-0.89602756,0.44399845,99.394822,309.41863)"
       id="pattern2288"
       xlink:href="#pattern2222"
       inkscape:collect="always" />
    <pattern
       patternTransform="matrix(-0.44399845,-0.89602756,-0.89602756,0.44399845,98.500479,309.86179)"
       id="pattern2354"
       xlink:href="#pattern2288"
       inkscape:collect="always" />
    <pattern
       patternTransform="matrix(-0.44399845,-0.89602756,-0.89602756,0.44399845,97.606136,310.30495)"
       id="pattern2420"
       xlink:href="#pattern2354"
       inkscape:collect="always" />
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath2231-9">
      <path
         sodipodi:nodetypes="cccccccc"
         style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         d="m 415,266.5 -11.16384,-45.62573 -70.51595,-142.602552 -8.59782,-2.24485 -7.23577,3.360207 -4.10796,8.963372 L 383.27393,231.5446 415,266.5 z"
         id="path2233-5" />
    </clipPath>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient130950-8-2-3">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop130952-2-9-7" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop130954-3-7-6" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient130918-7-0-4">
      <stop
         style="stop-color:#000000;stop-opacity:1"
         offset="0"
         id="stop130920-9-5-1" />
      <stop
         id="stop130926-6-0-7"
         offset="0.52711064"
         style="stop-color:#555555;stop-opacity:1" />
      <stop
         style="stop-color:#8d8d8d;stop-opacity:1"
         offset="0.68190694"
         id="stop130928-9-6-5" />
      <stop
         style="stop-color:#000000;stop-opacity:1"
         offset="1"
         id="stop130922-5-3-1" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient130930-8-3-8">
      <stop
         style="stop-color:#f5f2e9;stop-opacity:1"
         offset="0"
         id="stop130932-2-2-2" />
      <stop
         style="stop-color:#d1c59a;stop-opacity:1"
         offset="1"
         id="stop130934-2-0-8" />
    </linearGradient>
    <radialGradient
       cx="29.053354"
       cy="27.640751"
       fx="29.053354"
       fy="27.640751"
       gradientTransform="matrix(1.53767e-2,2.923527,2.029691,-1.067544e-2,20.39098,-69.72665)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient1985"
       inkscape:collect="always"
       r="3.2408545"
       xlink:href="#linearGradient2984" />
    <linearGradient
       gradientTransform="matrix(-0.328869,-0.47777,0.47777,-0.328869,-6.178543,52.94616)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient2024"
       inkscape:collect="always"
       x1="28.244684"
       x2="28.244684"
       xlink:href="#linearGradient9910"
       y1="60.445503"
       y2="68.224884" />
    <linearGradient
       id="linearGradient9910">
      <stop
         id="stop9912"
         offset="0"
         style="stop-color:#729fcf;stop-opacity:1;" />
      <stop
         id="stop9918"
         offset="0.31578946"
         style="stop-color:#a5bfda;stop-opacity:1;" />
      <stop
         id="stop9914"
         offset="1"
         style="stop-color:#376ca4;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient2966">
      <stop
         id="stop2968"
         offset="0"
         style="stop-color:#ffd1d1;stop-opacity:1;" />
      <stop
         id="stop3006"
         offset="0.5"
         style="stop-color:#ff1d1d;stop-opacity:1;" />
      <stop
         id="stop2970"
         offset="1"
         style="stop-color:#6f0000;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       gradientTransform="matrix(5.259571e-3,0.999987,0.999987,-5.259571e-3,42.99552,-2.496241)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient1983"
       inkscape:collect="always"
       x1="46"
       x2="47.6875"
       xlink:href="#linearGradient2974"
       y1="19.8125"
       y2="22.625" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6401"
       inkscape:collect="always"
       x1="20.064156"
       x2="20.682873"
       xlink:href="#linearGradient6395"
       y1="27.140348"
       y2="44.110912" />
    <linearGradient
       gradientTransform="matrix(-0.493304,-0.716654,0.716654,-0.493304,-9.26781,79.4192)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient9972"
       inkscape:collect="always"
       x1="28.244684"
       x2="28.244684"
       xlink:href="#linearGradient9910"
       y1="60.445503"
       y2="68.224884" />
    <linearGradient
       gradientTransform="matrix(5.259571e-3,0.999987,0.999987,-5.259571e-3,42.9955,-2.496241)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient1981"
       inkscape:collect="always"
       x1="48.90625"
       x2="50.988335"
       xlink:href="#linearGradient2966"
       y1="17.376184"
       y2="22.250591" />
    <linearGradient
       id="linearGradient2984"
       inkscape:collect="always">
      <stop
         id="stop2986"
         offset="0"
         style="stop-color:#e7e2b8;stop-opacity:1;" />
      <stop
         id="stop2988"
         offset="1"
         style="stop-color:#e7e2b8;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       gradientTransform="translate(0,5.625)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5042"
       inkscape:collect="always"
       x1="15.375"
       x2="34.250416"
       xlink:href="#linearGradient5036"
       y1="26.0846"
       y2="26.0846" />
    <radialGradient
       cx="23.25"
       cy="37.75"
       fx="23.25"
       fy="37.75"
       gradientTransform="matrix(1,0,0,0.420168,8.187895e-16,21.88866)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6353"
       inkscape:collect="always"
       r="14.875"
       xlink:href="#linearGradient5048" />
    <linearGradient
       gradientTransform="matrix(-0.328869,-0.47777,0.47777,-0.328869,-6.178543,52.94616)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient2021"
       inkscape:collect="always"
       x1="28.244684"
       x2="28.244684"
       xlink:href="#linearGradient5461"
       y1="60.445503"
       y2="68.224884" />
    <linearGradient
       gradientTransform="matrix(5.259571e-3,0.999987,0.999987,-5.259571e-3,48.6929,-14.14491)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient1987"
       inkscape:collect="always"
       x1="25.71875"
       x2="25.514589"
       xlink:href="#linearGradient2994"
       y1="31.046875"
       y2="30.703125" />
    <linearGradient
       id="linearGradient5048"
       inkscape:collect="always">
      <stop
         id="stop5050"
         offset="0"
         style="stop-color:#000000;stop-opacity:1;" />
      <stop
         id="stop5052"
         offset="1"
         style="stop-color:#000000;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient5068">
      <stop
         id="stop5070"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop5078"
         offset="0.32894737"
         style="stop-color:#ffffff;stop-opacity:0.69;" />
      <stop
         id="stop5076"
         offset="0.65789473"
         style="stop-color:#c2c2c2;stop-opacity:0.34;" />
      <stop
         id="stop5072"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <radialGradient
       cx="23.25"
       cy="37.75"
       fx="23.25"
       fy="37.75"
       gradientTransform="matrix(1,0,0,0.420168,0,21.88866)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient1975"
       inkscape:collect="always"
       r="14.875"
       xlink:href="#linearGradient5048" />
    <radialGradient
       cx="23.25"
       cy="37.75"
       fx="23.25"
       fy="37.75"
       gradientTransform="matrix(1,0,0,0.420168,0,21.88866)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient1977"
       inkscape:collect="always"
       r="14.875"
       xlink:href="#linearGradient5048" />
    <linearGradient
       gradientTransform="matrix(5.259571e-3,0.999987,0.999987,-5.259571e-3,42.9955,-2.496241)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6343"
       inkscape:collect="always"
       x1="48.90625"
       x2="50.988335"
       xlink:href="#linearGradient2966"
       y1="17.376184"
       y2="22.250591" />
    <linearGradient
       gradientTransform="matrix(5.259571e-3,0.999987,0.999987,-5.259571e-3,42.99552,-2.496241)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6345"
       inkscape:collect="always"
       x1="46"
       x2="47.6875"
       xlink:href="#linearGradient2974"
       y1="19.8125"
       y2="22.625" />
    <linearGradient
       gradientTransform="scale(0.666667,0.666667)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient2005"
       inkscape:collect="always"
       x1="20.682873"
       x2="20.682873"
       xlink:href="#linearGradient6395"
       y1="29.577847"
       y2="49.735909" />
    <linearGradient
       gradientTransform="matrix(5.259571e-3,0.999987,0.999987,-5.259571e-3,48.6929,-14.14491)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6349"
       inkscape:collect="always"
       x1="25.71875"
       x2="25.514589"
       xlink:href="#linearGradient2994"
       y1="31.046875"
       y2="30.703125" />
    <radialGradient
       cx="23.25"
       cy="37.75"
       fx="23.25"
       fy="37.75"
       gradientTransform="matrix(1,0,0,0.420168,0,21.88866)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient5054"
       inkscape:collect="always"
       r="14.875"
       xlink:href="#linearGradient5048" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2043"
       inkscape:collect="always"
       x1="11.75"
       x2="37.625"
       xlink:href="#linearGradient5068"
       y1="14.1875"
       y2="14.1875" />
    <linearGradient
       gradientTransform="translate(0,5.625)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5064"
       inkscape:collect="always"
       x1="30.875"
       x2="15.625"
       xlink:href="#linearGradient5058"
       y1="19.4596"
       y2="19.0846" />
    <linearGradient
       id="linearGradient6395"
       inkscape:collect="always">
      <stop
         id="stop6397"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop6399"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient2974">
      <stop
         id="stop2976"
         offset="0"
         style="stop-color:#c1c1c1;stop-opacity:1;" />
      <stop
         id="stop2978"
         offset="1"
         style="stop-color:#acacac;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       gradientTransform="matrix(-0.493304,-0.716654,0.716654,-0.493304,-9.26781,79.4192)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient9968"
       inkscape:collect="always"
       x1="28.244684"
       x2="28.244684"
       xlink:href="#linearGradient5903"
       y1="60.445503"
       y2="68.224884" />
    <linearGradient
       gradientTransform="matrix(-0.493304,-0.716654,0.716654,-0.493304,-9.26781,79.4192)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient9965"
       inkscape:collect="always"
       x1="28.244684"
       x2="28.244684"
       xlink:href="#linearGradient5461"
       y1="60.445503"
       y2="68.224884" />
    <linearGradient
       gradientTransform="matrix(-0.493304,-0.716654,0.716654,-0.493304,-9.26781,79.4192)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient9961"
       inkscape:collect="always"
       x1="55.876038"
       x2="38.061356"
       xlink:href="#linearGradient9952"
       y1="62.401989"
       y2="62.827091" />
    <linearGradient
       id="linearGradient2994">
      <stop
         id="stop2996"
         offset="0"
         style="stop-color:#000000;stop-opacity:1;" />
      <stop
         id="stop2998"
         offset="1"
         style="stop-color:#c9c9c9;stop-opacity:1;" />
    </linearGradient>
    <radialGradient
       cx="29.053354"
       cy="27.640751"
       fx="29.053354"
       fy="27.640751"
       gradientTransform="matrix(1.53767e-2,2.923527,2.029691,-1.067544e-2,20.39098,-69.72665)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6347"
       inkscape:collect="always"
       r="3.2408545"
       xlink:href="#linearGradient2984" />
    <linearGradient
       id="linearGradient9952"
       inkscape:collect="always">
      <stop
         id="stop9954"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop9956"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       gradientTransform="matrix(-0.328869,-0.47777,0.47777,-0.328869,-6.178543,52.94616)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient2018"
       inkscape:collect="always"
       x1="28.244684"
       x2="28.244684"
       xlink:href="#linearGradient5461"
       y1="60.445503"
       y2="68.224884" />
    <linearGradient
       id="linearGradient5058">
      <stop
         id="stop5060"
         offset="0"
         style="stop-color:#959791;stop-opacity:1;" />
      <stop
         id="stop5066"
         offset="0.5"
         style="stop-color:#f8f8f8;stop-opacity:1;" />
      <stop
         id="stop5062"
         offset="1"
         style="stop-color:#8c8c8c;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       gradientTransform="matrix(0.666667,0,0,0.68836,0,3.193292)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient2010"
       inkscape:collect="always"
       x1="15.375"
       x2="34.250416"
       xlink:href="#linearGradient5036"
       y1="26.0846"
       y2="26.0846" />
    <linearGradient
       gradientTransform="matrix(0.666667,0,0,0.68836,0,3.193292)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient2012"
       inkscape:collect="always"
       x1="30.875"
       x2="15.625"
       xlink:href="#linearGradient5058"
       y1="19.4596"
       y2="19.0846" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient5074"
       inkscape:collect="always"
       x1="11.75"
       x2="37.625"
       xlink:href="#linearGradient5068"
       y1="14.1875"
       y2="14.1875" />
    <linearGradient
       id="linearGradient5036">
      <stop
         id="stop5038"
         offset="0"
         style="stop-color:#f5f5f5;stop-opacity:0.09;" />
      <stop
         id="stop5044"
         offset="0.2631579"
         style="stop-color:#ffffff;stop-opacity:0.89999998;" />
      <stop
         id="stop5088"
         offset="0.74792242"
         style="stop-color:#c7c7c7;stop-opacity:0.46000001;" />
      <stop
         id="stop5040"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0.78039217;" />
    </linearGradient>
    <linearGradient
       gradientTransform="matrix(-0.294837,-0.429519,0.428329,-0.295656,-4.672869,48.43391)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient2015"
       inkscape:collect="always"
       x1="55.876038"
       x2="38.061356"
       xlink:href="#linearGradient9952"
       y1="62.401989"
       y2="62.827091" />
    <filter
       inkscape:collect="always"
       id="filter3874">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.7"
         id="feGaussianBlur3876" />
    </filter>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3943">
      <path
         sodipodi:nodetypes="cscsccscs"
         id="path3945"
         d="M 215.4375,139.60938 C 215.78345,138.43125 216,137.21909 216,136 C 216,120.544 187.32799,108 152,108 C 116.672,108 88,120.544 88,136 C 88,137.22918 88.21089,138.4375 88.5625,139.625 C 89.6105,146.37153 104,239 104,239 C 104,250.592 125.50399,260 152,260 C 178.496,260 200,250.592 200,239 C 200,239 214.38949,146.35591 215.4375,139.60938 z"
         style="fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:new" />
    </clipPath>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient15367"
       id="radialGradient3947"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-1,0,0,-3.8515625,304,529.74609)"
       cx="144.5"
       cy="109.5"
       fx="144.5"
       fy="109.5"
       r="64" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3834"
       id="linearGradient3949"
       gradientUnits="userSpaceOnUse"
       x1="163.35417"
       y1="92.226196"
       x2="174.20053"
       y2="157.84523" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient15055"
       id="radialGradient3951"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.9375,0,0,-3.7633589,294.5,523.08777)"
       cx="144.5"
       cy="109.5"
       fx="144.5"
       fy="109.5"
       r="64" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3824"
       id="linearGradient3953"
       gradientUnits="userSpaceOnUse"
       x1="184.5"
       y1="123.36031"
       x2="173.59375"
       y2="192.17033" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3854"
       id="radialGradient3955"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.6975218,0,0,0.734438,-114.07956,39.627743)"
       cx="160.42772"
       cy="129.17668"
       fx="160.42772"
       fy="129.17668"
       r="61.25" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3845"
       id="radialGradient3957"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.3508656,0.6077172,-0.6158794,-0.3555782,340.57051,84.699633)"
       cx="146.01596"
       cy="184.02716"
       fx="146.01596"
       fy="184.02716"
       r="64" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient9288"
       id="radialGradient3959"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.1739713,0,0,0.3753323,-32.616649,81.949488)"
       cx="187.48297"
       cy="77.251434"
       fx="187.48297"
       fy="77.251434"
       r="62.681573" />
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3988">
      <path
         style="opacity:1;fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:new"
         d="M 158.24999,103.67347 C 122.18599,103.67347 92.916661,117.24147 92.916663,133.95918 C 92.916663,150.67689 122.18598,164.24489 158.24999,164.24489 C 194.31398,164.24489 223.58331,150.67689 223.58331,133.95918 C 223.58331,117.24147 194.31397,103.67347 158.24999,103.67347 z M 158.24999,106.91837 C 192.05998,106.91837 219.49998,118.79037 219.49998,133.41836 C 219.49999,148.04637 192.05999,159.91836 158.24999,159.91836 C 124.43998,159.91836 96.999996,148.04636 96.999996,133.41836 C 96.999998,118.79037 124.43998,106.91837 158.24999,106.91837 z"
         id="path3990" />
    </clipPath>
    <filter
       inkscape:collect="always"
       id="filter4014">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.88792037"
         id="feGaussianBlur4016" />
    </filter>
    <filter
       inkscape:collect="always"
       id="filter4040">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.89057794"
         id="feGaussianBlur4042" />
    </filter>
    <filter
       inkscape:collect="always"
       id="filter4056">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.35532668"
         id="feGaussianBlur4058" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient15299"
       id="linearGradient4071"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.995092,0,1.2756384)"
       x1="122"
       y1="169"
       x2="137.5"
       y2="325" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient15321"
       id="linearGradient4073"
       gradientUnits="userSpaceOnUse"
       x1="162.28101"
       y1="226.53961"
       x2="162.28101"
       y2="84.558121" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4048"
       id="radialGradient4075"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.2405819e-7,0.4795796,-1.3672096,0,408.24205,43.373716)"
       cx="245.26956"
       cy="204.60803"
       fx="245.26956"
       fy="204.60803"
       r="64" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4004"
       id="radialGradient4077"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0000002,0,0,0.7593502,-3.6719125e-5,12.357203)"
       cx="158.25"
       cy="195.74998"
       fx="158.25"
       fy="195.74998"
       r="61.25" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4004"
       id="radialGradient4079"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.7829781,0,7.8980526)"
       cx="158.25"
       cy="196.49054"
       fx="158.25"
       fy="196.49054"
       r="62" />
    <filter
       inkscape:collect="always"
       id="filter4081">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.3775"
         id="feGaussianBlur4083" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4089"
       id="linearGradient4095"
       x1="146.5"
       y1="219"
       x2="135.5"
       y2="50"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4116"
       id="radialGradient4122"
       cx="158.25"
       cy="134.5"
       fx="158.25"
       fy="134.5"
       r="62.585865"
       gradientTransform="matrix(1,0,0,0.4447628,0,74.679402)"
       gradientUnits="userSpaceOnUse" />
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath3753">
      <path
         id="path3755"
         d="M 234.0508,-268.6809 L 205.233,-237.52916 L 133.31138,-113.19709 L 135.99374,-105.57147 L 142.22113,-101.76566 L 151.09255,-103.11546 L 223.77777,-227.272 L 234.0508,-268.6809 z"
         style="fill:none;stroke:#000000;stroke-width:1;marker:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         sodipodi:nodetypes="cccccccc" />
    </clipPath>
    <filter
       inkscape:collect="always"
       id="filter4527"
       x="-0.13678872"
       width="1.2735774"
       y="-0.10688188"
       height="1.2137638">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="6.4671532"
         id="feGaussianBlur4529" />
    </filter>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient130930-8-3-8"
       id="radialGradient4601"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.01198843,-0.2483099,-2.022836,-0.09766303,296.23697,495.60862)"
       cx="248.9023"
       cy="224.74362"
       fx="248.9023"
       fy="224.74362"
       r="22.228241" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient130918-7-0-4"
       id="linearGradient4603"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.4392469,-0.7725363,-0.7725363,0.4392469,112.08423,494.83339)"
       x1="241.00113"
       y1="247.37444"
       x2="252.28912"
       y2="242.4223" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient130950-8-2-3"
       id="linearGradient4605"
       gradientUnits="userSpaceOnUse"
       x1="336.83932"
       y1="97.874176"
       x2="321.5"
       y2="63" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4117-1"
       id="radialGradient4607"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.8163964,0,0,1.8278485,245.73114,177.39004)"
       cx="-138.83727"
       cy="128.00087"
       fx="-138.83727"
       fy="128.00087"
       r="9.1267023" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5693-9-5"
       id="linearGradient4609"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.1400428,1.6520098e-8,1.6520098e-8,-1.1400428,153.09234,555.56359)"
       x1="-146.3125"
       y1="116.46875"
       x2="-146.81351"
       y2="120.58913" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5933-6"
       id="linearGradient4611"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.1400428,1.6520098e-8,-1.6520098e-8,1.1400428,153.23485,269.91159)"
       x1="-146.25"
       y1="117.09375"
       x2="-145.875"
       y2="119.53125" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4099-6"
       id="linearGradient4613"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.07861,0,0,1.07861,145.45206,277.60798)"
       x1="-158.75"
       y1="115.93846"
       x2="-158.75"
       y2="134.25" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4181-0"
       id="linearGradient4615"
       gradientUnits="userSpaceOnUse"
       x1="-152"
       y1="132"
       x2="-159.02415"
       y2="115.75" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6960"
       id="linearGradient4617"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.394572,-0.7962807,-0.7962807,0.394572,106.53723,509.80268)"
       x1="172.33588"
       y1="75.390663"
       x2="169.41151"
       y2="76.839737" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient131408-9"
       id="radialGradient4619"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.050503,-0.5879136,-3.285821,0.2822589,366.71821,491.16875)"
       cx="173.92644"
       cy="145.18048"
       fx="173.92644"
       fy="145.18048"
       r="30.125" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5530-1-8"
       id="radialGradient4621"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(3.7530676,0,0,2.8521331,384.24718,-233.11458)"
       cx="-139.48895"
       cy="124.53033"
       fx="-139.48895"
       fy="124.53033"
       r="2.8607109" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5665-9"
       id="radialGradient4623"
       gradientUnits="userSpaceOnUse"
       cx="-140.375"
       cy="122.875"
       fx="-140.375"
       fy="122.875"
       r="1.5" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1294"
       id="radialGradient4625"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.3665502,0,0,4.8342062,-129.9683,-142.34491)"
       cx="354.57162"
       cy="37.125"
       fx="354.57162"
       fy="37.125"
       r="5.4004765" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1306"
       id="radialGradient4627"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.1115395,0,0,3.9320994,-39.548754,-108.85419)"
       cx="354.57162"
       cy="37.125"
       fx="354.57162"
       fy="37.125"
       r="5.4004765" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1294"
       id="radialGradient4629"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.3665502,0,0,4.8342062,-129.9683,-142.34491)"
       cx="354.57162"
       cy="37.125"
       fx="354.57162"
       fy="37.125"
       r="5.4004765" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1306"
       id="radialGradient4631"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.1115395,0,0,3.9320994,-39.548754,-108.85419)"
       cx="354.57162"
       cy="37.125"
       fx="354.57162"
       fy="37.125"
       r="5.4004765" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1294"
       id="radialGradient4633"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.3665502,0,0,4.8342062,-129.9683,-142.34491)"
       cx="354.57162"
       cy="37.125"
       fx="354.57162"
       fy="37.125"
       r="5.4004765" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1306"
       id="radialGradient4635"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.1115395,0,0,3.9320994,-39.548754,-108.85419)"
       cx="354.57162"
       cy="37.125"
       fx="354.57162"
       fy="37.125"
       r="5.4004765" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1294"
       id="radialGradient4637"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.3665502,0,0,4.8342062,-129.9683,-142.34491)"
       cx="354.57162"
       cy="37.125"
       fx="354.57162"
       fy="37.125"
       r="5.4004765" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1306"
       id="radialGradient4639"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.1115395,0,0,3.9320994,-39.548754,-108.85419)"
       cx="354.57162"
       cy="37.125"
       fx="354.57162"
       fy="37.125"
       r="5.4004765" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient1350"
       id="radialGradient4641"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.699765,0,0,2.8054983,-267.5689,308.17987)"
       cx="345.86935"
       cy="37.28125"
       fx="345.86935"
       fy="37.28125"
       r="4.6221809" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4788"
       id="linearGradient4643"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.1514601,0,0,1.1514601,-33.498899,-31.936146)"
       x1="37.830212"
       y1="210.74518"
       x2="42.072853"
       y2="215.34135" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4788"
       id="linearGradient4645"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.1514601,0,0,1.1514601,-33.498899,-31.936146)"
       x1="39.244427"
       y1="203.6741"
       x2="48.436813"
       y2="214.98781" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient9910"
       id="linearGradient4647"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(3.5534191,-2.8067356,2.8067356,3.5534191,-175.07374,-8.813167)"
       x1="28.406187"
       y1="67.779541"
       x2="28.465723"
       y2="60.984245" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5461"
       id="linearGradient4649"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.1514601,0,0,1.1514601,-33.498899,-31.936146)"
       x1="171.52454"
       y1="87.733627"
       x2="190.17824"
       y2="111.37614" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5903"
       id="linearGradient4651"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.1514601,0,0,1.1514601,-33.498899,-31.936146)"
       x1="212.43042"
       y1="61.815052"
       x2="225.29816"
       y2="78.176147" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5740"
       id="radialGradient4653"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.6470903,0.02665255,-0.01650943,0.393212,12.621391,32.624874)"
       cx="35.910641"
       cy="54.913189"
       fx="35.910641"
       fy="54.913189"
       r="2.9034028" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5851"
       id="radialGradient4655"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0744323,0,0,1.3713147,-15.605263,-23.581642)"
       cx="199.5809"
       cy="61.701454"
       fx="199.5809"
       fy="61.701454"
       r="6.717515" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5861"
       id="radialGradient4657"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(2.3652707,0,0,3.018832,-261.19046,-130.76076)"
       cx="199.5809"
       cy="61.247665"
       fx="199.5809"
       fy="61.247665"
       r="6.717515" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5977"
       id="linearGradient4659"
       gradientUnits="userSpaceOnUse"
       x1="122.1527"
       y1="92.771049"
       x2="133.55479"
       y2="92.771049" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5451"
       id="radialGradient4661"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.6706949,0,0,1.2820438,-97.675227,-59.774137)"
       cx="126.25"
       cy="139.83464"
       fx="126.25"
       fy="139.83464"
       r="82.75" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4673"
       id="linearGradient4679"
       x1="170.87592"
       y1="310.60272"
       x2="179.61079"
       y2="298.10959"
       gradientUnits="userSpaceOnUse" />
    <filter
       inkscape:collect="always"
       id="filter4681"
       x="-0.093523526"
       width="1.1870471"
       y="-0.14874653"
       height="1.2974931">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="3.0208873"
         id="feGaussianBlur4683" />
    </filter>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3632"
       id="radialGradient3638"
       cx="158.25"
       cy="71.368286"
       fx="158.25"
       fy="71.368286"
       r="62"
       gradientTransform="matrix(1,0,0,0.4395161,0,74.778839)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5036"
       id="linearGradient3658"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.666667,0,0,0.68836,299,159.19329)"
       x1="17.99999"
       y1="47.659233"
       x2="31.499985"
       y2="47.659233" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5068"
       id="linearGradient3664"
       gradientUnits="userSpaceOnUse"
       x1="3.1413867"
       y1="14.1875"
       x2="42.169193"
       y2="14.1875" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2966"
       id="linearGradient3936"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(5.259571e-3,0.999987,0.999987,-5.259571e-3,42.9955,-2.496241)"
       x1="48.90625"
       y1="17.376184"
       x2="50.988335"
       y2="22.250591" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2974"
       id="linearGradient3938"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(5.259571e-3,0.999987,0.999987,-5.259571e-3,42.99552,-2.496241)"
       x1="46"
       y1="19.8125"
       x2="47.6875"
       y2="22.625" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2984"
       id="radialGradient3940"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.53767e-2,2.923527,2.029691,-1.067544e-2,20.39098,-69.72665)"
       cx="29.053354"
       cy="27.640751"
       fx="29.053354"
       fy="27.640751"
       r="3.2408545" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2994"
       id="linearGradient3942"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(5.259571e-3,0.999987,0.999987,-5.259571e-3,48.6929,-14.14491)"
       x1="25.71875"
       y1="31.046875"
       x2="25.514589"
       y2="30.703125" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2966"
       id="linearGradient4050"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(2.2699704e-3,0.4315829,0.4315829,-2.2699704e-3,344.33224,172.82237)"
       x1="48.90625"
       y1="17.376184"
       x2="50.988335"
       y2="22.250591" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2974"
       id="linearGradient4052"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(2.2699704e-3,0.4315829,0.4315829,-2.2699704e-3,344.33225,172.82237)"
       x1="46"
       y1="19.8125"
       x2="47.6875"
       y2="22.625" />
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath4058">
      <path
         style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.65966487;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:new"
         d="M 370.49585,124.24427 L 370.49585,138.91875 L 370.49585,139.69109 L 370.68893,139.69109 C 371.48155,141.45028 374.88817,142.78046 378.9916,142.78046 C 383.09505,142.78046 386.50164,141.45028 387.29426,139.69109 L 392.1214,139.69109 L 392.1214,124.24427 L 370.49585,124.24427 z"
         id="path4060" />
    </clipPath>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4068"
       id="radialGradient4074"
       cx="314.5"
       cy="186.5"
       fx="314.5"
       fy="186.5"
       r="5.5"
       gradientTransform="matrix(1,0,0,0.4545455,0,101.72727)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4080"
       id="linearGradient4086"
       x1="315.5625"
       y1="196.5625"
       x2="315.5625"
       y2="181.98914"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4093"
       id="linearGradient4099"
       x1="313"
       y1="189"
       x2="313"
       y2="199"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4102"
       id="linearGradient4108"
       x1="335.375"
       y1="184.5625"
       x2="335.375"
       y2="189.56406"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient9910"
       id="linearGradient4178"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.389915,9.6622919e-4,-9.1972513e-4,0.4096303,401.00078,124.72494)"
       x1="28.244684"
       y1="60.445503"
       x2="28.244684"
       y2="68.224884" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5461"
       id="linearGradient4180"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.389915,9.1972513e-4,-9.1972513e-4,0.389915,422.4817,126.13066)"
       x1="28.244684"
       y1="60.445503"
       x2="28.244684"
       y2="68.224884" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5461"
       id="linearGradient4194"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3527802,9.1972513e-4,-8.3213226e-4,0.389915,419.8644,126.13066)"
       x1="28.221773"
       y1="58.512177"
       x2="28.244684"
       y2="68.224884" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5068"
       id="linearGradient4258"
       gradientUnits="userSpaceOnUse"
       x1="3.1413867"
       y1="14.1875"
       x2="42.169193"
       y2="14.1875" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4102"
       id="linearGradient4262"
       gradientUnits="userSpaceOnUse"
       x1="335.375"
       y1="184.5625"
       x2="335.375"
       y2="189.56406"
       gradientTransform="matrix(0.9719021,0,0,0.9557593,-9.6012567,8.4007784)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5036"
       id="linearGradient4273"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.5546897,0,0,0.5483654,297.77142,204.09724)"
       x1="17.99999"
       y1="47.659233"
       x2="31.499985"
       y2="47.659233" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4080"
       id="linearGradient4283"
       gradientUnits="userSpaceOnUse"
       x1="315.5625"
       y1="196.5625"
       x2="315.5625"
       y2="181.98914" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2966"
       id="linearGradient4309"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(5.259571e-3,0.999987,0.999987,-5.259571e-3,42.9955,-2.496241)"
       x1="48.90625"
       y1="17.376184"
       x2="50.988335"
       y2="22.250591" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2974"
       id="linearGradient4311"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(5.259571e-3,0.999987,0.999987,-5.259571e-3,42.99552,-2.496241)"
       x1="46"
       y1="19.8125"
       x2="47.6875"
       y2="22.625" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2984"
       id="radialGradient4313"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.53767e-2,2.923527,2.029691,-1.067544e-2,20.39098,-69.72665)"
       cx="29.053354"
       cy="27.640751"
       fx="29.053354"
       fy="27.640751"
       r="3.2408545" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2994"
       id="linearGradient4315"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(5.259571e-3,0.999987,0.999987,-5.259571e-3,48.6929,-14.14491)"
       x1="25.71875"
       y1="31.046875"
       x2="25.514589"
       y2="30.703125" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5461"
       id="linearGradient4327"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.389915,9.1972513e-4,-9.1972513e-4,0.389915,422.4817,126.13066)"
       x1="28.244684"
       y1="60.445503"
       x2="28.244684"
       y2="68.224884" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5461"
       id="linearGradient4329"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3527802,9.1972513e-4,-8.3213226e-4,0.389915,419.8644,126.13066)"
       x1="28.221773"
       y1="58.512177"
       x2="28.244684"
       y2="68.224884" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient9910"
       id="linearGradient4449"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.2229101,-0.2472796,0.2352898,-0.2585588,302.2549,250.98874)"
       x1="28.244684"
       y1="60.445503"
       x2="28.244684"
       y2="68.224884" />
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath4455">
      <path
         sodipodi:type="inkscape:offset"
         inkscape:radius="-0.5"
         inkscape:original="M 309.5 185.5 L 309.5 194.5 C 309.5 196.16412 312.188 197.53125 315.5 197.53125 C 318.812 197.53125 321.5 196.16411 321.5 194.5 L 321.5 185.5 C 321.5 187.16411 318.812 188.53125 315.5 188.53125 C 312.188 188.53125 309.5 187.16412 309.5 185.5 z "
         style="opacity:0.3;fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000006;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:new"
         id="path4457"
         d="M 310,187.3125 L 310,194.5 C 310,195.06285 310.47378,195.68379 311.46875,196.1875 C 312.46372,196.69121 313.9128,197.03125 315.5,197.03125 C 317.0872,197.03125 318.53628,196.69121 319.53125,196.1875 C 320.52622,195.68379 321,195.06284 321,194.5 L 321,187.3125 C 320.68996,187.589 320.38029,187.8854 319.96875,188.09375 C 318.79172,188.68963 317.2248,189.03125 315.5,189.03125 C 313.7752,189.03125 312.20828,188.68963 311.03125,188.09375 C 310.61971,187.8854 310.31004,187.589 310,187.3125 z"
         transform="matrix(1.6511153,-0.2606677,0.21698,1.3743895,-180.20396,-32.290204)" />
    </clipPath>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2966"
       id="linearGradient4483"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(5.259571e-3,0.999987,0.999987,-5.259571e-3,42.9955,-2.496241)"
       x1="48.90625"
       y1="17.376184"
       x2="50.988335"
       y2="22.250591" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2974"
       id="linearGradient4485"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(5.259571e-3,0.999987,0.999987,-5.259571e-3,42.99552,-2.496241)"
       x1="46"
       y1="19.8125"
       x2="47.6875"
       y2="22.625" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2984"
       id="radialGradient4487"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.53767e-2,2.923527,2.029691,-1.067544e-2,20.39098,-69.72665)"
       cx="29.053354"
       cy="27.640751"
       fx="29.053354"
       fy="27.640751"
       r="3.2408545" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient2994"
       id="linearGradient4489"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(5.259571e-3,0.999987,0.999987,-5.259571e-3,48.6929,-14.14491)"
       x1="25.71875"
       y1="31.046875"
       x2="25.514589"
       y2="30.703125" />
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath4496">
      <path
         style="opacity:1;fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.51499999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         d="M 372.05199,129.25245 L 373.43552,138.01597 C 372.30688,138.8411 371.6668,139.76671 371.80423,140.63717 C 372.12579,142.674 376.4095,143.69199 381.36599,142.90949 C 386.32246,142.127 390.08424,139.83883 389.76268,137.80201 L 391.75806,137.48699 L 390.01044,126.41728 L 372.05199,129.25245 z"
         id="path4498" />
    </clipPath>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4502"
       id="radialGradient4508"
       cx="311.5"
       cy="232.5"
       fx="311.5"
       fy="232.5"
       r="4.5"
       gradientTransform="matrix(1,0,0,0.3333333,0,155)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient15321"
       id="radialGradient5436"
       cx="152"
       cy="203.35504"
       fx="152"
       fy="203.35504"
       r="55.811939"
       gradientTransform="matrix(0.86578079,1.9236306e-7,-9.021855e-7,4.1625534,20.401503,-643.12122)"
       gradientUnits="userSpaceOnUse" />
    <filter
       inkscape:collect="always"
       id="filter5458">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="1.1998924"
         id="feGaussianBlur5460" />
    </filter>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5494"
       id="radialGradient5464"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,0.4447628,0,74.679402)"
       cx="158.25"
       cy="134.5"
       fx="158.25"
       fy="134.5"
       r="62.585865" />
    <filter
       inkscape:collect="always"
       id="filter5474"
       x="-0.067176576"
       width="1.1343532"
       y="-0.15526661"
       height="1.3105332">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="3.4288044"
         id="feGaussianBlur5476" />
    </filter>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5478"
       id="radialGradient5484"
       cx="158.25"
       cy="139.60779"
       fx="158.25"
       fy="139.60779"
       r="72.289084"
       gradientTransform="matrix(1.8170971,5.0499609e-7,-1.310816e-7,0.57340965,-129.3056,54.447471)"
       gradientUnits="userSpaceOnUse" />
    <filter
       inkscape:collect="always"
       id="filter5504"
       x="-0.24077173"
       width="1.4815435"
       y="-0.5565007"
       height="2.1130014">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="12.28939"
         id="feGaussianBlur5506" />
    </filter>
  </defs>
  <g
     id="layer1"
     inkscape:groupmode="layer"
     inkscape:label="artwork:applications-office"
     style="display:inline">
    <g
       id="layer6"
       inkscape:groupmode="layer"
       inkscape:label="baseplate"
       style="display:none">
      <rect
         height="48"
         id="rect6284"
         inkscape:label="48x48"
         style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;marker-start:none;marker-mid:none;marker-end: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="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;marker-start:none;marker-mid:none;marker-end: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="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;marker-start:none;marker-mid:none;marker-end: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="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         width="16"
         x="303"
         y="219" />
      <rect
         height="24"
         id="rect8104"
         inkscape:label="24x24"
         style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         width="24"
         x="302"
         y="176" />
      <rect
         height="256"
         id="rect6282"
         inkscape:label="256x256"
         style="opacity:1;fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         width="256"
         x="20"
         y="28" />
      <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">categories</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">applications-office</tspan></text>
    </g>
    <g
       inkscape:groupmode="layer"
       id="layer2"
       inkscape:label="small sizes"
       style="display:inline">
      <g
         id="g48"
         style="display:inline;enable-background:new"
         transform="translate(296,50)">
        <path
           d="m 37.625,37.75 c 0,3.175637 -6.435907,5.75 -14.375,5.75 -7.939093,0 -14.375,-2.574363 -14.375,-5.75 0,-3.175637 6.435907,-5.75 14.375,-5.75 7.939093,0 14.375,2.574363 14.375,5.75 z"
           id="path5046"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:cx="23.25"
           sodipodi:cy="37.75"
           sodipodi:rx="14.375"
           sodipodi:ry="5.75"
           sodipodi:type="arc"
           style="opacity:0.31868131;fill:url(#radialGradient5054);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
           transform="translate(1,4)" />
        <path
           d="m 33.5,36.8125 c 0,1.622336 -3.833562,2.9375 -8.5625,2.9375 -4.728938,0 -8.5625,-1.315164 -8.5625,-2.9375 0,-1.622336 3.833562,-2.9375 8.5625,-2.9375 4.728938,0 8.5625,1.315164 8.5625,2.9375 z"
           id="path5056"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:cx="24.9375"
           sodipodi:cy="36.8125"
           sodipodi:rx="8.5625"
           sodipodi:ry="2.9375"
           sodipodi:type="arc"
           style="opacity:0.6978022;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
           transform="translate(-0.125,4.75)" />
        <path
           d="m 37.625,37.75 c 0,3.175637 -6.435907,5.75 -14.375,5.75 -7.939093,0 -14.375,-2.574363 -14.375,-5.75 0,-3.175637 6.435907,-5.75 14.375,-5.75 7.939093,0 14.375,2.574363 14.375,5.75 z"
           id="path6351"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:cx="23.25"
           sodipodi:cy="37.75"
           sodipodi:rx="14.375"
           sodipodi:ry="5.75"
           sodipodi:type="arc"
           style="opacity:0.78571424;fill:url(#radialGradient6353);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
           transform="matrix(0.573913,0,0,0.573913,10.90652,19.58478)" />
        <path
           d="m 37.125,14.1875 c 0,3.14112 -5.568458,5.6875 -12.4375,5.6875 -6.869042,0 -12.4375,-2.54638 -12.4375,-5.6875 0,-3.14112 5.568458,-5.6875 12.4375,-5.6875 6.869042,0 12.4375,2.54638 12.4375,5.6875 z"
           id="path5030"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:cx="24.6875"
           sodipodi:cy="14.1875"
           sodipodi:rx="12.4375"
           sodipodi:ry="5.6875"
           sodipodi:type="arc"
           style="opacity:1;fill:url(#linearGradient5074);fill-opacity:1;fill-rule:evenodd;stroke:#8c8c8c;stroke-width:0.99749684;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
           transform="matrix(1.005025,0,0,1,-0.186558,5.625)" />
        <g
           id="g6334"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           transform="translate(-40.25,-7.5)">
          <path
             d="M 81.189325,8.8512115 L 75.593983,14.505723 L 60.324794,46.150492 C 59.091904,49.407024 63.727034,51.320174 65.336892,48.436664 L 80.231414,16.856367 L 81.189325,8.8512115 z"
             id="path2960"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="cccccc"
             style="fill:#cb9022;fill-opacity:1;fill-rule:evenodd;stroke:#5c410c;stroke-width:1.00000083;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 63.226659,41.398 C 63.226659,41.398 63.327968,42.834989 64.580911,43.390907 C 65.871703,43.963619 67.237126,43.376936 67.237126,43.376936 L 64.794871,48.421105 C 64.794871,48.421105 63.921152,49.877754 61.954609,49.092304 C 60.014929,48.317582 60.784239,46.41092 60.784239,46.41092 L 63.226659,41.398 z"
             id="path2964"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="czcczcc"
             style="fill:url(#linearGradient6343);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 63.226659,41.398 C 63.226659,41.398 63.327968,42.834989 64.580911,43.390907 C 65.871703,43.963619 67.237126,43.376936 67.237126,43.376936 L 66.247658,45.38217 C 66.247658,45.38217 64.933158,46.216127 63.561344,45.615052 C 62.151825,44.997456 62.237191,43.403234 62.237191,43.403234 L 63.226659,41.398 z"
             id="path2962"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="czcczcc"
             style="fill:url(#linearGradient6345);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 80.47809,10.282021 L 76.001816,14.805631 C 76.822195,16.301338 78.170037,17.07551 79.730379,16.661047 L 80.47809,10.282021 z"
             id="path2982"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="cccc"
             style="fill:url(#radialGradient6347);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 79.078925,11.63315 L 80.664108,9.9997888 L 80.363939,12.345152 C 79.646349,12.567679 79.300467,12.163243 79.078925,11.63315 z"
             id="path2992"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="cccc"
             style="fill:url(#linearGradient6349);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 75.970567,14.805795 L 77.228768,16.3617 L 64.439998,43.316362 C 63.581628,42.876439 63.348884,42.080316 63.26774,41.419121 L 75.970567,14.805795 z"
             id="path3002"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="ccccc"
             style="fill:#ffffff;fill-opacity:0.36363639;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 79.792879,16.660719 L 79.043875,16.852161 L 66.494476,43.620552 C 66.494476,43.620552 67.107516,43.507166 67.242681,43.400734 L 79.792879,16.660719 z"
             id="path3004"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="ccccc"
             style="fill:#000000;fill-opacity:0.36363639;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        </g>
        <path
           d="M 35.590974,22.336294 L 33.477152,40.669163 C 32.634089,45.449016 16.730857,45.501261 15.772831,40.669163 L 13.570621,22.398108 C 15.678392,27.628519 34.583355,26.853544 35.590974,22.336294 z"
           id="path6403"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:nodetypes="ccccc"
           style="opacity:0.53846154;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99999958;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 23.876644,29.502754 C 24.759055,28.895352 27.257458,31.087465 29.508623,34.357876 C 31.759788,37.628287 32.227456,41.218243 32.03304,41.352068 C 31.816362,41.501217 28.652226,39.767357 26.40106,36.496946 C 24.149895,33.226535 22.994232,30.110156 23.876644,29.502754 z"
           id="path9903"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:nodetypes="cszsc"
           style="fill:#e7e7e7;fill-opacity:1;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.99999958;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" />
        <g
           id="g9975"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           transform="matrix(0.796014,8.258057e-2,-8.258057e-2,0.796014,1.530712,-0.729968)">
          <path
             d="m 32.085889,57.685642 c 5.659041,-1.883956 13.873815,-1.479601 18.348211,0.903153 1.228632,0.654285 2.087743,1.41766 2.512332,2.232366"
             id="path9905"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:cx="40.1875"
             sodipodi:cy="62"
             sodipodi:end="6.067175"
             sodipodi:open="true"
             sodipodi:rx="13.0625"
             sodipodi:ry="5.5"
             sodipodi:start="4.0433671"
             sodipodi:type="arc"
             style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.25350261;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
             transform="matrix(-0.56251,-0.817194,0.825069,-0.567931,-15.22056,83.88674)" />
          <path
             d="m 36.364517,54.473244 c 0.492291,0.823974 -0.391117,1.699791 -1.973146,1.956192 -1.515586,0.245633 -3.136253,-0.166118 -3.69754,-0.939407 L 33.5,54.9375 z"
             id="path9907"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:cx="33.5"
             sodipodi:cy="54.9375"
             sodipodi:end="9.0633414"
             sodipodi:rx="3"
             sodipodi:ry="1.5625"
             sodipodi:start="5.9815064"
             sodipodi:type="arc"
             style="fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.25350261;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
             transform="matrix(-0.56251,-0.817194,0.825069,-0.567931,-14.28556,81.45324)" />
        </g>
        <path
           d="M 18.309496,27.045877 C 21.251305,31.200587 24.142325,34.798884 26.528053,37.384546 L 30.395567,34.722368 C 28.634238,31.171969 25.891142,26.577557 22.565009,21.745473 C 16.561094,13.023205 10.607438,6.3782909 8.2525006,5.5900119 C 8.1802296,5.5671084 8.0833128,5.5369591 8.0181135,5.5255274 C 7.9722757,5.5185456 7.9043654,5.5209196 7.8622441,5.5199063 C 7.7960537,5.5202124 7.7111891,5.5338786 7.6548077,5.5497821 C 7.6410248,5.5542514 7.5988177,5.5542796 7.5856625,5.5597406 C 7.5728231,5.5656972 7.5463,5.5882804 7.5340957,5.5952363 C 7.5281538,5.598964 7.5140946,5.6090039 7.5083126,5.6129839 C 7.5025306,5.6169639 7.488133,5.6265121 7.4825295,5.6307315 C 7.4716748,5.6396481 7.4411107,5.6563605 7.4309627,5.6662272 C 7.4211649,5.6765657 7.4060698,5.7159812 7.3969742,5.7272601 C 7.3619901,5.7742473 7.3189255,5.8486404 7.2950089,5.9103589 C 7.2809165,5.9500664 7.2544536,6.0126537 7.2446102,6.0579632 C 7.2320109,6.122947 7.225572,6.2242406 7.2211638,6.2999257 C 7.1167301,8.7810968 11.19814,16.714759 17.202055,25.437027 C 17.575632,25.979746 17.93728,26.520196 18.309496,27.045877 z"
           id="path9898"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           style="fill:url(#linearGradient9972);fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 13.743778,20.854607 C 14.490825,21.902176 15.264732,22.908717 15.999685,23.855883 L 21.414206,20.128834 C 20.528967,18.671321 19.545881,17.138574 18.484475,15.596602 C 13.418672,8.2371884 8.1915815,2.7719285 5.9415208,2.2879093 C 5.9217547,2.284001 5.8740908,2.2754466 5.8547972,2.2723305 C 5.8357406,2.2696111 5.7866513,2.2586727 5.7680735,2.2567517 C 5.7222289,2.2529485 5.654997,2.249885 5.6122042,2.2511306 C 5.5953336,2.2520365 5.5594304,2.259366 5.543059,2.2610891 C 5.4946952,2.2674897 5.4227683,2.2848985 5.3789847,2.298754 C 5.3646479,2.3037905 5.3236556,2.3028367 5.3098395,2.3087125 C 5.2895077,2.3181575 5.2516346,2.3506057 5.2324896,2.3619558 C 5.2262404,2.3659521 5.212821,2.3754945 5.2067058,2.3797039 C 5.2005906,2.3839132 5.1868861,2.3930414 5.1809227,2.3974515 C 5.1634848,2.4112831 5.1196543,2.435075 5.1035721,2.4506952 C 5.093151,2.461503 5.0794067,2.5001343 5.0695837,2.5117282 C 5.0410096,2.5476796 4.9990687,2.6086509 4.975823,2.6515421 C 4.9683686,2.6662195 4.9487039,2.6971398 4.9418346,2.7125751 C 4.9253931,2.752103 4.9042515,2.8159978 4.8914366,2.8601789 C 4.8865983,2.8782182 4.8792899,2.9279775 4.8750265,2.9467491 C 4.871049,2.9658837 4.8620226,3.0134605 4.8586165,3.0333193 C 4.5074188,5.3078973 7.7463172,12.141716 12.812121,19.50113 C 13.127326,19.959048 13.428214,20.412099 13.743778,20.854607 z"
           id="path9893"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           style="fill:url(#linearGradient9968);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 6.2003444,8.0188112 L 10.016292,5.3921292 C 7.9914232,3.1273553 6.1637351,1.7285397 5.1772693,1.7848891 C 5.1709747,1.7853731 5.1469802,1.7864435 5.1407557,1.7870493 C 5.1346027,1.7877759 5.1103261,1.7883613 5.1042428,1.7892089 C 5.0982308,1.7901786 5.0736694,1.7902766 5.0677287,1.7913684 C 5.0325207,1.7986523 4.9757109,1.8194528 4.9431348,1.8311831 C 4.93778,1.8332626 4.922632,1.8467262 4.9173517,1.8489307 C 4.9121466,1.8512599 4.8859682,1.8486359 4.8808393,1.8510911 C 4.8757854,1.8536722 4.8600332,1.8661321 4.8550555,1.8688392 C 4.850154,1.8716723 4.8340961,1.8836267 4.8292725,1.8865868 C 4.8245243,1.8896735 4.8081584,1.9011205 4.8034887,1.9043349 C 4.798819,1.9075493 4.7822833,1.9187498 4.7777056,1.9220825 C 4.7732177,1.9255319 4.7563182,1.9362636 4.7519218,1.9398306 C 4.747616,1.9435138 4.7303534,1.9537793 4.7261388,1.9575782 C 4.7220135,1.961493 4.7151184,1.986883 4.7110844,1.9909135 C 4.7071399,1.9950587 4.6891555,2.0044016 4.6853013,2.0086611 C 4.6627137,2.0349023 4.6230017,2.080542 4.6036271,2.1108296 C 4.6004871,2.1159885 4.5916266,2.1388962 4.5885744,2.1441658 C 4.5856107,2.1495456 4.5763966,2.1720133 4.5735205,2.1775019 C 4.5707331,2.1830994 4.5611667,2.2051304 4.5584673,2.2108374 C 4.1536425,3.1121735 4.807748,5.3188169 6.2003444,8.0188112 z"
           id="path9888"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           style="fill:url(#linearGradient9965);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 15.417724,21.244088 C 15.60655,21.511403 15.795857,21.760461 15.983434,22.02224 L 19.733027,19.438212 C 19.219874,18.65987 18.496328,17.390277 17.956782,16.581053 C 11.744978,7.2644337 5.6568524,2.6091151 5.4030398,2.7829476 C 5.1238436,2.9741649 7.567532,10.260041 13.900362,19.06121 C 14.272182,19.577953 15.059948,20.737597 15.417724,21.244088 z"
           id="path9930"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:nodetypes="cccszsc"
           style="opacity:0.35714285;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient9961);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 37.125,20 L 34.25,41.375 C 33.333333,46.572159 16.041667,46.628965 15,41.375 L 12.036612,20.007583 C 13.877231,26.876868 36.029411,27.218151 37.125,20 z"
           id="path5034"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:nodetypes="ccccc"
           style="opacity:1;fill:url(#linearGradient5042);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5064);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 40.481863,2.524195 L 35.708893,7.3855542 L 27.400388,24.665476 L 36.10664,7.8716901 L 40.481863,2.524195 z"
           id="path6355"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           style="opacity:0.72527472;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 40.349281,2.524195 L 39.465397,9.2417095 L 32.703689,23.64901 L 39.244426,9.1975153 L 38.714096,9.2859036 L 40.349281,2.524195 z"
           id="path6357"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           style="opacity:0.41758243;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 18.473165,25.284195 L 19.445437,44.199301 L 22.715805,44.729631 L 22.892582,25.814525 L 18.473165,25.284195 z"
           id="path6393"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           style="opacity:1;fill:url(#linearGradient6401);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
      </g>
      <g
         id="g32"
         style="display:inline;enable-background:new"
         transform="translate(303,126)">
        <path
           d="m 37.625,37.75 c 0,3.175637 -6.435907,5.75 -14.375,5.75 -7.939093,0 -14.375,-2.574363 -14.375,-5.75 0,-3.175637 6.435907,-5.75 14.375,-5.75 7.939093,0 14.375,2.574363 14.375,5.75 z"
           id="path118"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:cx="23.25"
           sodipodi:cy="37.75"
           sodipodi:rx="14.375"
           sodipodi:ry="5.75"
           sodipodi:type="arc"
           style="opacity:0.31868131;fill:url(#radialGradient1975);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
           transform="matrix(0.666667,0,0,0.666667,0.666667,2.666668)" />
        <path
           d="m 33.5,36.8125 c 0,1.622336 -3.833562,2.9375 -8.5625,2.9375 -4.728938,0 -8.5625,-1.315164 -8.5625,-2.9375 0,-1.622336 3.833562,-2.9375 8.5625,-2.9375 4.728938,0 8.5625,1.315164 8.5625,2.9375 z"
           id="path120"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:cx="24.9375"
           sodipodi:cy="36.8125"
           sodipodi:rx="8.5625"
           sodipodi:ry="2.9375"
           sodipodi:type="arc"
           style="opacity:0.6978022;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
           transform="matrix(0.666667,0,0,0.666667,-8.333338e-2,3.166668)" />
        <path
           d="m 37.625,37.75 c 0,3.175637 -6.435907,5.75 -14.375,5.75 -7.939093,0 -14.375,-2.574363 -14.375,-5.75 0,-3.175637 6.435907,-5.75 14.375,-5.75 7.939093,0 14.375,2.574363 14.375,5.75 z"
           id="path122"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:cx="23.25"
           sodipodi:cy="37.75"
           sodipodi:rx="14.375"
           sodipodi:ry="5.75"
           sodipodi:type="arc"
           style="opacity:0.78571424;fill:url(#radialGradient1977);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
           transform="matrix(0.382609,0,0,0.382609,7.271017,13.05653)" />
        <path
           d="m 37.125,14.1875 c 0,3.14112 -5.568458,5.6875 -12.4375,5.6875 -6.869042,0 -12.4375,-2.54638 -12.4375,-5.6875 0,-3.14112 5.568458,-5.6875 12.4375,-5.6875 6.869042,0 12.4375,2.54638 12.4375,5.6875 z"
           id="path124"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:cx="24.6875"
           sodipodi:cy="14.1875"
           sodipodi:rx="12.4375"
           sodipodi:ry="5.6875"
           sodipodi:type="arc"
           style="fill:url(#linearGradient2043);fill-opacity:1;fill-rule:evenodd;stroke:#8c8c8c;stroke-width:1.55734074;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
           transform="matrix(0.670017,0,0,0.615385,-0.124372,4.269225)" />
        <g
           id="g126"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           transform="matrix(0.666667,0,0,0.666667,-26.83335,-5.000002)">
          <path
             d="M 81.189325,8.8512115 L 75.593983,14.505723 L 60.324794,46.150492 C 59.091904,49.407024 63.727034,51.320174 65.336892,48.436664 L 80.231414,16.856367 L 81.189325,8.8512115 z"
             id="path128"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="cccccc"
             style="fill:#cb9022;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.50000119;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 63.226659,41.398 C 63.226659,41.398 63.327968,42.834989 64.580911,43.390907 C 65.871703,43.963619 67.237126,43.376936 67.237126,43.376936 L 64.794871,48.421105 C 64.794871,48.421105 63.921152,49.877754 61.954609,49.092304 C 60.014929,48.317582 60.784239,46.41092 60.784239,46.41092 L 63.226659,41.398 z"
             id="path130"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="czcczcc"
             style="fill:url(#linearGradient1981);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 63.226659,41.398 C 63.226659,41.398 63.327968,42.834989 64.580911,43.390907 C 65.871703,43.963619 67.237126,43.376936 67.237126,43.376936 L 66.247658,45.38217 C 66.247658,45.38217 64.933158,46.216127 63.561344,45.615052 C 62.151825,44.997456 62.237191,43.403234 62.237191,43.403234 L 63.226659,41.398 z"
             id="path132"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="czcczcc"
             style="fill:url(#linearGradient1983);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 80.47809,10.282021 L 76.001816,14.805631 C 76.822195,16.301338 78.170037,17.07551 79.730379,16.661047 L 80.47809,10.282021 z"
             id="path134"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="cccc"
             style="fill:url(#radialGradient1985);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 79.078925,11.63315 L 80.664108,9.9997888 L 80.363939,12.345152 C 79.646349,12.567679 79.300467,12.163243 79.078925,11.63315 z"
             id="path136"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="cccc"
             style="fill:url(#linearGradient1987);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 75.970567,14.805795 L 77.228768,16.3617 L 64.439998,43.316362 C 63.581628,42.876439 63.348884,42.080316 63.26774,41.419121 L 75.970567,14.805795 z"
             id="path138"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="ccccc"
             style="fill:#ffffff;fill-opacity:0.36363639;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 79.792879,16.660719 L 79.043875,16.852161 L 66.494476,43.620552 C 66.494476,43.620552 67.107516,43.507166 67.242681,43.400734 L 79.792879,16.660719 z"
             id="path140"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="ccccc"
             style="fill:#000000;fill-opacity:0.36363639;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        </g>
        <path
           d="M 27.292894,0.90080862 L 23.562664,4.6704848 L 13.383199,25.767008 C 12.561272,27.93803 15.651361,29.213464 16.7246,27.291123 L 26.654286,6.2375816 L 27.292894,0.90080862 z"
           id="path2933"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:nodetypes="cccccc"
           style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#5c410c;stroke-width:1.00000131;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 23.711466,14.906674 L 22.305294,27.24993 C 21.744466,30.468136 11.165207,30.503312 10.527902,27.24993 L 9.0629326,14.948292 C 10.465079,18.469853 23.041171,17.948074 23.711466,14.906674 z"
           id="path143"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:nodetypes="ccccc"
           style="opacity:0.53846154;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.50000036;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 15.917771,19.668513 C 16.506045,19.263578 18.171648,20.724987 19.672425,22.905262 C 21.173203,25.085537 21.484981,27.478842 21.355371,27.568059 C 21.210919,27.667492 19.101494,26.511585 17.600715,24.331309 C 16.099938,22.151034 15.329496,20.073447 15.917771,19.668513 z"
           id="path145"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:nodetypes="cszsc"
           style="fill:#e7e7e7;fill-opacity:1;fill-rule:evenodd;stroke:#7d7d7d;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" />
        <g
           id="g147"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           transform="matrix(0.530676,5.505374e-2,-5.505374e-2,0.530676,1.020475,-0.486646)">
          <path
             d="m 32.085889,57.685642 c 5.659041,-1.883956 13.873815,-1.479601 18.348211,0.903153 1.228632,0.654285 2.087743,1.41766 2.512332,2.232366"
             id="path149"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:cx="40.1875"
             sodipodi:cy="62"
             sodipodi:end="6.067175"
             sodipodi:open="true"
             sodipodi:rx="13.0625"
             sodipodi:ry="5.5"
             sodipodi:start="4.0433671"
             sodipodi:type="arc"
             style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.88025391;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
             transform="matrix(-0.56251,-0.817194,0.825069,-0.567931,-15.22056,83.88674)" />
          <path
             d="m 36.364517,54.473244 c 0.492291,0.823974 -0.391117,1.699791 -1.973146,1.956192 -1.515586,0.245633 -3.136253,-0.166118 -3.69754,-0.939407 L 33.5,54.9375 z"
             id="path151"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:cx="33.5"
             sodipodi:cy="54.9375"
             sodipodi:end="9.0633414"
             sodipodi:rx="3"
             sodipodi:ry="1.5625"
             sodipodi:start="5.9815064"
             sodipodi:type="arc"
             style="fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.88025391;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
             transform="matrix(-0.56251,-0.817194,0.825069,-0.567931,-14.28556,81.45324)" />
        </g>
        <path
           d="M 12.206337,18.030594 C 14.167544,20.800402 16.094891,23.199268 17.685378,24.923043 L 20.263721,23.148257 C 19.089502,20.781323 17.26077,17.71838 15.043347,14.496989 C 11.040735,8.682141 7.0716289,4.2521961 5.5016698,3.7266765 C 5.4534891,3.7114075 5.3888779,3.6913079 5.3454117,3.6836868 C 5.3148531,3.6790322 5.2695796,3.6806149 5.2414987,3.6799394 C 5.1973717,3.6801434 5.1407953,3.6892542 5.1032077,3.6998566 C 5.0940191,3.7028361 5.065881,3.7028549 5.0571109,3.7064956 C 5.0485513,3.7104667 5.0308692,3.7255221 5.022733,3.7301594 C 5.0187717,3.7326445 5.0093989,3.7393378 5.0055442,3.7419911 C 5.0016896,3.7446445 4.9920912,3.7510099 4.9883555,3.7538229 C 4.981119,3.7597673 4.9607429,3.7709089 4.9539776,3.7774867 C 4.9474457,3.784379 4.9373823,3.810656 4.9313186,3.8181753 C 4.9079959,3.8495001 4.8792861,3.8990955 4.8633417,3.9402412 C 4.8539468,3.9667129 4.8363048,4.0084378 4.8297425,4.0386442 C 4.821343,4.0819667 4.8170504,4.1494958 4.8141116,4.1999526 C 4.7444891,5.8540675 7.4654304,11.143178 11.468042,16.958026 C 11.717094,17.319839 11.958193,17.68014 12.206337,18.030594 z"
           id="path153"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           style="fill:url(#linearGradient2024);fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 9.1625232,13.903078 C 9.6605548,14.601458 10.176493,15.272486 10.666462,15.90393 L 14.276144,13.419229 C 13.685985,12.447554 13.030594,11.425722 12.322989,10.39774 C 8.9457858,5.4914617 5.4610571,1.8479533 3.9610158,1.5252736 C 3.9478384,1.5226681 3.9160625,1.5169652 3.9032001,1.5148878 C 3.8904957,1.5130748 3.8577695,1.5057826 3.8453843,1.5045019 C 3.8148212,1.5019664 3.7699999,1.4999241 3.7414713,1.5007545 C 3.7302243,1.5013584 3.7062888,1.5062448 3.6953745,1.5073935 C 3.663132,1.5116606 3.6151807,1.5232664 3.5859916,1.5325034 C 3.5764337,1.5358611 3.5491055,1.5352252 3.5398948,1.5391424 C 3.5263402,1.5454391 3.5010915,1.5670713 3.4883281,1.574638 C 3.484162,1.5773022 3.4752157,1.5836638 3.4711389,1.5864701 C 3.4670621,1.5892763 3.4579258,1.5953617 3.4539502,1.5983018 C 3.4423249,1.6075229 3.4131046,1.6233841 3.4023831,1.6337976 C 3.3954357,1.6410028 3.3862728,1.666757 3.3797242,1.6744863 C 3.3606747,1.6984539 3.3327141,1.7391015 3.317217,1.7676956 C 3.3122474,1.7774806 3.2991376,1.7980941 3.294558,1.8083843 C 3.283597,1.8347363 3.2695026,1.8773328 3.2609594,1.9067869 C 3.2577338,1.9188131 3.2528616,1.951986 3.2500193,1.9645004 C 3.2473676,1.9772568 3.24135,2.0089747 3.2390793,2.0222139 C 3.0049474,3.5386 5.164214,8.0944814 8.5414183,13.00076 C 8.751555,13.306039 8.9521471,13.608073 9.1625232,13.903078 z"
           id="path155"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           style="fill:url(#linearGradient2021);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 24.750012,13.08847 L 22.833345,27.802171 C 22.222233,31.37969 10.69445,31.418792 10.000005,27.802171 L 8.024412,13.093689 C 9.098446,17.57301 23.958401,17.932547 24.750012,13.08847 z"
           id="path157"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:nodetypes="ccccc"
           style="fill:url(#linearGradient2010);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2012);stroke-width:1.0000006;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 4.133565,5.3458768 L 6.6775313,3.5947546 C 5.3276181,2.0849046 4.1091588,1.1523604 3.4515146,1.1899267 C 3.4473182,1.1902493 3.4313218,1.1909629 3.4271722,1.1913668 C 3.4230702,1.1918512 3.4068858,1.1922415 3.4028302,1.1928065 C 3.3988222,1.193453 3.382448,1.1935183 3.3784875,1.1942462 C 3.3550155,1.1991021 3.3171423,1.2129691 3.2954248,1.2207893 C 3.291855,1.2221757 3.2817563,1.2311514 3.2782361,1.2326211 C 3.274766,1.2341739 3.2573138,1.2324245 3.2538945,1.2340614 C 3.2505252,1.2357821 3.2400238,1.2440887 3.2367053,1.2458934 C 3.2334376,1.2477822 3.2227323,1.2557518 3.2195166,1.2577252 C 3.2163511,1.259783 3.2054405,1.2674143 3.2023274,1.2695572 C 3.1992143,1.2717002 3.1881905,1.2791672 3.1851387,1.281389 C 3.1821467,1.2836886 3.1708804,1.290843 3.1679495,1.293221 C 3.1650789,1.2956765 3.1535705,1.3025202 3.1507608,1.3050528 C 3.1480106,1.3076627 3.1434138,1.3245893 3.1407245,1.3272763 C 3.1380948,1.3300398 3.1261052,1.3362684 3.1235358,1.3391081 C 3.1084774,1.3566022 3.0820027,1.3870287 3.0690863,1.4072204 C 3.0669929,1.4106597 3.0610859,1.4259315 3.0590511,1.4294446 C 3.0570753,1.4330311 3.0509326,1.4480096 3.0490152,1.4516687 C 3.0471569,1.4554003 3.0407793,1.4700877 3.0389797,1.4738923 C 2.7690964,2.0747834 3.2051669,3.5458797 4.133565,5.3458768 z"
           id="path159"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           style="fill:url(#linearGradient2018);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 10.081156,13.567294 C 10.194013,13.727507 10.307158,13.876777 10.419268,14.033672 L 12.660321,12.484962 C 12.353621,12.018473 11.921172,11.257556 11.598697,10.772556 C 7.8860323,5.1887432 4.2472877,2.3986293 4.0955892,2.5028139 C 3.9287195,2.6174179 5.3892607,6.9841274 9.17426,12.259011 C 9.396489,12.568715 9.8673198,13.263735 10.081156,13.567294 z"
           id="path161"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:nodetypes="cccszsc"
           style="opacity:0.35714285;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2015);stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 26.987922,1.6827975 L 23.805941,4.9237053 L 18.266934,16.443659 L 24.071105,5.247796 L 26.987922,1.6827975 z"
           id="path163"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           style="opacity:0.72527472;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 26.899534,1.6827975 L 26.310278,6.1611427 L 21.80247,15.766015 L 26.162964,6.1316799 L 25.80941,6.1906055 L 26.899534,1.6827975 z"
           id="path165"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           style="opacity:0.41758243;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 12.315449,16.856138 L 12.963631,29.466215 L 15.143878,29.819769 L 15.261729,17.209692 L 12.315449,16.856138 z"
           id="path167"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           style="fill:url(#linearGradient2005);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
      </g>
      <g
         style="display:inline;enable-background:new"
         id="g4162"
         transform="matrix(-0.7071068,-0.7071068,0.7071068,-0.7071068,498.74862,587.22691)">
        <path
           d="M 410.94694,150.9297 C 410.9458,151.43407 409.50083,151.81425 407.72148,151.80983 C 405.94212,151.80543 404.49975,151.02486 404.5,150.91374 C 404.50028,150.78989 405.94611,150.02919 407.72546,150.0336 C 409.50482,150.03801 410.94806,150.42533 410.94694,150.9297 z"
           id="path4164"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:nodetypes="cszsc"
           style="fill:#e7e7e7;fill-opacity:1;fill-rule:evenodd;stroke:#7d7d7d;stroke-width:0.99999982;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" />
        <g
           id="g4166"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           transform="matrix(-0.2334041,0.2723246,-0.2723246,-0.2334041,427.2683,149.54707)" />
        <path
           d="M 413.27196,149.43224 C 410.99059,149.45837 408.92723,149.61389 407.36594,149.84501 L 407.36098,152.05562 C 409.11863,152.32469 411.5114,152.4933 414.14042,152.49981 C 418.88601,152.51156 422.85314,151.98631 423.74413,151.28564 C 423.771,151.26379 423.80683,151.23434 423.82767,151.21216 C 423.84193,151.19627 423.85837,151.16935 423.86948,151.15332 C 423.88625,151.1276 423.90285,151.09108 423.91136,151.06499 C 423.91323,151.05845 423.92399,151.0421 423.92532,151.03555 C 423.9264,151.02898 423.92484,151.01267 423.92539,151.00607 C 423.92553,151.00277 423.92541,150.99464 423.92543,150.99133 C 423.92543,150.98803 423.92558,150.9799 423.92546,150.9766 C 423.92494,150.97 423.92657,150.9537 423.92552,150.94712 C 423.92421,150.94057 423.91353,150.92416 423.91169,150.91761 C 423.9033,150.89149 423.88686,150.85488 423.87021,150.82908 C 423.85917,150.813 423.84285,150.78598 423.82866,150.77003 C 423.80792,150.74775 423.77223,150.71812 423.74546,150.69614 C 422.85762,149.99107 418.89289,149.44616 414.1473,149.43441 C 413.85202,149.43368 413.56062,149.42893 413.27196,149.43224 z"
           id="path4172"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           style="fill:url(#linearGradient4178);fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
      </g>
      <g
         id="g4042"
         transform="translate(-38,0)">
        <path
           id="path3948"
           d="M 357.09375,188.21875 C 356.30743,188.4109 355.43066,188.53125 354.5,188.53125 C 354.45765,188.53125 354.41714,188.53169 354.375,188.53125 L 351.8125,193.8125 C 351.2804,195.21799 353.27396,196.05699 353.96875,194.8125 L 357.09375,188.21875 z"
           style="fill:#cb9022;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.50000119;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           style="fill:url(#linearGradient4050);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
           sodipodi:nodetypes="czcczcc"
           inkscape:r_cy="true"
           inkscape:r_cx="true"
           id="path3950"
           d="M 353.06378,191.76662 C 353.06378,191.76662 353.1075,192.38681 353.64826,192.62674 C 354.20535,192.87391 354.79465,192.62071 354.79465,192.62071 L 353.7406,194.79771 C 353.7406,194.79771 353.36351,195.42639 352.51478,195.08739 C 351.67763,194.75303 352.00966,193.93014 352.00966,193.93014 L 353.06378,191.76662 z" />
        <path
           style="fill:url(#linearGradient4052);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
           sodipodi:nodetypes="czcczcc"
           inkscape:r_cy="true"
           inkscape:r_cx="true"
           id="path3952"
           d="M 353.06378,191.76662 C 353.06378,191.76662 353.1075,192.38681 353.64826,192.62674 C 354.20535,192.87391 354.79465,192.62071 354.79465,192.62071 L 354.36761,193.48614 C 354.36761,193.48614 353.80028,193.84607 353.20823,193.58665 C 352.59989,193.3201 352.63674,192.63206 352.63674,192.63206 L 353.06378,191.76662 z" />
        <path
           id="path3958"
           d="M 355.53125,188.46875 C 355.24765,188.49367 354.95195,188.52735 354.65625,188.53125 L 353.09375,191.78125 C 353.12877,192.06661 353.2233,192.40389 353.59375,192.59375 L 355.53125,188.46875 z"
           style="fill:#ffffff;fill-opacity:0.36363639;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           id="path3962"
           d="M 357.09375,188.21875 C 356.30743,188.4109 355.43066,188.53125 354.5,188.53125 C 354.45765,188.53125 354.41714,188.53169 354.375,188.53125 L 351.8125,193.8125 C 351.2804,195.21799 353.27396,196.05699 353.96875,194.8125 L 357.09375,188.21875 z"
           style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#5c410c;stroke-width:0.49999997;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           id="path4034"
           d="M 356.84375,188.28125 C 356.74352,188.30278 356.63417,188.32495 356.53125,188.34375 L 354.46875,192.71875 C 354.46876,192.71875 354.75416,192.67093 354.8125,192.625 L 356.84375,188.28125 z"
           style="fill:#000000;fill-opacity:0.36363639;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:new" />
      </g>
      <path
         d="M 37.125,14.1875 A 12.4375,5.6875 0 1 1 12.25,14.1875 A 12.4375,5.6875 0 1 1 37.125,14.1875 z"
         id="path3662"
         inkscape:r_cx="true"
         inkscape:r_cy="true"
         sodipodi:cx="24.6875"
         sodipodi:cy="14.1875"
         sodipodi:rx="12.4375"
         sodipodi:ry="5.6875"
         sodipodi:type="arc"
         style="fill:url(#linearGradient3664);fill-opacity:1;fill-rule:evenodd;stroke:#babdb6;stroke-width:2.16416048999999999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:new"
         transform="matrix(0.4824122,0,0,0.4425913,303.59045,179.73798)" />
      <path
         sodipodi:type="arc"
         style="opacity:0.7;fill:url(#radialGradient4074);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.87187302000000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         id="path4066"
         sodipodi:cx="314.5"
         sodipodi:cy="186.5"
         sodipodi:rx="5.5"
         sodipodi:ry="2.5"
         d="M 320,186.5 A 5.5,2.5 0 1 1 309,186.5 A 5.5,2.5 0 1 1 320,186.5 z"
         transform="matrix(1.5454531,0,0,1.3999999,-170.54502,-65.599989)" />
      <path
         style="opacity:1;fill:url(#linearGradient3658);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:new"
         d="M 309.5,185.5 L 309.5,194.5 C 309.5,196.16412 312.188,197.53125 315.5,197.53125 C 318.812,197.53125 321.5,196.16411 321.5,194.5 L 321.5,185.5 C 321.5,187.16411 318.812,188.53125 315.5,188.53125 C 312.188,188.53125 309.5,187.16412 309.5,185.5 z"
         id="path2867" />
      <g
         id="g4062"
         style="opacity:0.8">
        <path
           transform="translate(-19,0)"
           style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4108);stroke-width:1.00000011999999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
           d="M 334.5,184.5 C 332.97761,184.5 331.59388,184.79681 330.6875,185.25 C 329.78112,185.70319 329.5,186.20642 329.5,186.5 L 329.5,194.5 C 329.5,194.80024 329.81257,195.29124 330.71875,195.75 C 331.62493,196.20876 332.97991,196.53125 334.5,196.53125 C 336.02009,196.53125 337.37507,196.20876 338.28125,195.75 C 339.18743,195.29124 339.5,194.80024 339.5,194.5 L 339.5,186.5 C 339.5,186.20642 339.21888,185.70319 338.3125,185.25 C 337.40612,184.79681 336.02239,184.5 334.5,184.5 z"
           id="path3689"
           sodipodi:nodetypes="csccsssccsc" />
        <path
           sodipodi:nodetypes="css"
           id="path3693"
           d="M 320.5,187.84375 C 320.5,188.758 318.26,189.5 315.5,189.5 C 312.74,189.5 310.5,188.758 310.5,187.84375"
           style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;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;enable-background:new" />
      </g>
      <g
         style="display:inline;enable-background:new"
         id="g3912"
         transform="matrix(0.6473824,0,0,0.6473824,70.14751,95.566446)"
         clip-path="url(#clipPath4058)">
        <g
           id="g3914"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           transform="matrix(0.666667,0,0,0.666667,336.16665,121)">
          <path
             d="M 81.189325,8.8512115 L 75.593983,14.505723 L 60.324794,46.150492 C 59.091904,49.407024 63.727034,51.320174 65.336892,48.436664 L 80.231414,16.856367 L 81.189325,8.8512115 z"
             id="path3916"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="cccccc"
             style="fill:#cb9022;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.50000119;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 63.226659,41.398 C 63.226659,41.398 63.327968,42.834989 64.580911,43.390907 C 65.871703,43.963619 67.237126,43.376936 67.237126,43.376936 L 64.794871,48.421105 C 64.794871,48.421105 63.921152,49.877754 61.954609,49.092304 C 60.014929,48.317582 60.784239,46.41092 60.784239,46.41092 L 63.226659,41.398 z"
             id="path3918"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="czcczcc"
             style="fill:url(#linearGradient3936);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 63.226659,41.398 C 63.226659,41.398 63.327968,42.834989 64.580911,43.390907 C 65.871703,43.963619 67.237126,43.376936 67.237126,43.376936 L 66.247658,45.38217 C 66.247658,45.38217 64.933158,46.216127 63.561344,45.615052 C 62.151825,44.997456 62.237191,43.403234 62.237191,43.403234 L 63.226659,41.398 z"
             id="path3920"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="czcczcc"
             style="fill:url(#linearGradient3938);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 80.47809,10.282021 L 76.001816,14.805631 C 76.822195,16.301338 78.170037,17.07551 79.730379,16.661047 L 80.47809,10.282021 z"
             id="path3922"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="cccc"
             style="fill:url(#radialGradient3940);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 79.078925,11.63315 L 80.664108,9.9997888 L 80.363939,12.345152 C 79.646349,12.567679 79.300467,12.163243 79.078925,11.63315 z"
             id="path3924"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="cccc"
             style="fill:url(#linearGradient3942);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 75.970567,14.805795 L 77.228768,16.3617 L 64.439998,43.316362 C 63.581628,42.876439 63.348884,42.080316 63.26774,41.419121 L 75.970567,14.805795 z"
             id="path3926"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="ccccc"
             style="fill:#ffffff;fill-opacity:0.36363639;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 79.792879,16.660719 L 79.043875,16.852161 L 66.494476,43.620552 C 66.494476,43.620552 67.107516,43.507166 67.242681,43.400734 L 79.792879,16.660719 z"
             id="path3928"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="ccccc"
             style="fill:#000000;fill-opacity:0.36363639;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        </g>
        <path
           d="M 390.29289,126.90081 L 386.56266,130.67048 L 376.3832,151.76701 C 375.56127,153.93803 378.65136,155.21346 379.7246,153.29112 L 389.65429,132.23758 L 390.29289,126.90081 z"
           id="path3930"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:nodetypes="cccccc"
           style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#8f5902;stroke-width:1.08127746;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 389.98792,127.6828 L 386.80594,130.92371 L 381.26693,142.44366 L 387.0711,131.2478 L 389.98792,127.6828 z"
           id="path3932"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           style="opacity:0.72527472;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 389.89953,127.6828 L 389.31028,132.16114 L 384.80247,141.76602 L 389.16296,132.13168 L 388.80941,132.19061 L 389.89953,127.6828 z"
           id="path3934"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           style="opacity:0.41758243;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
      </g>
      <path
         sodipodi:type="inkscape:offset"
         inkscape:radius="-0.5"
         inkscape:original="M 309.5 185.5 L 309.5 194.5 C 309.5 196.16412 312.188 197.53125 315.5 197.53125 C 318.812 197.53125 321.5 196.16411 321.5 194.5 L 321.5 185.5 C 321.5 187.16411 318.812 188.53125 315.5 188.53125 C 312.188 188.53125 309.5 187.16412 309.5 185.5 z "
         style="opacity:0.3;fill:url(#linearGradient4086);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000059999999991;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:new"
         id="path4078"
         d="M 310,187.3125 L 310,194.5 C 310,195.06285 310.47378,195.68379 311.46875,196.1875 C 312.46372,196.69121 313.9128,197.03125 315.5,197.03125 C 317.0872,197.03125 318.53628,196.69121 319.53125,196.1875 C 320.52622,195.68379 321,195.06284 321,194.5 L 321,187.3125 C 320.68996,187.589 320.38029,187.8854 319.96875,188.09375 C 318.79172,188.68963 317.2248,189.03125 315.5,189.03125 C 313.7752,189.03125 312.20828,188.68963 311.03125,188.09375 C 310.61971,187.8854 310.31004,187.589 310,187.3125 z" />
      <path
         style="opacity:1;fill:url(#linearGradient4099);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.50000000000000000;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:new"
         d="M 312 188.5 L 312 196.40625 C 312.57653 196.63278 313.25695 196.80224 314 196.90625 L 314 188.9375 C 313.29093 188.84993 312.60051 188.70265 312 188.5 z "
         id="rect4088" />
      <g
         id="g4188">
        <path
           transform="matrix(-0.2613785,-0.3144838,0.2834612,-0.2217582,300.21322,210.75144)"
           style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:2.60725546;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:new"
           sodipodi:type="arc"
           sodipodi:start="4.0433671"
           sodipodi:ry="5.5368929"
           sodipodi:rx="13.0625"
           sodipodi:end="6.067175"
           sodipodi:cy="62"
           sodipodi:cx="40.1875"
           inkscape:r_cy="true"
           inkscape:r_cx="true"
           id="path4168"
           d="M 32.085889,57.656702 A 13.0625,5.5368929 0 0 1 52.946432,60.813254"
           sodipodi:open="true" />
        <path
           transform="matrix(-0.2236459,-0.2767512,0.2794181,-0.2258012,299.50314,208.87801)"
           style="display:inline;enable-background:new;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:2.79695535000000017;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;overflow:visible"
           sodipodi:type="arc"
           sodipodi:start="5.9815064"
           sodipodi:ry="1.5625"
           sodipodi:rx="3"
           sodipodi:end="9.0633414"
           sodipodi:cy="54.9375"
           sodipodi:cx="33.5"
           inkscape:r_cy="true"
           inkscape:r_cx="true"
           id="path4170"
           d="M 36.364517,54.473244 A 3,1.5625 0 0 1 30.693831,55.490029 L 33.5,54.9375 z" />
        <rect
           style="display:inline;enable-background:accumulate;opacity:1;fill:url(#linearGradient4180);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00000011999999994;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;overflow:visible"
           id="rect4174"
           width="10.5"
           height="3.0000002"
           x="416"
           y="149.5"
           rx="1.5000001"
           ry="1.5000001"
           transform="matrix(-0.7071068,-0.7071068,0.7071068,-0.7071068,498.74862,587.22691)" />
        <rect
           style="display:inline;enable-background:accumulate;opacity:1;fill:url(#linearGradient4194);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00000011999999994;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;overflow:visible"
           id="rect4176"
           width="8.4453068"
           height="3.0000081"
           x="415.05435"
           y="149.5"
           transform="matrix(-0.7071068,-0.7071068,0.7071068,-0.7071068,498.74862,587.22691)" />
      </g>
      <path
         sodipodi:type="arc"
         style="opacity:0.8;fill:url(#radialGradient4508);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.51499998999999996;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         id="path4500"
         sodipodi:cx="311.5"
         sodipodi:cy="232.5"
         sodipodi:rx="4.5"
         sodipodi:ry="1.5"
         d="M 316,232.5 A 4.5,1.5 0 1 1 307,232.5 A 4.5,1.5 0 1 1 316,232.5 z"
         transform="matrix(1,0,0,1.3333333,0,-78)" />
      <g
         style="display:inline;enable-background:new"
         id="g4285"
         transform="matrix(0.4889697,8.3489732e-2,-7.7195455e-2,0.5288388,136.05555,119.58377)"
         clip-path="url(#clipPath4455)">
        <g
           id="g4287"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           transform="matrix(0.666667,0,0,0.666667,336.16665,121)">
          <path
             d="M 81.189325,8.8512115 L 75.593983,14.505723 L 60.324794,46.150492 C 59.091904,49.407024 63.727034,51.320174 65.336892,48.436664 L 80.231414,16.856367 L 81.189325,8.8512115 z"
             id="path4289"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="cccccc"
             style="fill:#cb9022;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.50000119;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 63.226659,41.398 C 63.226659,41.398 63.327968,42.834989 64.580911,43.390907 C 65.871703,43.963619 67.237126,43.376936 67.237126,43.376936 L 64.794871,48.421105 C 64.794871,48.421105 63.921152,49.877754 61.954609,49.092304 C 60.014929,48.317582 60.784239,46.41092 60.784239,46.41092 L 63.226659,41.398 z"
             id="path4291"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="czcczcc"
             style="fill:url(#linearGradient4309);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 63.226659,41.398 C 63.226659,41.398 63.327968,42.834989 64.580911,43.390907 C 65.871703,43.963619 67.237126,43.376936 67.237126,43.376936 L 66.247658,45.38217 C 66.247658,45.38217 64.933158,46.216127 63.561344,45.615052 C 62.151825,44.997456 62.237191,43.403234 62.237191,43.403234 L 63.226659,41.398 z"
             id="path4293"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="czcczcc"
             style="fill:url(#linearGradient4311);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 80.47809,10.282021 L 76.001816,14.805631 C 76.822195,16.301338 78.170037,17.07551 79.730379,16.661047 L 80.47809,10.282021 z"
             id="path4295"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="cccc"
             style="fill:url(#radialGradient4313);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 79.078925,11.63315 L 80.664108,9.9997888 L 80.363939,12.345152 C 79.646349,12.567679 79.300467,12.163243 79.078925,11.63315 z"
             id="path4297"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="cccc"
             style="fill:url(#linearGradient4315);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 75.970567,14.805795 L 77.228768,16.3617 L 64.439998,43.316362 C 63.581628,42.876439 63.348884,42.080316 63.26774,41.419121 L 75.970567,14.805795 z"
             id="path4299"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="ccccc"
             style="fill:#ffffff;fill-opacity:0.36363639;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 79.792879,16.660719 L 79.043875,16.852161 L 66.494476,43.620552 C 66.494476,43.620552 67.107516,43.507166 67.242681,43.400734 L 79.792879,16.660719 z"
             id="path4301"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="ccccc"
             style="fill:#000000;fill-opacity:0.36363639;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        </g>
        <path
           d="M 390.29289,126.90081 L 386.56266,130.67048 L 376.3832,151.76701 C 375.56127,153.93803 378.65136,155.21346 379.7246,153.29112 L 389.65429,132.23758 L 390.29289,126.90081 z"
           id="path4303"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:nodetypes="cccccc"
           style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#8f5902;stroke-width:1.00036561;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 389.98792,127.6828 L 386.80594,130.92371 L 381.26693,142.44366 L 387.0711,131.2478 L 389.98792,127.6828 z"
           id="path4305"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           style="opacity:0.72527472;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 389.89953,127.6828 L 389.31028,132.16114 L 384.80247,141.76602 L 389.16296,132.13168 L 388.80941,132.19061 L 389.89953,127.6828 z"
           id="path4307"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           style="opacity:0.41758243;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
      </g>
      <path
         style="fill:url(#linearGradient4449);fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:0.85154063;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:new"
         inkscape:r_cy="true"
         inkscape:r_cx="true"
         id="path4337"
         d="M 309.38217,227.59536 C 310.70462,229.02208 311.97628,230.22902 313.00352,231.07052 C 315.11382,231.84687 314.29895,230.47063 314.27329,229.67517 C 313.42016,228.39302 312.14548,226.77264 310.64251,225.10535 C 307.92949,222.09577 307.78637,222.60233 306.87417,222.48194 C 306.84625,222.47876 306.80884,222.47474 306.78419,222.47557 C 306.7669,222.4766 306.74204,222.48324 306.7265,222.48635 C 306.70214,222.49201 306.6717,222.50461 306.65188,222.51573 C 306.64705,222.51869 306.63152,222.52221 306.627,222.52552 C 306.62261,222.529 306.61416,222.54031 306.61006,222.54413 C 306.6081,222.54612 306.60351,222.55135 306.60159,222.55343 C 306.5997,222.55551 306.59495,222.56057 306.59314,222.56273 C 306.58965,222.56723 306.57938,222.57651 306.57622,222.58134 C 306.57321,222.58631 306.56993,222.60346 306.56723,222.60876 C 306.55705,222.63059 306.54549,222.66415 306.54026,222.691 C 306.53736,222.70816 306.53123,222.73557 306.53022,222.75465 C 306.52935,222.78186 306.53282,222.8232 306.53556,222.85403 C 306.64031,223.86175 306.16874,224.03064 308.88175,227.04023 C 309.05057,227.2275 309.21483,227.41485 309.38217,227.59536 z"
         sodipodi:nodetypes="cccsssssssssssssssc" />
      <path
         d="M 37.125,14.1875 A 12.4375,5.6875 0 1 1 12.25,14.1875 A 12.4375,5.6875 0 1 1 37.125,14.1875 z"
         id="path4210"
         inkscape:r_cx="true"
         inkscape:r_cy="true"
         sodipodi:cx="24.6875"
         sodipodi:cy="14.1875"
         sodipodi:rx="12.4375"
         sodipodi:ry="5.6875"
         sodipodi:type="arc"
         style="fill:url(#linearGradient4258);fill-opacity:1;fill-rule:evenodd;stroke:#babdb6;stroke-width:2.38762093;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:new"
         transform="matrix(0.4013834,0,0,0.4370286,301.59083,218.78526)" />
      <path
         style="fill:url(#linearGradient4273);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:new"
         d="M 306.50778,225.05385 L 306.50778,232.22348 C 306.50778,233.54916 308.74429,234.63826 311.49999,234.63826 C 314.25568,234.63826 316.49219,233.54916 316.49219,232.22348 L 316.49219,225.05385 C 316.49219,226.37952 314.25568,227.46862 311.49999,227.46862 C 308.74429,227.46862 306.50778,226.37953 306.50778,225.05385 z"
         id="path4212" />
      <g
         id="g4214"
         style="opacity:0.8;display:inline;enable-background:new"
         transform="matrix(0.8320342,0,0,0.7966259,48.993197,77.279746)">
        <path
           style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4262);stroke-width:1.22829366;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;enable-background:new"
           d="M 315.5,183.53861 C 314.02038,183.53861 312.67553,183.82229 311.79462,184.25543 C 310.91371,184.68857 310.64049,185.16954 310.64049,185.45013 L 310.64049,194.29596 C 310.64049,194.58292 310.94427,195.0522 311.82499,195.49066 C 312.70571,195.92913 314.02262,196.23735 315.5,196.23735 C 316.97737,196.23735 318.29428,195.92913 319.175,195.49066 C 320.05572,195.0522 320.35951,194.58292 320.35951,194.29596 L 320.35951,185.45013 C 320.35951,185.16954 320.08629,184.68857 319.20537,184.25543 C 318.32446,183.82229 316.97961,183.53861 315.5,183.53861 z"
           id="path4216"
           sodipodi:nodetypes="csccsssccsc" />
        <path
           sodipodi:nodetypes="css"
           id="path4218"
           d="M 320.3075,188.16968 C 320.3075,189.08393 318.15375,189.82593 315.50001,189.82593 C 312.84627,189.82593 310.69252,189.08393 310.69252,188.16968"
           style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.22829366;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;enable-background:new" />
      </g>
      <path
         sodipodi:type="inkscape:offset"
         inkscape:radius="-0.5"
         inkscape:original="M 309.5 185.5 L 309.5 194.5 C 309.5 196.16412 312.188 197.53125 315.5 197.53125 C 318.812 197.53125 321.5 196.16411 321.5 194.5 L 321.5 185.5 C 321.5 187.16411 318.812 188.53125 315.5 188.53125 C 312.188 188.53125 309.5 187.16412 309.5 185.5 z "
         style="opacity:0.2;fill:url(#linearGradient4283);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000059999999991;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:new"
         id="path4220"
         d="M 310,187.3125 L 310,194.5 C 310,195.06285 310.47378,195.68379 311.46875,196.1875 C 312.46372,196.69121 313.9128,197.03125 315.5,197.03125 C 317.0872,197.03125 318.53628,196.69121 319.53125,196.1875 C 320.52622,195.68379 321,195.06284 321,194.5 L 321,187.3125 C 320.68996,187.589 320.38029,187.8854 319.96875,188.09375 C 318.79172,188.68963 317.2248,189.03125 315.5,189.03125 C 313.7752,189.03125 312.20828,188.68963 311.03125,188.09375 C 310.61971,187.8854 310.31004,187.589 310,187.3125 z"
         transform="matrix(0.8274677,0,0,0.7449461,50.433934,87.462277)" />
      <g
         style="display:inline;enable-background:new"
         id="g4317"
         transform="matrix(0.8048101,0,0,0.8048101,59.14254,75.798503)">
        <rect
           style="opacity:1;fill:url(#linearGradient4327);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           id="rect4323"
           width="10.5"
           height="3.0000002"
           x="416"
           y="149.5"
           rx="1.5000001"
           ry="1.5000001"
           transform="matrix(-0.7071068,-0.7071068,0.7071068,-0.7071068,498.74862,587.22691)" />
        <rect
           style="opacity:1;fill:url(#linearGradient4329);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           id="rect4325"
           width="8.4453068"
           height="3.0000081"
           x="415.05435"
           y="149.5"
           transform="matrix(-0.7071068,-0.7071068,0.7071068,-0.7071068,498.74862,587.22691)" />
      </g>
      <g
         style="display:inline;enable-background:new"
         id="g4459"
         transform="matrix(0.4889697,8.3489732e-2,-7.7195455e-2,0.5288388,136.05555,119.58377)"
         clip-path="url(#clipPath4496)">
        <g
           id="g4461"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           transform="matrix(0.666667,0,0,0.666667,336.16665,121)">
          <path
             d="M 81.189325,8.8512115 L 75.593983,14.505723 L 60.324794,46.150492 C 59.091904,49.407024 63.727034,51.320174 65.336892,48.436664 L 80.231414,16.856367 L 81.189325,8.8512115 z"
             id="path4463"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="cccccc"
             style="fill:#cb9022;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.50000119;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 63.226659,41.398 C 63.226659,41.398 63.327968,42.834989 64.580911,43.390907 C 65.871703,43.963619 67.237126,43.376936 67.237126,43.376936 L 64.794871,48.421105 C 64.794871,48.421105 63.921152,49.877754 61.954609,49.092304 C 60.014929,48.317582 60.784239,46.41092 60.784239,46.41092 L 63.226659,41.398 z"
             id="path4465"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="czcczcc"
             style="fill:url(#linearGradient4483);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 63.226659,41.398 C 63.226659,41.398 63.327968,42.834989 64.580911,43.390907 C 65.871703,43.963619 67.237126,43.376936 67.237126,43.376936 L 66.247658,45.38217 C 66.247658,45.38217 64.933158,46.216127 63.561344,45.615052 C 62.151825,44.997456 62.237191,43.403234 62.237191,43.403234 L 63.226659,41.398 z"
             id="path4467"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="czcczcc"
             style="fill:url(#linearGradient4485);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 80.47809,10.282021 L 76.001816,14.805631 C 76.822195,16.301338 78.170037,17.07551 79.730379,16.661047 L 80.47809,10.282021 z"
             id="path4469"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="cccc"
             style="fill:url(#radialGradient4487);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 79.078925,11.63315 L 80.664108,9.9997888 L 80.363939,12.345152 C 79.646349,12.567679 79.300467,12.163243 79.078925,11.63315 z"
             id="path4471"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="cccc"
             style="fill:url(#linearGradient4489);fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 75.970567,14.805795 L 77.228768,16.3617 L 64.439998,43.316362 C 63.581628,42.876439 63.348884,42.080316 63.26774,41.419121 L 75.970567,14.805795 z"
             id="path4473"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="ccccc"
             style="fill:#ffffff;fill-opacity:0.36363639;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
          <path
             d="M 79.792879,16.660719 L 79.043875,16.852161 L 66.494476,43.620552 C 66.494476,43.620552 67.107516,43.507166 67.242681,43.400734 L 79.792879,16.660719 z"
             id="path4475"
             inkscape:r_cx="true"
             inkscape:r_cy="true"
             sodipodi:nodetypes="ccccc"
             style="fill:#000000;fill-opacity:0.36363639;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        </g>
        <path
           d="M 390.29289,126.90081 L 386.56266,130.67048 L 376.3832,151.76701 C 375.56127,153.93803 378.65136,155.21346 379.7246,153.29112 L 389.65429,132.23758 L 390.29289,126.90081 z"
           id="path4477"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:nodetypes="cccccc"
           style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#8f5902;stroke-width:1.00036561;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 389.98792,127.6828 L 386.80594,130.92371 L 381.26693,142.44366 L 387.0711,131.2478 L 389.98792,127.6828 z"
           id="path4479"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           style="opacity:0.72527472;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 389.89953,127.6828 L 389.31028,132.16114 L 384.80247,141.76602 L 389.16296,132.13168 L 388.80941,132.19061 L 389.89953,127.6828 z"
           id="path4481"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           style="opacity:0.41758243;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;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-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
      </g>
      <path
         transform="matrix(-0.2192689,-0.2468481,0.237794,-0.1740649,300.58939,243.92572)"
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:2.60725546;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:new"
         sodipodi:type="arc"
         sodipodi:start="4.0433671"
         sodipodi:ry="5.5368929"
         sodipodi:rx="13.0625"
         sodipodi:end="6.067175"
         sodipodi:cy="62"
         sodipodi:cx="40.1875"
         inkscape:r_cy="true"
         inkscape:r_cx="true"
         id="path4510"
         d="M 32.085889,57.656702 A 13.0625,5.5368929 0 0 1 52.946432,60.813254"
         sodipodi:open="true" />
      <path
         transform="matrix(-0.2236459,-0.2767512,0.2794181,-0.2258012,298.50314,246.87801)"
         style="fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:2.79695535;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:new"
         sodipodi:type="arc"
         sodipodi:start="5.9815064"
         sodipodi:ry="1.5625"
         sodipodi:rx="3"
         sodipodi:end="9.0633414"
         sodipodi:cy="54.9375"
         sodipodi:cx="33.5"
         inkscape:r_cy="true"
         inkscape:r_cx="true"
         id="path4512"
         d="M 36.364517,54.473244 A 3,1.5625 0 0 1 30.693831,55.490029 L 33.5,54.9375 z" />
    </g>
    <g
       inkscape:groupmode="layer"
       id="layer3"
       inkscape:label="hires"
       style="display:inline">
      <path
         transform="matrix(0.72798442,0,0,0.66024561,36.796481,144.19697)"
         d="m 219.5,134.5 a 61.25,26.5 0 1 1 -122.5,0 61.25,26.5 0 1 1 122.5,0 z"
         sodipodi:ry="26.5"
         sodipodi:rx="61.25"
         sodipodi:cy="134.5"
         sodipodi:cx="158.25"
         id="path5462"
         style="opacity:0.33944953999999999;fill:url(#radialGradient5464);fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient5484);stroke-width:10.09681128999999977;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5474);enable-background:new"
         sodipodi:type="arc" />
      <path
         sodipodi:type="arc"
         style="opacity:0.23853211;fill:url(#radialGradient4122);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:9.15742683000000035;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:new;filter:url(#filter5504)"
         id="path4106"
         sodipodi:cx="158.25"
         sodipodi:cy="134.5"
         sodipodi:rx="61.25"
         sodipodi:ry="26.5"
         d="M 219.5,134.5 A 61.25,26.5 0 1 1 97,134.5 A 61.25,26.5 0 1 1 219.5,134.5 z"
         transform="matrix(0.8005707,0,0,0.7298766,25.309703,132.8316)" />
      <rect
         style="opacity:0.7;fill:url(#linearGradient4679);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.08984113;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter4681);enable-background:new"
         id="rect4663"
         width="77.521988"
         height="18.5"
         x="140.84981"
         y="291.60959"
         rx="7.370049"
         ry="9.25"
         transform="matrix(0.9158692,-0.4014769,0,1,1,-9)" />
      <path
         sodipodi:type="inkscape:offset"
         inkscape:radius="-1.9981031"
         inkscape:original="M 152 108 C 116.672 108 88 120.544 88 136 C 88 137.22918 88.21089 138.4375 88.5625 139.625 C 89.6105 146.37153 104 239 104 239 C 104 250.592 125.50399 260 152 260 C 178.496 260 200 250.592 200 239 C 200 239 214.38949 146.37153 215.4375 139.625 C 215.78345 138.44688 216 137.21909 216 136 C 216 120.544 187.32799 108 152 108 z "
         style="opacity:0.70183486;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter3874);enable-background:new"
         id="path4046"
         d="M 152,110 C 134.57249,110 118.80482,113.11273 107.5625,118.03125 C 101.94134,120.49051 97.45597,123.41182 94.46875,126.5 C 91.48153,129.58818 90,132.75377 90,136 C 90,137.00064 90.160148,138.02025 90.46875,139.0625 C 90.49494,139.1444 90.515817,139.22791 90.53125,139.3125 C 91.57923,146.0589 105.96875,238.6875 105.96875,238.6875 C 105.98735,238.79069 105.9978,238.89517 106,239 C 106,241.28023 107.04153,243.53045 109.21875,245.78125 C 111.39597,248.03205 114.70184,250.20549 118.875,252.03125 C 127.22132,255.68277 138.98849,258 152,258 C 165.01151,258 176.77868,255.68277 185.125,252.03125 C 189.29816,250.20549 192.60403,248.03205 194.78125,245.78125 C 196.95847,243.53045 198,241.28023 198,239 C 198.0022,238.89517 198.01265,238.79069 198.03125,238.6875 C 198.03125,238.6875 212.42076,146.05893 213.46875,139.3125 C 213.48418,139.22791 213.50506,139.1444 213.53125,139.0625 C 213.83497,138.02819 214,136.98247 214,136 C 214,132.75377 212.51847,129.58818 209.53125,126.5 C 206.54403,123.41182 202.05866,120.49051 196.4375,118.03125 C 185.19518,113.11273 169.4275,110 152,110 z"
         transform="translate(0,-8)" />
      <g
         style="display:inline;enable-background:new"
         id="g3894"
         clip-path="url(#clipPath3943)"
         transform="translate(0,-8)">
        <g
           id="g3885">
          <path
             style="opacity:0.1;fill:url(#radialGradient3947);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
             d="m 152,108 c -35.328,0 -64,12.544 -64,28 0,0 16,103 16,103 0,-11.59201 21.504,-21 48,-21 26.49601,-1e-5 48,9.408 48,21 0,0 16,-103 16,-103 0,-15.456 -28.67199,-28 -64,-28 z"
             id="path13998" />
          <path
             sodipodi:type="arc"
             style="opacity:0.4;fill:url(#linearGradient3949);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
             id="path15076"
             sodipodi:cx="158.25"
             sodipodi:cy="134.5"
             sodipodi:rx="61.25"
             sodipodi:ry="26.5"
             d="m 219.5,134.5 c 0,14.63555 -27.42256,26.5 -61.25,26.5 C 124.42256,161 97,149.13555 97,134.5 97,119.86445 124.42256,108 158.25,108 c 33.82744,0 61.25,11.86445 61.25,26.5 z"
             transform="matrix(0.7836736,0,0,0.7924529,27.98367,132.41508)" />
          <path
             style="opacity:0.2;fill:url(#radialGradient3951);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
             d="m 152,111 c -33.12,0 -60,10.99169 -60,24.34375 0,0 16,100.65625 16,100.65625 0,-9.936 19.71199,-18 44,-18 24.28801,-1e-5 44,8.064 44,18 0,0 16,-100.65625 16,-100.65625 C 212,121.99169 185.12001,111 152,111 z"
             id="path15078"
             sodipodi:nodetypes="cccsccc" />
          <path
             style="opacity:0.40000000000000002;fill:url(#linearGradient3953);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.50000000000000000;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4081);enable-background:new"
             d="m 154.5625,111.03125 c -0.0423,9.06682 -0.4723,96.71044 -0.5625,107 10.7957,0.19916 20.59633,1.98751 28,4.8125 0.68439,-6.76695 8.16704,-77.74912 11.1875,-104.375 -10.17236,-4.38114 -23.68659,-7.15159 -38.625,-7.4375 z"
             id="path3045"
             sodipodi:nodetypes="ccccc"
             transform="matrix(1,0,0,1.0252962,0,-5.637092)" />
          <path
             sodipodi:type="arc"
             style="opacity:0.3;fill:url(#radialGradient3955);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
             id="path3842"
             sodipodi:cx="158.25"
             sodipodi:cy="134.5"
             sodipodi:rx="61.25"
             sodipodi:ry="26.5"
             d="m 219.5,134.5 c 0,14.63555 -27.42256,26.5 -61.25,26.5 C 124.42256,161 97,149.13555 97,134.5 97,119.86445 124.42256,108 158.25,108 c 33.82744,0 61.25,11.86445 61.25,26.5 z"
             transform="matrix(0.7183671,0,0,0.6792455,38.318429,144.64148)" />
          <path
             style="opacity:0.7;fill:url(#radialGradient3957);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
             d="m 152,108 c -35.328,0 -64.000002,12.544 -64,28 0,15.456 28.67199,28 64,28 35.328,0 64,-12.544 64,-28 0,-15.456 -28.67201,-28 -64,-28 z m 0,3 c 33.12,0 60,10.976 60,24.5 1e-5,13.52401 -26.87999,24.5 -60,24.5 -33.12001,0 -60,-10.976 -60,-24.5 2e-6,-13.524 26.87999,-24.5 60,-24.5 z"
             id="path8494" />
          <path
             transform="matrix(0.7183671,0,0,0.6792455,38.318429,144.64148)"
             style="opacity:0.6;fill:none;stroke:url(#radialGradient3959);stroke-width:2.86314535;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
             d="m 97,134.5 c 0,-14.628 27.44,-26.5 61.25,-26.5 33.81,0 61.25,11.872 61.25,26.5"
             id="path9277"
             sodipodi:nodetypes="csc" />
        </g>
        <path
           clip-path="none"
           sodipodi:nodetypes="cscsccscs"
           id="path3853"
           d="M 215.4375,139.60938 C 215.78345,138.43125 216,137.21909 216,136 c 0,-15.456 -28.67201,-28 -64,-28 -35.328,0 -64,12.544 -64,28 0,1.22918 0.21089,2.4375 0.5625,3.625 C 89.6105,146.37153 104,239 104,239 c 0,11.592 21.50399,21 48,21 26.496,0 48,-9.408 48,-21 0,0 14.38949,-92.64409 15.4375,-99.39062 z"
           style="opacity:0.76605505;fill:none;stroke:url(#linearGradient4095);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter3874);enable-background:new" />
      </g>
      <path
         transform="matrix(0.979592,0,0,0.9245285,-3.02042,5.15092)"
         style="opacity:0.21559633000000000;fill:none;stroke:url(#radialGradient3638);stroke-width:1.50000000000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new;filter:url(#filter5458)"
         clip-path="none"
         d="m 219.5,133.41836 c 0,14.628 -27.44,26.5 -61.25,26.5 -33.81,0 -61.25,-11.872 -61.25,-26.5 0,-14.628 27.44,-26.5 61.25,-26.5 33.81,0 61.25,11.872 61.25,26.5 z"
         id="path4097"
         sodipodi:nodetypes="csssc" />
      <g
         style="display:inline;enable-background:new"
         id="g4531"
         transform="translate(0,332)">
        <g
           transform="matrix(-0.5,0.8660254,-0.8660254,-0.5,488.66851,118.29868)"
           id="g3333"
           style="display:inline;enable-background:new">
          <g
             id="g3335"
             transform="matrix(1,0,0,-1,0,826)">
            <path
               sodipodi:nodetypes="cccc"
               id="path3337"
               d="m -208.12484,411.69923 41.43803,-9.40979 c 15.2402,0.42818 28.49767,20.48775 -0.13903,21.38117 l -41.299,-11.97138 z"
               style="fill:url(#radialGradient4601);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
            <path
               sodipodi:nodetypes="ccccc"
               id="path3339"
               d="m -17.591853,416.16592 -5.420004,6.82943 -143.698473,0.67169 c 4.05403,-1.98484 5.49201,-4.89126 2.24841,-7.4813 0.40448,0.13483 146.870067,-0.0198 146.870067,-0.0198 l 0,2e-5 z"
               style="fill:#d9700f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
            <path
               id="path3341"
               d="m -22.649908,402.51505 5.515569,5.85254 -151.857851,-0.22409 c 1.68366,-2.54643 8.57256,-3.93471 2.24171,-5.69668 l 144.100572,0.0683 0,-4e-5 z"
               style="fill:#fcaf3e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
               sodipodi:nodetypes="ccccc" />
            <path
               sodipodi:nodetypes="ccccc"
               style="fill:#f09a2e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
               d="m -17.62804,416.23016 0.224049,-7.86257 -151.154179,-0.30701 c 4.35352,1.34195 8.95162,5.31574 4.43385,8.24713 l 146.49628,-0.0775 0,0 z"
               id="path3343" />
            <path
               style="fill:url(#linearGradient4603);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
               d="m -207.47831,411.50283 16.52981,-3.53753 c 2.59393,2.99835 2.75291,6.48191 0.52077,8.64428 l -17.05058,-5.10675 0,0 z"
               id="path3345"
               sodipodi:nodetypes="cccc"
               inkscape:transform-center-x="8.012375"
               inkscape:transform-center-y="-12.573622" />
            <path
               style="fill:none;stroke:url(#linearGradient4605);stroke-width:1.21372306;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter130946-7-2-7);enable-background:accumulate"
               d="m 415,266.5 -10.08286,-44.65681 -70.96081,-143.848793 -9.08701,-1.41203 -6.83317,2.827418 -3.97537,9.230966 L 383.61877,233.07372 415,266.5 z"
               id="path3347"
               transform="matrix(-0.4008803,-0.8196971,-0.8090113,0.4061753,174.14156,643.9334)"
               clip-path="url(#clipPath2231-9)"
               sodipodi:nodetypes="cccccccc" />
            <path
               sodipodi:nodetypes="ccc"
               id="path3349"
               d="m -168.77722,408.03912 c 5.35615,1.38191 9.21659,5.90003 4.48082,8.29427 4.36954,-3.63229 -2.32644,-7.39416 -4.48082,-8.29427 l 0,0 z"
               style="fill:#fdd498;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
            <path
               style="fill:#fdd498;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
               d="m -166.45148,423.54414 c 2.38998,-0.87552 5.91335,-4.53021 2.15507,-7.21075 1.5719,2.67776 0.10041,5.81576 -2.15507,7.21075 z"
               id="path3351"
               sodipodi:nodetypes="ccc" />
            <path
               inkscape:original-d="m -167.61449,408.65909 4.04479,2.96618 -43.95336,0.40448 39.90857,-3.37066 z"
               inkscape:path-effect="#path-effect3136"
               id="path3353"
               d="m -167.61449,408.65909 4.04479,2.96618 -43.95336,0.40448 39.90857,-3.37066"
               style="opacity:0.21844662;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
            <path
               style="opacity:0.46601939;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
               d="m -168.96275,407.58048 2.02239,1.21344 149.387488,0 0,-0.5393 -0.808957,-0.80896 -150.600921,0.13482 0,0"
               id="path3355"
               inkscape:path-effect="#path-effect3133"
               inkscape:original-d="m -168.96275,407.58048 2.02239,1.21344 149.387488,0 0,-0.5393 -0.808957,-0.80896 -150.600921,0.13482 z" />
            <path
               sodipodi:nodetypes="ccccc"
               id="path3357"
               d="m -23.563437,403.04975 c 6.617952,3.78032 6.331365,15.69399 0,19.55844 l 12.446275,0 c 10.0149371,-3.96861 9.2903485,-15.70939 0,-19.81244 l -12.446275,0.254 0,0 z"
               style="fill:url(#radialGradient4607);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
            <path
               style="opacity:0.35436892;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4161-0);enable-background:new"
               d="m -152.25,119.375 9.875,0 1.88756,2.33579 -2.88756,-0.58579 -8.375,0.125 -0.5,-1.875 z"
               id="path3359"
               transform="matrix(1.1400428,1.6520089e-8,-1.6520089e-8,1.1400428,152.17829,271.39568)"
               sodipodi:nodetypes="cccccc" />
            <path
               transform="matrix(1.07861,0,0,1.07861,143.2989,273.30165)"
               style="opacity:0.35436892;fill:#ab5f5f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4139-3);enable-background:new"
               d="m -142.50376,124.61748 c -1.125,2.625 -3.625,2.125 -3.625,2.125 0,0 -4.375,2.25 -2.25,4.875 2.125,2.625 4.75,5.125 4.125,5 -0.625,-0.125 2.625,-2.75 4,-3.75 1.375,-1 -1.25,-1.25 -1.25,-3.5 0,-2.25 -1,-4.875 -1,-4.75 z"
               id="path3361" />
            <path
               id="path3363"
               d="m -18.697859,422.53484 6.480741,0.21376 c 2.329496,0.0768 6.2805091,-3.46364 6.7390047,-4.53459 l -10.9753957,-0.12721 -2.24435,4.44804 z"
               style="opacity:0.25242716;fill:url(#linearGradient4609);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
               sodipodi:nodetypes="ccccc" />
            <path
               style="opacity:0.60194176;fill:url(#linearGradient4611);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
               d="m -18.555354,402.94035 7.339025,-0.21375 c 1.4368053,0.83175 2.9434509,1.38418 4.203893,2.92135 l -10.545387,0 -0.997531,-2.7076 0,0 z"
               id="path3365"
               sodipodi:nodetypes="ccccc" />
            <path
               style="fill:url(#linearGradient4613);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
               d="m -31.709628,402.45709 c 7.025623,4.01319 6.72138,16.66075 0,20.76324 l 13.212972,0 c 6.698481,-2.39766 6.534392,-18.18993 0,-21.0329 l -13.212972,0.26966 z"
               id="path3367"
               sodipodi:nodetypes="ccccc" />
            <path
               sodipodi:nodetypes="ccccc"
               transform="matrix(1.07861,0,0,1.07861,145.45206,277.60798)"
               id="path3369"
               d="m -164.25,115.75 c 6.51359,3.72071 6.23152,15.4465 0,19.25 l 12.25,0 c 6.21029,-2.22292 6.05816,-16.86423 0,-19.5 l -12.25,0.25 z"
               style="opacity:0.50485439;fill:none;stroke:url(#linearGradient4615);stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4171-9);enable-background:new"
               clip-path="url(#clipPath4177-6)" />
            <path
               sodipodi:nodetypes="ccccc"
               id="path3371"
               d="m -31.646324,402.32194 13.417034,5e-5 c 1.359383,0.78693 1.773354,1.44446 2.965887,2.8988 l -13.551042,-0.26973 c -0.851454,-0.71644 -1.802357,-1.73462 -2.831879,-2.62912 l 0,0 z"
               style="opacity:0.60194176;fill:url(#linearGradient4617);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
            <path
               id="path3373"
               d="m -20.11731,419.3295 -2.892757,3.16907 -143.470393,0.95283 2.01946,-1.26987 0.90028,-1.68585 143.44341,-1.16618 0,0 z"
               style="opacity:0.26020406;fill:url(#radialGradient4619);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
               sodipodi:nodetypes="cccccc" />
            <path
               transform="matrix(1.2250556,0,0,1.1400429,165.51384,269.9116)"
               sodipodi:nodetypes="ccc"
               id="path3375"
               d="m -143.625,117.25 c 5.91157,4.375 4.86784,12.5 -0.5,16.125 6.43828,-2.47285 8.53691,-11.85041 0.5,-16.125 z"
               style="opacity:0.23786406;fill:url(#radialGradient4621);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5558-4-0);enable-background:new" />
            <path
               transform="matrix(2.1273922,0,0,2.1273922,291.39885,146.9014)"
               d="m -138.875,122.875 c 0,0.82843 -0.67157,1.5 -1.5,1.5 -0.82843,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.67157,-1.5 1.5,-1.5 0.82843,0 1.5,0.67157 1.5,1.5 z"
               sodipodi:ry="1.5"
               sodipodi:rx="1.5"
               sodipodi:cy="122.875"
               sodipodi:cx="-140.375"
               id="path3377"
               style="opacity:0.45145629;fill:url(#radialGradient4623);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
               sodipodi:type="arc" />
            <path
               sodipodi:nodetypes="cc"
               transform="matrix(0.5394572,0,0,0.5394572,-212.50349,392.66071)"
               id="path3379"
               d="m 345.75,20 c 9.12719,8.666667 9.11896,24.833333 0,34.25"
               style="opacity:0.3;fill:none;stroke:url(#radialGradient4625);stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter1290);enable-background:new" />
            <path
               style="fill:none;stroke:url(#radialGradient4627);stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter1290);enable-background:new"
               d="m 345.75,20 c 9.12719,8.666667 9.11896,24.833333 0,34.25"
               id="path3381"
               transform="matrix(0.5394572,0,0,0.5394572,-211.58385,392.66071)"
               sodipodi:nodetypes="cc" />
            <path
               style="opacity:0.3;fill:none;stroke:url(#radialGradient4629);stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter1290);enable-background:new"
               d="m 345.75,20 c 9.12719,8.666667 9.11896,24.833333 0,34.25"
               id="path3383"
               transform="matrix(0.5394572,0,0,0.5394572,-210.7747,392.66071)"
               sodipodi:nodetypes="cc" />
            <path
               sodipodi:nodetypes="cc"
               transform="matrix(0.5394572,0,0,0.5394572,-209.96548,392.66071)"
               id="path3385"
               d="m 345.75,20 c 9.12719,8.666667 9.11896,24.833333 0,34.25"
               style="fill:none;stroke:url(#radialGradient4631);stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter1290);enable-background:new" />
            <path
               sodipodi:nodetypes="cc"
               transform="matrix(0.5394572,0,0,0.5394572,-209.22376,392.66071)"
               id="path3387"
               d="m 345.75,20 c 9.12719,8.666667 9.11896,24.833333 0,34.25"
               style="opacity:0.3;fill:none;stroke:url(#radialGradient4633);stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter1290);enable-background:new" />
            <path
               style="fill:none;stroke:url(#radialGradient4635);stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter1290);enable-background:new"
               d="m 345.75,20 c 9.12719,8.666667 9.11896,24.833333 0,34.25"
               id="path3389"
               transform="matrix(0.5394572,0,0,0.5394572,-208.41454,392.66071)"
               sodipodi:nodetypes="cc" />
            <path
               style="opacity:0.3;fill:none;stroke:url(#radialGradient4637);stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter1290);enable-background:new"
               d="m 345.75,20 c 9.12719,8.666667 9.11896,24.833333 0,34.25"
               id="path3391"
               transform="matrix(0.5394572,0,0,0.5394572,-207.41299,392.66071)"
               sodipodi:nodetypes="cc" />
            <path
               sodipodi:nodetypes="cc"
               transform="matrix(0.5394572,0,0,0.5394572,-206.47878,392.66071)"
               id="path3393"
               d="m 345.75,20 c 9.12719,8.666667 9.11896,24.833333 0,34.25"
               style="fill:none;stroke:url(#radialGradient4639);stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter1290);enable-background:new" />
            <path
               sodipodi:nodetypes="ccc"
               id="path3395"
               d="m -30.52855,402.77554 c 7.068466,5.81724 4.905453,16.0075 0.101173,19.99363 8.022055,-6.15987 6.035136,-16.349 -0.101173,-19.99363 l 0,0 z"
               style="fill:url(#radialGradient4641);fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
          </g>
          <g
             id="g3397">
            <path
               id="path3399"
               style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;fill:#fdd498;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn"
               d="m -60.140547,411.14398 0,3.53652 0.479528,0 0,-2.90714 0.0097,0 1.968064,2.90714 0.609404,0 0,-3.53652 -0.479529,0 0,2.90714 -0.0097,0 -1.948078,-2.90714 -0.629379,0" />
            <path
               id="path3401"
               style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;fill:#fdd498;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn"
               d="m -55.248177,414.74044 c 0.719292,0 1.258759,-0.56445 1.258759,-1.24378 0,-0.67434 -0.544461,-1.24377 -1.258759,-1.24377 -0.719293,0 -1.25876,0.56943 -1.25876,1.24377 0,0.72429 0.57943,1.24378 1.25876,1.24378 m 0,-2.06797 c 0.464536,0 0.779231,0.33467 0.779231,0.82419 0,0.49451 -0.314695,0.82419 -0.779231,0.82419 -0.469541,0 -0.779231,-0.32968 -0.779231,-0.82419 0,-0.48952 0.30969,-0.82419 0.779231,-0.82419" />
            <path
               id="path3403"
               style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;fill:#fdd498;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn"
               d="m -50.898165,411.05407 c -0.649366,0 -1.083938,0.32968 -1.168846,0.9191 l 0.51948,0.045 c 0.0549,-0.32468 0.279727,-0.54447 0.644372,-0.54447 0.314685,0 0.609393,0.20481 0.609393,0.56445 0,0.0999 -0.01499,0.37463 -0.389615,0.72429 l -1.418599,1.40861 0,0.5095 2.317717,0 0,-0.41959 -1.77825,0 1.163853,-1.12389 c 0.254746,-0.24476 0.614397,-0.6094 0.614397,-1.10391 0,-0.65936 -0.524484,-0.97904 -1.113902,-0.97904" />
            <path
               id="path3405"
               style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;fill:#fdd498;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn"
               d="m -46.471042,411.87826 0,-0.73428 -0.359652,0 0,0.73428 -0.7043,-0.23976 -0.104949,0.32468 0.709294,0.23976 -0.44456,0.58443 0.274733,0.20479 0.44456,-0.59941 0.454548,0.6094 0.274733,-0.2048 -0.439566,-0.59441 0.694312,-0.22478 -0.104949,-0.33467 -0.694312,0.23477" />
            <path
               id="path3407"
               style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;fill:#fdd498;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn"
               d="m -43.369963,411.14398 0,3.53652 0.479528,0 0,-1.61841 1.833195,0 0,1.61841 0.479529,0 0,-3.53652 -0.479529,0 0,1.46855 -1.833195,0 0,-1.46855 -0.479528,0" />
            <path
               id="path3409"
               style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;fill:#fdd498;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn"
               d="m -37.851179,413.6615 c 0,0.47953 -0.439566,0.59941 -0.76425,0.59941 l -0.7043,0 0,-1.22879 0.709305,0 c 0.349653,0 0.759245,0.12987 0.759245,0.62938 m -0.154846,-1.57844 c 0,0.38462 -0.294708,0.52947 -0.659354,0.52947 l -0.65435,0 0,-1.04897 0.754251,0 c 0.46954,0 0.559453,0.33967 0.559453,0.5195 m 0.664349,1.6134 c 0,-0.51448 -0.384622,-0.85415 -0.76425,-0.87913 l 0,-0.01 c 0.284721,-0.0949 0.609404,-0.30969 0.609404,-0.77923 0,-0.61939 -0.499515,-0.88412 -1.07395,-0.88412 l -1.228785,0 0,3.53651 1.213803,0 c 0.694312,0 1.243778,-0.35466 1.243778,-0.98404" />
            <path
               id="path3411"
               style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;fill:#7f4109;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn"
               d="m -60.140547,410.87433 0,3.53652 0.479528,0 0,-2.90714 0.0097,0 1.968064,2.90714 0.609404,0 0,-3.53652 -0.479529,0 0,2.90714 -0.0097,0 -1.948078,-2.90714 -0.629379,0" />
            <path
               id="path3413"
               style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;fill:#7f4109;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn"
               d="m -55.248177,414.47078 c 0.719292,0 1.258759,-0.56444 1.258759,-1.24377 0,-0.67434 -0.544461,-1.24377 -1.258759,-1.24377 -0.719293,0 -1.25876,0.56943 -1.25876,1.24377 0,0.72428 0.57943,1.24377 1.25876,1.24377 m 0,-2.06796 c 0.464536,0 0.779231,0.33467 0.779231,0.82419 0,0.49451 -0.314695,0.82418 -0.779231,0.82418 -0.469541,0 -0.779231,-0.32967 -0.779231,-0.82418 0,-0.48952 0.30969,-0.82419 0.779231,-0.82419" />
            <path
               id="path3415"
               style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;fill:#7f4109;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn"
               d="m -50.898165,410.78442 c -0.649366,0 -1.083938,0.32968 -1.168846,0.91909 l 0.51948,0.045 c 0.0549,-0.32468 0.279727,-0.54447 0.644372,-0.54447 0.314685,0 0.609393,0.20481 0.609393,0.56445 0,0.0999 -0.01499,0.37463 -0.389615,0.72428 l -1.418599,1.40861 0,0.50951 2.317717,0 0,-0.41959 -1.77825,0 1.163853,-1.12389 c 0.254746,-0.24476 0.614397,-0.60941 0.614397,-1.10392 0,-0.65935 -0.524484,-0.97903 -1.113902,-0.97903" />
            <path
               id="path3417"
               style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;fill:#7f4109;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn"
               d="m -46.471042,411.60861 0,-0.73428 -0.359652,0 0,0.73428 -0.7043,-0.23977 -0.104949,0.32469 0.709294,0.23976 -0.44456,0.58442 0.274733,0.2048 0.44456,-0.59942 0.454548,0.60941 0.274733,-0.2048 -0.439566,-0.59441 0.694312,-0.22478 -0.104949,-0.33467 -0.694312,0.23477" />
            <path
               id="path3419"
               style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;fill:#7f4109;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn"
               d="m -43.369963,410.87433 0,3.53652 0.479528,0 0,-1.61841 1.833195,0 0,1.61841 0.479529,0 0,-3.53652 -0.479529,0 0,1.46855 -1.833195,0 0,-1.46855 -0.479528,0" />
            <path
               id="path3421"
               style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;fill:#7f4109;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn"
               d="m -37.851179,413.39185 c 0,0.47953 -0.439566,0.59941 -0.76425,0.59941 l -0.7043,0 0,-1.22879 0.709305,0 c 0.349653,0 0.759245,0.12987 0.759245,0.62938 m -0.154846,-1.57845 c 0,0.38462 -0.294708,0.52948 -0.659354,0.52948 l -0.65435,0 0,-1.04897 0.754251,0 c 0.46954,0 0.559453,0.33967 0.559453,0.51949 m 0.664349,1.61341 c 0,-0.51449 -0.384622,-0.85415 -0.76425,-0.87913 l 0,-0.01 c 0.284721,-0.0949 0.609404,-0.30969 0.609404,-0.77923 0,-0.61939 -0.499515,-0.88413 -1.07395,-0.88413 l -1.228785,0 0,3.53652 1.213803,0 c 0.694312,0 1.243778,-0.35466 1.243778,-0.98404" />
            <text
               sodipodi:linespacing="125%"
               id="text3423"
               y="414.5318"
               x="-131.33987"
               style="font-size:4.94915724px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;fill:#7f4109;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new;font-family:RaveIn;-inkscape-font-specification:RaveIn"
               xml:space="preserve"><tspan
                 y="414.5318"
                 x="-131.33987"
                 id="tspan3425"
                 sodipodi:role="line">TAN-GO</tspan></text>
          </g>
        </g>
        <path
           clip-path="url(#clipPath3753)"
           inkscape:r_cy="true"
           inkscape:r_cx="true"
           id="path3749"
           d="m 121.10522,-166.87242 c 11.86625,15.12349 38.96948,47.45914 58.59105,65.95703 1.9134,-3.83542 4.1393,-5.54571 9.20659,-6.72212 -12.96146,-25.00449 -39.2903,-62.40845 -52.73176,-80.01533 -24.26282,-31.78169 -47.9505,-55.73795 -56.97849,-58.27384 -0.276822,-0.073 -0.64794,-0.16868 -0.895966,-0.1997 -0.174174,-0.0178 -0.429858,0.004 -0.588906,0.008 -0.249577,0.0135 -0.567114,0.0807 -0.776806,0.15118 -0.05115,0.0194 -0.210325,0.0274 -0.258933,0.0504 -0.04731,0.0248 -0.143157,0.11495 -0.187891,0.14344 -0.02172,0.0152 -0.07288,0.0556 -0.09395,0.0717 -0.02107,0.0161 -0.0736,0.0548 -0.09395,0.0717 -0.03929,0.0357 -0.151458,0.10436 -0.1879,0.14345 -0.03504,0.0408 -0.08465,0.19227 -0.116858,0.2365 -0.123222,0.1837 -0.271835,0.47226 -0.350578,0.70948 -0.04578,0.15237 -0.133964,0.39333 -0.162684,0.56604 -0.03546,0.24743 -0.04094,0.63066 -0.04352,0.91692 0.06668,9.37715 16.932376,38.54146 41.195202,70.32315 1.50969,1.97754 2.97395,3.94872 4.47534,5.86223 z"
           style="opacity:0.5;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999997;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4527);enable-background:new"
           sodipodi:nodetypes="cccscssssssssssscsc" />
        <g
           inkscape:transform-center-y="21.115046"
           inkscape:transform-center-x="-30.500259"
           transform="matrix(0.1109315,-0.672629,0.672629,0.1109315,21.52343,-116.50266)"
           id="g15085"
           style="display:inline;enable-background:new">
          <g
             id="g15087"
             transform="matrix(1.0527794,-0.1558331,0.1558331,1.0527794,-25.937057,8.416078)">
            <path
               inkscape:r_cy="true"
               inkscape:r_cx="true"
               sodipodi:nodetypes="cszsc"
               id="path15089"
               d="m 41.807677,189.10728 c 2.179836,2.75847 -4.462832,11.41106 -14.691059,19.48633 -10.228218,8.07526 -21.8874508,10.37962 -22.3677133,9.77185 -0.5352689,-0.67734 4.4628222,-11.41106 14.6910503,-19.48633 10.228217,-8.07526 20.187888,-12.53035 22.367722,-9.77185 z"
               style="fill:url(#linearGradient4643);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999958;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
            <path
               sodipodi:nodetypes="csccccc"
               id="path15091"
               d="m 9.0433258,209.60898 c 3.0124152,2.17641 4.2864102,3.94472 5.1065012,6.33777 0,0 0.898263,0.68474 0.898263,0.68474 l 13.332609,-6.31009 -10.584668,-12.62018 -8.9772088,10.34819 0.2245036,1.55957 z"
               style="fill:url(#linearGradient4645);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999958;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
            <path
               inkscape:r_cy="true"
               inkscape:r_cx="true"
               id="path15093"
               d="m 106.34431,116.5197 c -20.572519,16.69726 -64.519391,54.78461 -89.56597,82.24654 5.329261,2.54972 7.736893,5.57845 9.473376,12.53514 34.165047,-18.43128 85.114384,-55.56666 109.073544,-74.49126 43.24802,-34.16027 75.72456,-67.349981 79.0141,-79.8495 0.0943,-0.38316 0.21774,-0.89679 0.25484,-1.23931 0.0206,-0.240442 -0.0149,-0.592321 -0.024,-0.811421 -0.0242,-0.343646 -0.12417,-0.779727 -0.22601,-1.067112 -0.0279,-0.07005 -0.0425,-0.289235 -0.0753,-0.3557 -0.0353,-0.06464 -0.16167,-0.194677 -0.20196,-0.255679 -0.0214,-0.02959 -0.0783,-0.09918 -0.10098,-0.12784 -0.0226,-0.02867 -0.0771,-0.10019 -0.10097,-0.127841 -0.05,-0.05333 -0.14726,-0.206358 -0.20197,-0.255691 -0.057,-0.04736 -0.26689,-0.112289 -0.32858,-0.15567 -0.25597,-0.16564 -0.65703,-0.363889 -0.98574,-0.467014 -0.21103,-0.05963 -0.54511,-0.175678 -0.78379,-0.211332 -0.3418,-0.04324 -0.87006,-0.04208 -1.26463,-0.03912 -12.92153,0.305109 -52.73062,24.211576 -95.97865,58.37185 -2.691,2.12553 -5.37428,4.18832 -7.97723,6.30096 z"
               style="fill:url(#linearGradient4647);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999997;marker:none;visibility:visible;display:inline;overflow:visible"
               sodipodi:nodetypes="cccscssssssssssscsc" />
            <path
               transform="matrix(1.1514601,0,0,1.1514601,-18.529918,-15.815705)"
               sodipodi:nodetypes="ccc"
               id="path15095"
               d="m 24.034719,195.06579 c 2.093797,1.7069 3.969173,3.63222 5.126524,6.27557 -0.08942,-3.45061 -2.595787,-5.50314 -5.126524,-6.27557 z"
               style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999958;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5445);enable-background:accumulate" />
          </g>
          <g
             id="g15097"
             transform="matrix(1.0527794,-0.1558331,0.1558331,1.0527794,-25.937057,8.416078)">
            <g
               transform="matrix(1.1514601,0,0,1.1514601,-14.865994,-12.965986)"
               id="g15099">
              <path
                 transform="matrix(4.0797413,-2.5703049,2.6121474,4.0921358,-163.81474,-60.937891)"
                 sodipodi:end="6.0686506"
                 sodipodi:start="4.0314577"
                 inkscape:r_cy="true"
                 inkscape:r_cx="true"
                 d="m 31.964436,57.726573 c 5.605353,-1.9122 13.830981,-1.549065 18.372454,0.811084 1.284228,0.667398 2.179353,1.452167 2.613659,2.291432"
                 sodipodi:ry="5.5"
                 sodipodi:rx="13.0625"
                 sodipodi:cy="62"
                 sodipodi:cx="40.1875"
                 id="path15101"
                 style="fill:none;stroke:#5e5e5e;stroke-width:0.49920878;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
                 sodipodi:type="arc"
                 sodipodi:open="true" />
              <path
                 sodipodi:open="true"
                 sodipodi:type="arc"
                 style="fill:none;stroke:#ffffff;stroke-width:0.24960439;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible"
                 id="path15103"
                 sodipodi:cx="40.1875"
                 sodipodi:cy="62"
                 sodipodi:rx="13.0625"
                 sodipodi:ry="5.5"
                 d="m 31.964436,57.726573 c 5.605353,-1.9122 13.830981,-1.549065 18.372454,0.811084 1.284228,0.667398 2.179353,1.452167 2.613659,2.291432"
                 inkscape:r_cx="true"
                 inkscape:r_cy="true"
                 sodipodi:start="4.0314577"
                 sodipodi:end="6.0686506"
                 transform="matrix(4.0797413,-2.5703049,2.6121474,4.0921358,-163.81474,-61.187891)" />
            </g>
            <path
               transform="matrix(1.1514601,0,0,1.1514601,-18.529918,-15.815705)"
               sodipodi:nodetypes="cccc"
               id="path15105"
               d="m 122.75,103.875 c 8.41889,4.98487 14.62041,12.33016 17.875,22.8125 l -4.25,-16.5625 -13.625,-6.25 z"
               style="opacity:0.62068942;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999958;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5935);enable-background:accumulate" />
            <path
               sodipodi:nodetypes="cccscssssssssssssssscsc"
               inkscape:r_cy="true"
               inkscape:r_cx="true"
               id="path15107"
               d="m 136.93892,90.693146 c -5.18533,4.237569 -10.14844,8.600612 -14.81647,12.741074 12.98293,6.32043 17.88812,16.23094 21.20567,26.84708 7.26718,-5.09528 14.89165,-10.72443 22.53728,-16.76347 36.49053,-28.822732 63.08875,-57.836142 64.83395,-69.687064 0.0135,-0.103985 0.0417,-0.354454 0.0513,-0.45572 0.008,-0.09989 0.0477,-0.358573 0.0513,-0.455709 0.004,-0.239391 -0.003,-0.589611 -0.024,-0.811422 -0.0105,-0.08731 -0.0608,-0.271264 -0.0753,-0.355699 -0.0498,-0.248992 -0.16474,-0.616601 -0.25165,-0.839252 -0.0311,-0.07273 -0.0401,-0.285953 -0.0753,-0.3557 -0.056,-0.102365 -0.23746,-0.287976 -0.30294,-0.383531 -0.0229,-0.03109 -0.077,-0.09752 -0.10098,-0.12784 -0.024,-0.03032 -0.076,-0.09838 -0.10099,-0.127852 -0.0778,-0.08584 -0.21631,-0.305335 -0.30293,-0.383531 -0.0597,-0.05042 -0.26501,-0.108604 -0.32858,-0.155659 -0.19648,-0.136123 -0.52745,-0.33312 -0.75815,-0.439193 -0.0788,-0.0337 -0.24606,-0.125267 -0.32858,-0.155672 -0.2109,-0.07189 -0.54996,-0.159863 -0.78379,-0.21132 -0.0953,-0.01897 -0.35626,-0.03993 -0.4552,-0.05566 -0.10073,-0.01412 -0.3509,-0.04475 -0.4552,-0.05565 -11.93289,-1.047025 -46.31776,18.108229 -82.80829,46.930966 -2.2705,1.79341 -4.52064,3.510813 -6.71101,5.300827 z"
               style="fill:url(#linearGradient4649);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999958;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
            <path
               sodipodi:nodetypes="ccsssssssssssssssssssc"
               inkscape:r_cy="true"
               inkscape:r_cx="true"
               id="path15109"
               d="m 201.02455,47.132413 c 8.48887,3.300742 14.0462,9.114225 14.94495,18.920787 11.07039,-11.289627 17.71082,-21.259437 17.08122,-26.363356 -0.005,-0.03252 -0.0184,-0.156775 -0.0237,-0.188889 -0.006,-0.03171 -0.0172,-0.157594 -0.0237,-0.188891 -0.007,-0.0309 -0.016,-0.158423 -0.0237,-0.1889 -0.0499,-0.180361 -0.17729,-0.468302 -0.24934,-0.633471 -0.0126,-0.02711 -0.0877,-0.101179 -0.10097,-0.12784 -0.0139,-0.02624 -0.009,-0.163095 -0.0237,-0.18889 -0.0151,-0.02537 -0.0852,-0.102923 -0.10098,-0.127851 -0.0164,-0.02448 -0.084,-0.103792 -0.10097,-0.12784 -0.0177,-0.0236 -0.0827,-0.104694 -0.10099,-0.12784 -0.0183,-0.02316 -0.0821,-0.105205 -0.10098,-0.127839 -0.0195,-0.02214 -0.081,-0.10624 -0.10097,-0.127852 -0.0206,-0.0211 -0.0798,-0.107249 -0.10098,-0.12784 -0.0217,-0.02009 -0.15596,-0.04722 -0.17827,-0.0668 -0.0229,-0.01907 -0.0775,-0.109281 -0.10098,-0.127841 -0.144,-0.108348 -0.39459,-0.299 -0.5585,-0.389271 -0.0279,-0.01454 -0.14986,-0.05273 -0.17828,-0.06679 -0.0289,-0.01356 -0.14878,-0.05373 -0.17827,-0.06679 -0.03,-0.01256 -0.14771,-0.05472 -0.17827,-0.0668 -4.81932,-1.794571 -16.05602,2.356202 -29.60267,10.510808 z"
               style="fill:url(#linearGradient4651);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999958;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
            <path
               transform="matrix(3.4896927,-2.2130278,2.2343552,3.5233217,-110.94987,-33.315169)"
               sodipodi:end="9.0633414"
               sodipodi:start="5.9815064"
               inkscape:r_cy="true"
               inkscape:r_cx="true"
               d="m 36.364517,54.473244 c 0.492291,0.823974 -0.391117,1.699791 -1.973146,1.956192 -1.515586,0.245633 -3.136253,-0.166118 -3.69754,-0.939407 L 33.5,54.9375 z"
               sodipodi:ry="1.5625"
               sodipodi:rx="3"
               sodipodi:cy="54.9375"
               sodipodi:cx="33.5"
               id="path15111"
               style="fill:url(#radialGradient4653);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2773194;marker:none;visibility:visible;display:inline;overflow:visible"
               sodipodi:type="arc" />
            <path
               transform="matrix(1.1514601,0,0,1.1514601,-18.529918,-15.815705)"
               sodipodi:nodetypes="ccc"
               id="path15113"
               d="m 189.81528,54.401344 c 8.12445,2.798891 12.3802,8.69275 13.43503,17.147339 -2.07081,-7.794246 -5.7268,-13.486942 -13.43503,-17.147339 z"
               style="opacity:0.33333333;fill:url(#radialGradient4655);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999958;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5897);enable-background:accumulate" />
            <path
               style="fill:url(#radialGradient4657);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999958;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
               d="m 200.8984,46.909586 c 9.35498,3.222811 14.25531,10.009355 15.4699,19.744477 -2.38446,-8.974764 -6.59418,-15.529676 -15.4699,-19.744477 z"
               id="path15115"
               sodipodi:nodetypes="ccc" />
            <path
               transform="matrix(1.1514601,0,0,1.1514601,-18.529918,-15.815705)"
               sodipodi:nodetypes="cccc"
               id="path15117"
               d="m 122.1527,94.779654 c 4.94788,1.424289 9.39042,-2.348074 11.40209,-4.331029 0,0 -6.71618,4.530179 -9.28077,2.563262 l -2.12132,1.767767 z"
               style="opacity:0.62068942;fill:url(#linearGradient4659);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999958;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5973);enable-background:accumulate" />
          </g>
          <path
             style="opacity:0.5;fill:url(#radialGradient4661);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999958;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5694);enable-background:accumulate"
             d="m 192.95165,55.48556 -68.01866,49.74959 c -32.971125,25.90007 -80.111593,72.74003 -80.111593,72.74003 0,0 46.122945,-44.13584 82.624273,-71.26478 l 67.62829,-50.087602 c 7.13888,-6.189151 18.7574,-10.483529 18.7574,-10.483529 0,0 -13.66863,4.53394 -20.87971,9.346291 z"
             id="path15119"
             transform="matrix(1.2122335,-0.1794355,0.1794355,1.2122335,-47.11122,-3.7500704)"
             sodipodi:nodetypes="ccccccc" />
          <path
             style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999958;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5734);enable-background:accumulate"
             d="m 213.07231,47.704238 c 0,0 -6.61199,9.296309 -12.09171,13.243116 0,0 -9.42122,11.214382 -64.9806,55.052646 L 98.433144,145.95202 137.5,117.5 c 25.08234,-18.002565 64.4806,-55.052646 64.4806,-55.052646 6.68587,-5.70282 11.09171,-14.743116 11.09171,-14.743116 z"
             id="path15121"
             transform="matrix(1.2122335,-0.1794355,0.1794355,1.2122335,-45.651476,0.8630097)"
             sodipodi:nodetypes="ccccccc" />
          <path
             style="opacity:0.28735633;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999958;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5448);enable-background:accumulate"
             d="m 167,101 c 0,0 33.38727,-36.759733 44.75,-56.25 l -1,-2.37868 C 198.84282,59.810397 167,101 167,101 z"
             id="path15123"
             sodipodi:nodetypes="cccc" />
        </g>
      </g>
      <g
         style="display:inline;enable-background:new"
         id="g4060"
         transform="translate(0,-8)">
        <g
           transform="matrix(0.9956678,0,0,0.9833896,0.6584864,2.3187127)"
           id="g9266">
          <path
             style="opacity:0.6;fill:url(#radialGradient5436);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
             d="m 96.18806,152.11633 c 4.07186,26.21919 13.15569,86.07117 13.15569,86.07117 0.0413,0.26874 0.0622,0.54061 0.0625,0.8125 0,1.23009 0.50248,2.59967 2.25,4.40625 1.74752,1.80658 4.67975,3.80129 8.5625,5.5 7.76551,3.39741 19.17174,5.6875 31.78125,5.6875 12.6095,0 24.01574,-2.29009 31.78125,-5.6875 3.88276,-1.69871 6.81498,-3.69342 8.5625,-5.5 1.74752,-1.80658 2.25,-3.17616 2.25,-4.40625 3.2e-4,-0.27189 0.0212,-0.54376 0.0625,-0.8125 0,0 9.08383,-59.85197 13.15569,-86.07117 -3.34003,2.0755 -6.97402,4.01045 -11.09306,5.60955 -12.18991,4.7324 -27.71712,7.46891 -44.71888,7.46891 -17.00176,0 -32.52897,-2.73651 -44.71888,-7.46891 -4.11904,-1.5991 -7.753036,-3.53405 -11.09306,-5.60955 z"
             id="path15319"
             sodipodi:nodetypes="ccsssssssccsssc"
             transform="matrix(1.07259,0,0,1.07259,-11.033684,-13.901493)" />
          <path
             transform="matrix(1,0,0,1.0098646,0,-5.1060876)"
             style="opacity:0.8;fill:url(#linearGradient4071);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4056);enable-background:new"
             d="m 108,156.82094 c 2.97816,25.69573 10.05072,89.49522 11.34375,100.60208 7.52203,3.0418 17.29106,5.05984 28.09375,5.5041 -0.0801,-7.05841 -0.72482,-67.01644 -1.09375,-98.58079 C 131.53091,163.7802 118.18415,161.03298 108,156.82094 z"
             id="path15283"
             sodipodi:nodetypes="ccccc" />
        </g>
        <path
           id="path3961"
           d="m 152,108 c -35.328,0 -64.000002,12.544 -64,28 0,15.456 28.67199,28 64,28 35.328,0 64,-12.544 64,-28 0,-15.456 -28.67201,-28 -64,-28 z m 0,3 c 33.12,0 60,10.976 60,24.5 1e-5,13.52401 -26.87999,24.5 -60,24.5 -33.12001,0 -60,-10.976 -60,-24.5 0,-13.524 26.87999,-24.5 60,-24.5 z"
           style="opacity:0.7;fill:url(#radialGradient4075);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
        <path
           clip-path="url(#clipPath3988)"
           sodipodi:type="arc"
           style="opacity:0.4;fill:url(#radialGradient4077);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4014);enable-background:new"
           id="path3974"
           sodipodi:cx="158.25"
           sodipodi:cy="134.5"
           sodipodi:rx="61.25"
           sodipodi:ry="26.5"
           d="m 219.5,134.5 c 0,14.63555 -27.42256,26.5 -61.25,26.5 C 124.42256,161 97,149.13555 97,134.5 97,119.86445 124.42256,108 158.25,108 c 33.82744,0 61.25,11.86445 61.25,26.5 z"
           transform="matrix(0.979592,0,0,0.9245285,-3.02042,12.15092)" />
        <path
           sodipodi:type="arc"
           style="opacity:0.1;fill:none;stroke:url(#radialGradient4079);stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4040);enable-background:new"
           id="path4018"
           sodipodi:cx="158.25"
           sodipodi:cy="134.5"
           sodipodi:rx="61.25"
           sodipodi:ry="26.5"
           d="m 219.5,134.5 c 0,14.63555 -27.42256,26.5 -61.25,26.5 C 124.42256,161 97,149.13555 97,134.5 97,119.86445 124.42256,108 158.25,108 c 33.82744,0 61.25,11.86445 61.25,26.5 z"
           transform="matrix(1.044898,0,0,1.0566038,-13.3551,-5.11321)" />
      </g>
    </g>
    <g
       id="g256"
       style="display:inline;enable-background:new"
       transform="translate(20,30)" />
    <rect
       style="fill:url(#pattern3141);stroke:none"
       width="0"
       height="0"
       x="-203.23132"
       y="327.6438"
       id="rect2975"
       transform="matrix(-0.4439985,-0.8960275,-0.8960275,0.4439985,0,0)" />
    <path
       sodipodi:type="inkscape:offset"
       inkscape:radius="0"
       inkscape:original="M -117.5625 410.84375 C -118.12637 410.84375 -118.55601 411.01348 -118.875 411.34375 C -119.19238 411.67241 -119.375 412.12911 -119.375 412.71875 C -119.375 413.30679 -119.19238 413.7635 -118.875 414.09375 C -118.55601 414.42241 -118.12637 414.59376 -117.5625 414.59375 C -117.30473 414.59375 -117.07091 414.56765 -116.84375 414.5 C -116.61659 414.43072 -116.40725 414.32122 -116.21875 414.1875 L -116.21875 412.65625 L -117.5 412.65625 L -117.5 413.0625 L -116.6875 413.0625 L -116.6875 414.03125 C -116.79544 414.09408 -116.92718 414.12564 -117.0625 414.15625 C -117.19783 414.18525 -117.35887 414.18751 -117.53125 414.1875 C -117.97268 414.1875 -118.30893 414.09024 -118.53125 413.84375 C -118.75197 413.59726 -118.84375 413.20529 -118.84375 412.71875 C -118.84375 412.2306 -118.75197 411.87149 -118.53125 411.625 C -118.30893 411.37851 -117.97268 411.25002 -117.53125 411.25 C -117.30732 411.25 -117.078 411.29769 -116.875 411.375 C -116.67201 411.45233 -116.49294 411.56571 -116.3125 411.71875 L -116.3125 411.1875 C -116.49133 411.07473 -116.69359 410.99551 -116.90625 410.9375 C -117.1173 410.87951 -117.32729 410.84377 -117.5625 410.84375 z M -113.84375 410.84375 C -114.35123 410.84375 -114.75801 411.03507 -115.0625 411.375 C -115.36538 411.71332 -115.53125 412.14844 -115.53125 412.71875 C -115.53125 413.28906 -115.36538 413.75544 -115.0625 414.09375 C -114.75801 414.43207 -114.35123 414.59376 -113.84375 414.59375 C -113.33788 414.59375 -112.95913 414.43208 -112.65625 414.09375 C -112.35338 413.75382 -112.18751 413.28745 -112.1875 412.71875 C -112.1875 412.14844 -112.35337 411.71332 -112.65625 411.375 C -112.95913 411.03507 -113.33788 410.84377 -113.84375 410.84375 z M -131.34375 410.9375 L -131.34375 411.34375 L -130.0625 411.34375 L -130.0625 414.53125 L -129.59375 414.53125 L -129.59375 411.34375 L -128.3125 411.34375 L -128.3125 410.9375 L -131.34375 410.9375 z M -127.28125 410.9375 L -128.65625 414.53125 L -128.15625 414.53125 L -127.8125 413.59375 L -126.1875 413.59375 L -125.875 414.53125 L -125.34375 414.53125 L -126.71875 410.9375 L -127.28125 410.9375 z M -124.84375 410.9375 L -124.84375 414.53125 L -124.34375 414.53125 L -124.34375 411.5 L -122.75 414.53125 L -122.09375 414.53125 L -122.09375 410.9375 L -122.5625 410.9375 L -122.5625 413.9375 L -124.1875 410.9375 L -124.84375 410.9375 z M -113.84375 411.25 C -113.48932 411.25 -113.20621 411.39203 -113 411.65625 C -112.79218 411.92047 -112.71876 412.26283 -112.71875 412.71875 C -112.71875 413.17307 -112.79217 413.5483 -113 413.8125 C -113.20622 414.07671 -113.48932 414.21874 -113.84375 414.21875 C -114.19818 414.21875 -114.47807 414.07672 -114.6875 413.8125 C -114.89533 413.54829 -115 413.17307 -115 412.71875 C -115 412.26282 -114.89533 411.92046 -114.6875 411.65625 C -114.47806 411.39204 -114.19818 411.25001 -113.84375 411.25 z M -127 411.40625 L -126.34375 413.1875 L -127.65625 413.1875 L -127 411.40625 z M -121.375 412.96875 L -121.375 413.375 L -120.0625 413.375 L -120.0625 412.96875 L -121.375 412.96875 z "
       xlink:href="#text6369"
       style="font-size:4.58845854px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;opacity:0.47572817;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new;font-family:RaveIn;-inkscape-font-specification:RaveIn"
       id="path6883"
       inkscape:href="#text6369"
       d="M -241.84375,127.53125 C -242.36653,127.53125 -242.79802,127.69381 -243.09375,128 C -243.388,128.3047 -243.53125,128.73458 -243.53125,129.28125 C -243.53125,129.82643 -243.388,130.22505 -243.09375,130.53125 C -242.79801,130.83595 -242.36653,131 -241.84375,131 C -241.60477,131 -241.39811,130.96899 -241.1875,130.90625 C -240.9769,130.84202 -240.76851,130.74897 -240.59375,130.625 L -240.59375,129.1875 L -241.78125,129.1875 L -241.78125,129.5625 L -241.0625,129.5625 L -241.0625,130.46875 C -241.16258,130.527 -241.24954,130.56537 -241.375,130.59375 C -241.50047,130.62064 -241.65268,130.625 -241.8125,130.625 C -242.22176,130.625 -242.54388,130.50978 -242.75,130.28125 C -242.95463,130.05272 -243.03125,129.73233 -243.03125,129.28125 C -243.03125,128.82868 -242.95463,128.47853 -242.75,128.25 C -242.54388,128.02148 -242.22176,127.90625 -241.8125,127.90625 C -241.60489,127.90625 -241.40695,127.92831 -241.21875,128 C -241.03055,128.0717 -240.85479,128.20186 -240.6875,128.34375 L -240.6875,127.84375 C -240.8533,127.7392 -241.02159,127.67877 -241.21875,127.625 C -241.41442,127.57123 -241.62568,127.53125 -241.84375,127.53125 z M -238.40625,127.53125 C -238.87675,127.53125 -239.24895,127.68484 -239.53125,128 C -239.81205,128.31367 -239.96875,128.75251 -239.96875,129.28125 C -239.96875,129.81 -239.81205,130.21758 -239.53125,130.53125 C -239.24895,130.84491 -238.87675,131 -238.40625,131 C -237.93725,131 -237.56206,130.84491 -237.28125,130.53125 C -237.00045,130.21609 -236.875,129.80851 -236.875,129.28125 C -236.875,128.7525 -237.00045,128.31366 -237.28125,128 C -237.56206,127.68485 -237.93725,127.53125 -238.40625,127.53125 z M -254.625,127.59375 L -254.625,127.96875 L -253.4375,127.96875 L -253.4375,130.9375 L -253,130.9375 L -253,127.96875 L -251.8125,127.96875 L -251.8125,127.59375 L -254.625,127.59375 z M -250.875,127.59375 L -252.125,130.9375 L -251.65625,130.9375 L -251.34375,130.09375 L -249.84375,130.09375 L -249.53125,130.9375 L -249.0625,130.9375 L -250.34375,127.59375 L -250.875,127.59375 z M -248.59375,127.59375 L -248.59375,130.9375 L -248.15625,130.9375 L -248.15625,128.125 L -246.65625,130.9375 L -246.0625,130.9375 L -246.0625,127.59375 L -246.5,127.59375 L -246.5,130.375 L -247.96875,127.59375 L -248.59375,127.59375 z M -238.40625,127.90625 C -238.07765,127.90625 -237.81619,128.03629 -237.625,128.28125 C -237.43232,128.52621 -237.34375,128.85855 -237.34375,129.28125 C -237.34375,129.70246 -237.43232,130.03629 -237.625,130.28125 C -237.81619,130.52621 -238.07765,130.625 -238.40625,130.625 C -238.73485,130.625 -238.99333,130.5262 -239.1875,130.28125 C -239.38018,130.03629 -239.5,129.70246 -239.5,129.28125 C -239.5,128.85855 -239.38018,128.52621 -239.1875,128.28125 C -238.99333,128.0363 -238.73485,127.90625 -238.40625,127.90625 z M -250.59375,128.03125 L -250,129.6875 L -251.21875,129.6875 L -250.59375,128.03125 z M -245.375,129.5 L -245.375,129.875 L -244.1875,129.875 L -244.1875,129.5 L -245.375,129.5 z"
       transform="matrix(1.07861,0,0,1.07861,143.2989,273.55316)" />
  </g>
</svg>