summaryrefslogtreecommitdiff
path: root/src/system-software-install.svg
blob: cd915fbec62acebe30c3b27c389c9b8d9d99cb2e (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
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://creativecommons.org/ns#"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   height="300"
   id="svg11300"
   inkscape:export-filename="/home/jimmac/Desktop/wi-fi.png"
   inkscape:export-xdpi="90.000000"
   inkscape:export-ydpi="90.000000"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   inkscape:version="0.46"
   sodipodi:docname="system-software-install.svg"
   sodipodi:version="0.32"
   style="display:inline;enable-background:new"
   version="1.0"
   width="400">
  <metadata
     id="metadata106">
    <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:title>Package Manager</dc:title>
        <dc:subject>
          <rdf:Bag />
        </dc:subject>
        <dc:description>Based of Jakub Steiner work</dc:description>
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <sodipodi:namedview
     bordercolor="#666666"
     borderopacity="0.25490196"
     fill="#f57900"
     gridtolerance="10000"
     guidetolerance="10000"
     height="300px"
     id="base"
     inkscape:current-layer="layer6"
     inkscape:cx="-7.72246"
     inkscape:cy="74.933842"
     inkscape:document-units="px"
     inkscape:grid-bbox="true"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:showpageshadow="false"
     inkscape:snap-bbox="true"
     inkscape:snap-nodes="false"
     inkscape:window-height="879"
     inkscape:window-width="1278"
     inkscape:window-x="0"
     inkscape:window-y="25"
     inkscape:zoom="1"
     objecttolerance="10000"
     pagecolor="#ffffff"
     showgrid="false"
     stroke="#ef2929"
     width="400px"
     inkscape:bbox-paths="false"
     inkscape:object-paths="true"
     inkscape:snap-global="false">
    <inkscape:grid
       enabled="true"
       id="grid5883"
       spacingx="1px"
       spacingy="1px"
       type="xygrid"
       visible="true"
       empspacing="4" />
  </sodipodi:namedview>
  <defs
     id="defs3">
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3867">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop3869" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop3871" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3849">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop3851" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop3853" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3831">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop3833" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop3835" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3823">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop3825" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop3827" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient5538">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop5540" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop5542" />
    </linearGradient>
    <filter
       inkscape:collect="always"
       id="filter5150">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.62890625"
         id="feGaussianBlur5152" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient5141">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop5143" />
      <stop
         style="stop-color:#8f5902;stop-opacity:0"
         offset="1"
         id="stop5145" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4989">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop4991" />
      <stop
         style="stop-color:#8f5902;stop-opacity:0"
         offset="1"
         id="stop4993" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4690">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop4692" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop4694" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4680">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop4682" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop4684" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4606">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop4608" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop4610" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3599">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop3601" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop3603" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3589">
      <stop
         style="stop-color:#8f5902;stop-opacity:1;"
         offset="0"
         id="stop3591" />
      <stop
         style="stop-color:#8f5902;stop-opacity:0;"
         offset="1"
         id="stop3593" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3571">
      <stop
         style="stop-color:#8f5902;stop-opacity:1;"
         offset="0"
         id="stop3573" />
      <stop
         style="stop-color:#8f5902;stop-opacity:0;"
         offset="1"
         id="stop3575" />
    </linearGradient>
    <linearGradient
       id="linearGradient3537">
      <stop
         style="stop-color:#8f5902;stop-opacity:1"
         offset="0"
         id="stop3539" />
      <stop
         id="stop3545"
         offset="0.13829787"
         style="stop-color:#8f5902;stop-opacity:0" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop3541" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3514">
      <stop
         style="stop-color:#8f5902;stop-opacity:1"
         offset="0"
         id="stop3516" />
      <stop
         style="stop-color:#8f5902;stop-opacity:0"
         offset="1"
         id="stop3519" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient10756">
      <stop
         style="stop-color:#a3680a;stop-opacity:1;"
         offset="0"
         id="stop10758" />
      <stop
         style="stop-color:#a3680a;stop-opacity:0;"
         offset="1"
         id="stop10760" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient10748">
      <stop
         style="stop-color:#fdedd4;stop-opacity:1"
         offset="0"
         id="stop10750" />
      <stop
         style="stop-color:#f5c67a;stop-opacity:0;"
         offset="1"
         id="stop10752" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3822">
      <stop
         style="stop-color:#eeeeec;stop-opacity:1;"
         offset="0"
         id="stop3824" />
      <stop
         style="stop-color:#eeeeec;stop-opacity:0;"
         offset="1"
         id="stop3826" />
    </linearGradient>
    <linearGradient
       id="linearGradient3786"
       inkscape:collect="always">
      <stop
         id="stop3788"
         offset="0"
         style="stop-color:#e9b96e;stop-opacity:1" />
      <stop
         id="stop3790"
         offset="1"
         style="stop-color:#c17d11;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3778">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop3780" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop3782" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3768">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop3770" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop3772" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3740">
      <stop
         style="stop-color:#eeeeec;stop-opacity:1;"
         offset="0"
         id="stop3742" />
      <stop
         style="stop-color:#e9b96e;stop-opacity:1"
         offset="1"
         id="stop3744" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4371">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop4373" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop4375" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4290">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop4292" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop4294" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4272">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop4274" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop4276" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4256">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop4258" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop4260" />
    </linearGradient>
    <linearGradient
       id="linearGradient4248"
       inkscape:collect="always">
      <stop
         id="stop4250"
         offset="0"
         style="stop-color:#e9b96e;stop-opacity:1;" />
      <stop
         id="stop4252"
         offset="1"
         style="stop-color:#c17d11;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4240">
      <stop
         style="stop-color:#eeeeec;stop-opacity:1;"
         offset="0"
         id="stop4242" />
      <stop
         style="stop-color:#e9b96e;stop-opacity:1"
         offset="1"
         id="stop4244" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4193">
      <stop
         style="stop-color:#e9b96e;stop-opacity:1;"
         offset="0"
         id="stop4195" />
      <stop
         style="stop-color:#eeeeec;stop-opacity:1"
         offset="1"
         id="stop4197" />
    </linearGradient>
    <linearGradient
       id="linearGradient4154">
      <stop
         id="stop4156"
         offset="0"
         style="stop-color:#eeeeec;stop-opacity:1" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0"
         offset="1"
         id="stop4158" />
    </linearGradient>
    <linearGradient
       id="linearGradient4146">
      <stop
         style="stop-color:#eeeeec;stop-opacity:1"
         offset="0"
         id="stop4148" />
      <stop
         id="stop4150"
         offset="1"
         style="stop-color:#e9b96e;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3757">
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0"
         id="stop3759" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="1"
         id="stop3761" />
    </linearGradient>
    <linearGradient
       id="linearGradient3737">
      <stop
         id="stop3739"
         offset="0"
         style="stop-color:#faefde;stop-opacity:1" />
      <stop
         style="stop-color:#e9b96e;stop-opacity:1"
         offset="0.68321055"
         id="stop3741" />
      <stop
         id="stop3743"
         offset="1"
         style="stop-color:#e9b96e;stop-opacity:0" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3712">
      <stop
         style="stop-color:#e9b96e;stop-opacity:1;"
         offset="0"
         id="stop3714" />
      <stop
         style="stop-color:#e9b96e;stop-opacity:0;"
         offset="1"
         id="stop3716" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3582">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop3584" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop3586" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3415">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop3417" />
      <stop
         style="stop-color:#000000;stop-opacity:0;"
         offset="1"
         id="stop3419" />
    </linearGradient>
    <mask
       id="mask7322"
       maskUnits="userSpaceOnUse">
      <path
         style="opacity:1;fill:url(#pattern7326);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline"
         d="M 36,91 C 32.676,91 30,93.676 30,97 L 30,226 L 30,230 C 30,233.324 32.676,235.99999 36,236 L 224.03125,236 C 227.35525,236 230.03125,233.32399 230.03125,230 L 230.03125,97 C 230.03125,93.676 227.35525,91 224.03125,91 L 36,91 z "
         id="path7324"
         sodipodi:nodetypes="cccccccccc" />
    </mask>
    <pattern
       id="pattern7312"
       patternTransform="translate(-110,111)"
       height="15"
       width="15"
       patternUnits="userSpaceOnUse">
      <rect
         style="fill:url(#pattern7315);stroke:none"
         width="15"
         height="15"
         x="0"
         y="0"
         id="rect7290" />
    </pattern>
    <linearGradient
       y2="106"
       x2="-70"
       y1="106"
       x1="-110"
       gradientTransform="matrix(0.75,0,0,0.75,82.5,-64.5)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient7288"
       xlink:href="#linearGradient7253"
       inkscape:collect="always" />
    <pattern
       id="pattern7285"
       patternTransform="translate(-110,96)"
       height="30"
       width="30"
       patternUnits="userSpaceOnUse">
      <rect
         style="opacity:1;fill:url(#linearGradient7288);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
         id="rect7243"
         width="30"
         height="30"
         x="0"
         y="0" />
    </pattern>
    <filter
       id="filter7510"
       inkscape:collect="always">
      <feGaussianBlur
         id="feGaussianBlur7512"
         stdDeviation="2.4684546"
         inkscape:collect="always" />
    </filter>
    <filter
       id="filter7408"
       height="1.2543157"
       y="-0.12715783"
       width="1.1317589"
       x="-0.065879469"
       inkscape:collect="always">
      <feGaussianBlur
         id="feGaussianBlur7410"
         stdDeviation="3.1292748"
         inkscape:collect="always" />
    </filter>
    <mask
       id="mask6971"
       maskUnits="userSpaceOnUse">
      <path
         sodipodi:nodetypes="ccsssccccccc"
         id="path6973"
         d="M 33.40625,86 L 30.46875,94.65625 C 30.385224,94.841074 30.334679,95.026518 30.28125,95.21875 C 30.222987,95.406856 30.164832,95.585605 30.125,95.78125 C 30.123348,95.79094 30.126613,95.802801 30.125,95.8125 C 30.049278,96.194445 30,96.595168 30,97 L 30,106 L 230.03125,106 L 230.03125,97 C 230.03125,96.169 229.86531,95.374562 229.5625,94.65625 L 226.65625,86 L 33.40625,86 z "
         style="opacity:1;fill:url(#linearGradient6975);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline" />
    </mask>
    <linearGradient
       y2="86"
       x2="90.25"
       y1="106"
       x1="90.25"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6975"
       xlink:href="#linearGradient5986"
       inkscape:collect="always" />
    <linearGradient
       id="linearGradient5967">
      <stop
         id="stop5969"
         offset="0"
         style="stop-color:#c17d11;stop-opacity:1;" />
      <stop
         id="stop5971"
         offset="1"
         style="stop-color:#e9b96e;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient5986">
      <stop
         id="stop5988"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:0;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0.63481778"
         id="stop5998" />
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0.73670214"
         id="stop5994" />
      <stop
         id="stop5990"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient6977">
      <stop
         style="stop-color:#ebd3ad;stop-opacity:1;"
         offset="0"
         id="stop7039" />
      <stop
         id="stop6981"
         offset="1"
         style="stop-color:#e9b96e;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient6992"
       inkscape:collect="always">
      <stop
         id="stop6994"
         offset="0"
         style="stop-color:#8f5902;stop-opacity:1" />
      <stop
         id="stop6996"
         offset="1"
         style="stop-color:#eeeeec;stop-opacity:0.89733839" />
    </linearGradient>
    <linearGradient
       id="linearGradient7002"
       inkscape:collect="always">
      <stop
         id="stop7004"
         offset="0"
         style="stop-color:#eeeeec;stop-opacity:1;" />
      <stop
         id="stop7006"
         offset="1"
         style="stop-color:#eeeeec;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient7043"
       inkscape:collect="always">
      <stop
         id="stop7045"
         offset="0"
         style="stop-color:#000000;stop-opacity:1;" />
      <stop
         id="stop7047"
         offset="1"
         style="stop-color:#000000;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient7088">
      <stop
         id="stop7090"
         offset="0"
         style="stop-color:#c17d11;stop-opacity:1;" />
      <stop
         id="stop7092"
         offset="1"
         style="stop-color:#e9b96e;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient7216"
       inkscape:collect="always">
      <stop
         id="stop7218"
         offset="0"
         style="stop-color:#e9b96e;stop-opacity:1;" />
      <stop
         id="stop7220"
         offset="1"
         style="stop-color:#e9b96e;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient7422"
       inkscape:collect="always">
      <stop
         id="stop7424"
         offset="0"
         style="stop-color:#000000;stop-opacity:1;" />
      <stop
         id="stop7426"
         offset="1"
         style="stop-color:#000000;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient7516"
       inkscape:collect="always">
      <stop
         id="stop7518"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop7520"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient7526"
       inkscape:collect="always">
      <stop
         id="stop7528"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1" />
      <stop
         id="stop7530"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0" />
    </linearGradient>
    <linearGradient
       id="linearGradient7000"
       inkscape:collect="always">
      <stop
         id="stop7002"
         offset="0"
         style="stop-color:#eeeeec;stop-opacity:1" />
      <stop
         id="stop7005"
         offset="1"
         style="stop-color:#e9b96e;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient7016"
       inkscape:collect="always">
      <stop
         id="stop7018"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop7020"
         offset="1"
         style="stop-color:#e9b96e;stop-opacity:0" />
    </linearGradient>
    <linearGradient
       id="linearGradient7052"
       inkscape:collect="always">
      <stop
         id="stop7054"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop7056"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient7069"
       inkscape:collect="always">
      <stop
         id="stop7071"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop7073"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient7253">
      <stop
         id="stop7255"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="0.125"
         id="stop7267" />
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0.25"
         id="stop7265" />
      <stop
         id="stop7269"
         offset="0.375"
         style="stop-color:#ffffff;stop-opacity:0;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:1;"
         offset="0.5"
         id="stop7261" />
      <stop
         id="stop7275"
         offset="0.625"
         style="stop-color:#ffffff;stop-opacity:0;" />
      <stop
         id="stop7263"
         offset="0.75"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         style="stop-color:#ffffff;stop-opacity:0;"
         offset="0.875"
         id="stop7279" />
      <stop
         id="stop7257"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:1;" />
    </linearGradient>
    <pattern
       patternTransform="matrix(0.5,0,0,0.5,-110,111)"
       id="pattern7310"
       xlink:href="#pattern7285"
       inkscape:collect="always" />
    <pattern
       patternTransform="scale(0.5,0.5)"
       id="pattern7315"
       xlink:href="#pattern7310"
       inkscape:collect="always" />
    <pattern
       patternTransform="translate(-110,111)"
       id="pattern7326"
       xlink:href="#pattern7312"
       inkscape:collect="always" />
    <linearGradient
       id="linearGradient7328"
       inkscape:collect="always">
      <stop
         id="stop7330"
         offset="0"
         style="stop-color:#8f5902;stop-opacity:1;" />
      <stop
         id="stop7332"
         offset="1"
         style="stop-color:#8f5902;stop-opacity:0;" />
    </linearGradient>
    <filter
       inkscape:collect="always"
       id="filter3403">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="2.1614063"
         id="feGaussianBlur3405" />
    </filter>
    <filter
       inkscape:collect="always"
       id="filter3515">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="1.2808222"
         id="feGaussianBlur3517" />
    </filter>
    <filter
       inkscape:collect="always"
       id="filter4363"
       x="-0.12969087"
       width="1.2593817"
       y="-0.29407714"
       height="1.5881543">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.86460582"
         id="feGaussianBlur4365" />
    </filter>
    <radialGradient
       r="5"
       fy="13.375"
       fx="5"
       cy="13.375"
       cx="5"
       gradientTransform="matrix(2.6502653,1.9999998e-8,0,1.1249099,-8.2513265,-1.85817)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient12461"
       xlink:href="#linearGradient6216"
       inkscape:collect="always" />
    <radialGradient
       r="5"
       fy="13.375"
       fx="5"
       cy="13.375"
       cx="5"
       gradientTransform="matrix(2.6502653,1.9999998e-8,0,1.1249099,-8.2513265,-1.85817)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient12459"
       xlink:href="#linearGradient6216"
       inkscape:collect="always" />
    <filter
       height="1.8608696"
       y="-0.43043479"
       width="1.2474999"
       x="-0.12375"
       id="filter7811"
       inkscape:collect="always">
      <feGaussianBlur
         id="feGaussianBlur7813"
         stdDeviation="0.515625"
         inkscape:collect="always" />
    </filter>
    <linearGradient
       id="linearGradient6216"
       inkscape:collect="always">
      <stop
         id="stop6218"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop6220"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4193"
       id="linearGradient4382"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.9333333,0,0,0.8666676,-47.899999,64.199828)"
       x1="380.64441"
       y1="185.36032"
       x2="380.64441"
       y2="182.21574" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5967"
       id="linearGradient4384"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(5.9990637e-2,0,0,6.1302708e-2,303.20029,219.53256)"
       x1="174.01562"
       y1="236"
       x2="30"
       y2="64" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3737"
       id="radialGradient4386"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.5341519,0,0,9.6774081e-2,140.71794,219.67742)"
       cx="321.86331"
       cy="70.499977"
       fx="321.86331"
       fy="70.499977"
       r="15.500023" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3712"
       id="radialGradient4388"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.9349426,0,0,0.3006166,-307.71417,204.88604)"
       cx="321.7785"
       cy="91.857727"
       fx="321.7785"
       fy="91.857727"
       r="15.5" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3757"
       id="radialGradient4390"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3184417,0,0,0.3516126,209.38663,201.71129)"
       cx="323.89844"
       cy="70.5"
       fx="323.89844"
       fy="70.5"
       r="15.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3740"
       id="linearGradient4392"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8571429,0,0,0.8,44.857143,44.8)"
       x1="305.95819"
       y1="224"
       x2="306.02771"
       y2="226.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4256"
       id="linearGradient4394"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.9230769,0,0,0.846154,-43.961518,68.076886)"
       x1="384.42245"
       y1="187.9436"
       x2="385"
       y2="182.90625" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3778"
       id="linearGradient4396"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8333333,0,0,1,51.750003,0)"
       x1="307.5"
       y1="224"
       x2="305.625"
       y2="224.90625" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3582"
       id="linearGradient4398"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4688469,0,0,0.4885507,158.23453,191.75566)"
       x1="331.8584"
       y1="69.852608"
       x2="325.0062"
       y2="69.852608" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3786"
       id="linearGradient4400"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.970062,-0.2428574,0,1,693.98871,40)"
       x1="389.48993"
       y1="279.40332"
       x2="391.72171"
       y2="272.44946" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3822"
       id="linearGradient4402"
       gradientUnits="userSpaceOnUse"
       x1="311.5"
       y1="222.46875"
       x2="315.59726"
       y2="223.25223" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4290"
       id="linearGradient4404"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.970062,-0.2428574,0,1,693.98871,40)"
       x1="390.95438"
       y1="278.14227"
       x2="389.73026"
       y2="279.4614" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3768"
       id="linearGradient4406"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.2,0,0,0.9404641,-61,14.395715)"
       x1="309.71277"
       y1="225.57701"
       x2="305.60272"
       y2="226.06314" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4371"
       id="linearGradient4408"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(0,-0.265165)"
       x1="312.625"
       y1="196.8065"
       x2="312.0625"
       y2="192.0625" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4193"
       id="linearGradient4410"
       gradientUnits="userSpaceOnUse"
       x1="380.64441"
       y1="185.36032"
       x2="380.64441"
       y2="182.21574" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5967"
       id="linearGradient4412"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(6.9989077e-2,0,0,6.8965547e-2,374.90033,179.72413)"
       x1="174.01562"
       y1="236"
       x2="30"
       y2="64" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3737"
       id="radialGradient4414"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.6227245,0,0,9.6774081e-2,185.48204,180.67742)"
       cx="321.86331"
       cy="70.499977"
       fx="321.86331"
       fy="70.499977"
       r="15.500023" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3712"
       id="radialGradient4416"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(2.0837843,0,0,0.3006166,-281.76911,166.88604)"
       cx="321.7785"
       cy="91.857727"
       fx="321.7785"
       fy="91.857727"
       r="15.5" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3757"
       id="radialGradient4418"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3715153,0,0,0.3516126,265.45108,162.71129)"
       cx="323.89844"
       cy="70.5"
       fx="323.89844"
       fy="70.5"
       r="15.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3582"
       id="linearGradient4420"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3791614,0,0,0.6106884,262.7523,144.19457)"
       x1="316.90683"
       y1="69.553268"
       x2="322.41666"
       y2="69.553268" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4240"
       id="linearGradient4422"
       gradientUnits="userSpaceOnUse"
       x1="394.59244"
       y1="277.23956"
       x2="389.02057"
       y2="280.54391" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3582"
       id="linearGradient4424"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3925197,0,0,0.6106884,257.91838,144.19457)"
       x1="333.88629"
       y1="69.490768"
       x2="326.32867"
       y2="69.490768" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4248"
       id="linearGradient4426"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0000001,1.0190348,0,1.0165713,19.999968,-381.08868)"
       x1="373.8385"
       y1="187.7484"
       x2="375.07596"
       y2="181.79832" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4256"
       id="linearGradient4428"
       gradientUnits="userSpaceOnUse"
       x1="382.25"
       y1="191.625"
       x2="385"
       y2="182.90625" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4272"
       id="linearGradient4430"
       gradientUnits="userSpaceOnUse"
       x1="387.53125"
       y1="182.4375"
       x2="390.35132"
       y2="184.29181" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4290"
       id="linearGradient4432"
       gradientUnits="userSpaceOnUse"
       x1="391.0188"
       y1="277.72043"
       x2="389.73026"
       y2="279.4614" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6216"
       id="radialGradient4622"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(2.6502653,1.9999998e-8,0,1.1249099,-8.2513265,-1.85817)"
       cx="5"
       cy="13.375"
       fx="5"
       fy="13.375"
       r="5" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6216"
       id="radialGradient4624"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(2.6502653,1.9999998e-8,0,1.1249099,-8.2513265,-1.85817)"
       cx="5"
       cy="13.375"
       fx="5"
       fy="13.375"
       r="5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4371"
       id="linearGradient4703"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(0,-0.265165)"
       x1="312.625"
       y1="196.8065"
       x2="312.0625"
       y2="192.0625" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4193"
       id="linearGradient4705"
       gradientUnits="userSpaceOnUse"
       x1="380.64441"
       y1="185.36032"
       x2="380.64441"
       y2="182.21574" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5967"
       id="linearGradient4707"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(6.9989077e-2,0,0,6.8965547e-2,374.90033,179.72413)"
       x1="174.01562"
       y1="236"
       x2="30"
       y2="64" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3737"
       id="radialGradient4709"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.6227245,0,0,9.6774081e-2,185.48204,180.67742)"
       cx="321.86331"
       cy="70.499977"
       fx="321.86331"
       fy="70.499977"
       r="15.500023" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3712"
       id="radialGradient4711"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(2.0837843,0,0,0.3006166,-281.76911,166.88604)"
       cx="321.7785"
       cy="91.857727"
       fx="321.7785"
       fy="91.857727"
       r="15.5" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3757"
       id="radialGradient4713"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3715153,0,0,0.3516126,265.45108,162.71129)"
       cx="323.89844"
       cy="70.5"
       fx="323.89844"
       fy="70.5"
       r="15.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3582"
       id="linearGradient4715"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3791614,0,0,0.6106884,262.7523,144.19457)"
       x1="316.90683"
       y1="69.553268"
       x2="322.41666"
       y2="69.553268" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4240"
       id="linearGradient4717"
       gradientUnits="userSpaceOnUse"
       x1="394.59244"
       y1="277.23956"
       x2="389.02057"
       y2="280.54391" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3582"
       id="linearGradient4719"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3925197,0,0,0.6106884,257.91838,144.19457)"
       x1="333.88629"
       y1="69.490768"
       x2="326.32867"
       y2="69.490768" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4248"
       id="linearGradient4721"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0000001,1.0190348,0,1.0165713,19.999968,-381.08868)"
       x1="373.8385"
       y1="187.7484"
       x2="375.07596"
       y2="181.79832" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4256"
       id="linearGradient4723"
       gradientUnits="userSpaceOnUse"
       x1="382.25"
       y1="191.625"
       x2="385"
       y2="182.90625" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4272"
       id="linearGradient4725"
       gradientUnits="userSpaceOnUse"
       x1="387.53125"
       y1="182.4375"
       x2="390.35132"
       y2="184.29181" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4290"
       id="linearGradient4727"
       gradientUnits="userSpaceOnUse"
       x1="391.0188"
       y1="277.72043"
       x2="389.73026"
       y2="279.4614" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6216"
       id="radialGradient4729"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(2.6502653,1.9999998e-8,0,1.1249099,-8.2513265,-1.85817)"
       cx="5"
       cy="13.375"
       fx="5"
       fy="13.375"
       r="5" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6216"
       id="radialGradient4731"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(2.6502653,1.9999998e-8,0,1.1249099,-8.2513265,-1.85817)"
       cx="5"
       cy="13.375"
       fx="5"
       fy="13.375"
       r="5" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6216"
       id="radialGradient4761"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(2.6502653,1.9999998e-8,0,1.1249099,-8.2513265,-1.85817)"
       cx="5"
       cy="13.375"
       fx="5"
       fy="13.375"
       r="5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4193"
       id="linearGradient4836"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.9333333,0,0,0.8666676,-47.899999,64.199828)"
       x1="380.64441"
       y1="185.36032"
       x2="380.64441"
       y2="182.21574" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5967"
       id="linearGradient4838"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(5.9990637e-2,0,0,6.1302708e-2,303.20029,219.53256)"
       x1="174.01562"
       y1="236"
       x2="30"
       y2="64" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3737"
       id="radialGradient4840"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.5341519,0,0,9.6774081e-2,140.71794,219.67742)"
       cx="321.86331"
       cy="70.499977"
       fx="321.86331"
       fy="70.499977"
       r="15.500023" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3712"
       id="radialGradient4842"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.9349426,0,0,0.3006166,-307.71417,204.88604)"
       cx="321.7785"
       cy="91.857727"
       fx="321.7785"
       fy="91.857727"
       r="15.5" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3757"
       id="radialGradient4844"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3184417,0,0,0.3516126,209.38663,201.71129)"
       cx="323.89844"
       cy="70.5"
       fx="323.89844"
       fy="70.5"
       r="15.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3740"
       id="linearGradient4846"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8571429,0,0,0.8,44.857143,44.8)"
       x1="305.95819"
       y1="224"
       x2="306.02771"
       y2="226.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4256"
       id="linearGradient4848"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.9230769,0,0,0.846154,-43.961518,68.076886)"
       x1="384.42245"
       y1="187.9436"
       x2="385"
       y2="182.90625" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3778"
       id="linearGradient4850"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8333333,0,0,1,51.750003,0)"
       x1="307.5"
       y1="224"
       x2="305.625"
       y2="224.90625" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3582"
       id="linearGradient4852"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4688469,0,0,0.4885507,158.23453,191.75566)"
       x1="331.8584"
       y1="69.852608"
       x2="325.0062"
       y2="69.852608" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3786"
       id="linearGradient4854"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.970062,-0.2428574,0,1,693.98871,40)"
       x1="389.48993"
       y1="279.40332"
       x2="391.72171"
       y2="272.44946" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3822"
       id="linearGradient4856"
       gradientUnits="userSpaceOnUse"
       x1="311.5"
       y1="222.46875"
       x2="315.59726"
       y2="223.25223" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4290"
       id="linearGradient4858"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.970062,-0.2428574,0,1,693.98871,40)"
       x1="390.95438"
       y1="278.14227"
       x2="389.73026"
       y2="279.4614" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3768"
       id="linearGradient4860"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.2,0,0,0.9404641,-61,14.395715)"
       x1="309.71277"
       y1="225.57701"
       x2="305.60272"
       y2="226.06314" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6216"
       id="radialGradient4882"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(2.6502653,1.9999998e-8,0,1.1249099,-8.2513265,-1.85817)"
       cx="5"
       cy="13.375"
       fx="5"
       fy="13.375"
       r="5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3571"
       id="linearGradient7022"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4994833,0,0,0.4994833,22.12891,434.06676)"
       x1="147.125"
       y1="74.5"
       x2="147.125"
       y2="75.283745" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6977"
       id="linearGradient7024"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4994833,0,0,0.4994833,29.121676,448.25521)"
       x1="52"
       y1="40.482288"
       x2="52"
       y2="76.67421" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6992"
       id="linearGradient7026"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4928942,0,0,0.4994833,29.939744,448.25521)"
       x1="135.75"
       y1="69.875"
       x2="135.75"
       y2="68" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5967"
       id="linearGradient7028"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4994833,0,0,0.4994833,29.121676,448.25521)"
       x1="174.01562"
       y1="236"
       x2="30"
       y2="64" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4146"
       id="radialGradient7030"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.7673405,0,0,2.4070438e-2,-63.863474,93.68923)"
       cx="136.13138"
       cy="96"
       fx="136.13138"
       fy="96"
       r="105.22703" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7516"
       id="linearGradient7032"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4994833,0,0,0.4994833,29.121676,448.25521)"
       x1="29.980797"
       y1="192"
       x2="35.522602"
       y2="192" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7043"
       id="linearGradient7034"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,-0.9656652,19,282.07578)"
       x1="48.982006"
       y1="175.04001"
       x2="145.58084"
       y2="174.00444" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7002"
       id="linearGradient7036"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4994833,0,0,0.4994833,29.121676,448.25521)"
       x1="50.3125"
       y1="69.999023"
       x2="50.3125"
       y2="72" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7216"
       id="linearGradient7038"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4994833,0,0,0.4994833,29.121676,448.25521)"
       x1="97"
       y1="236.06433"
       x2="97"
       y2="222.18047" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7422"
       id="linearGradient7040"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4994833,0,0,0.4994833,29.121676,448.25521)"
       x1="125.75"
       y1="235.5"
       x2="125.75"
       y2="233.37933" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7526"
       id="linearGradient7042"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4994833,0,0,0.4994833,29.121676,448.25521)"
       x1="230.5"
       y1="172.5"
       x2="223"
       y2="172.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7043"
       id="linearGradient7044"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(5,-1)"
       x1="220.03125"
       y1="71.515625"
       x2="165.74124"
       y2="83.393333" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7088"
       id="linearGradient7046"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4994833,0,0,0.4994833,29.121676,449.75379)"
       x1="-76"
       y1="-48"
       x2="243"
       y2="76" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7000"
       id="radialGradient7048"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.2782686,-2.2140264,1.8248197,1.0535601,-233.44091,178.8159)"
       cx="93.23716"
       cy="132.00948"
       fx="93.23716"
       fy="132.00948"
       r="48.719244" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7088"
       id="linearGradient7050"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4994833,0,0,0.4994833,29.121676,448.25521)"
       x1="247"
       y1="5.1035218"
       x2="157"
       y2="50.284904" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7016"
       id="linearGradient7053"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4994833,0,0,0.4994833,29.121676,448.25521)"
       x1="37.854832"
       y1="74.93177"
       x2="41.375"
       y2="75.875" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7052"
       id="radialGradient7055"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-3.5764865e-2,-1.3016894,1.1091457,-3.0474591e-2,5.6642936,649.48624)"
       cx="123.90625"
       cy="80.943352"
       fx="123.90625"
       fy="80.943352"
       r="48.71875" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7069"
       id="radialGradient7057"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.1188999,0,0,1.9702183,-62.993933,386.86993)"
       cx="147.97377"
       cy="36.678501"
       fx="147.97377"
       fy="36.678501"
       r="43.71875" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient10748"
       id="radialGradient7061"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.6717394,0.1382993,-2.1234314e-2,-0.1031381,163.28045,484.68248)"
       cx="116.43587"
       cy="114.13341"
       fx="116.43587"
       fy="114.13341"
       r="43.339318" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient10756"
       id="radialGradient7063"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.6475249,-0.3759638,0.1300498,-0.2239856,267.66004,609.82328)"
       cx="226.71352"
       cy="134.74751"
       fx="226.71352"
       fy="134.74751"
       r="39.19196" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4154"
       id="radialGradient7065"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.5664145,0,0,2.4070438e-2,84.965404,93.68923)"
       cx="123.92844"
       cy="96.000328"
       fx="123.92844"
       fy="96.000328"
       r="105.22703" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3514"
       id="linearGradient7067"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4994833,0,0,0.4994833,22.12891,434.06676)"
       x1="44"
       y1="192.14198"
       x2="46"
       y2="192.14198" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3537"
       id="linearGradient7070"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4994833,0,0,0.4994833,25.141673,435.09255)"
       x1="45.968239"
       y1="96.196312"
       x2="58.218239"
       y2="100.19631" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3514"
       id="linearGradient7072"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4994833,0,0,0.4994833,-165.94888,434.06676)"
       x1="44"
       y1="192.14198"
       x2="46"
       y2="192.14198" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3537"
       id="linearGradient7074"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.4994833,0,0,0.4994833,162.93612,435.09255)"
       x1="45.968239"
       y1="96.196312"
       x2="58.218239"
       y2="100.19631" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3415"
       id="linearGradient7076"
       gradientUnits="userSpaceOnUse"
       x1="197.5"
       y1="242.5"
       x2="79.5"
       y2="72.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3589"
       id="linearGradient7078"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4994833,0,0,0.4994833,22.12891,434.06676)"
       x1="149.25"
       y1="74.4375"
       x2="149.25"
       y2="75.284958" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3599"
       id="radialGradient7080"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0363514,0,0,2.9898855e-2,-58.174823,469.68181)"
       cx="150.25972"
       cy="66.984177"
       fx="150.25972"
       fy="66.984177"
       r="10.203125" />
    <filter
       inkscape:collect="always"
       id="filter7122"
       x="-0.10000538"
       width="1.2000108"
       y="-0.093908299"
       height="1.1878166">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="3.6903027"
         id="feGaussianBlur7124" />
    </filter>
    <filter
       inkscape:collect="always"
       id="filter7144"
       x="-0.12576613"
       width="1.2515323"
       y="-0.44903247"
       height="1.8980649">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="10.717144"
         id="feGaussianBlur7146" />
    </filter>
    <filter
       inkscape:collect="always"
       id="filter7150"
       x="-0.12302607"
       width="1.2460521"
       y="-0.43924943"
       height="1.8784989">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="10.48365"
         id="feGaussianBlur7152" />
    </filter>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath4590">
      <path
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
         d="M 203,463.75 L 206.53125,474.5 L 199.15625,474.5 L 198.4375,471.09375 L 167.09375,474.5 L 165.34375,474.5 C 164.94703,474.5 164.62846,474.60894 164.375,474.78125 L 163.9375,474.84375 L 163.90625,475.3125 C 163.60034,475.81797 163.48212,476.50515 163.4375,477.15625 L 162.0625,495.90625 C 162.00266,496.23144 162.06602,496.58759 162.125,496.9375 L 162.125,553.6875 L 162.125,555.4375 C 162.12499,556.89956 163.31917,558.06249 164.78125,558.0625 L 247.46875,558.0625 C 248.93085,558.06252 250.125,556.89959 250.125,555.4375 L 250.125,496.9375 C 250.125,496.07058 249.67294,495.3243 249.03125,494.84375 L 249.84375,495.03125 L 237.09375,474.84375 L 203,463.75 z"
         id="path4592" />
    </clipPath>
    <filter
       inkscape:collect="always"
       id="filter4594">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.92199548"
         id="feGaussianBlur4596" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4606"
       id="linearGradient4612"
       x1="215.78841"
       y1="537.15625"
       x2="179.625"
       y2="470.15625"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5967"
       id="linearGradient4614"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0,0.4398579,148.93076,454.26406)"
       x1="174.01562"
       y1="236"
       x2="30"
       y2="64" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4146"
       id="radialGradient4616"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.7673405,0,0,2.4070438e-2,-63.863474,93.68923)"
       cx="136.13138"
       cy="96"
       fx="136.13138"
       fy="96"
       r="105.22703" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7516"
       id="linearGradient4618"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0,0.4398579,148.93076,454.26406)"
       x1="29.980797"
       y1="192"
       x2="35.522602"
       y2="192" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7216"
       id="linearGradient4620"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0,0.4398579,148.93076,454.26406)"
       x1="97"
       y1="236.06433"
       x2="97"
       y2="222.18047" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7422"
       id="linearGradient4622"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0,0.4398579,148.93076,454.26406)"
       x1="125.75"
       y1="235.5"
       x2="125.75"
       y2="233.37933" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7526"
       id="linearGradient4624"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0,0.4398579,148.93076,454.26406)"
       x1="230.5"
       y1="172.5"
       x2="223"
       y2="172.5" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4154"
       id="radialGradient4626"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.5664145,0,0,2.4070438e-2,84.965404,93.68923)"
       cx="123.92844"
       cy="96.000328"
       fx="123.92844"
       fy="96.000328"
       r="105.22703" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3514"
       id="linearGradient4628"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0,0.4398579,142.77275,441.76935)"
       x1="44"
       y1="192.14198"
       x2="46"
       y2="192.14198" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3514"
       id="linearGradient4630"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0,0.4398579,-269.42432,441.76935)"
       x1="44"
       y1="192.14198"
       x2="46"
       y2="192.14198" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3571"
       id="linearGradient4632"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0,0.4553744,9.62068,457.35329)"
       x1="147.125"
       y1="74.5"
       x2="147.125"
       y2="75.283745" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6977"
       id="linearGradient4634"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0.1178596,0.4398579,137.49838,454.26406)"
       x1="52"
       y1="40.482288"
       x2="52"
       y2="76.67421" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6992"
       id="linearGradient4636"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4340553,0,0.1178596,0.4398579,138.21878,454.26406)"
       x1="135.75"
       y1="69.875"
       x2="135.75"
       y2="68" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7043"
       id="linearGradient4638"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,-0.9656652,19,282.07578)"
       x1="48.982006"
       y1="175.04001"
       x2="145.58084"
       y2="174.00444" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7002"
       id="linearGradient4640"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0,0.4553744,15.77869,470.28876)"
       x1="50.3125"
       y1="69.999023"
       x2="50.3125"
       y2="72" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7043"
       id="linearGradient4642"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(5,-1)"
       x1="220.03125"
       y1="71.515625"
       x2="165.74124"
       y2="83.393333" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7088"
       id="linearGradient4644"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0,0.4398579,158.93076,65.58375)"
       x1="-76"
       y1="-48"
       x2="243"
       y2="76" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7088"
       id="linearGradient4646"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0,0.4398579,158.93076,64.26406)"
       x1="243.02144"
       y1="16.731667"
       x2="175.1877"
       y2="47.71616" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7069"
       id="radialGradient4648"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.9853321,0,0,1.7350251,77.811373,10.206597)"
       cx="147.97377"
       cy="36.678501"
       fx="147.97377"
       fy="36.678501"
       r="43.71875" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient10756"
       id="radialGradient4650"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.5702271,-0.3310834,0.1145252,-0.1972475,368.99379,206.54507)"
       cx="226.71352"
       cy="134.74751"
       fx="226.71352"
       fy="134.74751"
       r="39.19196" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3537"
       id="linearGradient4652"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.4398579,0,0,0.4398579,276.77121,52.67268)"
       x1="45.968239"
       y1="96.196312"
       x2="58.218239"
       y2="100.19631" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3589"
       id="linearGradient4654"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0.1178596,0.4398579,127.99242,441.76935)"
       x1="149.25"
       y1="74.4375"
       x2="149.25"
       y2="75.284958" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3599"
       id="radialGradient4656"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.9126378,0,7.0550229e-3,2.6329703e-2,65.678713,473.13288)"
       cx="150.25972"
       cy="66.984177"
       fx="150.25972"
       fy="66.984177"
       r="10.203125" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7000"
       id="radialGradient4660"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.2782686,-2.2140264,1.8248197,1.0535601,-233.44091,178.8159)"
       cx="90.612228"
       cy="122.32405"
       fx="90.612228"
       fy="122.32405"
       r="48.719244" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7016"
       id="linearGradient4662"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0,0.4398579,158.93076,54.26406)"
       x1="37.854832"
       y1="74.93177"
       x2="41.375"
       y2="75.875" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7052"
       id="radialGradient4664"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-3.1495463e-2,-1.1463013,0.9767423,-2.6836711e-2,138.27358,231.4733)"
       cx="123.90625"
       cy="80.943352"
       fx="123.90625"
       fy="80.943352"
       r="48.71875" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient10748"
       id="radialGradient4666"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.591551,0.1217899,-1.8699485e-2,-9.0826072e-2,277.07443,86.34286)"
       cx="116.43587"
       cy="114.13341"
       fx="116.43587"
       fy="114.13341"
       r="43.339318" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3537"
       id="linearGradient4668"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0,0.4398579,155.42586,42.67268)"
       x1="45.968239"
       y1="96.196312"
       x2="58.218239"
       y2="100.19631" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4690"
       id="linearGradient4795"
       gradientUnits="userSpaceOnUse"
       x1="200.64861"
       y1="446.6868"
       x2="206.11914"
       y2="424.96957"
       gradientTransform="matrix(0.8177121,0,0,1.0162463,-28.347211,-209.23426)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7422"
       id="linearGradient4868"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3596771,0,0,0.2312372,93.435274,213.49856)"
       x1="125.75"
       y1="235.5"
       x2="125.75"
       y2="233.37933" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7216"
       id="linearGradient4871"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3596771,0,0,0.2312372,93.435274,213.49856)"
       x1="97"
       y1="236.06433"
       x2="97"
       y2="222.18047" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5967"
       id="linearGradient4877"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3596771,0,0,0.2381338,93.435274,211.87098)"
       x1="174.01562"
       y1="236"
       x2="30"
       y2="64" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7516"
       id="linearGradient4883"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3596771,0,0,0.2312372,83.435274,213.49856)"
       x1="29.980797"
       y1="192"
       x2="35.522602"
       y2="192" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3514"
       id="linearGradient4885"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3596771,0,0,0.2312372,78.399794,206.92998)"
       x1="44"
       y1="192.14198"
       x2="46"
       y2="192.14198" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7526"
       id="linearGradient4891"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3596771,0,0,0.2312372,103.43527,213.49856)"
       x1="230.5"
       y1="172.5"
       x2="223"
       y2="172.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3514"
       id="linearGradient4893"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3596771,0,0,0.2312372,-201.96432,206.92998)"
       x1="44"
       y1="192.14198"
       x2="46"
       y2="192.14198" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6977"
       id="linearGradient4904"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.3596771,0,0,0.447004,93.435274,191.43513)"
       x1="52"
       y1="40.482288"
       x2="52"
       y2="76.67421" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4989"
       id="linearGradient4995"
       x1="130.34375"
       y1="257.78125"
       x2="120.6875"
       y2="207.40625"
       gradientUnits="userSpaceOnUse" />
    <filter
       inkscape:collect="always"
       id="filter4997">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.31507813"
         id="feGaussianBlur4999" />
    </filter>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath5092">
      <path
         id="path5094"
         d="M 108.9375,216 C 107.74193,216 107.13057,217.39726 106.78125,218.6875 L 104.40625,233.75 C 104.28607,234.08045 104.24719,234.42566 104.21875,234.78125 L 104.25,234.78125 C 104.23735,234.84407 104.21875,234.90356 104.21875,234.96875 L 104.21875,265.6875 L 104.21875,266.65625 C 104.21875,267.4478 105.17944,268.0625 106.375,268.0625 L 174,268.0625 C 175.19557,268.06251 176.1875,267.44781 176.1875,266.65625 L 176.1875,234.96875 C 176.1875,234.90356 176.1689,234.84407 176.15625,234.78125 L 176.1875,234.78125 L 176,233.75 L 172.21875,218.375 C 171.87005,217.08444 171.25807,216 170.0625,216 L 108.9375,216 z"
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new" />
    </clipPath>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5967"
       id="linearGradient5295"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0,0.4693747,148.93076,397.2981)"
       x1="174.01562"
       y1="236"
       x2="30"
       y2="64" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7516"
       id="linearGradient5297"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0,0.4398579,148.93076,404.26406)"
       x1="29.980797"
       y1="192"
       x2="35.522602"
       y2="192" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7216"
       id="linearGradient5299"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0,0.4398579,148.93076,404.26406)"
       x1="97"
       y1="236.06433"
       x2="97"
       y2="222.18047" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7422"
       id="linearGradient5301"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0,0.4398579,148.93076,404.26406)"
       x1="125.75"
       y1="235.5"
       x2="125.75"
       y2="233.37933" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7526"
       id="linearGradient5303"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0,0.4398579,148.93076,404.26406)"
       x1="230.5"
       y1="172.5"
       x2="223"
       y2="172.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3514"
       id="linearGradient5305"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0,0.4605054,142.77275,386.36086)"
       x1="44"
       y1="192.14198"
       x2="46"
       y2="192.14198" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3514"
       id="linearGradient5307"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0,0.4398579,-269.42432,391.76935)"
       x1="44"
       y1="192.14198"
       x2="46"
       y2="192.14198" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6977"
       id="linearGradient5309"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.4398579,0,0,0.4398579,148.93076,394.26406)"
       x1="52"
       y1="40.482288"
       x2="52"
       y2="76.67421" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4680"
       id="linearGradient5315"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.8177121,0,0,1.0162463,-80.59721,140.51574)"
       x1="178.5497"
       y1="451.33313"
       x2="184.66432"
       y2="418.69333" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5141"
       id="linearGradient5319"
       gradientUnits="userSpaceOnUse"
       x1="93.188049"
       y1="612.58911"
       x2="79.889778"
       y2="561.32391" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4146"
       id="radialGradient5321"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.7673405,0,0,2.4070438e-2,-63.863474,93.68923)"
       cx="136.13138"
       cy="96"
       fx="136.13138"
       fy="96"
       r="105.22703" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4154"
       id="radialGradient5323"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.5664145,0,0,2.4070438e-2,84.965404,93.68923)"
       cx="123.92844"
       cy="96.000328"
       fx="123.92844"
       fy="96.000328"
       r="105.22703" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7328"
       id="linearGradient5325"
       gradientUnits="userSpaceOnUse"
       x1="140"
       y1="170.36748"
       x2="140"
       y2="100.99606" />
    <filter
       inkscape:collect="always"
       id="filter5335"
       x="-0.038296342"
       width="1.0765927"
       y="-0.13848154"
       height="1.2769631">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="1.1480391"
         id="feGaussianBlur5337" />
    </filter>
    <filter
       inkscape:collect="always"
       id="filter5341"
       x="-0.11534114"
       width="1.2306823"
       y="-0.4170795"
       height="1.834159">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="3.4576707"
         id="feGaussianBlur5343" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7328"
       id="linearGradient5353"
       gradientUnits="userSpaceOnUse"
       x1="139"
       y1="300"
       x2="140"
       y2="100.99606" />
    <filter
       inkscape:collect="always"
       id="filter5355"
       x="-0.037832152"
       width="1.0756643"
       y="-0.14491094"
       height="1.2898219">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="1.1341238"
         id="feGaussianBlur5357" />
    </filter>
    <filter
       inkscape:collect="always"
       id="filter5361"
       x="-0.11349646"
       width="1.2269929"
       y="-0.43473283"
       height="1.8694657">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="3.4023712"
         id="feGaussianBlur5363" />
    </filter>
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath5462">
      <path
         id="path5464"
         d="M 65.03125,336.00003 C 63.83568,336.00003 63.22433,337.50006 62.875,338.88521 L 56.625,353.64661 C 56.21613,353.93551 55.96875,354.36862 55.96875,354.82081 L 55.96875,355.89437 L 55.96875,388.97333 L 55.96875,390.04689 C 55.96875,390.92744 56.92944,391.62367 58.125,391.62368 L 125.75,391.62368 C 126.94558,391.62368 127.9375,390.92743 127.9375,390.04689 L 127.9375,355.89437 L 127.9375,354.82081 C 127.9375,354.58527 127.84253,354.35054 127.71875,354.14984 L 127.28125,338.54972 C 126.93255,337.16423 126.32058,336.00003 125.125,336.00003 L 65.03125,336.00003 z"
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new" />
    </clipPath>
    <filter
       inkscape:collect="always"
       id="filter5534"
       x="-0.2818178"
       width="1.5636356"
       y="-0.33646516"
       height="1.6729303">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="2.7337794"
         id="feGaussianBlur5536" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5538"
       id="linearGradient5544"
       x1="119.85938"
       y1="391.75"
       x2="119.85938"
       y2="376"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4146"
       id="radialGradient5546"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.7673405,0,0,2.4070438e-2,-63.863474,93.68923)"
       cx="136.13138"
       cy="96"
       fx="136.13138"
       fy="96"
       r="105.22703" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4154"
       id="radialGradient5548"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.5664145,0,0,2.4070438e-2,84.965404,93.68923)"
       cx="123.92844"
       cy="96.000328"
       fx="123.92844"
       fy="96.000328"
       r="105.22703" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7328"
       id="linearGradient5550"
       gradientUnits="userSpaceOnUse"
       x1="140"
       y1="170.36748"
       x2="140"
       y2="100.99606" />
    <clipPath
       clipPathUnits="userSpaceOnUse"
       id="clipPath5608">
      <path
         id="path5610"
         d="M 140.61022,70.79945 L 141.84332,91.24705 L 131.83804,91.24705 L 132.36874,82.28757 L 92.03547,91.20022 L 83.70034,115.94025 L 84.24665,115.83099 C 84.21949,115.9203 84.18748,116.00366 84.16861,116.09634 C 84.16778,116.10118 84.16941,116.10711 84.16861,116.11195 C 84.13078,116.30272 84.10617,116.50288 84.10617,116.70509 L 84.10617,181.13843 L 84.10617,183.13637 C 84.10617,184.79665 85.44279,186.13326 87.10307,186.13327 L 181.02154,186.13327 C 182.68182,186.13327 184.01844,184.79664 184.01844,183.13637 L 184.01844,116.70509 C 184.01844,116.3592 183.95361,116.03037 183.84674,115.72173 L 184.28379,115.94025 L 175.94866,91.20022 L 140.61022,70.79945 z"
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new" />
    </clipPath>
    <filter
       inkscape:collect="always"
       id="filter5644"
       x="-0.17573755"
       width="1.3514751"
       y="-0.62606502"
       height="2.25213">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="3.5216158"
         id="feGaussianBlur5646" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient7328"
       id="linearGradient5648"
       gradientUnits="userSpaceOnUse"
       x1="140"
       y1="225.95952"
       x2="140"
       y2="100.99606" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3823"
       id="radialGradient3829"
       cx="91.5"
       cy="196.25916"
       fx="91.5"
       fy="196.25916"
       r="35"
       gradientTransform="matrix(1.207164,-1.5328675e-7,5.6832884e-8,0.4475704,-18.955516,108.41938)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3831"
       id="radialGradient3837"
       cx="144.1875"
       cy="235.13416"
       fx="144.1875"
       fy="235.13416"
       r="35"
       gradientTransform="matrix(1.1584756,0,0,0.3241858,-22.850201,158.90699)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3849"
       id="radialGradient3855"
       cx="122.29281"
       cy="188.06377"
       fx="122.29281"
       fy="188.06377"
       r="0.21338835"
       gradientTransform="matrix(15.402878,3.4371991,-20.691073,178.06914,2129.8728,-33720.631)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3867"
       id="radialGradient3873"
       cx="143.9375"
       cy="225.42265"
       fx="143.9375"
       fy="225.42265"
       r="0.125"
       gradientTransform="matrix(25.622256,0,0,113.26401,-3544.066,-25306.85)"
       gradientUnits="userSpaceOnUse" />
  </defs>
  <g
     id="layer1"
     inkscape:groupmode="layer"
     inkscape:label="artwork:system-software-install"
     style="display:inline">
    <g
       id="layer6"
       inkscape:groupmode="layer"
       inkscape:label="baseplate"
       style="display:none"
       sodipodi:insensitive="true">
      <rect
         height="48"
         id="rect6284"
         inkscape:label="48x48"
         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         width="48"
         x="296"
         y="50" />
      <rect
         height="32"
         id="rect6592"
         inkscape:label="32x32"
         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         width="32"
         x="303"
         y="126" />
      <rect
         height="22"
         id="rect6749"
         inkscape:label="22x22"
         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         width="22"
         x="303"
         y="177" />
      <rect
         height="16"
         id="rect6833"
         inkscape:label="16x16"
         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         width="16"
         x="303"
         y="219" />
      <rect
         height="24"
         id="rect8104"
         inkscape:label="24x24"
         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         width="24"
         x="302"
         y="176" />
      <rect
         height="256"
         id="rect6282"
         inkscape:label="256x256"
         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         width="256"
         x="20"
         y="30" />
      <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">apps</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="151.97073"
         xml:space="preserve"
         y="21.513618"><tspan
           id="tspan3023"
           sodipodi:role="line"
           x="151.97073"
           y="21.513618">system-software-install</tspan></text>
    </g>
    <g
       id="g5365"
       transform="translate(0,-36)">
      <path
         sodipodi:nodetypes="ccccccccc"
         id="path5329"
         d="M 112.93781,285.01128 C 111.74224,285.01128 111.12907,286.40307 110.77975,287.69331 L 108.39419,302.74685 C 108.27401,303.07731 108.25402,303.43893 108.22558,303.79452 L 180.17224,303.79452 L 180.00365,302.74685 L 176.23419,287.37202 C 175.88549,286.08146 175.2717,285.01128 174.07613,285.01128 L 112.93781,285.01128 z"
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;filter:url(#filter5355);enable-background:new" />
      <path
         sodipodi:nodetypes="ccccccccc"
         id="path5359"
         d="M 112.93781,285.01128 C 111.74224,285.01128 111.12907,286.40307 110.77975,287.69331 L 108.39419,302.74685 C 108.27401,303.07731 108.25402,303.43893 108.22558,303.79452 L 180.17224,303.79452 L 180.00365,302.74685 L 176.23419,287.37202 C 175.88549,286.08146 175.2717,285.01128 174.07613,285.01128 L 112.93781,285.01128 z"
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;filter:url(#filter5361);enable-background:new" />
    </g>
    <path
       sodipodi:nodetypes="ccccccccc"
       id="path5339"
       d="M 65.0288,214.01215 C 63.833232,214.01215 63.220062,215.50631 62.870735,216.89145 L 56.144187,232.78388 C 56.024016,233.13865 56.004023,233.52687 55.975583,233.90862 L 127.92224,233.90862 L 127.75365,232.78388 L 127.29485,216.54653 C 126.94616,215.16104 126.33237,214.01215 125.13679,214.01215 L 65.0288,214.01215 z"
       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;filter:url(#filter5341);enable-background:new"
       transform="matrix(1.0138991,0,0,1,-1.2780151,-2)" />
    <path
       sodipodi:nodetypes="ccccccccc"
       id="path5327"
       d="M 65.0288,214.01215 C 63.833232,214.01215 63.220062,215.50631 62.870735,216.89145 L 56.144187,232.78388 C 56.024016,233.13865 56.004023,233.52687 55.975583,233.90862 L 127.92224,233.90862 L 127.75365,232.78388 L 127.29485,216.54653 C 126.94616,215.16104 126.33237,214.01215 125.13679,214.01215 L 65.0288,214.01215 z"
       style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;filter:url(#filter5335);enable-background:new"
       transform="matrix(1.0138991,0,0,1,-1.2780151,-2)" />
    <g
       id="g7154"
       transform="translate(40,-79.75)">
      <path
         sodipodi:type="inkscape:offset"
         inkscape:radius="6.3517137"
         inkscape:original="M 51 190.21875 C 50.331523 190.21875 50.105549 190.35766 49.5625 191 C 49.019451 191.64234 48.447678 192.79364 48.03125 194.03125 C 48.020906 194.04174 48.010489 194.05216 48 194.0625 L 34.09375 234.8125 L 225.90625 234.8125 L 212 193.3125 C 211.61011 192.15141 211.10727 191.29295 210.65625 190.84375 C 210.20523 190.39455 209.92931 190.21875 209.03125 190.21875 L 51 190.21875 z "
         style="opacity:0.55;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;filter:url(#filter7150)"
         id="path7132"
         d="M 51,183.875 C 50.225798,183.875 48.578099,184.026 47.15625,184.8125 C 45.734401,185.599 45.124971,186.42576 44.71875,186.90625 C 43.361193,188.51202 42.782007,189.88957 42.25,191.40625 C 42.156678,191.59981 42.073237,191.79798 42,192 L 28.09375,232.75 C 27.431453,234.68833 27.744475,236.82709 28.934471,238.49432 C 30.124468,240.16155 32.045397,241.15266 34.09375,241.15625 L 225.90625,241.15625 C 227.95243,241.15932 229.8748,240.17655 231.07056,238.51612 C 232.26631,236.85569 232.58903,234.72093 231.9375,232.78125 L 218.03125,191.28125 C 217.4175,189.4535 216.77041,187.98252 215.125,186.34375 C 214.34334,185.56525 210.75823,183.875 209.03125,183.875 L 51,183.875 z"
         transform="matrix(0.5111737,0,0,0.4104439,27.552464,166.92992)" />
      <path
         sodipodi:type="inkscape:offset"
         inkscape:radius="4.9497476"
         inkscape:original="M 51 190.21875 C 50.331523 190.21875 50.105549 190.35766 49.5625 191 C 49.019451 191.64234 48.447678 192.79364 48.03125 194.03125 C 48.020906 194.04174 48.010489 194.05216 48 194.0625 L 34.09375 234.8125 L 225.90625 234.8125 L 212 193.3125 C 211.61011 192.15141 211.10727 191.29295 210.65625 190.84375 C 210.20523 190.39455 209.92931 190.21875 209.03125 190.21875 L 51 190.21875 z "
         style="opacity:0.9;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;filter:url(#filter3515)"
         id="path7134"
         d="M 51,185.28125 C 50.322908,185.28125 48.997661,185.39296 47.84375,186.03125 C 46.689839,186.66954 46.15774,187.36717 45.78125,187.8125 C 44.670836,189.12594 44.111885,190.34658 43.625,191.6875 C 43.554568,191.84046 43.491986,191.99691 43.4375,192.15625 C 43.404625,192.25186 43.376417,192.34041 43.34375,192.4375 C 43.333287,192.44787 43.32287,192.45829 43.3125,192.46875 L 29.40625,233.21875 C 28.897314,234.7288 29.146428,236.39152 30.075565,237.68612 C 31.004702,238.98072 32.500239,239.74888 34.09375,239.75 L 225.90625,239.75 C 227.49211,239.74555 228.97984,238.98156 229.90745,237.69528 C 230.83506,236.40899 231.09024,234.75615 230.59375,233.25 L 216.6875,191.75 C 216.12316,190.0694 215.53803,188.71995 214.15625,187.34375 C 213.44757,186.63793 210.57527,185.28125 209.03125,185.28125 L 51,185.28125 z"
         transform="matrix(0.4989748,0,0,0.4675846,29.138452,154.55283)" />
    </g>
    <g
       id="g4819"
       transform="translate(-2,-7)">
      <rect
         style="opacity:0.48401824;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter7811);enable-background:accumulate"
         id="rect4763"
         width="10"
         height="2.875"
         x="515.875"
         y="16.625"
         rx="0.87121212"
         ry="1.001894"
         transform="matrix(1.45,0,0,1.4347826,-436.1969,171.73252)" />
      <g
         transform="translate(8,-36)"
         id="g4765"
         style="display:inline;enable-background:new">
        <path
           style="fill:url(#linearGradient4836);fill-opacity:1;stroke:#8f5902;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.50000001;stroke-opacity:1"
           d="M 305.4487,221.50002 L 316.5513,221.50002 C 317.07688,221.50002 317.5,221.89291 317.5,222.38095 L 317.5,233.61908 C 317.5,234.10712 317.07688,234.50002 316.5513,234.50002 L 305.4487,234.50002 C 304.92312,234.50002 304.5,234.10712 304.5,233.61908 L 304.5,222.38095 C 304.5,221.89291 304.92312,221.50002 305.4487,221.50002 z"
           id="path4767"
           sodipodi:nodetypes="ccccccccc" />
        <path
           style="fill:url(#linearGradient4838);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
           d="M 305.35994,226 C 305.16053,226 305,226.16404 305,226.3678 L 305,233.38698 L 305,233.63219 C 305,233.83596 305.16053,234 305.35994,234 L 316.64006,234 C 316.83947,234 317,233.83596 317,233.63219 L 317,226.3678 C 317,226.16404 316.83947,226 316.64006,226 L 305.35994,226 z"
           id="path4769"
           sodipodi:nodetypes="cccccccccc" />
        <path
           style="opacity:0.5;fill:url(#radialGradient4840);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
           d="M 305.04817,225 L 305,227.96875 L 317,228 L 316.95183,225 L 305.04817,225 z"
           id="path4771"
           sodipodi:nodetypes="ccccc" />
        <path
           style="opacity:0.81531528;fill:url(#radialGradient4842);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
           d="M 305.38994,225 C 305.17391,225 305,225.18454 305,225.41379 L 305,233.31034 L 305,233.58621 C 305,233.81546 305.17391,234 305.38994,234 L 316.61006,234 C 316.82609,234 317,233.81545 317,233.58621 L 317,225.41379 C 317,225.18454 316.82609,225 316.61006,225 L 305.38994,225 z"
           id="path4773"
           sodipodi:nodetypes="cccccccccc" />
        <rect
           style="opacity:0.7477478;fill:url(#radialGradient4844);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new"
           id="rect4775"
           width="12"
           height="1"
           x="305"
           y="226" />
        <path
           style="fill:url(#linearGradient4846);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.50000001;stroke-opacity:1"
           d="M 305,225.2929 L 305,222.7071 C 305,222.31537 305.31833,222 305.71376,222 L 310.28624,222 C 310.68167,222 311,222.31537 311,222.7071 L 311,225.2929 C 311,225.68463 310.68167,226 310.28624,226 L 306.69866,226"
           id="path4777"
           sodipodi:nodetypes="cccccccc" />
        <path
           style="opacity:0.34234236;fill:none;fill-opacity:1;stroke:url(#linearGradient4848);stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new"
           d="M 305.5,222.49998 L 316.5,222.49998 L 316.5,233.5 L 305.5,233.5 L 305.5,222.49998 z"
           id="path4779"
           sodipodi:nodetypes="ccccc" />
        <rect
           style="opacity:0.84684688;fill:none;fill-opacity:1;stroke:url(#linearGradient4850);stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1"
           id="rect4781"
           width="5"
           height="3"
           x="305.5"
           y="222.5"
           rx="0"
           ry="0" />
        <path
           id="path4783"
           d="M 310.02773,222 L 310.02773,226 L 316,226 L 314.80906,222.3206 C 314.77468,222.21295 314.73573,222.11234 314.68646,222.06106 C 314.63718,222.0098 314.59293,222 314.5113,222 L 310.02773,222 z"
           style="opacity:0.46846846;fill:url(#linearGradient4852);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new" />
        <path
           style="fill:url(#linearGradient4854);fill-opacity:1;stroke:#8f5902;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new"
           d="M 317.48872,225.36081 L 317.48872,222.38885 C 317.48872,221.82709 317.03538,221.26135 316.47226,221.12037 L 311.51646,219.87967 C 310.95333,219.73869 310.49999,220.07745 310.49999,220.63921 L 310.49999,223.61117 C 310.49999,224.17293 310.95333,224.73867 311.51646,224.87965 L 315.5512,225.53005"
           id="path4785"
           sodipodi:nodetypes="cccccccc" />
        <path
           sodipodi:type="inkscape:offset"
           inkscape:radius="-0.50579911"
           inkscape:original="M 311.53125 219.875 C 310.96813 219.73402 310.5 220.06324 310.5 220.625 L 310.5 223.625 C 310.49999 224.18675 310.96812 224.73402 311.53125 224.875 L 315.5625 225.53125 L 317.5 225.375 L 317.5 222.375 C 317.50001 221.81324 317.03187 221.26598 316.46875 221.125 L 311.53125 219.875 z "
           style="fill:url(#linearGradient4856);fill-opacity:1;stroke:none;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new"
           id="path4787"
           d="M 311.40625,220.375 C 311.2467,220.33506 311.14794,220.36724 311.09375,220.40625 C 311.03956,220.44526 311,220.48462 311,220.625 L 311,223.625 C 311,223.89865 311.30582,224.27973 311.625,224.375 L 311.65625,224.375 L 315.625,225.03125 L 315.65625,225.03125 L 317,224.90625 L 317,222.375 C 317,222.09425 316.67179,221.70713 316.34375,221.625 L 311.40625,220.375 z" />
        <path
           sodipodi:nodetypes="ccccccc"
           id="path4789"
           d="M 316.45271,222.17044 L 316.45271,224.35794 L 315.45233,224.45124 L 315.36139,224.42847 L 311.54177,223.81597 L 311.54177,220.94097 L 316.45271,222.17044 z"
           style="opacity:0.7162162;fill:none;fill-opacity:1;stroke:url(#linearGradient4858);stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new" />
        <rect
           style="opacity:0.45945943;fill:url(#linearGradient4860);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1"
           id="rect4791"
           width="6.3093591"
           height="0.99751282"
           x="305"
           y="226.00249"
           rx="0.49875641"
           ry="0.49875641" />
      </g>
    </g>
    <g
       id="g256"
       style="display:inline;enable-background:new"
       transform="translate(20,30)" />
    <g
       style="display:none"
       inkscape:label="plate"
       id="layer3"
       sodipodi:insensitive="true"
       transform="translate(322.0625,10.001834)">
      <rect
         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         id="rect3215"
         width="48"
         height="48"
         x="54.0625"
         y="39.99633"
         inkscape:label="48x48" />
      <rect
         inkscape:label="32x32"
         y="115.99633"
         x="61"
         height="32"
         width="32"
         id="rect3217"
         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <rect
         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         id="rect3219"
         width="22"
         height="22"
         x="61"
         y="167.05884"
         inkscape:label="22x22" />
      <rect
         inkscape:label="16x16"
         y="209"
         x="61"
         height="16"
         width="16"
         id="rect3221"
         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
    </g>
    <g
       id="g12439"
       transform="translate(303.07811,212.00183)">
      <rect
         ry="0.094273694"
         rx="0.094270319"
         y="7.5"
         x="0.48438835"
         height="8.000001"
         width="9.0156116"
         id="rect12441"
         style="fill:#d9a452;fill-opacity:1;fill-rule:evenodd;stroke:#8f5902;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <rect
         style="fill:#e8c48d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         id="rect12443"
         width="8.125"
         height="4.1875"
         x="-9.0625"
         y="7.9375"
         rx="0.094270319"
         ry="0.094273694"
         transform="scale(-1,1)" />
      <path
         d="M 1.4375,8.4375 L 1.4375,14.5625 L 8.5625,14.5625 L 8.5625,8.4375 L 1.4375,8.4375 z"
         inkscape:href="#rect6030"
         id="path12445"
         style="opacity:0.43975902;fill:none;stroke:url(#radialGradient12459);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         xlink:href="#rect6030"
         inkscape:original="M 0.59375 7.5 C 0.54152424 7.5 0.5 7.5415224 0.5 7.59375 L 0.5 15.40625 C 0.5 15.458478 0.54152424 15.5 0.59375 15.5 L 9.40625 15.5 C 9.4584758 15.5 9.5 15.458478 9.5 15.40625 L 9.5 7.59375 C 9.5 7.5415224 9.4584758 7.5 9.40625 7.5 L 0.59375 7.5 z "
         inkscape:radius="-0.9375"
         sodipodi:type="inkscape:offset" />
      <path
         id="path12447"
         d="M 1.9445437,8.133437 L 9.2570437,7.9817863 L 2.0699138,8.9685326 L 1.9445437,11.138641 L 9.0156115,11.050251 L 9.1039995,12.199299 L 0.97227183,12.110913 L 0.88388348,7.9566603 L 1.9445437,8.133437 z"
         style="fill:#f5efe4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         sodipodi:nodetypes="ccccccccc" />
    </g>
    <g
       transform="translate(309.07811,219.00183)"
       id="g12449">
      <rect
         style="fill:#d9a452;fill-opacity:1;fill-rule:evenodd;stroke:#8f5902;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         id="rect12451"
         width="9.0156116"
         height="8.000001"
         x="0.48438835"
         y="7.5"
         rx="0.094270319"
         ry="0.094273694" />
      <rect
         transform="scale(-1,1)"
         ry="0.094273694"
         rx="0.094270319"
         y="7.9375"
         x="-9.0625"
         height="4.1875"
         width="8.125"
         id="rect12453"
         style="fill:#e8c48d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         sodipodi:type="inkscape:offset"
         inkscape:radius="-0.9375"
         inkscape:original="M 0.59375 7.5 C 0.54152424 7.5 0.5 7.5415224 0.5 7.59375 L 0.5 15.40625 C 0.5 15.458478 0.54152424 15.5 0.59375 15.5 L 9.40625 15.5 C 9.4584758 15.5 9.5 15.458478 9.5 15.40625 L 9.5 7.59375 C 9.5 7.5415224 9.4584758 7.5 9.40625 7.5 L 0.59375 7.5 z "
         xlink:href="#rect6030"
         style="opacity:0.43975902;fill:none;stroke:url(#radialGradient12461);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         id="path12455"
         inkscape:href="#rect6030"
         d="M 1.4375,8.4375 L 1.4375,14.5625 L 8.5625,14.5625 L 8.5625,8.4375 L 1.4375,8.4375 z" />
      <path
         sodipodi:nodetypes="ccccccccc"
         style="fill:#f5efe4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         d="M 1.9445437,8.133437 L 9.2570437,7.9817863 L 2.0699138,8.9685326 L 1.9445437,11.138641 L 9.0156115,11.050251 L 9.1039995,12.199299 L 0.97227183,12.110913 L 0.88388348,7.9566603 L 1.9445437,8.133437 z"
         id="path12457" />
    </g>
    <g
       id="g4892">
      <rect
         style="opacity:0.48401824;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter7811);enable-background:accumulate"
         id="rect12292"
         width="10"
         height="2.875"
         x="515.875"
         y="16.625"
         rx="0.87121212"
         ry="1.001894"
         transform="matrix(1.45,0,0,1.4347826,-425.1969,53.732521)" />
      <g
         transform="translate(4.000012,-120.91737)"
         id="g4363">
        <rect
           style="opacity:0.75342467;fill:url(#linearGradient4408);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;filter:url(#filter4363)"
           id="rect4353"
           width="16"
           height="7.0561552"
           x="306"
           y="190.17233"
           rx="1.3125"
           ry="1.3125" />
        <g
           id="g4312"
           transform="translate(-70,0)">
          <rect
             ry="1.016466"
             rx="1.016466"
             y="181.50002"
             x="376.5"
             height="14.999985"
             width="15"
             id="rect3378"
             style="opacity:1;fill:url(#linearGradient4410);fill-opacity:1;stroke:#8f5902;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1" />
          <rect
             y="185"
             x="380.99799"
             height="1.0067567"
             width="7.9059343"
             id="rect4310"
             style="opacity:0.2;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new" />
          <path
             sodipodi:nodetypes="cccccccccc"
             id="path2771"
             d="M 377.41994,187 C 377.18729,187 377,187.18455 377,187.41378 L 377,195.31035 L 377,195.58621 C 377,195.81545 377.18729,196 377.41994,196 L 390.58006,196 C 390.81271,196 391,195.81545 391,195.58621 L 391,187.41378 C 391,187.18455 390.81271,187 390.58006,187 L 377.41994,187 z"
             style="fill:url(#linearGradient4412);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new" />
          <path
             sodipodi:nodetypes="ccccc"
             id="path2775"
             d="M 377.06137,186 L 377.00522,188.96875 L 390.99505,189 L 390.9389,186 L 377.06137,186 z"
             style="opacity:0.5;fill:url(#radialGradient4414);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new" />
          <path
             sodipodi:nodetypes="cccccccccc"
             id="path2773"
             d="M 377.41994,187 C 377.18729,187 377,187.18454 377,187.41379 L 377,195.31034 L 377,195.58621 C 377,195.81546 377.18729,196 377.41994,196 L 390.58006,196 C 390.81271,196 391,195.81545 391,195.58621 L 391,187.41379 C 391,187.18454 390.81271,187 390.58006,187 L 377.41994,187 z"
             style="opacity:0.81531528;fill:url(#radialGradient4416);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new" />
          <rect
             y="187"
             x="377"
             height="1"
             width="13.999999"
             id="rect2777"
             style="opacity:0.7477478;fill:url(#radialGradient4418);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new" />
          <rect
             y="184"
             x="380.99799"
             height="1.0067567"
             width="6.1871843"
             id="rect4308"
             style="opacity:0.4099099;fill:#c17d11;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1" />
          <path
             sodipodi:nodetypes="csccccc"
             style="opacity:0.46846846;fill:url(#linearGradient4420);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
             d="M 379.10114,182 C 379.05259,182 379.02545,182.02941 378.98455,182.11449 C 378.94365,182.19959 378.90739,182.33719 378.88092,182.47709 L 378,187 L 385,187 L 385,182 L 379.10114,182 z"
             id="path4300" />
          <path
             sodipodi:nodetypes="cccccccc"
             id="rect4203"
             d="M 388.11951,280.61851 L 388.11951,276.64655 C 388.11951,276.08479 388.58684,275.63254 389.16734,275.63254 L 394.27609,275.63254 C 394.8566,275.63254 395.32393,276.08479 395.32393,276.64655 L 395.32393,280.61851 C 395.32393,281.18027 394.8566,281.63252 394.27609,281.63252 L 390.11683,281.27281"
             style="fill:url(#linearGradient4422);fill-opacity:1;stroke:#8f5902;stroke-width:1.01531363;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new"
             transform="matrix(0.970062,-0.2428574,0,1,0,0)" />
          <path
             style="opacity:0.46846846;fill:url(#linearGradient4424);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
             d="M 385,182 L 385,187 L 390,187 L 389.00294,182.40075 C 388.97416,182.26619 388.94155,182.14042 388.9003,182.07633 C 388.85904,182.01225 388.822,182 388.75366,182 L 385,182 z"
             id="path4302" />
          <path
             sodipodi:nodetypes="ccccccccc"
             id="rect4214"
             d="M 391.5,187.0625 L 391.5,183.03125 C 391.5,182.4588 391.03186,181.54259 390.46875,180.96875 L 387.53125,177.9375 C 387.53125,177.9375 387.04629,177.16941 385.8125,177.5 C 385.62877,177.49955 385.5,177.65128 385.5,177.9375 L 385.5,181.96875 C 385.5,182.5412 385.96812,183.45741 386.53125,184.03125 L 389.53687,186.54437"
             style="opacity:1;fill:url(#linearGradient4426);fill-opacity:1;stroke:#8f5902;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new" />
          <rect
             ry="0"
             rx="0"
             y="182.5"
             x="377.5"
             height="13.000016"
             width="13.000001"
             id="rect4254"
             style="opacity:0.34234236;fill:none;fill-opacity:1;stroke:url(#linearGradient4428);stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new" />
          <path
             d="M 386.46875,178.4375 L 386.46875,181.96875 C 386.46875,182.01229 386.83653,182.90367 387.21875,183.3125 C 387.22556,183.31979 387.21192,183.33679 387.21875,183.34375 L 390,185.65625 L 390.53125,185.78125 L 390.53125,183.03125 C 390.53125,182.98695 390.17131,182.05374 389.78125,181.65625 L 386.84375,178.625 C 386.7968,178.57737 386.75491,178.52501 386.71875,178.46875 C 386.71875,178.46875 386.73273,178.47934 386.65625,178.4375 C 386.6321,178.42429 386.50985,178.45059 386.46875,178.4375 z"
             id="path4268"
             style="opacity:0.57207211;fill:none;fill-opacity:1;stroke:url(#linearGradient4430);stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new"
             inkscape:original="M 385.8125 177.5 C 385.62877 177.49955 385.5 177.65128 385.5 177.9375 L 385.5 181.96875 C 385.5 182.5412 385.96812 183.45741 386.53125 184.03125 L 389.53125 186.53125 L 391.5 187.0625 L 391.5 183.03125 C 391.5 182.4588 391.03186 181.54259 390.46875 180.96875 L 387.53125 177.9375 C 387.53125 177.9375 387.04629 177.16941 385.8125 177.5 z "
             inkscape:radius="-0.96875"
             sodipodi:type="inkscape:offset" />
          <path
             sodipodi:nodetypes="cc"
             id="path4280"
             d="M 386.40625,178.25 C 386.54693,179.95518 386.08947,182.01924 386.96875,183.28125"
             style="opacity:0.41441441;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
          <path
             transform="matrix(0.970062,-0.2428574,0,1,0,0)"
             d="M 389.1875,276.6875 L 389.1875,279.875 L 390.21875,280.21875 L 390.3125,280.21875 L 394.25,280.5625 L 394.25,276.6875 L 389.1875,276.6875 z"
             id="path4286"
             style="opacity:0.7162162;fill:none;fill-opacity:1;stroke:url(#linearGradient4432);stroke-width:1.01531363;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new"
             inkscape:original="M 389.15625 275.625 C 388.57575 275.625 388.125 276.09449 388.125 276.65625 L 388.125 280.625 L 390.125 281.28125 L 394.28125 281.625 C 394.86176 281.625 395.31249 281.18677 395.3125 280.625 L 395.3125 276.65625 C 395.3125 276.09449 394.86176 275.625 394.28125 275.625 L 389.15625 275.625 z "
             inkscape:radius="-1.0629406"
             sodipodi:type="inkscape:offset" />
        </g>
      </g>
      <g
         transform="translate(-79,2)"
         id="g4608">
        <rect
           transform="matrix(1.15,0,0,1,-211.11687,61.639334)"
           ry="1.4375"
           rx="1.25"
           y="16.625"
           x="515.875"
           height="2.875"
           width="10"
           id="rect12359"
           style="opacity:0.5792079;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter7811);enable-background:accumulate" />
        <g
           transform="translate(383.02997,64.977722)"
           id="g12361">
          <rect
             style="fill:#d9a452;fill-opacity:1;fill-rule:evenodd;stroke:#8f5902;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             id="rect12363"
             width="9.0156116"
             height="8.000001"
             x="0.48438835"
             y="7.5"
             rx="0.094270319"
             ry="0.094273694" />
          <rect
             transform="scale(-1,1)"
             ry="0.094273694"
             rx="0.094270319"
             y="7.9375"
             x="-9.0625"
             height="4.1875"
             width="8.125"
             id="rect12365"
             style="fill:#e8c48d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
          <path
             sodipodi:type="inkscape:offset"
             inkscape:radius="-0.9375"
             inkscape:original="M 0.59375 7.5 C 0.54152424 7.5 0.5 7.5415224 0.5 7.59375 L 0.5 15.40625 C 0.5 15.458478 0.54152424 15.5 0.59375 15.5 L 9.40625 15.5 C 9.4584758 15.5 9.5 15.458478 9.5 15.40625 L 9.5 7.59375 C 9.5 7.5415224 9.4584758 7.5 9.40625 7.5 L 0.59375 7.5 z "
             xlink:href="#rect6030"
             style="opacity:0.43975902;fill:none;stroke:url(#radialGradient4622);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             id="path12367"
             inkscape:href="#rect6030"
             d="M 1.4375,8.4375 L 1.4375,14.5625 L 8.5625,14.5625 L 8.5625,8.4375 L 1.4375,8.4375 z" />
          <path
             sodipodi:nodetypes="ccccccccc"
             style="fill:#f5efe4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             d="M 1.9445437,8.133437 L 9.2570437,7.9817863 L 2.0699138,8.9685326 L 1.9445437,11.138641 L 9.0156115,11.050251 L 9.1039995,12.199299 L 0.97227183,12.110913 L 0.88388348,7.9566603 L 1.9445437,8.133437 z"
             id="path12369" />
        </g>
        <rect
           style="opacity:0.5792079;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter7811);enable-background:accumulate"
           id="rect12371"
           width="10"
           height="2.875"
           x="515.875"
           y="16.625"
           rx="1.25"
           ry="1.4375"
           transform="matrix(1.15,0,0,1,-204.11687,67.639334)" />
        <g
           id="g12373"
           transform="translate(390.02997,71.154498)">
          <rect
             ry="0.094273694"
             rx="0.094270319"
             y="7.5"
             x="0.48438835"
             height="8.000001"
             width="9.0156116"
             id="rect12375"
             style="fill:#d9a452;fill-opacity:1;fill-rule:evenodd;stroke:#8f5902;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
          <rect
             style="fill:#e8c48d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             id="rect12377"
             width="8.125"
             height="4.1875"
             x="-9.0625"
             y="7.9375"
             rx="0.094270319"
             ry="0.094273694"
             transform="scale(-1,1)" />
          <path
             d="M 1.4375,8.4375 L 1.4375,14.5625 L 8.5625,14.5625 L 8.5625,8.4375 L 1.4375,8.4375 z"
             inkscape:href="#rect6030"
             id="path12379"
             style="opacity:0.43975902;fill:none;stroke:url(#radialGradient4624);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             xlink:href="#rect6030"
             inkscape:original="M 0.59375 7.5 C 0.54152424 7.5 0.5 7.5415224 0.5 7.59375 L 0.5 15.40625 C 0.5 15.458478 0.54152424 15.5 0.59375 15.5 L 9.40625 15.5 C 9.4584758 15.5 9.5 15.458478 9.5 15.40625 L 9.5 7.59375 C 9.5 7.5415224 9.4584758 7.5 9.40625 7.5 L 0.59375 7.5 z "
             inkscape:radius="-0.9375"
             sodipodi:type="inkscape:offset" />
          <path
             id="path12381"
             d="M 1.9445437,8.133437 L 9.2570437,7.9817863 L 2.0699138,8.9685326 L 1.9445437,11.138641 L 9.0156115,11.050251 L 9.1039995,12.199299 L 0.97227183,12.110913 L 0.88388348,7.9566603 L 1.9445437,8.133437 z"
             style="fill:#f5efe4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
             sodipodi:nodetypes="ccccccccc" />
        </g>
      </g>
      <g
         transform="translate(19,-154)"
         id="g4348">
        <path
           style="fill:url(#linearGradient4382);fill-opacity:1;stroke:#8f5902;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.50000001;stroke-opacity:1"
           d="M 305.4487,221.50002 L 316.5513,221.50002 C 317.07688,221.50002 317.5,221.89291 317.5,222.38095 L 317.5,233.61908 C 317.5,234.10712 317.07688,234.50002 316.5513,234.50002 L 305.4487,234.50002 C 304.92312,234.50002 304.5,234.10712 304.5,233.61908 L 304.5,222.38095 C 304.5,221.89291 304.92312,221.50002 305.4487,221.50002 z"
           id="rect3615"
           sodipodi:nodetypes="ccccccccc" />
        <path
           style="fill:url(#linearGradient4384);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
           d="M 305.35994,226 C 305.16053,226 305,226.16404 305,226.3678 L 305,233.38698 L 305,233.63219 C 305,233.83596 305.16053,234 305.35994,234 L 316.64006,234 C 316.83947,234 317,233.83596 317,233.63219 L 317,226.3678 C 317,226.16404 316.83947,226 316.64006,226 L 305.35994,226 z"
           id="path3619"
           sodipodi:nodetypes="cccccccccc" />
        <path
           style="opacity:0.5;fill:url(#radialGradient4386);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
           d="M 305.04817,225 L 305,227.96875 L 317,228 L 316.95183,225 L 305.04817,225 z"
           id="path3621"
           sodipodi:nodetypes="ccccc" />
        <path
           style="opacity:0.81531528;fill:url(#radialGradient4388);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
           d="M 305.38994,225 C 305.17391,225 305,225.18454 305,225.41379 L 305,233.31034 L 305,233.58621 C 305,233.81546 305.17391,234 305.38994,234 L 316.61006,234 C 316.82609,234 317,233.81545 317,233.58621 L 317,225.41379 C 317,225.18454 316.82609,225 316.61006,225 L 305.38994,225 z"
           id="path3623"
           sodipodi:nodetypes="cccccccccc" />
        <rect
           style="opacity:0.7477478;fill:url(#radialGradient4390);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new"
           id="rect3625"
           width="12"
           height="1"
           x="305"
           y="226" />
        <path
           style="fill:url(#linearGradient4392);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.50000001;stroke-opacity:1"
           d="M 305,225.2929 L 305,222.7071 C 305,222.31537 305.31833,222 305.71376,222 L 310.28624,222 C 310.68167,222 311,222.31537 311,222.7071 L 311,225.2929 C 311,225.68463 310.68167,226 310.28624,226 L 306.69866,226"
           id="rect3728"
           sodipodi:nodetypes="cccccccc" />
        <path
           style="opacity:0.34234236;fill:none;fill-opacity:1;stroke:url(#linearGradient4394);stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new"
           d="M 305.5,222.49998 L 316.5,222.49998 L 316.5,233.5 L 305.5,233.5 L 305.5,222.49998 z"
           id="rect3637"
           sodipodi:nodetypes="ccccc" />
        <rect
           style="opacity:0.84684688;fill:none;fill-opacity:1;stroke:url(#linearGradient4396);stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1"
           id="rect3776"
           width="5"
           height="3"
           x="305.5"
           y="222.5"
           rx="0"
           ry="0" />
        <path
           id="path3633"
           d="M 310.02773,222 L 310.02773,226 L 316,226 L 314.80906,222.3206 C 314.77468,222.21295 314.73573,222.11234 314.68646,222.06106 C 314.63718,222.0098 314.59293,222 314.5113,222 L 310.02773,222 z"
           style="opacity:0.46846846;fill:url(#linearGradient4398);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new" />
        <path
           style="fill:url(#linearGradient4400);fill-opacity:1;stroke:#8f5902;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new"
           d="M 317.48872,225.36081 L 317.48872,222.38885 C 317.48872,221.82709 317.03538,221.26135 316.47226,221.12037 L 311.51646,219.87967 C 310.95333,219.73869 310.49999,220.07745 310.49999,220.63921 L 310.49999,223.61117 C 310.49999,224.17293 310.95333,224.73867 311.51646,224.87965 L 315.5512,225.53005"
           id="path3631"
           sodipodi:nodetypes="cccccccc" />
        <path
           sodipodi:type="inkscape:offset"
           inkscape:radius="-0.50579911"
           inkscape:original="M 311.53125 219.875 C 310.96813 219.73402 310.5 220.06324 310.5 220.625 L 310.5 223.625 C 310.49999 224.18675 310.96812 224.73402 311.53125 224.875 L 315.5625 225.53125 L 317.5 225.375 L 317.5 222.375 C 317.50001 221.81324 317.03187 221.26598 316.46875 221.125 L 311.53125 219.875 z "
           style="fill:url(#linearGradient4402);fill-opacity:1;stroke:none;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new"
           id="path3802"
           d="M 311.40625,220.375 C 311.2467,220.33506 311.14794,220.36724 311.09375,220.40625 C 311.03956,220.44526 311,220.48462 311,220.625 L 311,223.625 C 311,223.89865 311.30582,224.27973 311.625,224.375 L 311.65625,224.375 L 315.625,225.03125 L 315.65625,225.03125 L 317,224.90625 L 317,222.375 C 317,222.09425 316.67179,221.70713 316.34375,221.625 L 311.40625,220.375 z" />
        <path
           sodipodi:nodetypes="ccccccc"
           id="path3643"
           d="M 316.45271,222.17044 L 316.45271,224.35794 L 315.45233,224.45124 L 315.36139,224.42847 L 311.54177,223.81597 L 311.54177,220.94097 L 316.45271,222.17044 z"
           style="opacity:0.7162162;fill:none;fill-opacity:1;stroke:url(#linearGradient4404);stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new" />
        <rect
           style="opacity:0.45945943;fill:url(#linearGradient4406);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1"
           id="rect3758"
           width="6.3093591"
           height="0.99751282"
           x="305"
           y="226.00249"
           rx="0.49875641"
           ry="0.49875641" />
      </g>
    </g>
    <g
       style="display:inline;enable-background:new"
       id="g4641"
       transform="translate(11.000012,-50.91737)">
      <rect
         ry="1.3125"
         rx="1.3125"
         y="190.17233"
         x="306"
         height="7.0561552"
         width="16"
         id="rect4643"
         style="opacity:0.75342467;fill:url(#linearGradient4703);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;filter:url(#filter4363)"
         transform="matrix(1.0441942,0,0,1,-13.876971,0)" />
      <g
         transform="translate(-70,0)"
         id="g4645">
        <rect
           style="opacity:1;fill:url(#linearGradient4705);fill-opacity:1;stroke:#8f5902;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1"
           id="rect4647"
           width="15"
           height="14.999985"
           x="376.5"
           y="181.50002"
           rx="1.016466"
           ry="1.016466" />
        <rect
           style="opacity:0.2;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new"
           id="rect4649"
           width="7.9059343"
           height="1.0067567"
           x="380.99799"
           y="185" />
        <path
           style="fill:url(#linearGradient4707);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
           d="M 377.41994,187 C 377.18729,187 377,187.18455 377,187.41378 L 377,195.31035 L 377,195.58621 C 377,195.81545 377.18729,196 377.41994,196 L 390.58006,196 C 390.81271,196 391,195.81545 391,195.58621 L 391,187.41378 C 391,187.18455 390.81271,187 390.58006,187 L 377.41994,187 z"
           id="path4651"
           sodipodi:nodetypes="cccccccccc" />
        <path
           style="opacity:0.5;fill:url(#radialGradient4709);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
           d="M 377.06137,186 L 377.00522,188.96875 L 390.99505,189 L 390.9389,186 L 377.06137,186 z"
           id="path4653"
           sodipodi:nodetypes="ccccc" />
        <path
           style="opacity:0.81531528;fill:url(#radialGradient4711);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
           d="M 377.41994,187 C 377.18729,187 377,187.18454 377,187.41379 L 377,195.31034 L 377,195.58621 C 377,195.81546 377.18729,196 377.41994,196 L 390.58006,196 C 390.81271,196 391,195.81545 391,195.58621 L 391,187.41379 C 391,187.18454 390.81271,187 390.58006,187 L 377.41994,187 z"
           id="path4655"
           sodipodi:nodetypes="cccccccccc" />
        <rect
           style="opacity:0.7477478;fill:url(#radialGradient4713);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new"
           id="rect4657"
           width="13.999999"
           height="1"
           x="377"
           y="187" />
        <rect
           style="opacity:0.4099099;fill:#c17d11;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1"
           id="rect4659"
           width="6.1871843"
           height="1.0067567"
           x="380.99799"
           y="184" />
        <path
           id="path4661"
           d="M 379.10114,182 C 379.05259,182 379.02545,182.02941 378.98455,182.11449 C 378.94365,182.19959 378.90739,182.33719 378.88092,182.47709 L 378,187 L 385,187 L 385,182 L 379.10114,182 z"
           style="opacity:0.46846846;fill:url(#linearGradient4715);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
           sodipodi:nodetypes="csccccc" />
        <path
           transform="matrix(0.970062,-0.2428574,0,1,0,0)"
           style="fill:url(#linearGradient4717);fill-opacity:1;stroke:#8f5902;stroke-width:1.01531363;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new"
           d="M 388.11951,280.61851 L 388.11951,276.64655 C 388.11951,276.08479 388.58684,275.63254 389.16734,275.63254 L 394.27609,275.63254 C 394.8566,275.63254 395.32393,276.08479 395.32393,276.64655 L 395.32393,280.61851 C 395.32393,281.18027 394.8566,281.63252 394.27609,281.63252 L 390.11683,281.27281"
           id="path4663"
           sodipodi:nodetypes="cccccccc" />
        <path
           id="path4665"
           d="M 385,182 L 385,187 L 390,187 L 389.00294,182.40075 C 388.97416,182.26619 388.94155,182.14042 388.9003,182.07633 C 388.85904,182.01225 388.822,182 388.75366,182 L 385,182 z"
           style="opacity:0.46846846;fill:url(#linearGradient4719);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new" />
        <path
           style="opacity:1;fill:url(#linearGradient4721);fill-opacity:1;stroke:#8f5902;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new"
           d="M 391.5,187.0625 L 391.5,183.03125 C 391.5,182.4588 391.03186,181.54259 390.46875,180.96875 L 387.53125,177.9375 C 387.53125,177.9375 387.04629,177.16941 385.8125,177.5 C 385.62877,177.49955 385.5,177.65128 385.5,177.9375 L 385.5,181.96875 C 385.5,182.5412 385.96812,183.45741 386.53125,184.03125 L 389.53687,186.54437"
           id="path4667"
           sodipodi:nodetypes="ccccccccc" />
        <rect
           style="opacity:0.34234236;fill:none;fill-opacity:1;stroke:url(#linearGradient4723);stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new"
           id="rect4669"
           width="13.000001"
           height="13.000016"
           x="377.5"
           y="182.5"
           rx="0"
           ry="0" />
        <path
           sodipodi:type="inkscape:offset"
           inkscape:radius="-0.96875"
           inkscape:original="M 385.8125 177.5 C 385.62877 177.49955 385.5 177.65128 385.5 177.9375 L 385.5 181.96875 C 385.5 182.5412 385.96812 183.45741 386.53125 184.03125 L 389.53125 186.53125 L 391.5 187.0625 L 391.5 183.03125 C 391.5 182.4588 391.03186 181.54259 390.46875 180.96875 L 387.53125 177.9375 C 387.53125 177.9375 387.04629 177.16941 385.8125 177.5 z "
           style="opacity:0.57207211;fill:none;fill-opacity:1;stroke:url(#linearGradient4725);stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new"
           id="path4671"
           d="M 386.46875,178.4375 L 386.46875,181.96875 C 386.46875,182.01229 386.83653,182.90367 387.21875,183.3125 C 387.22556,183.31979 387.21192,183.33679 387.21875,183.34375 L 390,185.65625 L 390.53125,185.78125 L 390.53125,183.03125 C 390.53125,182.98695 390.17131,182.05374 389.78125,181.65625 L 386.84375,178.625 C 386.7968,178.57737 386.75491,178.52501 386.71875,178.46875 C 386.71875,178.46875 386.73273,178.47934 386.65625,178.4375 C 386.6321,178.42429 386.50985,178.45059 386.46875,178.4375 z" />
        <path
           style="opacity:0.41441441;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
           d="M 386.40625,178.25 C 386.54693,179.95518 386.08947,182.01924 386.96875,183.28125"
           id="path4673"
           sodipodi:nodetypes="cc" />
        <path
           sodipodi:type="inkscape:offset"
           inkscape:radius="-1.0629406"
           inkscape:original="M 389.15625 275.625 C 388.57575 275.625 388.125 276.09449 388.125 276.65625 L 388.125 280.625 L 390.125 281.28125 L 394.28125 281.625 C 394.86176 281.625 395.31249 281.18677 395.3125 280.625 L 395.3125 276.65625 C 395.3125 276.09449 394.86176 275.625 394.28125 275.625 L 389.15625 275.625 z "
           style="opacity:0.7162162;fill:none;fill-opacity:1;stroke:url(#linearGradient4727);stroke-width:1.01531363;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new"
           id="path4675"
           d="M 389.1875,276.6875 L 389.1875,279.875 L 390.21875,280.21875 L 390.3125,280.21875 L 394.25,280.5625 L 394.25,276.6875 L 389.1875,276.6875 z"
           transform="matrix(0.970062,-0.2428574,0,1,0,0)" />
      </g>
    </g>
    <g
       style="display:inline;enable-background:new"
       id="g4677"
       transform="translate(-77,70)">
      <rect
         style="opacity:0.5792079;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter7811);enable-background:accumulate"
         id="rect4679"
         width="10"
         height="2.875"
         x="515.875"
         y="16.625"
         rx="1.25"
         ry="1.4375"
         transform="matrix(1.15,0,0,1,-211.11687,61.639334)" />
      <g
         id="g4681"
         transform="translate(383.02997,64.977722)">
        <rect
           ry="0.094273694"
           rx="0.094270319"
           y="7.5"
           x="0.48438835"
           height="8.000001"
           width="9.0156116"
           id="rect4683"
           style="fill:#d9a452;fill-opacity:1;fill-rule:evenodd;stroke:#8f5902;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <rect
           style="fill:#e8c48d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           id="rect4685"
           width="8.125"
           height="4.1875"
           x="-9.0625"
           y="7.9375"
           rx="0.094270319"
           ry="0.094273694"
           transform="scale(-1,1)" />
        <path
           d="M 1.4375,8.4375 L 1.4375,14.5625 L 8.5625,14.5625 L 8.5625,8.4375 L 1.4375,8.4375 z"
           inkscape:href="#rect6030"
           id="path4687"
           style="opacity:0.43975902;fill:none;stroke:url(#radialGradient4729);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           xlink:href="#rect6030"
           inkscape:original="M 0.59375 7.5 C 0.54152424 7.5 0.5 7.5415224 0.5 7.59375 L 0.5 15.40625 C 0.5 15.458478 0.54152424 15.5 0.59375 15.5 L 9.40625 15.5 C 9.4584758 15.5 9.5 15.458478 9.5 15.40625 L 9.5 7.59375 C 9.5 7.5415224 9.4584758 7.5 9.40625 7.5 L 0.59375 7.5 z "
           inkscape:radius="-0.9375"
           sodipodi:type="inkscape:offset" />
        <path
           id="path4689"
           d="M 1.9445437,8.133437 L 9.2570437,7.9817863 L 2.0699138,8.9685326 L 1.9445437,11.138641 L 9.0156115,11.050251 L 9.1039995,12.199299 L 0.97227183,12.110913 L 0.88388348,7.9566603 L 1.9445437,8.133437 z"
           style="fill:#f5efe4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           sodipodi:nodetypes="ccccccccc" />
      </g>
      <rect
         transform="matrix(1.15,0,0,1,-204.11687,67.639334)"
         ry="1.4375"
         rx="1.25"
         y="16.625"
         x="515.875"
         height="2.875"
         width="10"
         id="rect4691"
         style="opacity:0.5792079;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter7811);enable-background:accumulate" />
      <g
         transform="translate(390.02997,71.154498)"
         id="g4693">
        <rect
           style="fill:#d9a452;fill-opacity:1;fill-rule:evenodd;stroke:#8f5902;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           id="rect4695"
           width="9.0156116"
           height="8.000001"
           x="0.48438835"
           y="7.5"
           rx="0.094270319"
           ry="0.094273694" />
        <rect
           transform="scale(-1,1)"
           ry="0.094273694"
           rx="0.094270319"
           y="7.9375"
           x="-9.0625"
           height="4.1875"
           width="8.125"
           id="rect4697"
           style="fill:#e8c48d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           sodipodi:type="inkscape:offset"
           inkscape:radius="-0.9375"
           inkscape:original="M 0.59375 7.5 C 0.54152424 7.5 0.5 7.5415224 0.5 7.59375 L 0.5 15.40625 C 0.5 15.458478 0.54152424 15.5 0.59375 15.5 L 9.40625 15.5 C 9.4584758 15.5 9.5 15.458478 9.5 15.40625 L 9.5 7.59375 C 9.5 7.5415224 9.4584758 7.5 9.40625 7.5 L 0.59375 7.5 z "
           xlink:href="#rect6030"
           style="opacity:0.43975902;fill:none;stroke:url(#radialGradient4731);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           id="path4699"
           inkscape:href="#rect6030"
           d="M 1.4375,8.4375 L 1.4375,14.5625 L 8.5625,14.5625 L 8.5625,8.4375 L 1.4375,8.4375 z" />
        <path
           sodipodi:nodetypes="ccccccccc"
           style="fill:#f5efe4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           d="M 1.9445437,8.133437 L 9.2570437,7.9817863 L 2.0699138,8.9685326 L 1.9445437,11.138641 L 9.0156115,11.050251 L 9.1039995,12.199299 L 0.97227183,12.110913 L 0.88388348,7.9566603 L 1.9445437,8.133437 z"
           id="path4701" />
      </g>
    </g>
    <g
       id="g4874"
       transform="translate(0,3)">
      <rect
         style="opacity:0.5792079;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter7811);enable-background:accumulate"
         id="rect4735"
         width="10"
         height="2.875"
         x="515.875"
         y="16.625"
         rx="1.25"
         ry="1.4375"
         transform="matrix(1.15,0,0,1,-290.11687,172.63933)" />
      <g
         id="g4737"
         transform="translate(304.02997,175.97772)">
        <rect
           ry="0.094273694"
           rx="0.094270319"
           y="7.5"
           x="0.48438835"
           height="8.000001"
           width="9.0156116"
           id="rect4739"
           style="fill:#d9a452;fill-opacity:1;fill-rule:evenodd;stroke:#8f5902;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <rect
           style="fill:#e8c48d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           id="rect4741"
           width="8.125"
           height="4.1875"
           x="-9.0625"
           y="7.9375"
           rx="0.094270319"
           ry="0.094273694"
           transform="scale(-1,1)" />
        <path
           d="M 1.4375,8.4375 L 1.4375,14.5625 L 8.5625,14.5625 L 8.5625,8.4375 L 1.4375,8.4375 z"
           inkscape:href="#rect6030"
           id="path4743"
           style="opacity:0.43975902;fill:none;stroke:url(#radialGradient4882);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           xlink:href="#rect6030"
           inkscape:original="M 0.59375 7.5 C 0.54152424 7.5 0.5 7.5415224 0.5 7.59375 L 0.5 15.40625 C 0.5 15.458478 0.54152424 15.5 0.59375 15.5 L 9.40625 15.5 C 9.4584758 15.5 9.5 15.458478 9.5 15.40625 L 9.5 7.59375 C 9.5 7.5415224 9.4584758 7.5 9.40625 7.5 L 0.59375 7.5 z "
           inkscape:radius="-0.9375"
           sodipodi:type="inkscape:offset" />
        <path
           id="path4745"
           d="M 1.9445437,8.133437 L 9.2570437,7.9817863 L 2.0699138,8.9685326 L 1.9445437,11.138641 L 9.0156115,11.050251 L 9.1039995,12.199299 L 0.97227183,12.110913 L 0.88388348,7.9566603 L 1.9445437,8.133437 z"
           style="fill:#f5efe4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           sodipodi:nodetypes="ccccccccc" />
      </g>
    </g>
    <rect
       style="opacity:0.5792079;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter7811);enable-background:accumulate"
       id="rect4747"
       width="10"
       height="2.875"
       x="515.875"
       y="16.625"
       rx="1.25"
       ry="1.4375"
       transform="matrix(1.15,0,0,1,-283.11687,178.63933)" />
    <g
       id="g4749"
       transform="translate(311.02997,182.1545)">
      <rect
         ry="0.094273694"
         rx="0.094270319"
         y="7.5"
         x="0.48438835"
         height="8.000001"
         width="9.0156116"
         id="rect4751"
         style="fill:#d9a452;fill-opacity:1;fill-rule:evenodd;stroke:#8f5902;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <rect
         style="fill:#e8c48d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         id="rect4753"
         width="8.125"
         height="4.1875"
         x="-9.0625"
         y="7.9375"
         rx="0.094270319"
         ry="0.094273694"
         transform="scale(-1,1)" />
      <path
         d="M 1.4375,8.4375 L 1.4375,14.5625 L 8.5625,14.5625 L 8.5625,8.4375 L 1.4375,8.4375 z"
         inkscape:href="#rect6030"
         id="path4755"
         style="opacity:0.43975902;fill:none;stroke:url(#radialGradient4761);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         xlink:href="#rect6030"
         inkscape:original="M 0.59375 7.5 C 0.54152424 7.5 0.5 7.5415224 0.5 7.59375 L 0.5 15.40625 C 0.5 15.458478 0.54152424 15.5 0.59375 15.5 L 9.40625 15.5 C 9.4584758 15.5 9.5 15.458478 9.5 15.40625 L 9.5 7.59375 C 9.5 7.5415224 9.4584758 7.5 9.40625 7.5 L 0.59375 7.5 z "
         inkscape:radius="-0.9375"
         sodipodi:type="inkscape:offset" />
      <path
         id="path4757"
         d="M 1.9445437,8.133437 L 9.2570437,7.9817863 L 2.0699138,8.9685326 L 1.9445437,11.138641 L 9.0156115,11.050251 L 9.1039995,12.199299 L 0.97227183,12.110913 L 0.88388348,7.9566603 L 1.9445437,8.133437 z"
         style="fill:#f5efe4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         sodipodi:nodetypes="ccccccccc" />
    </g>
    <g
       id="g5345"
       transform="translate(0,0.25)">
      <path
         sodipodi:type="inkscape:offset"
         inkscape:radius="6.3517137"
         inkscape:original="M 51 190.21875 C 50.331523 190.21875 50.105549 190.35766 49.5625 191 C 49.019451 191.64234 48.447678 192.79364 48.03125 194.03125 C 48.020906 194.04174 48.010489 194.05216 48 194.0625 L 34.09375 234.8125 L 225.90625 234.8125 L 212 193.3125 C 211.61011 192.15141 211.10727 191.29295 210.65625 190.84375 C 210.20523 190.39455 209.92931 190.21875 209.03125 190.21875 L 51 190.21875 z "
         style="opacity:0.55;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;filter:url(#filter7144)"
         id="path7138"
         d="M 51,183.875 C 50.225798,183.875 48.578099,184.026 47.15625,184.8125 C 45.734401,185.599 45.124971,186.42576 44.71875,186.90625 C 43.361193,188.51202 42.782007,189.88957 42.25,191.40625 C 42.156678,191.59981 42.073237,191.79798 42,192 L 28.09375,232.75 C 27.431453,234.68833 27.744475,236.82709 28.934471,238.49432 C 30.124468,240.16155 32.045397,241.15266 34.09375,241.15625 L 225.90625,241.15625 C 227.95243,241.15932 229.8748,240.17655 231.07056,238.51612 C 232.26631,236.85569 232.58903,234.72093 231.9375,232.78125 L 218.03125,191.28125 C 217.4175,189.4535 216.77041,187.98252 215.125,186.34375 C 214.34334,185.56525 210.75823,183.875 209.03125,183.875 L 51,183.875 z"
         transform="matrix(0.4507057,0,0,0.3379238,147.41393,127.55029)" />
      <path
         sodipodi:type="inkscape:offset"
         inkscape:radius="4.9497476"
         inkscape:original="M 51 190.21875 C 50.331523 190.21875 50.105549 190.35766 49.5625 191 C 49.019451 191.64234 48.447678 192.79364 48.03125 194.03125 C 48.020906 194.04174 48.010489 194.05216 48 194.0625 L 34.09375 234.8125 L 225.90625 234.8125 L 212 193.3125 C 211.61011 192.15141 211.10727 191.29295 210.65625 190.84375 C 210.20523 190.39455 209.92931 190.21875 209.03125 190.21875 L 51 190.21875 z "
         style="opacity:0.9;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;filter:url(#filter3515)"
         id="path7140"
         d="M 51,185.28125 C 50.322908,185.28125 48.997661,185.39296 47.84375,186.03125 C 46.689839,186.66954 46.15774,187.36717 45.78125,187.8125 C 44.670836,189.12594 44.111885,190.34658 43.625,191.6875 C 43.554568,191.84046 43.491986,191.99691 43.4375,192.15625 C 43.404625,192.25186 43.376417,192.34041 43.34375,192.4375 C 43.333287,192.44787 43.32287,192.45829 43.3125,192.46875 L 29.40625,233.21875 C 28.897314,234.7288 29.146428,236.39152 30.075565,237.68612 C 31.004702,238.98072 32.500239,239.74888 34.09375,239.75 L 225.90625,239.75 C 227.49211,239.74555 228.97984,238.98156 229.90745,237.69528 C 230.83506,236.40899 231.09024,234.75615 230.59375,233.25 L 216.6875,191.75 C 216.12316,190.0694 215.53803,188.71995 214.15625,187.34375 C 213.44757,186.63793 210.57527,185.28125 209.03125,185.28125 L 51,185.28125 z"
         transform="matrix(0.4399498,0,0,0.3849685,148.81231,116.36007)" />
    </g>
    <g
       id="g5559"
       clip-path="url(#clipPath5608)">
      <g
         transform="translate(40,-370)"
         clip-path="none"
         id="g6979">
        <g
           id="g6868"
           clip-path="none"
           transform="translate(0,-10)">
          <rect
             ry="0"
             rx="0"
             y="471.24704"
             x="90.402031"
             height="0.84287804"
             width="12.643171"
             id="rect5286"
             style="opacity:0.77477477;fill:url(#linearGradient7022);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1" />
          <path
             style="fill:url(#linearGradient7024);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1"
             d="M 54.595325,471.24705 C 52.935042,471.24705 52.083527,472.80224 51.598425,474.24395 L 44.340308,495.53443 C 44.173428,495.90369 44.145669,496.30775 44.106175,496.70509 L 144.01844,496.70509 L 143.78431,495.53443 L 136.52619,473.88495 C 136.04195,472.44287 135.18958,471.24705 133.52929,471.24705 L 54.595325,471.24705 z"
             id="path5288"
             sodipodi:nodetypes="ccccccccc" />
          <path
             style="fill:url(#linearGradient7026);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
             d="M 49.439873,482.22008 L 49.101008,483.21904 L 139.008,483.21904 L 138.68454,482.22008 L 49.439873,482.22008 z"
             id="path5290" />
          <path
             style="fill:url(#linearGradient7028);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline"
             d="M 47.103075,493.70819 C 45.442793,493.70819 44.106175,495.04481 44.106175,496.70509 L 44.106175,561.13844 L 44.106175,563.13637 C 44.106175,564.79665 45.442793,566.13326 47.103075,566.13327 L 141.02154,566.13327 C 142.68183,566.13327 144.01844,564.79665 144.01844,563.13637 L 144.01844,496.70509 C 144.01844,495.04481 142.68183,493.70819 141.02154,493.70819 L 47.103075,493.70819 z"
             id="path5292"
             sodipodi:nodetypes="cccccccccc" />
          <rect
             transform="matrix(0.4994833,0,0,0.4994833,29.121676,448.25521)"
             style="fill:url(#radialGradient7030);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
             id="rect5294"
             width="210.45406"
             height="40"
             x="25"
             y="76"
             mask="url(#mask6971)" />
          <path
             style="opacity:0.33207547;fill:url(#linearGradient7032);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline"
             d="M 47.103075,493.70819 C 45.442793,493.70819 44.106175,495.04481 44.106175,496.70509 L 44.106175,561.13844 L 44.106175,563.13637 C 44.106175,564.79665 45.442793,566.13326 47.103075,566.13327 L 56.109383,566.13327 C 57.769666,566.13327 59.106283,564.79665 59.106283,563.13637 L 59.106283,496.70509 C 59.106283,495.04481 57.769666,493.70819 56.109383,493.70819 L 47.103075,493.70819 z"
             id="path5296"
             sodipodi:nodetypes="cccccccccc" />
          <path
             transform="matrix(0.4994833,0,0,0.4994833,22.12891,434.06676)"
             style="opacity:0.74716952;fill:url(#linearGradient7034);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;filter:url(#filter7408)"
             d="M 70,78.1875 C 66.676,78.187498 64.971209,81.181449 64,83.96875 L 51.46875,118.15625 C 51.134644,118.87016 51.07907,119.63806 51,120.40625 L 144,124.40625 L 144,75.1875 L 70,78.1875 z"
             id="path5298"
             sodipodi:nodetypes="ccccccc" />
          <rect
             style="opacity:0.52452835;fill:url(#linearGradient7036);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
             id="rect5300"
             width="86.410614"
             height="0.99896657"
             x="51.098942"
             y="483.21906" />
          <path
             style="opacity:0.28679247;fill:url(#linearGradient7038);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline"
             d="M 47.103075,543.65652 C 45.442793,543.65652 44.106175,544.99314 44.106175,546.65342 L 44.106175,561.13844 L 44.106175,563.13637 C 44.106175,564.79665 45.442793,566.13326 47.103075,566.13327 L 141.02154,566.13327 C 142.68183,566.13327 144.01844,564.79665 144.01844,563.13637 L 144.01844,546.65342 C 144.01844,544.99314 142.68183,543.65652 141.02154,543.65652 L 47.103075,543.65652 z"
             id="path5302"
             sodipodi:nodetypes="cccccccccc" />
          <path
             style="opacity:0.20754718;fill:url(#linearGradient7040);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline"
             d="M 47.103075,553.64619 C 45.442793,553.64619 44.106175,554.9828 44.106175,556.64309 L 44.106175,561.13844 L 44.106175,563.13637 C 44.106175,564.79665 45.442793,566.13326 47.103075,566.13327 L 141.02154,566.13327 C 142.68183,566.13327 144.01844,564.79665 144.01844,563.13637 L 144.01844,556.64309 C 144.01844,554.9828 142.68183,553.64619 141.02154,553.64619 L 47.103075,553.64619 z"
             id="path5304"
             sodipodi:nodetypes="cccccccccc" />
          <path
             style="opacity:0.1;fill:url(#linearGradient7042);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline"
             d="M 137.01007,495.70612 C 135.34979,495.70612 134.01317,497.04274 134.01317,498.70302 L 134.01317,561.13844 L 134.01317,563.13637 C 134.01317,564.79665 135.34979,566.13326 137.01007,566.13327 L 141.02154,566.13327 C 142.68183,566.13327 144.01844,564.79665 144.01844,563.13637 L 144.01844,498.70302 C 144.01844,497.04274 142.68183,495.70612 141.02154,495.70612 L 137.01007,495.70612 z"
             id="path5306"
             sodipodi:nodetypes="cccccccccc" />
          <path
             style="opacity:0.65660376;fill:url(#linearGradient7044);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;filter:url(#filter7510)"
             d="M 149,45.03125 C 145.676,45.03125 143.97121,48.144845 143,51.03125 L 128.46875,93.65625 C 128.13464,94.395547 128.07907,95.204494 128,96 L 227.03125,96 L 226.5625,93.65625 L 211.03125,57.561389 C 210.06176,54.67425 208.35525,52.280139 205.03125,52.280139 L 149,45.03125 z"
             id="path5308"
             sodipodi:nodetypes="ccccccccc"
             transform="matrix(0.4994833,0,0,0.4823336,29.121676,449.90158)" />
          <path
             sodipodi:nodetypes="cscccc"
             inkscape:r_cy="true"
             inkscape:r_cx="true"
             id="path5310"
             d="M 102.05756,476.22641 L 141.12281,495.8469 C 141.88911,496.28932 144.28999,495.93916 144.28999,495.93916 L 135.95269,472.6955 L 100.61592,452.30292 L 102.05756,476.22641 z"
             style="fill:url(#linearGradient7046);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
             transform="matrix(0.4994833,0,0,0.4994833,29.121676,448.25521)"
             id="g5312">
            <path
               style="fill:#e9b96e;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"
               d="M 123.74846,79 C 123.74846,79 47.117222,94.376004 41.696278,95.828542 C 36.216279,97.296903 29.164401,95.816639 29.164401,95.816639 L 45.888071,48.930883 L 126.63472,31.103522 L 123.74846,79 z"
               id="path5314"
               inkscape:r_cx="true"
               inkscape:r_cy="true"
               sodipodi:nodetypes="czcccc" />
            <path
               style="opacity:0.16603777;fill:#000000;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"
               d="M 123.74846,78 C 123.74846,78 38.439501,95.563293 38.439501,95.563293 C 35.552639,96.336825 29.63641,95.591697 29.63641,95.591697 L 45.888071,47.930883 L 126.63472,30.103522 L 123.74846,78 z"
               id="path5316"
               inkscape:r_cx="true"
               inkscape:r_cy="true"
               sodipodi:nodetypes="cscccc" />
            <path
               style="fill:url(#radialGradient7048);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"
               d="M 123.74846,76 L 29.196232,95.466285 L 45.888071,45.930883 L 126.63472,28.103522 L 123.74846,76 z"
               id="path5318"
               inkscape:r_cx="true"
               inkscape:r_cy="true"
               sodipodi:nodetypes="ccccc" />
          </g>
          <path
             sodipodi:nodetypes="cscccc"
             inkscape:r_cy="true"
             inkscape:r_cx="true"
             id="path5320"
             d="M 102.05756,475.72693 L 141.75902,495.66694 C 142.27333,495.96388 143.85294,495.87672 143.85294,495.87672 L 135.95269,472.19602 L 100.61592,451.80343 L 102.05756,475.72693 z"
             style="opacity:0.15;fill:#000000;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
             sodipodi:nodetypes="ccccc"
             inkscape:r_cy="true"
             inkscape:r_cx="true"
             id="path5322"
             d="M 102.05756,474.72782 L 144.28999,495.93902 L 135.95269,471.19692 L 100.61592,450.80433 L 102.05756,474.72782 z"
             style="fill:url(#linearGradient7050);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
             style="opacity:0.45283018;fill:url(#linearGradient7053);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"
             d="M 60.963737,469.23351 L 52.035473,471.20023 L 43.700345,495.94026 L 60.963737,492.38144 L 60.963737,469.23351 z"
             id="path5324" />
          <path
             style="opacity:0.27169812;fill:url(#radialGradient7055);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"
             d="M 92.368749,462.28757 L 89.267198,484.57185 L 43.700345,495.94026 L 90.932735,486.21594 L 92.368749,462.28757 z"
             id="path5326"
             sodipodi:nodetypes="ccccc" />
          <path
             style="opacity:0.55094335;fill:url(#radialGradient7057);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"
             d="M 100.61022,450.79945 L 102.06185,474.72782 L 144.28379,495.94026 L 103.24883,474.10334 L 100.61022,450.79945 z"
             id="path5328"
             sodipodi:nodetypes="ccccc" />
          <rect
             transform="matrix(0.4994833,0,0,0.4994833,29.121676,449.25418)"
             style="opacity:0.15;fill:url(#linearGradient5648);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
             id="rect5330"
             width="210.5"
             height="149.5"
             x="25"
             y="91"
             mask="url(#mask7322)" />
          <path
             style="fill:url(#radialGradient7061);fill-opacity:1;stroke:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
             d="M 88.74775,486.72663 C 88.299908,486.82217 88.137451,487.07743 87.998525,487.28855 C 87.859599,487.49967 87.74713,487.67917 87.296127,487.78803 C 86.847246,487.89639 86.589433,487.77654 86.29716,487.64756 C 86.004887,487.51857 85.669659,487.37541 85.173323,487.47586 C 84.679219,487.57585 84.486848,487.82186 84.330444,488.03778 C 84.174041,488.25369 84.055344,488.43944 83.628046,488.53726 C 83.205668,488.63394 82.922696,488.50534 82.582253,488.36556 C 82.24181,488.22579 81.857942,488.07298 81.302327,488.17826 C 80.747456,488.28339 80.479553,488.56169 80.256534,488.80261 C 80.033514,489.04353 79.84457,489.25541 79.35122,489.33331 C 78.854829,489.41169 78.586202,489.2829 78.258601,489.16161 C 77.930999,489.04033 77.551352,488.92954 76.963066,489.06796 C 76.373271,489.20674 76.145142,489.48455 75.94849,489.72353 C 75.751839,489.96252 75.585736,490.16839 74.980741,490.30106 C 74.373619,490.4342 74.066732,490.34562 73.732033,490.23862 C 73.397334,490.13163 73.02972,490.00875 72.42089,490.12936 C 71.814135,490.24957 71.513614,490.48029 71.250226,490.69128 C 70.986837,490.90227 70.765828,491.07977 70.220041,491.17516 C 69.670186,491.27125 69.28313,491.22023 68.87768,491.15955 C 68.472229,491.09887 68.038587,491.04108 67.472883,491.14394 C 66.902958,491.24756 66.688247,491.47231 66.520743,491.65903 C 66.353239,491.84575 66.247613,491.99091 65.724692,492.06486 C 65.197107,492.13947 64.840052,492.07026 64.475983,492.00243 C 64.111914,491.9346 63.734849,491.8623 63.196057,491.97121 C 62.650754,492.08143 62.457923,492.34626 62.33757,492.54874 C 62.277394,492.64998 62.222873,492.73328 62.150264,492.79848 C 62.077655,492.86367 61.971946,492.91888 61.775652,492.95457 C 61.380395,493.02643 61.127278,492.92956 60.823512,492.82969 C 60.519745,492.72983 60.169653,492.6303 59.699674,492.73604 C 59.228934,492.84196 59.071446,493.07924 58.93484,493.26674 C 58.798235,493.45424 58.686992,493.60883 58.170007,493.70379 C 57.651983,493.79894 57.335975,493.70396 56.999343,493.61014 C 56.66271,493.51632 56.29864,493.41296 55.735026,493.51648 C 55.168582,493.62053 54.914694,493.87449 54.704841,494.09401 C 54.494988,494.31353 54.322412,494.50329 53.783919,494.62471 C 53.24364,494.74654 52.867474,494.67326 52.472775,494.59349 C 52.078077,494.51373 51.668732,494.42176 51.099196,494.53106 C 50.535509,494.63924 50.298171,494.82245 50.131447,494.99933 C 49.964724,495.1762 49.877204,495.32685 49.491484,495.46759 C 48.740728,495.74151 47.680857,495.37394 47.680857,495.37394 L 47.587204,495.62368 C 47.587204,495.62368 48.686789,496.0238 49.569529,495.70172 C 50.000557,495.54446 50.16816,495.33078 50.318753,495.17102 C 50.469347,495.01126 50.617034,494.88233 51.146023,494.7808 C 51.669162,494.6804 52.028734,494.76296 52.425949,494.84324 C 52.823164,494.92351 53.260847,495.00648 53.846354,494.87445 C 54.433648,494.74203 54.68259,494.48492 54.892147,494.26571 C 55.101705,494.0465 55.266656,493.86085 55.781852,493.76623 C 56.299876,493.67108 56.600274,493.76606 56.936907,493.85988 C 57.27354,493.9537 57.637611,494.04145 58.201224,493.93792 C 58.765878,493.83422 58.992915,493.60602 59.137755,493.40722 C 59.282596,493.20842 59.349879,493.06293 59.76211,492.97017 C 60.175101,492.87725 60.444951,492.96503 60.745467,493.06383 C 61.045983,493.16263 61.367876,493.27135 61.822478,493.1887 C 62.051113,493.14713 62.212113,493.06881 62.321962,492.97017 C 62.43181,492.87154 62.499001,492.76966 62.556094,492.67361 C 62.670281,492.4815 62.750699,492.32043 63.242884,492.22095 C 63.741582,492.12015 64.067535,492.18479 64.429157,492.25217 C 64.790779,492.31954 65.190818,492.39451 65.755909,492.3146 C 66.325663,492.23403 66.53892,492.01926 66.708049,491.83073 C 66.877178,491.64219 66.996961,491.47312 67.51971,491.37807 C 68.046681,491.28226 68.425075,491.34856 68.830853,491.40929 C 69.236632,491.47002 69.679899,491.52748 70.266868,491.4249 C 70.857905,491.32161 71.142679,491.08977 71.406314,490.87859 C 71.669949,490.66741 71.904536,490.47507 72.467716,490.3635 C 73.028821,490.25233 73.315424,490.36453 73.653989,490.47276 C 73.992554,490.58099 74.376457,490.69359 75.027568,490.5508 C 75.680807,490.40755 75.950723,490.12351 76.151405,489.87962 C 76.352088,489.63573 76.489506,489.42821 77.025501,489.30209 C 77.563,489.17562 77.844119,489.27697 78.164947,489.39575 C 78.485776,489.51452 78.845918,489.65462 79.398047,489.56744 C 79.953228,489.47978 80.219857,489.21627 80.44384,488.97431 C 80.667823,488.73235 80.855499,488.52154 81.349153,488.428 C 81.842064,488.33461 82.15026,488.46078 82.4886,488.59969 C 82.82694,488.73861 83.196772,488.88441 83.690481,488.77139 C 84.179266,488.6595 84.377965,488.40839 84.53336,488.19387 C 84.688754,487.97934 84.802741,487.81323 85.235758,487.7256 C 85.666542,487.63842 85.908047,487.7513 86.203507,487.88169 C 86.498966,488.01208 86.847216,488.1456 87.358562,488.02217 C 87.86779,487.89925 88.058922,487.6456 88.20144,487.42903 C 88.343958,487.21246 88.430248,487.04182 88.810185,486.96077 C 89.569914,486.79869 90.558377,487.28855 90.558377,487.28855 L 90.667639,487.07003 C 90.667639,487.07003 89.643588,486.53552 88.74775,486.72663 z"
             id="path5332" />
          <path
             sodipodi:nodetypes="czzzzzzzzzzzzzzzzzzzzz"
             id="path5334"
             d="M 141.78625,495.56583 C 141.78625,495.56583 141.31543,494.56283 140.556,494.18909 C 139.79658,493.81536 139.65351,494.53175 138.7559,494.11937 C 137.8583,493.70699 138.12719,492.99141 137.28292,492.56484 C 136.43865,492.13829 136.26275,492.84285 135.41348,492.44046 C 134.5642,492.03807 134.74092,491.20767 133.79446,490.71462 C 132.848,490.22157 132.48426,490.93267 131.5583,490.41361 C 130.63234,489.89456 130.89809,489.21866 129.84995,488.72979 C 128.80183,488.24093 128.68344,489.03299 127.52446,488.4708 C 126.36548,487.90861 126.68507,487.2892 125.62276,486.747 C 124.56046,486.2048 124.24903,486.76039 123.23323,486.21267 C 122.21742,485.66497 122.09198,485.00396 121.11086,484.48358 C 120.12972,483.9632 120.10383,484.67358 119.15003,484.11853 C 118.19623,483.56347 118.17297,482.96895 117.22833,482.4914 C 116.28372,482.01386 116.28068,482.7844 115.51756,482.37966 C 114.75447,481.97492 114.84104,481.31238 114.0246,480.92181 C 113.20817,480.53125 113.18227,481.24162 112.20981,480.72808 C 111.23735,480.21454 111.38459,479.59982 110.41213,479.08627 C 109.43966,478.57273 109.24459,479.24812 108.2033,478.75059 C 107.16201,478.25306 107.13089,477.52586 106.14293,477.01415 C 105.15496,476.50244 105.14671,477.02998 104.32079,476.75842 C 103.49488,476.48687 102.88453,475.51391 102.88453,475.51391"
             style="opacity:0.60194176;fill:none;stroke:#fbdfb3;stroke-width:0.49999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
          <path
             style="opacity:0.60194176;fill:url(#radialGradient7063);fill-opacity:1;stroke:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline"
             d="M 103.17033,475.5663 L 102.96742,475.70678 C 102.96742,475.70678 103.57323,476.70882 104.46586,477.00232 C 104.90174,477.14563 105.15401,477.08139 105.37118,477.04914 C 105.58835,477.0169 105.7982,477.00433 106.27649,477.25206 C 106.7495,477.49705 106.98197,477.786 107.24424,478.09494 C 107.50651,478.40387 107.7953,478.72588 108.33686,478.98464 C 108.88007,479.24419 109.23847,479.19877 109.53874,479.15634 C 109.83902,479.1139 110.07451,479.08343 110.53771,479.32804 C 111.00344,479.57398 111.18989,479.82641 111.3962,480.10848 C 111.6025,480.39055 111.826,480.69937 112.33273,480.96697 C 112.84039,481.23505 113.15731,481.18952 113.39413,481.12306 C 113.63094,481.05658 113.7778,480.97193 114.15896,481.15427 C 114.54084,481.33695 114.70212,481.57744 114.87697,481.84106 C 115.05182,482.10469 115.23361,482.40501 115.6418,482.62151 C 115.8471,482.73039 116.02517,482.75584 116.1725,482.74638 C 116.31984,482.73691 116.42721,482.69281 116.53151,482.65272 C 116.7401,482.57254 116.91065,482.50422 117.35878,482.73077 C 117.81284,482.96031 118.0374,483.20322 118.2797,483.47999 C 118.522,483.75676 118.78539,484.06703 119.27867,484.35409 C 119.77601,484.64351 120.07492,484.60038 120.32446,484.557 C 120.574,484.51363 120.77599,484.46414 121.24538,484.71309 C 121.71856,484.96406 121.97887,485.25708 122.25996,485.55597 C 122.54105,485.85485 122.8437,486.16288 123.36819,486.44567 C 123.8963,486.73043 124.2635,486.72929 124.60129,486.72663 C 124.93907,486.72398 125.24497,486.71537 125.75634,486.97637 C 126.26583,487.23642 126.41593,487.50906 126.61483,487.80364 C 126.81373,488.09823 127.06087,488.41804 127.66062,488.70896 C 128.26233,489.00083 128.63197,488.94797 128.94055,488.88065 C 129.24913,488.81334 129.48732,488.74156 129.98634,488.97431 C 130.48676,489.20772 130.65078,489.46287 130.82922,489.75475 C 131.00766,490.04663 131.20011,490.37113 131.6877,490.64446 C 132.17798,490.91929 132.54828,490.86752 132.87398,490.81615 C 133.19967,490.76478 133.47417,490.7245 133.91977,490.95663 C 134.3647,491.18842 134.53609,491.48097 134.71582,491.79951 C 134.89555,492.11805 135.08539,492.45674 135.54309,492.67361 C 135.99623,492.8883 136.31843,492.80833 136.57328,492.73604 C 136.82812,492.66375 137.02183,492.59925 137.41615,492.79848 C 137.80844,492.99668 137.9204,493.24679 138.07173,493.53209 C 138.22305,493.81739 138.40539,494.13975 138.88339,494.35936 C 139.3594,494.57806 139.68319,494.48805 139.92918,494.40619 C 140.17517,494.32432 140.34545,494.25026 140.69401,494.4218 C 141.39238,494.76548 141.86468,495.74855 141.86468,495.74855 L 142.0832,495.63929 C 142.0832,495.63929 141.62377,494.60707 140.80328,494.20327 C 140.39242,494.00108 140.09093,494.09225 139.85114,494.17206 C 139.61134,494.25186 139.41424,494.31892 138.99265,494.12523 C 138.57304,493.93245 138.43994,493.68945 138.29025,493.40722 C 138.14055,493.125 137.9774,492.80832 137.52542,492.57995 C 137.07547,492.35262 136.76734,492.42915 136.51084,492.50191 C 136.25435,492.57466 136.04849,492.64277 135.65235,492.45508 C 135.26078,492.26955 135.11519,491.99516 134.93435,491.67464 C 134.7535,491.35412 134.54617,490.98376 134.04464,490.7225 C 133.54378,490.46158 133.16704,490.53087 132.84276,490.58202 C 132.51848,490.63317 132.24825,490.67015 131.81258,490.42593 C 131.3742,490.1802 131.22995,489.91232 131.04774,489.61427 C 130.86554,489.31622 130.64332,488.99564 130.0956,488.74018 C 129.54649,488.48406 129.19611,488.56496 128.89372,488.63091 C 128.59133,488.69687 128.32715,488.76075 127.76988,488.49043 C 127.21065,488.21917 127.02998,487.95438 126.83335,487.66316 C 126.63672,487.37194 126.41842,487.04001 125.8656,486.75785 C 125.31467,486.47666 124.93875,486.47423 124.60129,486.47689 C 124.26382,486.47955 123.96513,486.49011 123.47745,486.22715 C 122.98612,485.96223 122.71252,485.68291 122.43165,485.38427 C 122.15079,485.08563 121.86259,484.76398 121.35464,484.49457 C 120.84289,484.22315 120.54038,484.27991 120.29324,484.32287 C 120.0461,484.36582 119.86,484.40119 119.40354,484.13556 C 118.943,483.86757 118.71094,483.60255 118.46701,483.3239 C 118.22307,483.04526 117.95861,482.76024 117.46804,482.51224 C 116.97155,482.26125 116.67332,482.33407 116.45346,482.41859 C 116.34353,482.46085 116.25428,482.49038 116.1569,482.49663 C 116.05951,482.50289 115.94293,482.48086 115.76667,482.38737 C 115.41177,482.19914 115.25663,481.96706 115.07989,481.70058 C 114.90314,481.43411 114.70279,481.14363 114.26822,480.93575 C 113.83296,480.72753 113.55505,480.81062 113.33169,480.87331 C 113.10834,480.936 112.9224,480.9939 112.4576,480.74844 C 111.99186,480.50249 111.80541,480.23446 111.59911,479.95239 C 111.39281,479.67032 111.16931,479.3615 110.66258,479.0939 C 110.15331,478.82497 109.80822,478.8641 109.50752,478.9066 C 109.20683,478.94909 108.9442,479.0041 108.44612,478.76612 C 107.94639,478.52735 107.69215,478.24583 107.43155,477.93885 C 107.17094,477.63187 106.90071,477.30025 106.38575,477.03354 C 105.87609,476.76956 105.58039,476.7637 105.33996,476.7994 C 105.09953,476.8351 104.93396,476.89643 104.54391,476.76819 C 103.78474,476.51857 103.17033,475.5663 103.17033,475.5663 z"
             id="path5336" />
          <rect
             mask="url(#mask6971)"
             y="76"
             x="25"
             height="40"
             width="210.45406"
             id="rect5340"
             style="opacity:0.68468472;fill:url(#radialGradient7065);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
             transform="matrix(0.4994833,0,0,0.4994833,29.121676,448.25521)" />
          <rect
             ry="1.0282437"
             rx="1.0029663"
             y="495.87964"
             x="44.106174"
             height="69.024048"
             width="2.0266731"
             id="rect5342"
             style="opacity:0.74324323;fill:url(#linearGradient7067);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1" />
          <path
             id="path5344"
             d="M 54.470454,470.66952 L 52.035473,471.20023 L 43.700345,495.94026 L 54.470454,493.7238 L 54.470454,470.66952 z"
             style="opacity:0.55;fill:url(#linearGradient7070);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;enable-background:new" />
          <rect
             transform="scale(-1,1)"
             ry="1.0282437"
             rx="1.0029663"
             y="495.87964"
             x="-143.97162"
             height="69.024048"
             width="2.0266731"
             id="rect5346"
             style="opacity:0.77477477;fill:url(#linearGradient7072);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new" />
          <path
             id="path5348"
             d="M 133.60734,470.66952 L 136.04232,471.20023 L 144.37745,495.94026 L 133.60734,493.7238 L 133.60734,470.66952 z"
             style="opacity:0.77477477;fill:url(#linearGradient7074);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;enable-background:new" />
          <path
             sodipodi:nodetypes="cccccccssccccccccccc"
             transform="matrix(0.4994833,0,0,0.4994833,12.13924,434.06676)"
             clip-path="none"
             id="path5338"
             d="M 176.125,32 L 179.59375,74.4375 L 159.5625,74.4375 L 161.375,55.75 L 79.875,74.34375 L 63.1875,123.875 L 64.28125,123.65625 C 64.226871,123.83505 64.162778,124.00195 64.125,124.1875 C 64.123348,124.19719 64.126613,124.20905 64.125,124.21875 C 64.049278,124.60069 64,125.00142 64,125.40625 L 64,254.40625 L 64,258.40625 C 64,261.73025 66.676,264.40624 70,264.40625 L 258.03125,264.40625 C 261.35525,264.40625 264.03125,261.73024 264.03125,258.40625 L 264.03125,125.40625 C 264.03125,124.71375 263.90145,124.05541 263.6875,123.4375 L 264.5625,123.875 L 247.875,74.34375 L 176.125,32 z"
             style="opacity:0.5;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7076);stroke-width:4.00413752;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;filter:url(#filter3403);enable-background:new" />
          <path
             id="path5350"
             d="M 91.838048,471.24705 L 91.744395,472.65185 L 101.93698,472.65185 L 101.84332,471.24705 L 91.838048,471.24705 z"
             style="opacity:0.15;fill:url(#linearGradient7078);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1" />
          <path
             id="path5352"
             d="M 91.838048,471.24705 L 91.744395,472.65185 L 101.93698,472.65185 L 101.84332,471.24705 L 91.838048,471.24705 z"
             style="opacity:0.3;fill:url(#radialGradient7080);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new" />
        </g>
        <path
           sodipodi:nodetypes="ccccccccccccc"
           style="opacity:0.56164383;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;filter:url(#filter7122);enable-background:new"
           d="M 150.38972,492.75 L 128.125,498.84375 L 120.78125,517.78125 L 121.75,517.6875 L 121.34375,518.90625 C 121.21056,519.22221 121.125,519.57198 121.125,519.9375 L 121.125,560.6875 L 121.125,562.4375 C 121.12499,563.89959 122.31917,565.06249 123.78125,565.0625 L 156.98347,565.0625 C 158.44557,565.06249 159.63972,563.89959 159.63972,562.4375 L 152.51472,503.84375 L 150.38972,492.75 z"
           id="path6974" />
      </g>
      <path
         id="path5553"
         d="M 79.5,176 L 79.5,189.5 L 127.59375,189.5 L 127.28125,178.53125 C 126.93256,177.14576 126.32058,176 125.125,176 L 79.5,176 z"
         style="opacity:0.80365295;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;filter:url(#filter5644);enable-background:new" />
    </g>
    <g
       id="g4552"
       clip-path="url(#clipPath4590)"
       transform="translate(0,-350)">
      <path
         style="fill:url(#linearGradient4614);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
         d="M 164.76563,494.29113 C 163.30355,494.29113 162.12649,495.46819 162.12649,496.93028 L 162.12649,553.67195 L 162.12649,555.43137 C 162.12649,556.89346 163.30355,558.07051 164.76563,558.07052 L 247.47266,558.07052 C 248.93476,558.07052 250.11181,556.89346 250.11181,555.43137 L 250.11181,496.93028 C 250.11181,495.46819 248.93476,494.29113 247.47266,494.29113 L 164.76563,494.29113 z"
         id="path5508"
         sodipodi:nodetypes="cccccccccc" />
      <rect
         transform="matrix(0.4398579,0,0,0.4398579,148.93076,454.26406)"
         style="fill:url(#radialGradient4616);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
         id="rect5510"
         width="210.45406"
         height="40"
         x="25"
         y="76"
         mask="url(#mask6971)" />
      <path
         style="opacity:0.33207547;fill:url(#linearGradient4618);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
         d="M 164.76563,494.29113 C 163.30355,494.29113 162.12649,495.46819 162.12649,496.93028 L 162.12649,553.67195 L 162.12649,555.43137 C 162.12649,556.89346 163.30355,558.07051 164.76563,558.07052 L 172.69682,558.07052 C 174.15892,558.07052 175.33597,556.89346 175.33597,555.43137 L 175.33597,496.93028 C 175.33597,495.46819 174.15892,494.29113 172.69682,494.29113 L 164.76563,494.29113 z"
         id="path5512"
         sodipodi:nodetypes="cccccccccc" />
      <path
         style="opacity:0.28679247;fill:url(#linearGradient4620);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
         d="M 164.76563,538.27692 C 163.30355,538.27692 162.12649,539.45398 162.12649,540.91606 L 162.12649,553.67195 L 162.12649,555.43137 C 162.12649,556.89346 163.30355,558.07051 164.76563,558.07052 L 247.47266,558.07052 C 248.93476,558.07052 250.11181,556.89346 250.11181,555.43137 L 250.11181,540.91606 C 250.11181,539.45398 248.93476,538.27692 247.47266,538.27692 L 164.76563,538.27692 z"
         id="path5518"
         sodipodi:nodetypes="cccccccccc" />
      <path
         style="opacity:0.20754718;fill:url(#linearGradient4622);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
         d="M 164.76563,547.07408 C 163.30355,547.07408 162.12649,548.25113 162.12649,549.71322 L 162.12649,553.67195 L 162.12649,555.43137 C 162.12649,556.89346 163.30355,558.07051 164.76563,558.07052 L 247.47266,558.07052 C 248.93476,558.07052 250.11181,556.89346 250.11181,555.43137 L 250.11181,549.71322 C 250.11181,548.25113 248.93476,547.07408 247.47266,547.07408 L 164.76563,547.07408 z"
         id="path5520"
         sodipodi:nodetypes="cccccccccc" />
      <path
         style="opacity:0.1;fill:url(#linearGradient4624);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
         d="M 243.94006,496.05056 C 242.47797,496.05056 241.30091,497.22762 241.30091,498.6897 L 241.30091,553.67195 L 241.30091,555.43137 C 241.30091,556.89346 242.47797,558.07051 243.94006,558.07052 L 247.47266,558.07052 C 248.93476,558.07052 250.11181,556.89346 250.11181,555.43137 L 250.11181,498.6897 C 250.11181,497.22762 248.93476,496.05056 247.47266,496.05056 L 243.94006,496.05056 z"
         id="path5522"
         sodipodi:nodetypes="cccccccccc" />
      <rect
         mask="url(#mask6971)"
         y="76"
         x="25"
         height="40"
         width="210.45406"
         id="rect5556"
         style="opacity:0.68468472;fill:url(#radialGradient4626);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
         transform="matrix(0.4398579,0,0,0.4398579,148.93076,454.26406)" />
      <rect
         ry="0.90549791"
         rx="0.88323796"
         y="496.20337"
         x="162.1265"
         height="60.784359"
         width="1.7847406"
         id="rect5558"
         style="opacity:0.74324323;fill:url(#linearGradient4628);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new" />
      <rect
         transform="scale(-1,1)"
         ry="0.90549791"
         rx="0.88323796"
         y="496.20337"
         x="-250.07059"
         height="60.784359"
         width="1.7847406"
         id="rect5562"
         style="opacity:0.77477477;fill:url(#linearGradient4630);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new" />
      <rect
         transform="matrix(1,0,0.2588191,0.9659258,0,0)"
         ry="0"
         rx="0"
         y="491.25021"
         x="69.743759"
         height="0.76844424"
         width="11.133903"
         id="rect5502"
         style="opacity:0.77477477;fill:url(#linearGradient4632);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new" />
      <path
         style="fill:url(#linearGradient4634);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
         d="M 165.35636,474.51127 C 163.89427,474.51127 163.51137,475.88081 163.42436,477.15042 L 162.05645,495.89936 C 161.99662,496.22454 162.06751,496.58037 162.12649,496.93028 L 250.11181,496.93028 L 249.6294,495.89936 L 238.12923,476.83427 C 237.36252,475.56434 236.32974,474.51127 234.86764,474.51127 L 165.35636,474.51127 z"
         id="path5504"
         sodipodi:nodetypes="ccccccccc" />
      <path
         style="fill:url(#linearGradient4636);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
         d="M 163.40555,484.1744 L 163.34286,485.05411 L 242.51728,485.05411 L 241.99671,484.1744 L 163.40555,484.1744 z"
         id="path5506" />
      <path
         transform="matrix(0.4398579,0,0.1178596,0.4398579,127.99242,441.76935)"
         style="opacity:0.74716952;fill:url(#linearGradient4638);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;filter:url(#filter7408);enable-background:new"
         d="M 70,78.1875 C 66.676,78.187498 64.971209,81.181449 64,83.96875 L 51.46875,118.15625 C 51.134644,118.87016 51.07907,119.63806 51,120.40625 L 144,124.40625 L 144,75.1875 L 70,78.1875 z"
         id="path5514"
         sodipodi:nodetypes="ccccccc" />
      <rect
         transform="matrix(1,0,0.2588191,0.9659258,0,0)"
         style="opacity:0.52452835;fill:url(#linearGradient4640);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
         id="rect5516"
         width="76.095413"
         height="0.91074878"
         x="35.132431"
         y="502.16498" />
      <path
         style="opacity:0.65660376;fill:url(#linearGradient4642);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;filter:url(#filter7510);enable-background:new"
         d="M 149,45.03125 C 145.676,45.03125 143.97121,48.144845 143,51.03125 L 128.46875,93.65625 C 128.13464,94.395547 128.07907,95.204494 128,96 L 227.03125,96 L 226.5625,93.65625 L 211.03125,57.561389 C 210.06176,54.67425 208.35525,52.280139 205.03125,52.280139 L 149,45.03125 z"
         id="path5524"
         sodipodi:nodetypes="ccccccccc"
         transform="matrix(0.4398579,0,0.1138129,0.4247554,137.88686,455.71389)" />
      <g
         transform="matrix(0.94101,-0.2201536,0.2679492,1,-23.622207,446.09151)"
         id="g5812">
        <path
           style="fill:url(#linearGradient4644);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;enable-background:new"
           d="M 223.15998,88.89622 L 257.56184,106.17453 C 258.23667,106.56414 260.35094,106.25578 260.35094,106.25578 L 253.0089,85.78681 L 221.89043,67.82858 L 223.15998,88.89622 z"
           id="path5526"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:nodetypes="cscccc" />
        <path
           style="opacity:0.15;fill:#000000;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;enable-background:new"
           d="M 223.15998,88.45636 L 258.12211,106.01605 C 258.57502,106.27755 259.96607,106.20079 259.96607,106.20079 L 253.0089,85.34696 L 221.89043,67.38872 L 223.15998,88.45636 z"
           id="path5536"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:nodetypes="cscccc" />
        <path
           style="fill:url(#linearGradient4646);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;enable-background:new"
           d="M 223.15998,87.57653 L 260.35094,106.25565 L 253.0089,84.46712 L 221.89043,66.50889 L 223.15998,87.57653 z"
           id="path5538"
           inkscape:r_cx="true"
           inkscape:r_cy="true"
           sodipodi:nodetypes="ccccc" />
        <path
           sodipodi:nodetypes="ccccc"
           id="path5544"
           d="M 221.88541,66.50459 L 223.16375,87.57653 L 260.34548,106.25675 L 224.16611,86.885506 L 221.88541,66.50459 z"
           style="opacity:0.55094335;fill:url(#radialGradient4648);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;enable-background:new" />
        <path
           style="opacity:0.60194176;fill:none;stroke:#fbdfb3;stroke-width:0.49999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
           d="M 258.14609,105.92701 C 258.14609,105.92701 257.73147,105.04375 257.0627,104.71462 C 256.39393,104.3855 256.26794,105.01638 255.47748,104.65322 C 254.68703,104.29007 254.92382,103.65991 254.18034,103.28426 C 253.43685,102.90863 253.28195,103.52909 252.53406,103.17473 C 251.78616,102.82038 251.94179,102.08911 251.10831,101.65491 C 250.27483,101.22072 249.95451,101.84693 249.13909,101.38984 C 248.32366,100.93275 248.55769,100.33753 247.63467,99.90702 C 246.71167,99.47651 246.60741,100.17402 245.58679,99.67895 C 244.56616,99.18387 244.8476,98.6384 243.9121,98.16093 C 242.97661,97.68345 242.70236,98.17271 241.80782,97.69038 C 240.91327,97.20806 240.8028,96.62595 239.9388,96.1677 C 239.07479,95.70944 239.05199,96.33501 238.21205,95.84622 C 237.37211,95.35743 237.35162,94.83388 236.51975,94.41334 C 235.6879,93.9928 235.68522,94.67135 235.0132,94.31493 C 234.3412,93.95851 234.41744,93.37505 233.69846,93.03111 C 232.97949,92.68718 232.95668,93.31275 232.10031,92.86051 C 231.24394,92.40827 231.3736,91.86693 230.51723,91.41469 C 229.66084,90.96245 229.48906,91.55722 228.57207,91.11908 C 227.65509,90.68094 227.62768,90.04055 226.75766,89.58993 C 225.88763,89.1393 225.88036,89.60386 225.15304,89.36472 C 224.42572,89.12559 223.88823,88.26877 223.88823,88.26877"
           id="path5550"
           sodipodi:nodetypes="czzzzzzzzzzzzzzzzzzzzz" />
        <path
           id="path5552"
           d="M 224.13991,88.31491 L 223.96122,88.43862 C 223.96122,88.43862 224.49471,89.32105 225.28079,89.57951 C 225.66463,89.70571 225.88679,89.64914 226.07804,89.62074 C 226.26928,89.59234 226.45408,89.58128 226.87528,89.79943 C 227.29182,90.01518 227.49654,90.26964 227.7275,90.54169 C 227.95846,90.81375 228.21278,91.09732 228.68969,91.32519 C 229.16805,91.55376 229.48367,91.51376 229.7481,91.47639 C 230.01253,91.43902 230.21991,91.41219 230.62782,91.62759 C 231.03795,91.84418 231.20214,92.06648 231.38382,92.31487 C 231.5655,92.56327 231.76232,92.83523 232.20856,93.07088 C 232.65561,93.30696 232.9347,93.26687 233.14325,93.20833 C 233.35179,93.1498 233.48112,93.07525 233.81678,93.23582 C 234.15307,93.39669 234.2951,93.60848 234.44908,93.84063 C 234.60306,94.07278 234.76315,94.33725 235.12261,94.52791 C 235.3034,94.62379 235.46021,94.64621 235.58996,94.63787 C 235.71971,94.62954 235.81426,94.5907 235.90611,94.5554 C 236.0898,94.48479 236.23999,94.42462 236.63463,94.62413 C 237.03448,94.82627 237.23224,95.04018 237.44561,95.28391 C 237.65899,95.52764 237.89094,95.80088 238.32533,96.05366 C 238.7633,96.30853 239.02653,96.27055 239.24628,96.23236 C 239.46603,96.19416 239.64391,96.15058 240.05727,96.36981 C 240.47396,96.59082 240.7032,96.84886 240.95073,97.11207 C 241.19827,97.37528 241.46479,97.64653 241.92667,97.89557 C 242.39173,98.14633 242.7151,98.14533 243.01257,98.14299 C 243.31002,98.14065 243.57941,98.13307 244.02973,98.36292 C 244.4784,98.59192 244.61059,98.83201 244.78574,99.09143 C 244.9609,99.35085 245.17854,99.63248 245.70669,99.88867 C 246.23657,100.14571 246.56209,100.09915 246.83383,100.03988 C 247.10557,99.9806 247.31533,99.91738 247.75478,100.12235 C 248.19546,100.32789 248.3399,100.55259 248.49704,100.80963 C 248.65418,101.06666 248.82366,101.35243 249.25304,101.59313 C 249.6848,101.83515 250.01089,101.78956 250.29771,101.74432 C 250.58452,101.69908 250.82625,101.66361 251.21866,101.86803 C 251.61048,102.07215 251.76141,102.32978 251.91968,102.61029 C 252.07796,102.89081 252.24514,103.18907 252.6482,103.38005 C 253.04724,103.56911 253.33098,103.49869 253.55541,103.43503 C 253.77983,103.37137 253.95041,103.31457 254.29766,103.49001 C 254.64312,103.66455 254.74172,103.88481 254.87498,104.13605 C 255.00824,104.38729 255.16881,104.67117 255.58975,104.86456 C 256.00894,105.05716 256.29408,104.97789 256.5107,104.9058 C 256.72733,104.83371 256.87728,104.76849 257.18423,104.91955 C 257.79923,105.2222 258.21515,106.08792 258.21515,106.08792 L 258.40759,105.9917 C 258.40759,105.9917 258.003,105.0827 257.28046,104.72711 C 256.91864,104.54905 256.65314,104.62934 256.44198,104.69962 C 256.2308,104.7699 256.05723,104.82895 255.68597,104.65838 C 255.31645,104.48862 255.19924,104.27462 255.06742,104.02609 C 254.93559,103.77756 254.79191,103.49868 254.39389,103.29757 C 253.99765,103.09738 253.7263,103.16477 253.50042,103.22885 C 253.27455,103.29291 253.09327,103.35289 252.74442,103.18761 C 252.39959,103.02422 252.27138,102.78259 252.11213,102.50033 C 251.95286,102.21807 251.77028,101.89192 251.32862,101.66185 C 250.88755,101.43208 250.55579,101.4931 250.27022,101.53814 C 249.98465,101.58319 249.74668,101.61575 249.36301,101.40068 C 248.97697,101.18429 248.84994,100.94838 248.68948,100.68592 C 248.52903,100.42345 248.33333,100.14113 247.851,99.91617 C 247.36744,99.69063 247.05888,99.76186 246.79259,99.81995 C 246.5263,99.87803 246.29366,99.93428 245.80291,99.69624 C 245.31044,99.45735 245.15133,99.22418 244.97818,98.96772 C 244.80502,98.71127 244.61278,98.41896 244.12595,98.17048 C 243.64079,97.92285 243.30974,97.92072 243.01257,97.92306 C 242.71538,97.9254 242.45235,97.9347 242.02288,97.70313 C 241.59021,97.46984 241.34927,97.22386 241.10193,96.96087 C 240.85459,96.69788 240.6008,96.41462 240.15348,96.17737 C 239.70282,95.93836 239.43642,95.98834 239.21879,96.02617 C 239.00115,96.064 238.83726,96.09515 238.43529,95.86123 C 238.02973,95.62522 237.82537,95.39184 237.61056,95.14646 C 237.39574,94.90108 237.16285,94.65008 236.73084,94.43169 C 236.29362,94.21065 236.03099,94.27479 235.83738,94.34921 C 235.74057,94.38643 235.66197,94.41243 235.57622,94.41794 C 235.49045,94.42345 235.38779,94.40405 235.23257,94.32172 C 234.92004,94.15596 234.78342,93.95158 234.62778,93.71692 C 234.47213,93.48225 234.29569,93.22645 233.913,93.04339 C 233.5297,92.86002 233.28496,92.9332 233.08827,92.9884 C 232.89158,93.04361 232.72783,93.09459 232.31852,92.87844 C 231.90838,92.66185 231.74418,92.42581 231.56251,92.17742 C 231.38084,91.92902 231.18402,91.65706 230.73778,91.42141 C 230.2893,91.18458 229.98541,91.21904 229.7206,91.25646 C 229.45581,91.29389 229.22453,91.34233 228.78591,91.13275 C 228.34583,90.92248 228.12194,90.67457 227.89245,90.40424 C 227.66295,90.13391 227.42498,89.84188 226.97149,89.607 C 226.52267,89.37453 226.26227,89.36937 226.05054,89.40081 C 225.83881,89.43225 225.69301,89.48626 225.34952,89.37332 C 224.68098,89.15351 224.13991,88.31491 224.13991,88.31491 z"
           style="opacity:0.60194176;fill:url(#radialGradient4650);fill-opacity:1;stroke:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" />
        <path
           style="opacity:0.77477477;fill:url(#linearGradient4652);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;enable-background:new"
           d="M 250.94353,84.00268 L 253.08783,84.47003 L 260.42796,106.25675 L 250.94353,104.30487 L 250.94353,84.00268 z"
           id="path5564" />
      </g>
      <path
         id="path5566"
         d="M 198.15326,474.51127 L 198.40227,475.74837 L 207.37812,475.74837 L 206.96416,474.51127 L 198.15326,474.51127 z"
         style="opacity:0.15;fill:url(#linearGradient4654);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new" />
      <path
         id="path5568"
         d="M 198.15326,474.51127 L 198.40227,475.74837 L 207.37812,475.74837 L 206.96416,474.51127 L 198.15326,474.51127 z"
         style="opacity:0.3;fill:url(#radialGradient4656);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new" />
      <rect
         mask="url(#mask7322)"
         y="91"
         x="25"
         height="149.5"
         width="210.5"
         id="rect6593"
         style="opacity:0.15;fill:url(#linearGradient5353);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
         transform="matrix(0.4994833,0,0,0.4493161,139.12168,453.8194)" />
      <g
         transform="matrix(1.030935,0.1154511,0.2679492,1,-40.680951,379.69536)"
         id="g5790">
        <g
           style="display:inline;enable-background:new"
           id="g5528"
           transform="matrix(0.4398579,0,0,0.4398579,158.93076,54.26406)">
          <path
             sodipodi:nodetypes="czcccc"
             inkscape:r_cy="true"
             inkscape:r_cx="true"
             id="path5530"
             d="M 123.74846,79 C 123.74846,79 47.117222,94.376004 41.696278,95.828542 C 36.216279,97.296903 29.164401,95.816639 29.164401,95.816639 L 45.888071,48.930883 L 126.63472,31.103522 L 123.74846,79 z"
             style="fill:#e9b96e;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
             sodipodi:nodetypes="cscccc"
             inkscape:r_cy="true"
             inkscape:r_cx="true"
             id="path5532"
             d="M 123.74846,78 C 123.74846,78 38.439501,95.563293 38.439501,95.563293 C 35.552639,96.336825 29.63641,95.591697 29.63641,95.591697 L 45.888071,47.930883 L 126.63472,30.103522 L 123.74846,78 z"
             style="opacity:0.16603777;fill:#000000;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
             sodipodi:nodetypes="ccccc"
             inkscape:r_cy="true"
             inkscape:r_cx="true"
             id="path5534"
             d="M 123.74846,76 L 29.196232,95.466285 L 45.888071,45.930883 L 126.63472,28.103522 L 123.74846,76 z"
             style="fill:url(#radialGradient4660);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
           id="path5540"
           d="M 186.9717,72.73809 L 179.10923,74.47003 L 171.7691,96.25675 L 186.9717,93.12276 L 186.9717,72.73809 z"
           style="opacity:0.45283018;fill:url(#linearGradient4662);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;enable-background:new" />
        <path
           sodipodi:nodetypes="ccccc"
           id="path5542"
           d="M 214.62776,66.62132 L 212.42331,86.936126 L 171.7691,96.25675 L 213.36316,87.69326 L 214.62776,66.62132 z"
           style="opacity:0.27169812;fill:url(#radialGradient4664);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;enable-background:new" />
        <path
           id="path5548"
           d="M 211.43901,88.14299 C 211.04463,88.22712 210.90157,88.45191 210.77923,88.63783 C 210.65689,88.82374 210.55784,88.98182 210.16068,89.07769 C 209.76539,89.1731 209.53834,89.06756 209.28096,88.95398 C 209.02358,88.84039 208.72837,88.71432 208.29128,88.80278 C 207.85616,88.89084 207.68676,89.10747 207.54902,89.29762 C 207.41129,89.48776 207.30676,89.65133 206.93047,89.73747 C 206.55852,89.82262 206.30933,89.70936 206.00952,89.58627 C 205.70972,89.46318 205.37167,89.32862 204.88239,89.42133 C 204.39375,89.51391 204.15782,89.75899 203.96143,89.97115 C 203.76503,90.1833 203.59864,90.3699 203.16419,90.4385 C 202.72705,90.50752 202.49049,90.3941 202.202,90.2873 C 201.91351,90.18049 201.57918,90.08292 201.06112,90.20482 C 200.54173,90.32703 200.34083,90.57168 200.16766,90.78214 C 199.99448,90.9926 199.84821,91.17389 199.31543,91.29072 C 198.78078,91.40797 198.51053,91.32996 198.21578,91.23573 C 197.92104,91.14152 197.59731,91.03331 197.06116,91.13952 C 196.52684,91.24538 196.26219,91.44856 196.03025,91.63436 C 195.7983,91.82016 195.60367,91.97647 195.12303,92.06048 C 194.63882,92.1451 194.29797,92.10017 193.94092,92.04673 C 193.58387,91.99329 193.20199,91.9424 192.70381,92.03298 C 192.20193,92.12423 192.01285,92.32215 191.86534,92.48658 C 191.71783,92.65102 191.62481,92.77885 191.16431,92.84397 C 190.69971,92.90967 190.38528,92.84872 190.06467,92.78899 C 189.74406,92.72926 189.41201,92.66559 188.93754,92.7615 C 188.45732,92.85856 188.28751,93.09178 188.18153,93.27009 C 188.12853,93.35924 188.08052,93.4326 188.01658,93.49001 C 187.95264,93.54742 187.85955,93.59604 187.68669,93.62747 C 187.33861,93.69075 187.11572,93.60545 186.84821,93.5175 C 186.58071,93.42956 186.2724,93.34191 185.85853,93.43503 C 185.44398,93.5283 185.3053,93.73726 185.185,93.90238 C 185.0647,94.06749 184.96673,94.20363 184.51147,94.28725 C 184.05528,94.37104 183.77699,94.2874 183.48055,94.20478 C 183.1841,94.12216 182.86349,94.03114 182.36716,94.1223 C 181.86833,94.21393 181.64475,94.43758 181.45995,94.63089 C 181.27515,94.82421 181.12317,94.99131 180.64896,95.09824 C 180.17318,95.20553 179.84191,95.14099 179.49433,95.07075 C 179.14676,95.00051 178.78627,94.91952 178.28473,95.01577 C 177.78833,95.11103 177.57932,95.27237 177.4325,95.42814 C 177.28568,95.5839 177.20861,95.71656 176.86893,95.8405 C 176.2078,96.08172 175.27445,95.75803 175.27445,95.75803 L 175.19197,95.97796 C 175.19197,95.97796 176.1603,96.33031 176.93766,96.04668 C 177.31724,95.90819 177.46483,95.72002 177.59745,95.57933 C 177.73007,95.43864 177.86012,95.32511 178.32596,95.2357 C 178.78665,95.14728 179.1033,95.21999 179.4531,95.29068 C 179.80289,95.36137 180.18833,95.43444 180.70394,95.31817 C 181.22113,95.20155 181.44036,94.97514 181.6249,94.78209 C 181.80943,94.58905 181.9547,94.42556 182.40839,94.34224 C 182.86458,94.25845 183.12911,94.34209 183.42557,94.42471 C 183.72201,94.50733 184.04262,94.58461 184.53895,94.49343 C 185.03621,94.40211 185.23614,94.20115 185.36368,94.02609 C 185.49124,93.85102 185.55049,93.7229 185.91351,93.64121 C 186.2772,93.55938 186.51484,93.63668 186.77948,93.72369 C 187.04412,93.81069 187.32759,93.90644 187.72793,93.83365 C 187.92926,93.79704 188.07105,93.72807 188.16778,93.64121 C 188.26452,93.55435 188.32369,93.46463 188.37396,93.38005 C 188.47452,93.21087 188.54534,93.06903 188.97877,92.98143 C 189.41794,92.89266 189.70498,92.94958 190.02344,93.00892 C 190.34189,93.06825 190.69417,93.13427 191.19181,93.0639 C 191.69354,92.99294 191.88135,92.80381 192.03029,92.63779 C 192.17923,92.47175 192.28471,92.32287 192.74505,92.23916 C 193.20912,92.15479 193.54234,92.21318 193.89968,92.26666 C 194.25702,92.32014 194.64737,92.37074 195.16427,92.2804 C 195.68476,92.18944 195.93554,91.98528 196.16769,91.79931 C 196.39986,91.61334 196.60645,91.44396 197.1024,91.34571 C 197.59652,91.24781 197.84891,91.34661 198.14706,91.44192 C 198.4452,91.53723 198.78329,91.63639 199.35667,91.51065 C 199.93193,91.3845 200.16962,91.13437 200.34634,90.91959 C 200.52308,90.70482 200.64409,90.52207 201.1161,90.41101 C 201.58943,90.29963 201.837,90.38889 202.11953,90.49348 C 202.40206,90.59807 202.71921,90.72145 203.20543,90.64468 C 203.69433,90.56749 203.92913,90.33543 204.12638,90.12235 C 204.32362,89.90927 204.4889,89.72363 204.92362,89.64125 C 205.35769,89.55901 205.62909,89.67013 205.92705,89.79246 C 206.225,89.91478 206.55068,90.04318 206.98545,89.94366 C 207.41589,89.84512 207.59087,89.62399 207.72771,89.43507 C 207.86455,89.24615 207.96494,89.09988 208.34627,89.0227 C 208.72562,88.94593 208.9383,89.04534 209.19849,89.16016 C 209.45868,89.27498 209.76536,89.39256 210.21566,89.28387 C 210.6641,89.17563 210.83241,88.95226 210.95792,88.76154 C 211.08343,88.57082 211.15942,88.42055 211.494,88.34917 C 212.16303,88.20644 213.0335,88.63783 213.0335,88.63783 L 213.12972,88.44539 C 213.12972,88.44539 212.22791,87.97469 211.43901,88.14299 z"
           style="fill:url(#radialGradient4666);fill-opacity:1;stroke:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" />
        <path
           style="opacity:0.55;fill:url(#linearGradient4668);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;enable-background:new"
           d="M 181.25354,74.00268 L 179.10923,74.47003 L 171.7691,96.25675 L 181.25354,94.30487 L 181.25354,74.00268 z"
           id="path5560" />
      </g>
      <path
         id="path3780"
         d="M 203,463.75 L 206.53125,474.5 L 199.15625,474.5 L 198.4375,471.09375 L 167.09375,474.5 L 165.34375,474.5 C 164.94703,474.5 164.62846,474.60894 164.375,474.78125 L 163.9375,474.84375 L 163.90625,475.3125 C 163.60034,475.81797 163.48212,476.50515 163.4375,477.15625 L 162.0625,495.90625 C 162.00266,496.23144 162.06602,496.58759 162.125,496.9375 L 162.125,553.6875 L 162.125,555.4375 C 162.12499,556.89956 163.31917,558.06249 164.78125,558.0625 L 247.46875,558.0625 C 248.93085,558.06252 250.125,556.89959 250.125,555.4375 L 250.125,496.9375 C 250.125,496.07058 249.67294,495.3243 249.03125,494.84375 L 249.84375,495.03125 L 237.09375,474.84375 L 203,463.75 z"
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4612);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;filter:url(#filter4594);enable-background:new" />
    </g>
    <g
       id="g5440"
       clip-path="url(#clipPath5462)"
       transform="translate(0,-160)">
      <g
         transform="matrix(1,0,0,1.0735566,4,-271.63301)"
         clip-path="none"
         id="g5154"
         style="display:inline;enable-background:new">
        <g
           id="g5112">
          <g
             transform="matrix(0.8177121,0,0,1,-80.59721,109.75)"
             id="g7548">
            <g
               id="g7514"
               transform="matrix(1,0,0,0.5257089,0,240.97335)">
              <path
                 style="fill:url(#linearGradient5295);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
                 d="M 164.76563,440.01119 C 163.30355,440.01119 162.12649,441.26724 162.12649,442.82745 L 162.12649,503.37678 L 162.12649,505.25427 C 162.12649,506.81447 163.30355,508.07051 164.76563,508.07052 L 247.47266,508.07052 C 248.93476,508.07052 250.11181,506.81447 250.11181,505.25427 L 250.11181,442.82745 C 250.11181,441.26724 248.93476,440.01119 247.47266,440.01119 L 164.76563,440.01119 z"
                 id="path7168"
                 sodipodi:nodetypes="cccccccccc" />
              <path
                 style="opacity:0.33207547;fill:url(#linearGradient5297);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
                 d="M 164.76563,444.29113 C 163.30355,444.29113 162.12649,445.46819 162.12649,446.93028 L 162.12649,503.67195 L 162.12649,505.43137 C 162.12649,506.89346 163.30355,508.07051 164.76563,508.07052 L 172.69682,508.07052 C 174.15892,508.07052 175.33597,506.89346 175.33597,505.43137 L 175.33597,446.93028 C 175.33597,445.46819 174.15892,444.29113 172.69682,444.29113 L 164.76563,444.29113 z"
                 id="path7172"
                 sodipodi:nodetypes="cccccccccc" />
              <path
                 style="opacity:0.28679247;fill:url(#linearGradient5299);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
                 d="M 164.76563,488.27692 C 163.30355,488.27692 162.12649,489.45398 162.12649,490.91606 L 162.12649,503.67195 L 162.12649,505.43137 C 162.12649,506.89346 163.30355,508.07051 164.76563,508.07052 L 247.47266,508.07052 C 248.93476,508.07052 250.11181,506.89346 250.11181,505.43137 L 250.11181,490.91606 C 250.11181,489.45398 248.93476,488.27692 247.47266,488.27692 L 164.76563,488.27692 z"
                 id="path7178"
                 sodipodi:nodetypes="cccccccccc" />
              <path
                 style="opacity:0.20754718;fill:url(#linearGradient5301);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
                 d="M 164.76563,497.07408 C 163.30355,497.07408 162.12649,498.25113 162.12649,499.71322 L 162.12649,503.67195 L 162.12649,505.43137 C 162.12649,506.89346 163.30355,508.07051 164.76563,508.07052 L 247.47266,508.07052 C 248.93476,508.07052 250.11181,506.89346 250.11181,505.43137 L 250.11181,499.71322 C 250.11181,498.25113 248.93476,497.07408 247.47266,497.07408 L 164.76563,497.07408 z"
                 id="path7180"
                 sodipodi:nodetypes="cccccccccc" />
              <path
                 style="opacity:0.1;fill:url(#linearGradient5303);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
                 d="M 243.94006,446.05056 C 242.47797,446.05056 241.30091,447.22762 241.30091,448.6897 L 241.30091,503.67195 L 241.30091,505.43137 C 241.30091,506.89346 242.47797,508.07051 243.94006,508.07052 L 247.47266,508.07052 C 248.93476,508.07052 250.11181,506.89346 250.11181,505.43137 L 250.11181,448.6897 C 250.11181,447.22762 248.93476,446.05056 247.47266,446.05056 L 243.94006,446.05056 z"
                 id="path7182"
                 sodipodi:nodetypes="cccccccccc" />
              <rect
                 ry="0.94800305"
                 rx="0.88323796"
                 y="443.35007"
                 x="162.1265"
                 height="63.63765"
                 width="1.7847406"
                 id="rect7188"
                 style="opacity:0.74324323;fill:url(#linearGradient5305);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new" />
              <rect
                 transform="scale(-1,1)"
                 ry="0.90549791"
                 rx="0.88323796"
                 y="446.20337"
                 x="-250.07059"
                 height="60.784359"
                 width="1.7847406"
                 id="rect7208"
                 style="opacity:0.77477477;fill:url(#linearGradient5307);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new" />
            </g>
            <g
               id="g7523"
               transform="matrix(1,0,0,1.0162463,0,30.76574)">
              <path
                 style="fill:url(#linearGradient5309);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
                 d="M 173.19789,418.69333 C 171.7358,418.69333 170.98594,420.06287 170.55874,421.33248 L 162.33268,435.89936 C 162.18572,436.22454 162.16127,436.58037 162.12649,436.93028 L 250.11181,436.93028 L 249.90563,435.89936 L 249.34456,421.01633 C 248.91813,419.7464 248.16751,418.69333 246.70541,418.69333 L 173.19789,418.69333 z"
                 id="path7164"
                 sodipodi:nodetypes="ccccccccc" />
              <rect
                 transform="matrix(0.4398579,0,0,0.4398579,148.93076,394.26406)"
                 style="fill:url(#radialGradient5546);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
                 id="rect7170"
                 width="210.45406"
                 height="40"
                 x="25"
                 y="76"
                 mask="url(#mask6971)" />
              <rect
                 mask="url(#mask6971)"
                 y="76"
                 x="28.822872"
                 height="40"
                 width="206.63118"
                 id="rect7186"
                 style="opacity:0.68468472;fill:url(#radialGradient5548);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
                 transform="matrix(0.4398579,0,0,0.4398579,148.93076,394.26406)" />
            </g>
          </g>
          <path
             style="fill:url(#linearGradient5315);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992000000000;stroke-opacity:1;display:inline;enable-background:new"
             d="M 61.0288,566.01129 C 59.833232,566.01129 59.220062,567.40308 58.870735,568.69331 L 52.144187,583.49685 C 52.024016,583.82731 52.004023,584.18893 51.975583,584.54452 L 123.92224,584.54452 L 123.75365,583.49685 L 123.29485,568.37203 C 122.94616,567.08147 122.33237,566.01129 121.13679,566.01129 L 61.0288,566.01129 z"
             id="path4670"
             sodipodi:nodetypes="ccccccccc" />
          <rect
             mask="url(#mask7322)"
             y="92.669205"
             x="47.523277"
             height="78.280655"
             width="156.44411"
             id="rect5108"
             style="opacity:0.15;fill:url(#linearGradient5550);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
             transform="matrix(0.4994833,0,0,0.4493161,24.87168,543.5694)" />
        </g>
        <path
           style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5319);stroke-width:0.96513385;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;filter:url(#filter5150);enable-background:new"
           d="M 61.03125,566 C 59.83568,566 59.22433,567.39726 58.875,568.6875 L 52.625,582.4375 C 52.21613,582.7066 51.96875,583.11004 51.96875,583.53125 L 51.96875,584.53125 L 51.96875,615.34375 L 51.96875,616.34375 C 51.96875,617.16397 52.92944,617.81249 54.125,617.8125 L 121.75,617.8125 C 122.94558,617.8125 123.9375,617.16396 123.9375,616.34375 L 123.9375,584.53125 L 123.9375,583.53125 C 123.9375,583.31184 123.84253,583.0932 123.71875,582.90625 L 123.28125,568.375 C 122.93255,567.08444 122.32058,566 121.125,566 L 61.03125,566 z"
           id="path5129" />
      </g>
      <path
         id="path5431"
         d="M 112.9375,376 C 111.74193,376 111.13057,377.39726 110.78125,378.6875 L 108.40625,393.75 C 108.28607,394.08045 108.24719,394.42566 108.21875,394.78125 L 108.25,394.78125 C 108.23735,394.84407 108.21875,394.90356 108.21875,394.96875 L 108.21875,395.5 L 131.5,395.5 L 131.5,376 L 112.9375,376 z"
         style="fill:url(#linearGradient5544);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;filter:url(#filter5534);enable-background:new" />
    </g>
    <g
       id="g5072"
       clip-path="url(#clipPath5092)"
       transform="translate(4,0)">
      <g
         clip-path="none"
         id="g4964">
        <g
           id="g4926">
          <path
             style="fill:url(#linearGradient4877);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
             d="M 106.38364,233.54115 C 105.18808,233.54115 104.22558,234.1784 104.22558,234.96996 L 104.22558,265.68921 L 104.22558,266.64174 C 104.22558,267.4333 105.18808,268.07054 106.38364,268.07054 L 174.01418,268.07054 C 175.20975,268.07054 176.17224,267.4333 176.17224,266.64174 L 176.17224,234.96996 C 176.17224,234.1784 175.20975,233.54115 174.01418,233.54115 L 106.38364,233.54115 z"
             id="path7632"
             sodipodi:nodetypes="cccccccccc" />
          <path
             style="opacity:0.28679247;fill:url(#linearGradient4871);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
             d="M 106.38364,257.66487 C 105.18808,257.66487 104.22558,258.28366 104.22558,259.05229 L 104.22558,265.75818 L 104.22558,266.68312 C 104.22558,267.45175 105.18808,268.07054 106.38364,268.07054 L 174.01418,268.07054 C 175.20975,268.07054 176.17224,267.45175 176.17224,266.68312 L 176.17224,259.05229 C 176.17224,258.28366 175.20975,257.66487 174.01418,257.66487 L 106.38364,257.66487 z"
             id="path7636"
             sodipodi:nodetypes="cccccccccc" />
          <path
             style="opacity:0.20754718;fill:url(#linearGradient4868);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
             d="M 106.38364,262.28962 C 105.18808,262.28962 104.22558,262.9084 104.22558,263.67704 L 104.22558,265.75818 L 104.22558,266.68312 C 104.22558,267.45175 105.18808,268.07054 106.38364,268.07054 L 174.01418,268.07054 C 175.20975,268.07054 176.17224,267.45175 176.17224,266.68312 L 176.17224,263.67704 C 176.17224,262.9084 175.20975,262.28962 174.01418,262.28962 L 106.38364,262.28962 z"
             id="path7638"
             sodipodi:nodetypes="cccccccccc" />
          <g
             transform="matrix(1,0,0,1.0335527,10,-8.9944779)"
             id="g4879">
            <path
               sodipodi:nodetypes="cccccccccc"
               id="path7634"
               d="M 96.38364,234.54115 C 95.18808,234.54115 94.22558,235.15994 94.22558,235.92858 L 94.22558,265.75818 L 94.22558,266.68312 C 94.22558,267.45175 95.18808,268.07054 96.38364,268.07054 L 102.86907,268.07054 C 104.06465,268.07054 105.02713,267.45175 105.02713,266.68312 L 105.02713,235.92858 C 105.02713,235.15994 104.06465,234.54115 102.86907,234.54115 L 96.38364,234.54115 z"
               style="opacity:0.33207547;fill:url(#linearGradient4883);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new" />
            <rect
               style="opacity:0.74324323;fill:url(#linearGradient4885);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new"
               id="rect7642"
               width="1.459404"
               height="31.954878"
               x="94.225594"
               y="235.54643"
               rx="0.72223437"
               ry="0.47602832" />
          </g>
          <g
             transform="matrix(1,0,0,1.0498398,-10,-13.360592)"
             id="g4887">
            <path
               sodipodi:nodetypes="cccccccccc"
               id="path7640"
               d="M 181.12553,235.4661 C 179.92996,235.4661 178.96746,236.08489 178.96746,236.85352 L 178.96746,265.75818 L 178.96746,266.68312 C 178.96746,267.45175 179.92996,268.07054 181.12553,268.07054 L 184.01418,268.07054 C 185.20975,268.07054 186.17224,267.45175 186.17224,266.68312 L 186.17224,236.85352 C 186.17224,236.08489 185.20975,235.4661 184.01418,235.4661 L 181.12553,235.4661 z"
               style="opacity:0.1;fill:url(#linearGradient4891);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new" />
            <rect
               style="opacity:0.77477477;fill:url(#linearGradient4893);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.50000001;stroke-opacity:1;display:inline;enable-background:new"
               id="rect7644"
               width="1.459404"
               height="31.954878"
               x="-186.13853"
               y="235.54643"
               rx="0.72223437"
               ry="0.47602832"
               transform="scale(-1,1)" />
          </g>
          <path
             style="fill:url(#linearGradient4904);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
             d="M 108.93781,216.01128 C 107.74224,216.01128 107.12907,217.40307 106.77975,218.69331 L 104.39419,233.74685 C 104.27401,234.07731 104.25402,234.43893 104.22558,234.79452 L 176.17224,234.79452 L 176.00365,233.74685 L 172.23419,218.37202 C 171.88549,217.08146 171.2717,216.01128 170.07613,216.01128 L 108.93781,216.01128 z"
             id="path7648"
             sodipodi:nodetypes="ccccccccc" />
          <rect
             transform="matrix(0.3596771,0,0,0.447004,93.435274,191.43513)"
             style="fill:url(#radialGradient5321);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
             id="rect7650"
             width="210.45406"
             height="40"
             x="25"
             y="76"
             mask="url(#mask6971)" />
          <path
             style="fill:url(#linearGradient4795);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992000000000;stroke-opacity:1;display:inline;enable-background:new"
             d="M 108.93781,216.01128 C 107.74224,216.01128 107.12907,217.40307 106.77975,218.69331 L 104.39419,233.74685 C 104.27401,234.07731 104.25402,234.43893 104.22558,234.79452 L 176.17224,234.79452 L 176.00365,233.74685 L 172.23419,218.37202 C 171.88549,217.08146 171.2717,216.01128 170.07613,216.01128 L 108.93781,216.01128 z"
             id="path4688"
             sodipodi:nodetypes="ccccccccc" />
          <rect
             mask="url(#mask6971)"
             y="76"
             x="25"
             height="40"
             width="210.45406"
             id="rect7652"
             style="opacity:0.68468472;fill:url(#radialGradient5323);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
             transform="matrix(0.3596771,0,0,0.447004,93.435274,191.43513)" />
        </g>
        <path
           style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4995);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;filter:url(#filter4997);enable-background:new"
           d="M 108.9375,216 C 107.74193,216 107.13057,217.39726 106.78125,218.6875 L 104.40625,233.75 C 104.28607,234.08045 104.24719,234.42566 104.21875,234.78125 L 104.25,234.78125 C 104.23735,234.84407 104.21875,234.90356 104.21875,234.96875 L 104.21875,265.6875 L 104.21875,266.65625 C 104.21875,267.4478 105.17944,268.0625 106.375,268.0625 L 174,268.0625 C 175.19557,268.06251 176.1875,267.44781 176.1875,266.65625 L 176.1875,234.96875 C 176.1875,234.90356 176.1689,234.84407 176.15625,234.78125 L 176.1875,234.78125 L 176,233.75 L 172.21875,218.375 C 171.87005,217.08444 171.25807,216 170.0625,216 L 108.9375,216 z"
           id="path4910" />
      </g>
      <rect
         transform="matrix(0.4994833,0,0,0.4493161,77.87168,193.5694)"
         style="opacity:0.15;fill:url(#linearGradient5325);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1;display:inline;enable-background:new"
         id="rect5068"
         width="156.44411"
         height="78.280655"
         x="47.523277"
         y="92.669205"
         mask="url(#mask7322)" />
    </g>
    <rect
       style="opacity:0.42307690999999997;fill:url(#radialGradient3837);fill-opacity:1;stroke:none;stroke-width:1;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       id="rect3045"
       width="70"
       height="0.6875"
       x="109.1875"
       y="234.79041"
       rx="1.4351335"
       ry="0.6875" />
    <rect
       style="opacity:0.18803419;fill:#000000;fill-opacity:0.96078430999999997;stroke:none;stroke-width:1;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
       id="rect3817"
       width="0.25"
       height="18.787262"
       x="143.625"
       y="216.02902" />
    <rect
       style="opacity:0.38034188000000002;fill:url(#radialGradient3829);fill-opacity:1;stroke:none;stroke-width:1;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
       id="rect3819"
       width="70"
       height="0.6875"
       x="56.5"
       y="195.91541"
       rx="1.4351335"
       ry="0.6875" />
    <rect
       style="opacity:0.18803418;fill:#000000;fill-opacity:0.96078431;stroke:none;stroke-width:1;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
       id="rect3821"
       width="0.42677671"
       height="20.161541"
       x="121.64192"
       y="177.98299"
       transform="matrix(1,0,-0.1490563,0.9888287,0,0)" />
    <rect
       style="opacity:0.54700855000000004;fill:url(#radialGradient3855);fill-opacity:1;stroke:none;stroke-width:1;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
       id="rect3839"
       width="0.42677671"
       height="20.161541"
       x="122.07942"
       y="177.98299"
       transform="matrix(1,0,-0.1490563,0.9888287,0,0)" />
    <rect
       style="opacity:0.46581197000000002;fill:url(#radialGradient3873);fill-opacity:1;stroke:none;stroke-width:1;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new"
       id="rect3865"
       width="0.25"
       height="18.787262"
       x="143.8125"
       y="216.02902" />
  </g>
</svg>