Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/resources/QuinTeTi.svg
blob: 31ffe4ea767b49311ab1889d9b46e32903ee79e4 (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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 10, SVG Export Plug-In . SVG Version: 3.0.0 Build 76)  -->
<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"
   width="1203"
   height="901"
   viewBox="0 0 1200 825"
   overflow="visible"
   enable-background="new -0.142 0 1203 901"
   xml:space="preserve"
   id="svg2"
   sodipodi:version="0.32"
   inkscape:version="0.46"
   sodipodi:docname="QuinTeTi.svg"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   version="1.0"
   style="overflow:visible"><metadata
   id="metadata1281"><rdf:RDF><cc:Work
       rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
         rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
   id="defs1279"><inkscape:perspective
     sodipodi:type="inkscape:persp3d"
     inkscape:vp_x="0 : 450.5 : 1"
     inkscape:vp_y="0 : 1000 : 0"
     inkscape:vp_z="1203 : 450.5 : 1"
     inkscape:persp3d-origin="601.5 : 300.33333 : 1"
     id="perspective1283" /><inkscape:perspective
     id="perspective3683"
     inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
     inkscape:vp_z="744.09448 : 526.18109 : 1"
     inkscape:vp_y="0 : 1000 : 0"
     inkscape:vp_x="0 : 526.18109 : 1"
     sodipodi:type="inkscape:persp3d" /></defs><sodipodi:namedview
   inkscape:window-height="726"
   inkscape:window-width="1087"
   inkscape:pageshadow="2"
   inkscape:pageopacity="0.0"
   guidetolerance="10.0"
   gridtolerance="10.0"
   objecttolerance="10.0"
   borderopacity="1.0"
   bordercolor="#666666"
   pagecolor="#ffffff"
   id="base"
   showgrid="false"
   inkscape:zoom="0.46300914"
   inkscape:cx="601.5"
   inkscape:cy="453.62596"
   inkscape:window-x="145"
   inkscape:window-y="25"
   inkscape:current-layer="svg2" />
	<g
   id="Layer_4_2_"
   transform="translate(-0.141,0.141)">
		<path
   d="M 1202,859.87656 L 2,859.87656 L 2,-39.123441 L 1202,-39.123441 L 1202,859.87656 z"
   id="path5"
   style="fill:#aeb3a3" />
		<g
   id="g7">
			<g
   id="g9"
   transform="translate(0.142,-39.123441)">
				<path
   d="M 45.046,24.329 C 45.046,33.9 37.288,41.658 27.718,41.658 C 18.147,41.658 10.388,33.9 10.388,24.329 C 10.388,14.759 18.146,7 27.718,7 C 37.288,7 45.046,14.759 45.046,24.329 z"
   id="path11"
   style="fill:#c2c2b2" />
				<path
   d="M 97.212,24.329 C 97.212,33.9 89.454,41.658 79.884,41.658 C 70.314,41.658 62.554,33.9 62.554,24.329 C 62.554,14.759 70.314,7 79.884,7 C 89.454,7 97.212,14.759 97.212,24.329 z"
   id="path13"
   style="fill:#c2c2b2" />
				<path
   d="M 149.379,24.329 C 149.379,33.9 141.621,41.658 132.05,41.658 C 122.48,41.658 114.721,33.9 114.721,24.329 C 114.721,14.759 122.48,7 132.05,7 C 141.621,7 149.379,14.759 149.379,24.329 z"
   id="path15"
   style="fill:#c2c2b2" />
				<path
   d="M 201.546,24.329 C 201.546,33.9 193.788,41.658 184.217,41.658 C 174.646,41.658 166.888,33.9 166.888,24.329 C 166.888,14.759 174.646,7 184.217,7 C 193.788,7 201.546,14.759 201.546,24.329 z"
   id="path17"
   style="fill:#c2c2b2" />
				<path
   d="M 253.712,24.329 C 253.712,33.9 245.954,41.658 236.384,41.658 C 226.813,41.658 219.054,33.9 219.054,24.329 C 219.054,14.759 226.813,7 236.384,7 C 245.954,7 253.712,14.759 253.712,24.329 z"
   id="path19"
   style="fill:#c2c2b2" />
				<path
   d="M 305.879,24.329 C 305.879,33.9 298.12,41.658 288.55,41.658 C 278.98,41.658 271.221,33.9 271.221,24.329 C 271.221,14.759 278.98,7 288.55,7 C 298.12,7 305.879,14.759 305.879,24.329 z"
   id="path21"
   style="fill:#c2c2b2" />
				<path
   d="M 358.046,24.329 C 358.046,33.9 350.287,41.658 340.717,41.658 C 331.146,41.658 323.388,33.9 323.388,24.329 C 323.388,14.759 331.146,7 340.717,7 C 350.287,7 358.046,14.759 358.046,24.329 z"
   id="path23"
   style="fill:#c2c2b2" />
				<path
   d="M 410.212,24.329 C 410.212,33.9 402.454,41.658 392.884,41.658 C 383.313,41.658 375.554,33.9 375.554,24.329 C 375.554,14.759 383.313,7 392.884,7 C 402.454,7 410.212,14.759 410.212,24.329 z"
   id="path25"
   style="fill:#c2c2b2" />
				<path
   d="M 462.378,24.329 C 462.378,33.9 454.62,41.658 445.05,41.658 C 435.48,41.658 427.72,33.9 427.72,24.329 C 427.72,14.759 435.48,7 445.05,7 C 454.62,7 462.378,14.759 462.378,24.329 z"
   id="path27"
   style="fill:#c2c2b2" />
				<path
   d="M 514.545,24.329 C 514.545,33.9 506.787,41.658 497.216,41.658 C 487.646,41.658 479.887,33.9 479.887,24.329 C 479.887,14.759 487.646,7 497.216,7 C 506.787,7 514.545,14.759 514.545,24.329 z"
   id="path29"
   style="fill:#c2c2b2" />
				<path
   d="M 566.712,24.329 C 566.712,33.9 558.954,41.658 549.384,41.658 C 539.812,41.658 532.054,33.9 532.054,24.329 C 532.054,14.759 539.812,7 549.384,7 C 558.954,7 566.712,14.759 566.712,24.329 z"
   id="path31"
   style="fill:#c2c2b2" />
				<path
   d="M 618.877,24.329 C 618.877,33.9 611.119,41.658 601.549,41.658 C 591.977,41.658 584.219,33.9 584.219,24.329 C 584.219,14.759 591.977,7 601.549,7 C 611.12,7 618.877,14.759 618.877,24.329 z"
   id="path33"
   style="fill:#c2c2b2" />
				<path
   d="M 671.043,24.329 C 671.043,33.9 663.285,41.658 653.715,41.658 C 644.143,41.658 636.385,33.9 636.385,24.329 C 636.385,14.759 644.143,7 653.715,7 C 663.286,7 671.043,14.759 671.043,24.329 z"
   id="path35"
   style="fill:#c2c2b2" />
				<path
   d="M 723.209,24.329 C 723.209,33.9 715.451,41.658 705.881,41.658 C 696.309,41.658 688.553,33.9 688.553,24.329 C 688.553,14.759 696.309,7 705.881,7 C 715.452,7 723.209,14.759 723.209,24.329 z"
   id="path37"
   style="fill:#c2c2b2" />
				<path
   d="M 775.377,24.329 C 775.377,33.9 767.617,41.658 758.047,41.658 C 748.477,41.658 740.719,33.9 740.719,24.329 C 740.719,14.759 748.477,7 758.047,7 C 767.617,7 775.377,14.759 775.377,24.329 z"
   id="path39"
   style="fill:#c2c2b2" />
				<path
   d="M 827.542,24.329 C 827.542,33.9 819.784,41.658 810.214,41.658 C 800.644,41.658 792.886,33.9 792.886,24.329 C 792.886,14.759 800.644,7 810.214,7 C 819.784,7 827.542,14.759 827.542,24.329 z"
   id="path41"
   style="fill:#c2c2b2" />
				<path
   d="M 879.709,24.329 C 879.709,33.9 871.949,41.658 862.381,41.658 C 852.809,41.658 845.051,33.9 845.051,24.329 C 845.051,14.759 852.809,7 862.381,7 C 871.95,7 879.709,14.759 879.709,24.329 z"
   id="path43"
   style="fill:#c2c2b2" />
				<path
   d="M 931.875,24.329 C 931.875,33.9 924.115,41.658 914.547,41.658 C 904.975,41.658 897.217,33.9 897.217,24.329 C 897.217,14.759 904.975,7 914.547,7 C 924.116,7 931.875,14.759 931.875,24.329 z"
   id="path45"
   style="fill:#c2c2b2" />
				<path
   d="M 984.042,24.329 C 984.042,33.9 976.284,41.658 966.714,41.658 C 957.142,41.658 949.384,33.9 949.384,24.329 C 949.384,14.759 957.142,7 966.714,7 C 976.284,7 984.042,14.759 984.042,24.329 z"
   id="path47"
   style="fill:#c2c2b2" />
				<path
   d="M 1036.208,24.329 C 1036.208,33.9 1028.448,41.658 1018.88,41.658 C 1009.308,41.658 1001.55,33.9 1001.55,24.329 C 1001.55,14.759 1009.308,7 1018.88,7 C 1028.448,7 1036.208,14.759 1036.208,24.329 z"
   id="path49"
   style="fill:#c2c2b2" />
				<path
   d="M 1088.374,24.329 C 1088.374,33.9 1080.616,41.658 1071.046,41.658 C 1061.474,41.658 1053.716,33.9 1053.716,24.329 C 1053.716,14.759 1061.474,7 1071.046,7 C 1080.616,7 1088.374,14.759 1088.374,24.329 z"
   id="path51"
   style="fill:#c2c2b2" />
				<path
   d="M 1140.54,24.329 C 1140.54,33.9 1132.782,41.658 1123.212,41.658 C 1113.64,41.658 1105.882,33.9 1105.882,24.329 C 1105.882,14.759 1113.64,7 1123.212,7 C 1132.782,7 1140.54,14.759 1140.54,24.329 z"
   id="path53"
   style="fill:#c2c2b2" />
				<path
   d="M 1192.706,24.329 C 1192.706,33.9 1184.948,41.658 1175.378,41.658 C 1165.806,41.658 1158.048,33.9 1158.048,24.329 C 1158.048,14.759 1165.806,7 1175.378,7 C 1184.948,7 1192.706,14.759 1192.706,24.329 z"
   id="path55"
   style="fill:#c2c2b2" />
			</g>
			<g
   id="g57"
   transform="translate(0.142,-39.123441)">
				<path
   d="M 45.046,75.334 C 45.046,84.905 37.288,92.663 27.718,92.663 C 18.147,92.663 10.388,84.905 10.388,75.334 C 10.388,65.764 18.147,58.005 27.718,58.005 C 37.288,58.005 45.046,65.765 45.046,75.334 z"
   id="path59"
   style="fill:#c2c2b2" />
				<path
   d="M 97.212,75.334 C 97.212,84.905 89.454,92.663 79.884,92.663 C 70.314,92.663 62.554,84.905 62.554,75.334 C 62.554,65.764 70.314,58.005 79.884,58.005 C 89.454,58.005 97.212,65.765 97.212,75.334 z"
   id="path61"
   style="fill:#c2c2b2" />
				<path
   d="M 149.379,75.334 C 149.379,84.905 141.621,92.663 132.05,92.663 C 122.48,92.663 114.721,84.905 114.721,75.334 C 114.721,65.764 122.48,58.005 132.05,58.005 C 141.621,58.005 149.379,65.765 149.379,75.334 z"
   id="path63"
   style="fill:#c2c2b2" />
				<path
   d="M 201.546,75.334 C 201.546,84.905 193.788,92.663 184.217,92.663 C 174.646,92.663 166.888,84.905 166.888,75.334 C 166.888,65.764 174.646,58.005 184.217,58.005 C 193.788,58.005 201.546,65.765 201.546,75.334 z"
   id="path65"
   style="fill:#c2c2b2" />
				<path
   d="M 253.712,75.334 C 253.712,84.905 245.954,92.663 236.384,92.663 C 226.813,92.663 219.054,84.905 219.054,75.334 C 219.054,65.764 226.813,58.005 236.384,58.005 C 245.954,58.005 253.712,65.765 253.712,75.334 z"
   id="path67"
   style="fill:#c2c2b2" />
				<path
   d="M 305.879,75.334 C 305.879,84.905 298.12,92.663 288.55,92.663 C 278.98,92.663 271.221,84.905 271.221,75.334 C 271.221,65.764 278.98,58.005 288.55,58.005 C 298.12,58.005 305.879,65.765 305.879,75.334 z"
   id="path69"
   style="fill:#c2c2b2" />
				<path
   d="M 358.046,75.334 C 358.046,84.905 350.287,92.663 340.717,92.663 C 331.146,92.663 323.388,84.905 323.388,75.334 C 323.388,65.764 331.146,58.005 340.717,58.005 C 350.287,58.005 358.046,65.765 358.046,75.334 z"
   id="path71"
   style="fill:#c2c2b2" />
				<path
   d="M 410.212,75.334 C 410.212,84.905 402.454,92.663 392.884,92.663 C 383.313,92.663 375.554,84.905 375.554,75.334 C 375.554,65.764 383.313,58.005 392.884,58.005 C 402.454,58.005 410.212,65.765 410.212,75.334 z"
   id="path73"
   style="fill:#c2c2b2" />
				<path
   d="M 462.378,75.334 C 462.378,84.905 454.62,92.663 445.05,92.663 C 435.48,92.663 427.72,84.905 427.72,75.334 C 427.72,65.764 435.48,58.005 445.05,58.005 C 454.62,58.005 462.378,65.765 462.378,75.334 z"
   id="path75"
   style="fill:#c2c2b2" />
				<path
   d="M 514.545,75.334 C 514.545,84.905 506.787,92.663 497.216,92.663 C 487.646,92.663 479.887,84.905 479.887,75.334 C 479.887,65.764 487.646,58.005 497.216,58.005 C 506.787,58.005 514.545,65.765 514.545,75.334 z"
   id="path77"
   style="fill:#c2c2b2" />
				<path
   d="M 566.712,75.334 C 566.712,84.905 558.954,92.663 549.384,92.663 C 539.812,92.663 532.054,84.905 532.054,75.334 C 532.054,65.764 539.812,58.005 549.384,58.005 C 558.954,58.005 566.712,65.765 566.712,75.334 z"
   id="path79"
   style="fill:#c2c2b2" />
				<path
   d="M 618.877,75.334 C 618.877,84.905 611.119,92.663 601.549,92.663 C 591.977,92.663 584.219,84.905 584.219,75.334 C 584.219,65.764 591.977,58.005 601.549,58.005 C 611.12,58.005 618.877,65.765 618.877,75.334 z"
   id="path81"
   style="fill:#c2c2b2" />
				<path
   d="M 671.043,75.334 C 671.043,84.905 663.285,92.663 653.715,92.663 C 644.143,92.663 636.385,84.905 636.385,75.334 C 636.385,65.764 644.143,58.005 653.715,58.005 C 663.286,58.005 671.043,65.765 671.043,75.334 z"
   id="path83"
   style="fill:#c2c2b2" />
				<path
   d="M 723.209,75.334 C 723.209,84.905 715.451,92.663 705.881,92.663 C 696.309,92.663 688.553,84.905 688.553,75.334 C 688.553,65.764 696.309,58.005 705.881,58.005 C 715.452,58.005 723.209,65.765 723.209,75.334 z"
   id="path85"
   style="fill:#c2c2b2" />
				<path
   d="M 775.377,75.334 C 775.377,84.905 767.617,92.663 758.047,92.663 C 748.477,92.663 740.719,84.905 740.719,75.334 C 740.719,65.764 748.477,58.005 758.047,58.005 C 767.617,58.005 775.377,65.765 775.377,75.334 z"
   id="path87"
   style="fill:#c2c2b2" />
				<path
   d="M 827.542,75.334 C 827.542,84.905 819.784,92.663 810.214,92.663 C 800.644,92.663 792.886,84.905 792.886,75.334 C 792.886,65.764 800.644,58.005 810.214,58.005 C 819.784,58.005 827.542,65.765 827.542,75.334 z"
   id="path89"
   style="fill:#c2c2b2" />
				<path
   d="M 879.709,75.334 C 879.709,84.905 871.949,92.663 862.381,92.663 C 852.809,92.663 845.051,84.905 845.051,75.334 C 845.051,65.764 852.809,58.005 862.381,58.005 C 871.95,58.005 879.709,65.765 879.709,75.334 z"
   id="path91"
   style="fill:#c2c2b2" />
				<path
   d="M 931.875,75.334 C 931.875,84.905 924.115,92.663 914.547,92.663 C 904.975,92.663 897.217,84.905 897.217,75.334 C 897.217,65.764 904.975,58.005 914.547,58.005 C 924.116,58.005 931.875,65.765 931.875,75.334 z"
   id="path93"
   style="fill:#c2c2b2" />
				<path
   d="M 984.042,75.334 C 984.042,84.905 976.284,92.663 966.714,92.663 C 957.142,92.663 949.384,84.905 949.384,75.334 C 949.384,65.764 957.142,58.005 966.714,58.005 C 976.284,58.005 984.042,65.765 984.042,75.334 z"
   id="path95"
   style="fill:#c2c2b2" />
				<path
   d="M 1036.208,75.334 C 1036.208,84.905 1028.448,92.663 1018.88,92.663 C 1009.308,92.663 1001.55,84.905 1001.55,75.334 C 1001.55,65.764 1009.308,58.005 1018.88,58.005 C 1028.448,58.005 1036.208,65.765 1036.208,75.334 z"
   id="path97"
   style="fill:#c2c2b2" />
				<path
   d="M 1088.374,75.334 C 1088.374,84.905 1080.616,92.663 1071.046,92.663 C 1061.474,92.663 1053.716,84.905 1053.716,75.334 C 1053.716,65.764 1061.474,58.005 1071.046,58.005 C 1080.616,58.005 1088.374,65.765 1088.374,75.334 z"
   id="path99"
   style="fill:#c2c2b2" />
				<path
   d="M 1140.54,75.334 C 1140.54,84.905 1132.782,92.663 1123.212,92.663 C 1113.64,92.663 1105.882,84.905 1105.882,75.334 C 1105.882,65.764 1113.64,58.005 1123.212,58.005 C 1132.782,58.005 1140.54,65.765 1140.54,75.334 z"
   id="path101"
   style="fill:#c2c2b2" />
				<path
   d="M 1192.706,75.334 C 1192.706,84.905 1184.948,92.663 1175.378,92.663 C 1165.806,92.663 1158.048,84.905 1158.048,75.334 C 1158.048,65.764 1165.806,58.005 1175.378,58.005 C 1184.948,58.005 1192.706,65.765 1192.706,75.334 z"
   id="path103"
   style="fill:#c2c2b2" />
			</g>
			<g
   id="g105"
   transform="translate(0.142,-39.123441)">
				<path
   d="M 45.046,126.34 C 45.046,135.911 37.288,143.669 27.718,143.669 C 18.147,143.669 10.388,135.911 10.388,126.34 C 10.388,116.77 18.147,109.011 27.718,109.011 C 37.288,109.011 45.046,116.77 45.046,126.34 z"
   id="path107"
   style="fill:#c2c2b2" />
				<path
   d="M 97.212,126.34 C 97.212,135.911 89.454,143.669 79.884,143.669 C 70.314,143.669 62.554,135.911 62.554,126.34 C 62.554,116.77 70.314,109.011 79.884,109.011 C 89.454,109.011 97.212,116.77 97.212,126.34 z"
   id="path109"
   style="fill:#c2c2b2" />
				<path
   d="M 149.379,126.34 C 149.379,135.911 141.621,143.669 132.05,143.669 C 122.48,143.669 114.721,135.911 114.721,126.34 C 114.721,116.77 122.48,109.011 132.05,109.011 C 141.621,109.011 149.379,116.77 149.379,126.34 z"
   id="path111"
   style="fill:#c2c2b2" />
				<path
   d="M 201.546,126.34 C 201.546,135.911 193.788,143.669 184.217,143.669 C 174.646,143.669 166.888,135.911 166.888,126.34 C 166.888,116.77 174.646,109.011 184.217,109.011 C 193.788,109.011 201.546,116.77 201.546,126.34 z"
   id="path113"
   style="fill:#c2c2b2" />
				<path
   d="M 253.712,126.34 C 253.712,135.911 245.954,143.669 236.384,143.669 C 226.813,143.669 219.054,135.911 219.054,126.34 C 219.054,116.77 226.813,109.011 236.384,109.011 C 245.954,109.011 253.712,116.77 253.712,126.34 z"
   id="path115"
   style="fill:#c2c2b2" />
				<path
   d="M 305.879,126.34 C 305.879,135.911 298.12,143.669 288.55,143.669 C 278.98,143.669 271.221,135.911 271.221,126.34 C 271.221,116.77 278.98,109.011 288.55,109.011 C 298.12,109.011 305.879,116.77 305.879,126.34 z"
   id="path117"
   style="fill:#c2c2b2" />
				<path
   d="M 358.046,126.34 C 358.046,135.911 350.287,143.669 340.717,143.669 C 331.146,143.669 323.388,135.911 323.388,126.34 C 323.388,116.77 331.146,109.011 340.717,109.011 C 350.287,109.011 358.046,116.77 358.046,126.34 z"
   id="path119"
   style="fill:#c2c2b2" />
				<path
   d="M 410.212,126.34 C 410.212,135.911 402.454,143.669 392.884,143.669 C 383.313,143.669 375.554,135.911 375.554,126.34 C 375.554,116.77 383.313,109.011 392.884,109.011 C 402.454,109.011 410.212,116.77 410.212,126.34 z"
   id="path121"
   style="fill:#c2c2b2" />
				<path
   d="M 462.378,126.34 C 462.378,135.911 454.62,143.669 445.05,143.669 C 435.48,143.669 427.72,135.911 427.72,126.34 C 427.72,116.77 435.48,109.011 445.05,109.011 C 454.62,109.011 462.378,116.77 462.378,126.34 z"
   id="path123"
   style="fill:#c2c2b2" />
				<path
   d="M 514.545,126.34 C 514.545,135.911 506.787,143.669 497.216,143.669 C 487.646,143.669 479.887,135.911 479.887,126.34 C 479.887,116.77 487.646,109.011 497.216,109.011 C 506.787,109.011 514.545,116.77 514.545,126.34 z"
   id="path125"
   style="fill:#c2c2b2" />
				<path
   d="M 566.712,126.34 C 566.712,135.911 558.954,143.669 549.384,143.669 C 539.812,143.669 532.054,135.911 532.054,126.34 C 532.054,116.77 539.812,109.011 549.384,109.011 C 558.954,109.011 566.712,116.77 566.712,126.34 z"
   id="path127"
   style="fill:#c2c2b2" />
				<path
   d="M 618.877,126.34 C 618.877,135.911 611.119,143.669 601.549,143.669 C 591.977,143.669 584.219,135.911 584.219,126.34 C 584.219,116.77 591.977,109.011 601.549,109.011 C 611.12,109.011 618.877,116.77 618.877,126.34 z"
   id="path129"
   style="fill:#c2c2b2" />
				<path
   d="M 671.043,126.34 C 671.043,135.911 663.285,143.669 653.715,143.669 C 644.143,143.669 636.385,135.911 636.385,126.34 C 636.385,116.77 644.143,109.011 653.715,109.011 C 663.286,109.011 671.043,116.77 671.043,126.34 z"
   id="path131"
   style="fill:#c2c2b2" />
				<path
   d="M 723.209,126.34 C 723.209,135.911 715.451,143.669 705.881,143.669 C 696.309,143.669 688.553,135.911 688.553,126.34 C 688.553,116.77 696.309,109.011 705.881,109.011 C 715.452,109.011 723.209,116.77 723.209,126.34 z"
   id="path133"
   style="fill:#c2c2b2" />
				<path
   d="M 775.377,126.34 C 775.377,135.911 767.617,143.669 758.047,143.669 C 748.477,143.669 740.719,135.911 740.719,126.34 C 740.719,116.77 748.477,109.011 758.047,109.011 C 767.617,109.011 775.377,116.77 775.377,126.34 z"
   id="path135"
   style="fill:#c2c2b2" />
				<path
   d="M 827.542,126.34 C 827.542,135.911 819.784,143.669 810.214,143.669 C 800.644,143.669 792.886,135.911 792.886,126.34 C 792.886,116.77 800.644,109.011 810.214,109.011 C 819.784,109.011 827.542,116.77 827.542,126.34 z"
   id="path137"
   style="fill:#c2c2b2" />
				<path
   d="M 879.709,126.34 C 879.709,135.911 871.949,143.669 862.381,143.669 C 852.809,143.669 845.051,135.911 845.051,126.34 C 845.051,116.77 852.809,109.011 862.381,109.011 C 871.95,109.011 879.709,116.77 879.709,126.34 z"
   id="path139"
   style="fill:#c2c2b2" />
				<path
   d="M 931.875,126.34 C 931.875,135.911 924.115,143.669 914.547,143.669 C 904.975,143.669 897.217,135.911 897.217,126.34 C 897.217,116.77 904.975,109.011 914.547,109.011 C 924.116,109.011 931.875,116.77 931.875,126.34 z"
   id="path141"
   style="fill:#c2c2b2" />
				<path
   d="M 984.042,126.34 C 984.042,135.911 976.284,143.669 966.714,143.669 C 957.142,143.669 949.384,135.911 949.384,126.34 C 949.384,116.77 957.142,109.011 966.714,109.011 C 976.284,109.011 984.042,116.77 984.042,126.34 z"
   id="path143"
   style="fill:#c2c2b2" />
				<path
   d="M 1036.208,126.34 C 1036.208,135.911 1028.448,143.669 1018.88,143.669 C 1009.308,143.669 1001.55,135.911 1001.55,126.34 C 1001.55,116.77 1009.308,109.011 1018.88,109.011 C 1028.448,109.011 1036.208,116.77 1036.208,126.34 z"
   id="path145"
   style="fill:#c2c2b2" />
				<path
   d="M 1088.374,126.34 C 1088.374,135.911 1080.616,143.669 1071.046,143.669 C 1061.474,143.669 1053.716,135.911 1053.716,126.34 C 1053.716,116.77 1061.474,109.011 1071.046,109.011 C 1080.616,109.011 1088.374,116.77 1088.374,126.34 z"
   id="path147"
   style="fill:#c2c2b2" />
				<path
   d="M 1140.54,126.34 C 1140.54,135.911 1132.782,143.669 1123.212,143.669 C 1113.64,143.669 1105.882,135.911 1105.882,126.34 C 1105.882,116.77 1113.64,109.011 1123.212,109.011 C 1132.782,109.011 1140.54,116.77 1140.54,126.34 z"
   id="path149"
   style="fill:#c2c2b2" />
				<path
   d="M 1192.706,126.34 C 1192.706,135.911 1184.948,143.669 1175.378,143.669 C 1165.806,143.669 1158.048,135.911 1158.048,126.34 C 1158.048,116.77 1165.806,109.011 1175.378,109.011 C 1184.948,109.011 1192.706,116.77 1192.706,126.34 z"
   id="path151"
   style="fill:#c2c2b2" />
			</g>
			<g
   id="g153"
   transform="translate(0.142,-39.123441)">
				<path
   d="M 45.046,177.345 C 45.046,186.916 37.288,194.674 27.718,194.674 C 18.147,194.674 10.388,186.916 10.388,177.345 C 10.388,167.775 18.147,160.016 27.718,160.016 C 37.288,160.016 45.046,167.775 45.046,177.345 z"
   id="path155"
   style="fill:#c2c2b2" />
				<path
   d="M 97.212,177.345 C 97.212,186.916 89.454,194.674 79.884,194.674 C 70.314,194.674 62.554,186.916 62.554,177.345 C 62.554,167.775 70.314,160.016 79.884,160.016 C 89.454,160.016 97.212,167.775 97.212,177.345 z"
   id="path157"
   style="fill:#c2c2b2" />
				<path
   d="M 149.379,177.345 C 149.379,186.916 141.621,194.674 132.05,194.674 C 122.48,194.674 114.721,186.916 114.721,177.345 C 114.721,167.775 122.48,160.016 132.05,160.016 C 141.621,160.016 149.379,167.775 149.379,177.345 z"
   id="path159"
   style="fill:#c2c2b2" />
				<path
   d="M 201.546,177.345 C 201.546,186.916 193.788,194.674 184.217,194.674 C 174.646,194.674 166.888,186.916 166.888,177.345 C 166.888,167.775 174.646,160.016 184.217,160.016 C 193.788,160.016 201.546,167.775 201.546,177.345 z"
   id="path161"
   style="fill:#c2c2b2" />
				<path
   d="M 253.712,177.345 C 253.712,186.916 245.954,194.674 236.384,194.674 C 226.813,194.674 219.054,186.916 219.054,177.345 C 219.054,167.775 226.813,160.016 236.384,160.016 C 245.954,160.016 253.712,167.775 253.712,177.345 z"
   id="path163"
   style="fill:#c2c2b2" />
				<path
   d="M 305.879,177.345 C 305.879,186.916 298.12,194.674 288.55,194.674 C 278.98,194.674 271.221,186.916 271.221,177.345 C 271.221,167.775 278.98,160.016 288.55,160.016 C 298.12,160.016 305.879,167.775 305.879,177.345 z"
   id="path165"
   style="fill:#c2c2b2" />
				<path
   d="M 358.046,177.345 C 358.046,186.916 350.287,194.674 340.717,194.674 C 331.146,194.674 323.388,186.916 323.388,177.345 C 323.388,167.775 331.146,160.016 340.717,160.016 C 350.287,160.016 358.046,167.775 358.046,177.345 z"
   id="path167"
   style="fill:#c2c2b2" />
				<path
   d="M 410.212,177.345 C 410.212,186.916 402.454,194.674 392.884,194.674 C 383.313,194.674 375.554,186.916 375.554,177.345 C 375.554,167.775 383.313,160.016 392.884,160.016 C 402.454,160.016 410.212,167.775 410.212,177.345 z"
   id="path169"
   style="fill:#c2c2b2" />
				<path
   d="M 462.378,177.345 C 462.378,186.916 454.62,194.674 445.05,194.674 C 435.48,194.674 427.72,186.916 427.72,177.345 C 427.72,167.775 435.48,160.016 445.05,160.016 C 454.62,160.016 462.378,167.775 462.378,177.345 z"
   id="path171"
   style="fill:#c2c2b2" />
				<path
   d="M 514.545,177.345 C 514.545,186.916 506.787,194.674 497.216,194.674 C 487.646,194.674 479.887,186.916 479.887,177.345 C 479.887,167.775 487.646,160.016 497.216,160.016 C 506.787,160.016 514.545,167.775 514.545,177.345 z"
   id="path173"
   style="fill:#c2c2b2" />
				<path
   d="M 566.712,177.345 C 566.712,186.916 558.954,194.674 549.384,194.674 C 539.812,194.674 532.054,186.916 532.054,177.345 C 532.054,167.775 539.812,160.016 549.384,160.016 C 558.954,160.016 566.712,167.775 566.712,177.345 z"
   id="path175"
   style="fill:#c2c2b2" />
				<path
   d="M 618.877,177.345 C 618.877,186.916 611.119,194.674 601.549,194.674 C 591.977,194.674 584.219,186.916 584.219,177.345 C 584.219,167.775 591.977,160.016 601.549,160.016 C 611.12,160.016 618.877,167.775 618.877,177.345 z"
   id="path177"
   style="fill:#c2c2b2" />
				<path
   d="M 671.043,177.345 C 671.043,186.916 663.285,194.674 653.715,194.674 C 644.143,194.674 636.385,186.916 636.385,177.345 C 636.385,167.775 644.143,160.016 653.715,160.016 C 663.286,160.016 671.043,167.775 671.043,177.345 z"
   id="path179"
   style="fill:#c2c2b2" />
				<path
   d="M 723.209,177.345 C 723.209,186.916 715.451,194.674 705.881,194.674 C 696.309,194.674 688.553,186.916 688.553,177.345 C 688.553,167.775 696.309,160.016 705.881,160.016 C 715.452,160.016 723.209,167.775 723.209,177.345 z"
   id="path181"
   style="fill:#c2c2b2" />
				<path
   d="M 775.377,177.345 C 775.377,186.916 767.617,194.674 758.047,194.674 C 748.477,194.674 740.719,186.916 740.719,177.345 C 740.719,167.775 748.477,160.016 758.047,160.016 C 767.617,160.016 775.377,167.775 775.377,177.345 z"
   id="path183"
   style="fill:#c2c2b2" />
				<path
   d="M 827.542,177.345 C 827.542,186.916 819.784,194.674 810.214,194.674 C 800.644,194.674 792.886,186.916 792.886,177.345 C 792.886,167.775 800.644,160.016 810.214,160.016 C 819.784,160.016 827.542,167.775 827.542,177.345 z"
   id="path185"
   style="fill:#c2c2b2" />
				<path
   d="M 879.709,177.345 C 879.709,186.916 871.949,194.674 862.381,194.674 C 852.809,194.674 845.051,186.916 845.051,177.345 C 845.051,167.775 852.809,160.016 862.381,160.016 C 871.95,160.016 879.709,167.775 879.709,177.345 z"
   id="path187"
   style="fill:#c2c2b2" />
				<path
   d="M 931.875,177.345 C 931.875,186.916 924.115,194.674 914.547,194.674 C 904.975,194.674 897.217,186.916 897.217,177.345 C 897.217,167.775 904.975,160.016 914.547,160.016 C 924.116,160.016 931.875,167.775 931.875,177.345 z"
   id="path189"
   style="fill:#c2c2b2" />
				<path
   d="M 984.042,177.345 C 984.042,186.916 976.284,194.674 966.714,194.674 C 957.142,194.674 949.384,186.916 949.384,177.345 C 949.384,167.775 957.142,160.016 966.714,160.016 C 976.284,160.016 984.042,167.775 984.042,177.345 z"
   id="path191"
   style="fill:#c2c2b2" />
				<path
   d="M 1036.208,177.345 C 1036.208,186.916 1028.448,194.674 1018.88,194.674 C 1009.308,194.674 1001.55,186.916 1001.55,177.345 C 1001.55,167.775 1009.308,160.016 1018.88,160.016 C 1028.448,160.016 1036.208,167.775 1036.208,177.345 z"
   id="path193"
   style="fill:#c2c2b2" />
				<path
   d="M 1088.374,177.345 C 1088.374,186.916 1080.616,194.674 1071.046,194.674 C 1061.474,194.674 1053.716,186.916 1053.716,177.345 C 1053.716,167.775 1061.474,160.016 1071.046,160.016 C 1080.616,160.016 1088.374,167.775 1088.374,177.345 z"
   id="path195"
   style="fill:#c2c2b2" />
				<path
   d="M 1140.54,177.345 C 1140.54,186.916 1132.782,194.674 1123.212,194.674 C 1113.64,194.674 1105.882,186.916 1105.882,177.345 C 1105.882,167.775 1113.64,160.016 1123.212,160.016 C 1132.782,160.016 1140.54,167.775 1140.54,177.345 z"
   id="path197"
   style="fill:#c2c2b2" />
				<path
   d="M 1192.706,177.345 C 1192.706,186.916 1184.948,194.674 1175.378,194.674 C 1165.806,194.674 1158.048,186.916 1158.048,177.345 C 1158.048,167.775 1165.806,160.016 1175.378,160.016 C 1184.948,160.016 1192.706,167.775 1192.706,177.345 z"
   id="path199"
   style="fill:#c2c2b2" />
			</g>
			<g
   id="g201"
   transform="translate(0.142,-39.123441)">
				<path
   d="M 45.046,228.351 C 45.046,237.922 37.288,245.68 27.718,245.68 C 18.147,245.68 10.388,237.922 10.388,228.351 C 10.388,218.781 18.147,211.022 27.718,211.022 C 37.288,211.021 45.046,218.781 45.046,228.351 z"
   id="path203"
   style="fill:#c2c2b2" />
				<path
   d="M 97.212,228.351 C 97.212,237.922 89.454,245.68 79.884,245.68 C 70.314,245.68 62.554,237.922 62.554,228.351 C 62.554,218.781 70.314,211.022 79.884,211.022 C 89.454,211.022 97.212,218.781 97.212,228.351 z"
   id="path205"
   style="fill:#c2c2b2" />
				<path
   d="M 149.379,228.351 C 149.379,237.922 141.621,245.68 132.05,245.68 C 122.48,245.68 114.721,237.922 114.721,228.351 C 114.721,218.781 122.48,211.022 132.05,211.022 C 141.621,211.021 149.379,218.781 149.379,228.351 z"
   id="path207"
   style="fill:#c2c2b2" />
				<path
   d="M 201.546,228.351 C 201.546,237.922 193.788,245.68 184.217,245.68 C 174.646,245.68 166.888,237.922 166.888,228.351 C 166.888,218.781 174.646,211.022 184.217,211.022 C 193.788,211.022 201.546,218.781 201.546,228.351 z"
   id="path209"
   style="fill:#c2c2b2" />
				<path
   d="M 253.712,228.351 C 253.712,237.922 245.954,245.68 236.384,245.68 C 226.813,245.68 219.054,237.922 219.054,228.351 C 219.054,218.781 226.813,211.022 236.384,211.022 C 245.954,211.021 253.712,218.781 253.712,228.351 z"
   id="path211"
   style="fill:#c2c2b2" />
				<path
   d="M 305.879,228.351 C 305.879,237.922 298.12,245.68 288.55,245.68 C 278.98,245.68 271.221,237.922 271.221,228.351 C 271.221,218.781 278.98,211.022 288.55,211.022 C 298.12,211.022 305.879,218.781 305.879,228.351 z"
   id="path213"
   style="fill:#c2c2b2" />
				<path
   d="M 358.046,228.351 C 358.046,237.922 350.287,245.68 340.717,245.68 C 331.146,245.68 323.388,237.922 323.388,228.351 C 323.388,218.781 331.146,211.022 340.717,211.022 C 350.287,211.021 358.046,218.781 358.046,228.351 z"
   id="path215"
   style="fill:#c2c2b2" />
				<path
   d="M 410.212,228.351 C 410.212,237.922 402.454,245.68 392.884,245.68 C 383.313,245.68 375.554,237.922 375.554,228.351 C 375.554,218.781 383.313,211.022 392.884,211.022 C 402.454,211.021 410.212,218.781 410.212,228.351 z"
   id="path217"
   style="fill:#c2c2b2" />
				<path
   d="M 462.378,228.351 C 462.378,237.922 454.62,245.68 445.05,245.68 C 435.48,245.68 427.72,237.922 427.72,228.351 C 427.72,218.781 435.48,211.022 445.05,211.022 C 454.62,211.022 462.378,218.781 462.378,228.351 z"
   id="path219"
   style="fill:#c2c2b2" />
				<path
   d="M 514.545,228.351 C 514.545,237.922 506.787,245.68 497.216,245.68 C 487.646,245.68 479.887,237.922 479.887,228.351 C 479.887,218.781 487.646,211.022 497.216,211.022 C 506.787,211.021 514.545,218.781 514.545,228.351 z"
   id="path221"
   style="fill:#c2c2b2" />
				<path
   d="M 566.712,228.351 C 566.712,237.922 558.954,245.68 549.384,245.68 C 539.812,245.68 532.054,237.922 532.054,228.351 C 532.054,218.781 539.812,211.022 549.384,211.022 C 558.954,211.021 566.712,218.781 566.712,228.351 z"
   id="path223"
   style="fill:#c2c2b2" />
				<path
   d="M 618.877,228.351 C 618.877,237.922 611.119,245.68 601.549,245.68 C 591.977,245.68 584.219,237.922 584.219,228.351 C 584.219,218.781 591.977,211.022 601.549,211.022 C 611.12,211.021 618.877,218.781 618.877,228.351 z"
   id="path225"
   style="fill:#c2c2b2" />
				<path
   d="M 671.043,228.351 C 671.043,237.922 663.285,245.68 653.715,245.68 C 644.143,245.68 636.385,237.922 636.385,228.351 C 636.385,218.781 644.143,211.022 653.715,211.022 C 663.286,211.021 671.043,218.781 671.043,228.351 z"
   id="path227"
   style="fill:#c2c2b2" />
				<path
   d="M 723.209,228.351 C 723.209,237.922 715.451,245.68 705.881,245.68 C 696.309,245.68 688.553,237.922 688.553,228.351 C 688.553,218.781 696.309,211.022 705.881,211.022 C 715.452,211.021 723.209,218.781 723.209,228.351 z"
   id="path229"
   style="fill:#c2c2b2" />
				<path
   d="M 775.377,228.351 C 775.377,237.922 767.617,245.68 758.047,245.68 C 748.477,245.68 740.719,237.922 740.719,228.351 C 740.719,218.781 748.477,211.022 758.047,211.022 C 767.617,211.022 775.377,218.781 775.377,228.351 z"
   id="path231"
   style="fill:#c2c2b2" />
				<path
   d="M 827.542,228.351 C 827.542,237.922 819.784,245.68 810.214,245.68 C 800.644,245.68 792.886,237.922 792.886,228.351 C 792.886,218.781 800.644,211.022 810.214,211.022 C 819.784,211.022 827.542,218.781 827.542,228.351 z"
   id="path233"
   style="fill:#c2c2b2" />
				<path
   d="M 879.709,228.351 C 879.709,237.922 871.949,245.68 862.381,245.68 C 852.809,245.68 845.051,237.922 845.051,228.351 C 845.051,218.781 852.809,211.022 862.381,211.022 C 871.95,211.021 879.709,218.781 879.709,228.351 z"
   id="path235"
   style="fill:#c2c2b2" />
				<path
   d="M 931.875,228.351 C 931.875,237.922 924.115,245.68 914.547,245.68 C 904.975,245.68 897.217,237.922 897.217,228.351 C 897.217,218.781 904.975,211.022 914.547,211.022 C 924.116,211.021 931.875,218.781 931.875,228.351 z"
   id="path237"
   style="fill:#c2c2b2" />
				<path
   d="M 984.042,228.351 C 984.042,237.922 976.284,245.68 966.714,245.68 C 957.142,245.68 949.384,237.922 949.384,228.351 C 949.384,218.781 957.142,211.022 966.714,211.022 C 976.284,211.021 984.042,218.781 984.042,228.351 z"
   id="path239"
   style="fill:#c2c2b2" />
				<path
   d="M 1036.208,228.351 C 1036.208,237.922 1028.448,245.68 1018.88,245.68 C 1009.308,245.68 1001.55,237.922 1001.55,228.351 C 1001.55,218.781 1009.308,211.022 1018.88,211.022 C 1028.448,211.021 1036.208,218.781 1036.208,228.351 z"
   id="path241"
   style="fill:#c2c2b2" />
				<path
   d="M 1088.374,228.351 C 1088.374,237.922 1080.616,245.68 1071.046,245.68 C 1061.474,245.68 1053.716,237.922 1053.716,228.351 C 1053.716,218.781 1061.474,211.022 1071.046,211.022 C 1080.616,211.021 1088.374,218.781 1088.374,228.351 z"
   id="path243"
   style="fill:#c2c2b2" />
				<path
   d="M 1140.54,228.351 C 1140.54,237.922 1132.782,245.68 1123.212,245.68 C 1113.64,245.68 1105.882,237.922 1105.882,228.351 C 1105.882,218.781 1113.64,211.022 1123.212,211.022 C 1132.782,211.021 1140.54,218.781 1140.54,228.351 z"
   id="path245"
   style="fill:#c2c2b2" />
				<path
   d="M 1192.706,228.351 C 1192.706,237.922 1184.948,245.68 1175.378,245.68 C 1165.806,245.68 1158.048,237.922 1158.048,228.351 C 1158.048,218.781 1165.806,211.022 1175.378,211.022 C 1184.948,211.021 1192.706,218.781 1192.706,228.351 z"
   id="path247"
   style="fill:#c2c2b2" />
			</g>
			<g
   id="g249"
   transform="translate(0.142,-39.123441)">
				<path
   d="M 45.046,279.356 C 45.046,288.927 37.288,296.685 27.718,296.685 C 18.147,296.685 10.388,288.927 10.388,279.356 C 10.388,269.786 18.147,262.027 27.718,262.027 C 37.288,262.027 45.046,269.786 45.046,279.356 z"
   id="path251"
   style="fill:#c2c2b2" />
				<path
   d="M 97.212,279.356 C 97.212,288.927 89.454,296.685 79.884,296.685 C 70.314,296.685 62.554,288.927 62.554,279.356 C 62.554,269.786 70.314,262.027 79.884,262.027 C 89.454,262.027 97.212,269.786 97.212,279.356 z"
   id="path253"
   style="fill:#c2c2b2" />
				<path
   d="M 149.379,279.356 C 149.379,288.927 141.621,296.685 132.05,296.685 C 122.48,296.685 114.721,288.927 114.721,279.356 C 114.721,269.786 122.48,262.027 132.05,262.027 C 141.621,262.027 149.379,269.786 149.379,279.356 z"
   id="path255"
   style="fill:#c2c2b2" />
				<path
   d="M 201.546,279.356 C 201.546,288.927 193.788,296.685 184.217,296.685 C 174.646,296.685 166.888,288.927 166.888,279.356 C 166.888,269.786 174.646,262.027 184.217,262.027 C 193.788,262.027 201.546,269.786 201.546,279.356 z"
   id="path257"
   style="fill:#c2c2b2" />
				<path
   d="M 253.712,279.356 C 253.712,288.927 245.954,296.685 236.384,296.685 C 226.813,296.685 219.054,288.927 219.054,279.356 C 219.054,269.786 226.813,262.027 236.384,262.027 C 245.954,262.027 253.712,269.786 253.712,279.356 z"
   id="path259"
   style="fill:#c2c2b2" />
				<path
   d="M 305.879,279.356 C 305.879,288.927 298.12,296.685 288.55,296.685 C 278.98,296.685 271.221,288.927 271.221,279.356 C 271.221,269.786 278.98,262.027 288.55,262.027 C 298.12,262.027 305.879,269.786 305.879,279.356 z"
   id="path261"
   style="fill:#c2c2b2" />
				<path
   d="M 358.046,279.356 C 358.046,288.927 350.287,296.685 340.717,296.685 C 331.146,296.685 323.388,288.927 323.388,279.356 C 323.388,269.786 331.146,262.027 340.717,262.027 C 350.287,262.027 358.046,269.786 358.046,279.356 z"
   id="path263"
   style="fill:#c2c2b2" />
				<path
   d="M 410.212,279.356 C 410.212,288.927 402.454,296.685 392.884,296.685 C 383.313,296.685 375.554,288.927 375.554,279.356 C 375.554,269.786 383.313,262.027 392.884,262.027 C 402.454,262.027 410.212,269.786 410.212,279.356 z"
   id="path265"
   style="fill:#c2c2b2" />
				<path
   d="M 462.378,279.356 C 462.378,288.927 454.62,296.685 445.05,296.685 C 435.48,296.685 427.72,288.927 427.72,279.356 C 427.72,269.786 435.48,262.027 445.05,262.027 C 454.62,262.027 462.378,269.786 462.378,279.356 z"
   id="path267"
   style="fill:#c2c2b2" />
				<path
   d="M 514.545,279.356 C 514.545,288.927 506.787,296.685 497.216,296.685 C 487.646,296.685 479.887,288.927 479.887,279.356 C 479.887,269.786 487.646,262.027 497.216,262.027 C 506.787,262.027 514.545,269.786 514.545,279.356 z"
   id="path269"
   style="fill:#c2c2b2" />
				<path
   d="M 566.712,279.356 C 566.712,288.927 558.954,296.685 549.384,296.685 C 539.812,296.685 532.054,288.927 532.054,279.356 C 532.054,269.786 539.812,262.027 549.384,262.027 C 558.954,262.027 566.712,269.786 566.712,279.356 z"
   id="path271"
   style="fill:#c2c2b2" />
				<path
   d="M 618.877,279.356 C 618.877,288.927 611.119,296.685 601.549,296.685 C 591.977,296.685 584.219,288.927 584.219,279.356 C 584.219,269.786 591.977,262.027 601.549,262.027 C 611.12,262.027 618.877,269.786 618.877,279.356 z"
   id="path273"
   style="fill:#c2c2b2" />
				<path
   d="M 671.043,279.356 C 671.043,288.927 663.285,296.685 653.715,296.685 C 644.143,296.685 636.385,288.927 636.385,279.356 C 636.385,269.786 644.143,262.027 653.715,262.027 C 663.286,262.027 671.043,269.786 671.043,279.356 z"
   id="path275"
   style="fill:#c2c2b2" />
				<path
   d="M 723.209,279.356 C 723.209,288.927 715.451,296.685 705.881,296.685 C 696.309,296.685 688.553,288.927 688.553,279.356 C 688.553,269.786 696.309,262.027 705.881,262.027 C 715.452,262.027 723.209,269.786 723.209,279.356 z"
   id="path277"
   style="fill:#c2c2b2" />
				<path
   d="M 775.377,279.356 C 775.377,288.927 767.617,296.685 758.047,296.685 C 748.477,296.685 740.719,288.927 740.719,279.356 C 740.719,269.786 748.477,262.027 758.047,262.027 C 767.617,262.027 775.377,269.786 775.377,279.356 z"
   id="path279"
   style="fill:#c2c2b2" />
				<path
   d="M 827.542,279.356 C 827.542,288.927 819.784,296.685 810.214,296.685 C 800.644,296.685 792.886,288.927 792.886,279.356 C 792.886,269.786 800.644,262.027 810.214,262.027 C 819.784,262.027 827.542,269.786 827.542,279.356 z"
   id="path281"
   style="fill:#c2c2b2" />
				<path
   d="M 879.709,279.356 C 879.709,288.927 871.949,296.685 862.381,296.685 C 852.809,296.685 845.051,288.927 845.051,279.356 C 845.051,269.786 852.809,262.027 862.381,262.027 C 871.95,262.027 879.709,269.786 879.709,279.356 z"
   id="path283"
   style="fill:#c2c2b2" />
				<path
   d="M 931.875,279.356 C 931.875,288.927 924.115,296.685 914.547,296.685 C 904.975,296.685 897.217,288.927 897.217,279.356 C 897.217,269.786 904.975,262.027 914.547,262.027 C 924.116,262.027 931.875,269.786 931.875,279.356 z"
   id="path285"
   style="fill:#c2c2b2" />
				<path
   d="M 984.042,279.356 C 984.042,288.927 976.284,296.685 966.714,296.685 C 957.142,296.685 949.384,288.927 949.384,279.356 C 949.384,269.786 957.142,262.027 966.714,262.027 C 976.284,262.027 984.042,269.786 984.042,279.356 z"
   id="path287"
   style="fill:#c2c2b2" />
				<path
   d="M 1036.208,279.356 C 1036.208,288.927 1028.448,296.685 1018.88,296.685 C 1009.308,296.685 1001.55,288.927 1001.55,279.356 C 1001.55,269.786 1009.308,262.027 1018.88,262.027 C 1028.448,262.027 1036.208,269.786 1036.208,279.356 z"
   id="path289"
   style="fill:#c2c2b2" />
				<path
   d="M 1088.374,279.356 C 1088.374,288.927 1080.616,296.685 1071.046,296.685 C 1061.474,296.685 1053.716,288.927 1053.716,279.356 C 1053.716,269.786 1061.474,262.027 1071.046,262.027 C 1080.616,262.027 1088.374,269.786 1088.374,279.356 z"
   id="path291"
   style="fill:#c2c2b2" />
				<path
   d="M 1140.54,279.356 C 1140.54,288.927 1132.782,296.685 1123.212,296.685 C 1113.64,296.685 1105.882,288.927 1105.882,279.356 C 1105.882,269.786 1113.64,262.027 1123.212,262.027 C 1132.782,262.027 1140.54,269.786 1140.54,279.356 z"
   id="path293"
   style="fill:#c2c2b2" />
				<path
   d="M 1192.706,279.356 C 1192.706,288.927 1184.948,296.685 1175.378,296.685 C 1165.806,296.685 1158.048,288.927 1158.048,279.356 C 1158.048,269.786 1165.806,262.027 1175.378,262.027 C 1184.948,262.027 1192.706,269.786 1192.706,279.356 z"
   id="path295"
   style="fill:#c2c2b2" />
			</g>
			<g
   id="g297"
   transform="translate(0.142,-39.123441)">
				<path
   d="M 45.046,330.361 C 45.046,339.932 37.288,347.69 27.718,347.69 C 18.147,347.69 10.388,339.932 10.388,330.361 C 10.388,320.791 18.147,313.032 27.718,313.032 C 37.288,313.032 45.046,320.792 45.046,330.361 z"
   id="path299"
   style="fill:#c2c2b2" />
				<path
   d="M 97.212,330.361 C 97.212,339.932 89.454,347.69 79.884,347.69 C 70.314,347.69 62.554,339.932 62.554,330.361 C 62.554,320.791 70.314,313.032 79.884,313.032 C 89.454,313.032 97.212,320.792 97.212,330.361 z"
   id="path301"
   style="fill:#c2c2b2" />
				<path
   d="M 149.379,330.361 C 149.379,339.932 141.621,347.69 132.05,347.69 C 122.48,347.69 114.721,339.932 114.721,330.361 C 114.721,320.791 122.48,313.032 132.05,313.032 C 141.621,313.032 149.379,320.792 149.379,330.361 z"
   id="path303"
   style="fill:#c2c2b2" />
				<path
   d="M 201.546,330.361 C 201.546,339.932 193.788,347.69 184.217,347.69 C 174.646,347.69 166.888,339.932 166.888,330.361 C 166.888,320.791 174.646,313.032 184.217,313.032 C 193.788,313.032 201.546,320.792 201.546,330.361 z"
   id="path305"
   style="fill:#c2c2b2" />
				<path
   d="M 253.712,330.361 C 253.712,339.932 245.954,347.69 236.384,347.69 C 226.813,347.69 219.054,339.932 219.054,330.361 C 219.054,320.791 226.813,313.032 236.384,313.032 C 245.954,313.032 253.712,320.792 253.712,330.361 z"
   id="path307"
   style="fill:#c2c2b2" />
				<path
   d="M 305.879,330.361 C 305.879,339.932 298.12,347.69 288.55,347.69 C 278.98,347.69 271.221,339.932 271.221,330.361 C 271.221,320.791 278.98,313.032 288.55,313.032 C 298.12,313.032 305.879,320.792 305.879,330.361 z"
   id="path309"
   style="fill:#c2c2b2" />
				<path
   d="M 358.046,330.361 C 358.046,339.932 350.287,347.69 340.717,347.69 C 331.146,347.69 323.388,339.932 323.388,330.361 C 323.388,320.791 331.146,313.032 340.717,313.032 C 350.287,313.032 358.046,320.792 358.046,330.361 z"
   id="path311"
   style="fill:#c2c2b2" />
				<path
   d="M 410.212,330.361 C 410.212,339.932 402.454,347.69 392.884,347.69 C 383.313,347.69 375.554,339.932 375.554,330.361 C 375.554,320.791 383.313,313.032 392.884,313.032 C 402.454,313.032 410.212,320.792 410.212,330.361 z"
   id="path313"
   style="fill:#c2c2b2" />
				<path
   d="M 462.378,330.361 C 462.378,339.932 454.62,347.69 445.05,347.69 C 435.48,347.69 427.72,339.932 427.72,330.361 C 427.72,320.791 435.48,313.032 445.05,313.032 C 454.62,313.032 462.378,320.792 462.378,330.361 z"
   id="path315"
   style="fill:#c2c2b2" />
				<path
   d="M 514.545,330.361 C 514.545,339.932 506.787,347.69 497.216,347.69 C 487.646,347.69 479.887,339.932 479.887,330.361 C 479.887,320.791 487.646,313.032 497.216,313.032 C 506.787,313.032 514.545,320.792 514.545,330.361 z"
   id="path317"
   style="fill:#c2c2b2" />
				<path
   d="M 566.712,330.361 C 566.712,339.932 558.954,347.69 549.384,347.69 C 539.812,347.69 532.054,339.932 532.054,330.361 C 532.054,320.791 539.812,313.032 549.384,313.032 C 558.954,313.032 566.712,320.792 566.712,330.361 z"
   id="path319"
   style="fill:#c2c2b2" />
				<path
   d="M 618.877,330.361 C 618.877,339.932 611.119,347.69 601.549,347.69 C 591.977,347.69 584.219,339.932 584.219,330.361 C 584.219,320.791 591.977,313.032 601.549,313.032 C 611.12,313.032 618.877,320.792 618.877,330.361 z"
   id="path321"
   style="fill:#c2c2b2" />
				<path
   d="M 671.043,330.361 C 671.043,339.932 663.285,347.69 653.715,347.69 C 644.143,347.69 636.385,339.932 636.385,330.361 C 636.385,320.791 644.143,313.032 653.715,313.032 C 663.286,313.032 671.043,320.792 671.043,330.361 z"
   id="path323"
   style="fill:#c2c2b2" />
				<path
   d="M 723.209,330.361 C 723.209,339.932 715.451,347.69 705.881,347.69 C 696.309,347.69 688.553,339.932 688.553,330.361 C 688.553,320.791 696.309,313.032 705.881,313.032 C 715.452,313.032 723.209,320.792 723.209,330.361 z"
   id="path325"
   style="fill:#c2c2b2" />
				<path
   d="M 775.377,330.361 C 775.377,339.932 767.617,347.69 758.047,347.69 C 748.477,347.69 740.719,339.932 740.719,330.361 C 740.719,320.791 748.477,313.032 758.047,313.032 C 767.617,313.032 775.377,320.792 775.377,330.361 z"
   id="path327"
   style="fill:#c2c2b2" />
				<path
   d="M 827.542,330.361 C 827.542,339.932 819.784,347.69 810.214,347.69 C 800.644,347.69 792.886,339.932 792.886,330.361 C 792.886,320.791 800.644,313.032 810.214,313.032 C 819.784,313.032 827.542,320.792 827.542,330.361 z"
   id="path329"
   style="fill:#c2c2b2" />
				<path
   d="M 879.709,330.361 C 879.709,339.932 871.949,347.69 862.381,347.69 C 852.809,347.69 845.051,339.932 845.051,330.361 C 845.051,320.791 852.809,313.032 862.381,313.032 C 871.95,313.032 879.709,320.792 879.709,330.361 z"
   id="path331"
   style="fill:#c2c2b2" />
				<path
   d="M 931.875,330.361 C 931.875,339.932 924.115,347.69 914.547,347.69 C 904.975,347.69 897.217,339.932 897.217,330.361 C 897.217,320.791 904.975,313.032 914.547,313.032 C 924.116,313.032 931.875,320.792 931.875,330.361 z"
   id="path333"
   style="fill:#c2c2b2" />
				<path
   d="M 984.042,330.361 C 984.042,339.932 976.284,347.69 966.714,347.69 C 957.142,347.69 949.384,339.932 949.384,330.361 C 949.384,320.791 957.142,313.032 966.714,313.032 C 976.284,313.032 984.042,320.792 984.042,330.361 z"
   id="path335"
   style="fill:#c2c2b2" />
				<path
   d="M 1036.208,330.361 C 1036.208,339.932 1028.448,347.69 1018.88,347.69 C 1009.308,347.69 1001.55,339.932 1001.55,330.361 C 1001.55,320.791 1009.308,313.032 1018.88,313.032 C 1028.448,313.032 1036.208,320.792 1036.208,330.361 z"
   id="path337"
   style="fill:#c2c2b2" />
				<path
   d="M 1088.374,330.361 C 1088.374,339.932 1080.616,347.69 1071.046,347.69 C 1061.474,347.69 1053.716,339.932 1053.716,330.361 C 1053.716,320.791 1061.474,313.032 1071.046,313.032 C 1080.616,313.032 1088.374,320.792 1088.374,330.361 z"
   id="path339"
   style="fill:#c2c2b2" />
				<path
   d="M 1140.54,330.361 C 1140.54,339.932 1132.782,347.69 1123.212,347.69 C 1113.64,347.69 1105.882,339.932 1105.882,330.361 C 1105.882,320.791 1113.64,313.032 1123.212,313.032 C 1132.782,313.032 1140.54,320.792 1140.54,330.361 z"
   id="path341"
   style="fill:#c2c2b2" />
				<path
   d="M 1192.706,330.361 C 1192.706,339.932 1184.948,347.69 1175.378,347.69 C 1165.806,347.69 1158.048,339.932 1158.048,330.361 C 1158.048,320.791 1165.806,313.032 1175.378,313.032 C 1184.948,313.032 1192.706,320.792 1192.706,330.361 z"
   id="path343"
   style="fill:#c2c2b2" />
			</g>
			<g
   id="g345"
   transform="translate(0.142,-39.123441)">
				<path
   d="M 45.046,381.367 C 45.046,390.938 37.288,398.696 27.718,398.696 C 18.147,398.696 10.388,390.938 10.388,381.367 C 10.388,371.797 18.147,364.038 27.718,364.038 C 37.288,364.038 45.046,371.797 45.046,381.367 z"
   id="path347"
   style="fill:#c2c2b2" />
				<path
   d="M 97.212,381.367 C 97.212,390.938 89.454,398.696 79.884,398.696 C 70.314,398.696 62.554,390.938 62.554,381.367 C 62.554,371.797 70.314,364.038 79.884,364.038 C 89.454,364.038 97.212,371.797 97.212,381.367 z"
   id="path349"
   style="fill:#c2c2b2" />
				<path
   d="M 149.379,381.367 C 149.379,390.938 141.621,398.696 132.05,398.696 C 122.48,398.696 114.721,390.938 114.721,381.367 C 114.721,371.797 122.48,364.038 132.05,364.038 C 141.621,364.038 149.379,371.797 149.379,381.367 z"
   id="path351"
   style="fill:#c2c2b2" />
				<path
   d="M 201.546,381.367 C 201.546,390.938 193.788,398.696 184.217,398.696 C 174.646,398.696 166.888,390.938 166.888,381.367 C 166.888,371.797 174.646,364.038 184.217,364.038 C 193.788,364.038 201.546,371.797 201.546,381.367 z"
   id="path353"
   style="fill:#c2c2b2" />
				<path
   d="M 253.712,381.367 C 253.712,390.938 245.954,398.696 236.384,398.696 C 226.813,398.696 219.054,390.938 219.054,381.367 C 219.054,371.797 226.813,364.038 236.384,364.038 C 245.954,364.038 253.712,371.797 253.712,381.367 z"
   id="path355"
   style="fill:#c2c2b2" />
				<path
   d="M 305.879,381.367 C 305.879,390.938 298.12,398.696 288.55,398.696 C 278.98,398.696 271.221,390.938 271.221,381.367 C 271.221,371.797 278.98,364.038 288.55,364.038 C 298.12,364.038 305.879,371.797 305.879,381.367 z"
   id="path357"
   style="fill:#c2c2b2" />
				<path
   d="M 358.046,381.367 C 358.046,390.938 350.287,398.696 340.717,398.696 C 331.146,398.696 323.388,390.938 323.388,381.367 C 323.388,371.797 331.146,364.038 340.717,364.038 C 350.287,364.038 358.046,371.797 358.046,381.367 z"
   id="path359"
   style="fill:#c2c2b2" />
				<path
   d="M 410.212,381.367 C 410.212,390.938 402.454,398.696 392.884,398.696 C 383.313,398.696 375.554,390.938 375.554,381.367 C 375.554,371.797 383.313,364.038 392.884,364.038 C 402.454,364.038 410.212,371.797 410.212,381.367 z"
   id="path361"
   style="fill:#c2c2b2" />
				<path
   d="M 462.378,381.367 C 462.378,390.938 454.62,398.696 445.05,398.696 C 435.48,398.696 427.72,390.938 427.72,381.367 C 427.72,371.797 435.48,364.038 445.05,364.038 C 454.62,364.038 462.378,371.797 462.378,381.367 z"
   id="path363"
   style="fill:#c2c2b2" />
				<path
   d="M 514.545,381.367 C 514.545,390.938 506.787,398.696 497.216,398.696 C 487.646,398.696 479.887,390.938 479.887,381.367 C 479.887,371.797 487.646,364.038 497.216,364.038 C 506.787,364.038 514.545,371.797 514.545,381.367 z"
   id="path365"
   style="fill:#c2c2b2" />
				<path
   d="M 566.712,381.367 C 566.712,390.938 558.954,398.696 549.384,398.696 C 539.812,398.696 532.054,390.938 532.054,381.367 C 532.054,371.797 539.812,364.038 549.384,364.038 C 558.954,364.038 566.712,371.797 566.712,381.367 z"
   id="path367"
   style="fill:#c2c2b2" />
				<path
   d="M 618.877,381.367 C 618.877,390.938 611.119,398.696 601.549,398.696 C 591.977,398.696 584.219,390.938 584.219,381.367 C 584.219,371.797 591.977,364.038 601.549,364.038 C 611.12,364.038 618.877,371.797 618.877,381.367 z"
   id="path369"
   style="fill:#c2c2b2" />
				<path
   d="M 671.043,381.367 C 671.043,390.938 663.285,398.696 653.715,398.696 C 644.143,398.696 636.385,390.938 636.385,381.367 C 636.385,371.797 644.143,364.038 653.715,364.038 C 663.286,364.038 671.043,371.797 671.043,381.367 z"
   id="path371"
   style="fill:#c2c2b2" />
				<path
   d="M 723.209,381.367 C 723.209,390.938 715.451,398.696 705.881,398.696 C 696.309,398.696 688.553,390.938 688.553,381.367 C 688.553,371.797 696.309,364.038 705.881,364.038 C 715.452,364.038 723.209,371.797 723.209,381.367 z"
   id="path373"
   style="fill:#c2c2b2" />
				<path
   d="M 775.377,381.367 C 775.377,390.938 767.617,398.696 758.047,398.696 C 748.477,398.696 740.719,390.938 740.719,381.367 C 740.719,371.797 748.477,364.038 758.047,364.038 C 767.617,364.038 775.377,371.797 775.377,381.367 z"
   id="path375"
   style="fill:#c2c2b2" />
				<path
   d="M 827.542,381.367 C 827.542,390.938 819.784,398.696 810.214,398.696 C 800.644,398.696 792.886,390.938 792.886,381.367 C 792.886,371.797 800.644,364.038 810.214,364.038 C 819.784,364.038 827.542,371.797 827.542,381.367 z"
   id="path377"
   style="fill:#c2c2b2" />
				<path
   d="M 879.709,381.367 C 879.709,390.938 871.949,398.696 862.381,398.696 C 852.809,398.696 845.051,390.938 845.051,381.367 C 845.051,371.797 852.809,364.038 862.381,364.038 C 871.95,364.038 879.709,371.797 879.709,381.367 z"
   id="path379"
   style="fill:#c2c2b2" />
				<path
   d="M 931.875,381.367 C 931.875,390.938 924.115,398.696 914.547,398.696 C 904.975,398.696 897.217,390.938 897.217,381.367 C 897.217,371.797 904.975,364.038 914.547,364.038 C 924.116,364.038 931.875,371.797 931.875,381.367 z"
   id="path381"
   style="fill:#c2c2b2" />
				<path
   d="M 984.042,381.367 C 984.042,390.938 976.284,398.696 966.714,398.696 C 957.142,398.696 949.384,390.938 949.384,381.367 C 949.384,371.797 957.142,364.038 966.714,364.038 C 976.284,364.038 984.042,371.797 984.042,381.367 z"
   id="path383"
   style="fill:#c2c2b2" />
				<path
   d="M 1036.208,381.367 C 1036.208,390.938 1028.448,398.696 1018.88,398.696 C 1009.308,398.696 1001.55,390.938 1001.55,381.367 C 1001.55,371.797 1009.308,364.038 1018.88,364.038 C 1028.448,364.038 1036.208,371.797 1036.208,381.367 z"
   id="path385"
   style="fill:#c2c2b2" />
				<path
   d="M 1088.374,381.367 C 1088.374,390.938 1080.616,398.696 1071.046,398.696 C 1061.474,398.696 1053.716,390.938 1053.716,381.367 C 1053.716,371.797 1061.474,364.038 1071.046,364.038 C 1080.616,364.038 1088.374,371.797 1088.374,381.367 z"
   id="path387"
   style="fill:#c2c2b2" />
				<path
   d="M 1140.54,381.367 C 1140.54,390.938 1132.782,398.696 1123.212,398.696 C 1113.64,398.696 1105.882,390.938 1105.882,381.367 C 1105.882,371.797 1113.64,364.038 1123.212,364.038 C 1132.782,364.038 1140.54,371.797 1140.54,381.367 z"
   id="path389"
   style="fill:#c2c2b2" />
				<path
   d="M 1192.706,381.367 C 1192.706,390.938 1184.948,398.696 1175.378,398.696 C 1165.806,398.696 1158.048,390.938 1158.048,381.367 C 1158.048,371.797 1165.806,364.038 1175.378,364.038 C 1184.948,364.038 1192.706,371.797 1192.706,381.367 z"
   id="path391"
   style="fill:#c2c2b2" />
			</g>
			<g
   id="g393"
   transform="translate(0.142,-39.123441)">
				<path
   d="M 45.046,432.372 C 45.046,441.943 37.288,449.701 27.718,449.701 C 18.147,449.701 10.388,441.943 10.388,432.372 C 10.388,422.802 18.147,415.043 27.718,415.043 C 37.288,415.043 45.046,422.802 45.046,432.372 z"
   id="path395"
   style="fill:#c2c2b2" />
				<path
   d="M 97.212,432.372 C 97.212,441.943 89.454,449.701 79.884,449.701 C 70.314,449.701 62.554,441.943 62.554,432.372 C 62.554,422.802 70.314,415.043 79.884,415.043 C 89.454,415.043 97.212,422.802 97.212,432.372 z"
   id="path397"
   style="fill:#c2c2b2" />
				<path
   d="M 149.379,432.372 C 149.379,441.943 141.621,449.701 132.05,449.701 C 122.48,449.701 114.721,441.943 114.721,432.372 C 114.721,422.802 122.48,415.043 132.05,415.043 C 141.621,415.043 149.379,422.802 149.379,432.372 z"
   id="path399"
   style="fill:#c2c2b2" />
				<path
   d="M 201.546,432.372 C 201.546,441.943 193.788,449.701 184.217,449.701 C 174.646,449.701 166.888,441.943 166.888,432.372 C 166.888,422.802 174.646,415.043 184.217,415.043 C 193.788,415.043 201.546,422.802 201.546,432.372 z"
   id="path401"
   style="fill:#c2c2b2" />
				<path
   d="M 253.712,432.372 C 253.712,441.943 245.954,449.701 236.384,449.701 C 226.813,449.701 219.054,441.943 219.054,432.372 C 219.054,422.802 226.813,415.043 236.384,415.043 C 245.954,415.043 253.712,422.802 253.712,432.372 z"
   id="path403"
   style="fill:#c2c2b2" />
				<path
   d="M 305.879,432.372 C 305.879,441.943 298.12,449.701 288.55,449.701 C 278.98,449.701 271.221,441.943 271.221,432.372 C 271.221,422.802 278.98,415.043 288.55,415.043 C 298.12,415.043 305.879,422.802 305.879,432.372 z"
   id="path405"
   style="fill:#c2c2b2" />
				<path
   d="M 358.046,432.372 C 358.046,441.943 350.287,449.701 340.717,449.701 C 331.146,449.701 323.388,441.943 323.388,432.372 C 323.388,422.802 331.146,415.043 340.717,415.043 C 350.287,415.043 358.046,422.802 358.046,432.372 z"
   id="path407"
   style="fill:#c2c2b2" />
				<path
   d="M 410.212,432.372 C 410.212,441.943 402.454,449.701 392.884,449.701 C 383.313,449.701 375.554,441.943 375.554,432.372 C 375.554,422.802 383.313,415.043 392.884,415.043 C 402.454,415.043 410.212,422.802 410.212,432.372 z"
   id="path409"
   style="fill:#c2c2b2" />
				<path
   d="M 462.378,432.372 C 462.378,441.943 454.62,449.701 445.05,449.701 C 435.48,449.701 427.72,441.943 427.72,432.372 C 427.72,422.802 435.48,415.043 445.05,415.043 C 454.62,415.043 462.378,422.802 462.378,432.372 z"
   id="path411"
   style="fill:#c2c2b2" />
				<path
   d="M 514.545,432.372 C 514.545,441.943 506.787,449.701 497.216,449.701 C 487.646,449.701 479.887,441.943 479.887,432.372 C 479.887,422.802 487.646,415.043 497.216,415.043 C 506.787,415.043 514.545,422.802 514.545,432.372 z"
   id="path413"
   style="fill:#c2c2b2" />
				<path
   d="M 566.712,432.372 C 566.712,441.943 558.954,449.701 549.384,449.701 C 539.812,449.701 532.054,441.943 532.054,432.372 C 532.054,422.802 539.812,415.043 549.384,415.043 C 558.954,415.043 566.712,422.802 566.712,432.372 z"
   id="path415"
   style="fill:#c2c2b2" />
				<path
   d="M 618.877,432.372 C 618.877,441.943 611.119,449.701 601.549,449.701 C 591.977,449.701 584.219,441.943 584.219,432.372 C 584.219,422.802 591.977,415.043 601.549,415.043 C 611.12,415.043 618.877,422.802 618.877,432.372 z"
   id="path417"
   style="fill:#c2c2b2" />
				<path
   d="M 671.043,432.372 C 671.043,441.943 663.285,449.701 653.715,449.701 C 644.143,449.701 636.385,441.943 636.385,432.372 C 636.385,422.802 644.143,415.043 653.715,415.043 C 663.286,415.043 671.043,422.802 671.043,432.372 z"
   id="path419"
   style="fill:#c2c2b2" />
				<path
   d="M 723.209,432.372 C 723.209,441.943 715.451,449.701 705.881,449.701 C 696.309,449.701 688.553,441.943 688.553,432.372 C 688.553,422.802 696.309,415.043 705.881,415.043 C 715.452,415.043 723.209,422.802 723.209,432.372 z"
   id="path421"
   style="fill:#c2c2b2" />
				<path
   d="M 775.377,432.372 C 775.377,441.943 767.617,449.701 758.047,449.701 C 748.477,449.701 740.719,441.943 740.719,432.372 C 740.719,422.802 748.477,415.043 758.047,415.043 C 767.617,415.043 775.377,422.802 775.377,432.372 z"
   id="path423"
   style="fill:#c2c2b2" />
				<path
   d="M 827.542,432.372 C 827.542,441.943 819.784,449.701 810.214,449.701 C 800.644,449.701 792.886,441.943 792.886,432.372 C 792.886,422.802 800.644,415.043 810.214,415.043 C 819.784,415.043 827.542,422.802 827.542,432.372 z"
   id="path425"
   style="fill:#c2c2b2" />
				<path
   d="M 879.709,432.372 C 879.709,441.943 871.949,449.701 862.381,449.701 C 852.809,449.701 845.051,441.943 845.051,432.372 C 845.051,422.802 852.809,415.043 862.381,415.043 C 871.95,415.043 879.709,422.802 879.709,432.372 z"
   id="path427"
   style="fill:#c2c2b2" />
				<path
   d="M 931.875,432.372 C 931.875,441.943 924.115,449.701 914.547,449.701 C 904.975,449.701 897.217,441.943 897.217,432.372 C 897.217,422.802 904.975,415.043 914.547,415.043 C 924.116,415.043 931.875,422.802 931.875,432.372 z"
   id="path429"
   style="fill:#c2c2b2" />
				<path
   d="M 984.042,432.372 C 984.042,441.943 976.284,449.701 966.714,449.701 C 957.142,449.701 949.384,441.943 949.384,432.372 C 949.384,422.802 957.142,415.043 966.714,415.043 C 976.284,415.043 984.042,422.802 984.042,432.372 z"
   id="path431"
   style="fill:#c2c2b2" />
				<path
   d="M 1036.208,432.372 C 1036.208,441.943 1028.448,449.701 1018.88,449.701 C 1009.308,449.701 1001.55,441.943 1001.55,432.372 C 1001.55,422.802 1009.308,415.043 1018.88,415.043 C 1028.448,415.043 1036.208,422.802 1036.208,432.372 z"
   id="path433"
   style="fill:#c2c2b2" />
				<path
   d="M 1088.374,432.372 C 1088.374,441.943 1080.616,449.701 1071.046,449.701 C 1061.474,449.701 1053.716,441.943 1053.716,432.372 C 1053.716,422.802 1061.474,415.043 1071.046,415.043 C 1080.616,415.043 1088.374,422.802 1088.374,432.372 z"
   id="path435"
   style="fill:#c2c2b2" />
				<path
   d="M 1140.54,432.372 C 1140.54,441.943 1132.782,449.701 1123.212,449.701 C 1113.64,449.701 1105.882,441.943 1105.882,432.372 C 1105.882,422.802 1113.64,415.043 1123.212,415.043 C 1132.782,415.043 1140.54,422.802 1140.54,432.372 z"
   id="path437"
   style="fill:#c2c2b2" />
				<path
   d="M 1192.706,432.372 C 1192.706,441.943 1184.948,449.701 1175.378,449.701 C 1165.806,449.701 1158.048,441.943 1158.048,432.372 C 1158.048,422.802 1165.806,415.043 1175.378,415.043 C 1184.948,415.043 1192.706,422.802 1192.706,432.372 z"
   id="path439"
   style="fill:#c2c2b2" />
			</g>
			<g
   id="g441"
   transform="translate(0.142,-39.123441)">
				<path
   d="M 45.046,483.378 C 45.046,492.948 37.288,500.706 27.718,500.706 C 18.147,500.706 10.388,492.948 10.388,483.378 C 10.388,473.808 18.147,466.048 27.718,466.048 C 37.288,466.048 45.046,473.808 45.046,483.378 z"
   id="path443"
   style="fill:#c2c2b2" />
				<path
   d="M 97.212,483.378 C 97.212,492.948 89.454,500.706 79.884,500.706 C 70.314,500.706 62.554,492.948 62.554,483.378 C 62.554,473.808 70.314,466.048 79.884,466.048 C 89.454,466.048 97.212,473.808 97.212,483.378 z"
   id="path445"
   style="fill:#c2c2b2" />
				<path
   d="M 149.379,483.378 C 149.379,492.948 141.621,500.706 132.05,500.706 C 122.48,500.706 114.721,492.948 114.721,483.378 C 114.721,473.808 122.48,466.048 132.05,466.048 C 141.621,466.048 149.379,473.808 149.379,483.378 z"
   id="path447"
   style="fill:#c2c2b2" />
				<path
   d="M 201.546,483.378 C 201.546,492.948 193.788,500.706 184.217,500.706 C 174.646,500.706 166.888,492.948 166.888,483.378 C 166.888,473.808 174.646,466.048 184.217,466.048 C 193.788,466.048 201.546,473.808 201.546,483.378 z"
   id="path449"
   style="fill:#c2c2b2" />
				<path
   d="M 253.712,483.378 C 253.712,492.948 245.954,500.706 236.384,500.706 C 226.813,500.706 219.054,492.948 219.054,483.378 C 219.054,473.808 226.813,466.048 236.384,466.048 C 245.954,466.048 253.712,473.808 253.712,483.378 z"
   id="path451"
   style="fill:#c2c2b2" />
				<path
   d="M 305.879,483.378 C 305.879,492.948 298.12,500.706 288.55,500.706 C 278.98,500.706 271.221,492.948 271.221,483.378 C 271.221,473.808 278.98,466.048 288.55,466.048 C 298.12,466.048 305.879,473.808 305.879,483.378 z"
   id="path453"
   style="fill:#c2c2b2" />
				<path
   d="M 358.046,483.378 C 358.046,492.948 350.287,500.706 340.717,500.706 C 331.146,500.706 323.388,492.948 323.388,483.378 C 323.388,473.808 331.146,466.048 340.717,466.048 C 350.287,466.048 358.046,473.808 358.046,483.378 z"
   id="path455"
   style="fill:#c2c2b2" />
				<path
   d="M 410.212,483.378 C 410.212,492.948 402.454,500.706 392.884,500.706 C 383.313,500.706 375.554,492.948 375.554,483.378 C 375.554,473.808 383.313,466.048 392.884,466.048 C 402.454,466.048 410.212,473.808 410.212,483.378 z"
   id="path457"
   style="fill:#c2c2b2" />
				<path
   d="M 462.378,483.378 C 462.378,492.948 454.62,500.706 445.05,500.706 C 435.48,500.706 427.72,492.948 427.72,483.378 C 427.72,473.808 435.48,466.048 445.05,466.048 C 454.62,466.048 462.378,473.808 462.378,483.378 z"
   id="path459"
   style="fill:#c2c2b2" />
				<path
   d="M 514.545,483.378 C 514.545,492.948 506.787,500.706 497.216,500.706 C 487.646,500.706 479.887,492.948 479.887,483.378 C 479.887,473.808 487.646,466.048 497.216,466.048 C 506.787,466.048 514.545,473.808 514.545,483.378 z"
   id="path461"
   style="fill:#c2c2b2" />
				<path
   d="M 566.712,483.378 C 566.712,492.948 558.954,500.706 549.384,500.706 C 539.812,500.706 532.054,492.948 532.054,483.378 C 532.054,473.808 539.812,466.048 549.384,466.048 C 558.954,466.048 566.712,473.808 566.712,483.378 z"
   id="path463"
   style="fill:#c2c2b2" />
				<path
   d="M 618.877,483.378 C 618.877,492.948 611.119,500.706 601.549,500.706 C 591.977,500.706 584.219,492.948 584.219,483.378 C 584.219,473.808 591.977,466.048 601.549,466.048 C 611.12,466.048 618.877,473.808 618.877,483.378 z"
   id="path465"
   style="fill:#c2c2b2" />
				<path
   d="M 671.043,483.378 C 671.043,492.948 663.285,500.706 653.715,500.706 C 644.143,500.706 636.385,492.948 636.385,483.378 C 636.385,473.808 644.143,466.048 653.715,466.048 C 663.286,466.048 671.043,473.808 671.043,483.378 z"
   id="path467"
   style="fill:#c2c2b2" />
				<path
   d="M 723.209,483.378 C 723.209,492.948 715.451,500.706 705.881,500.706 C 696.309,500.706 688.553,492.948 688.553,483.378 C 688.553,473.808 696.309,466.048 705.881,466.048 C 715.452,466.048 723.209,473.808 723.209,483.378 z"
   id="path469"
   style="fill:#c2c2b2" />
				<path
   d="M 775.377,483.378 C 775.377,492.948 767.617,500.706 758.047,500.706 C 748.477,500.706 740.719,492.948 740.719,483.378 C 740.719,473.808 748.477,466.048 758.047,466.048 C 767.617,466.048 775.377,473.808 775.377,483.378 z"
   id="path471"
   style="fill:#c2c2b2" />
				<path
   d="M 827.542,483.378 C 827.542,492.948 819.784,500.706 810.214,500.706 C 800.644,500.706 792.886,492.948 792.886,483.378 C 792.886,473.808 800.644,466.048 810.214,466.048 C 819.784,466.048 827.542,473.808 827.542,483.378 z"
   id="path473"
   style="fill:#c2c2b2" />
				<path
   d="M 879.709,483.378 C 879.709,492.948 871.949,500.706 862.381,500.706 C 852.809,500.706 845.051,492.948 845.051,483.378 C 845.051,473.808 852.809,466.048 862.381,466.048 C 871.95,466.048 879.709,473.808 879.709,483.378 z"
   id="path475"
   style="fill:#c2c2b2" />
				<path
   d="M 931.875,483.378 C 931.875,492.948 924.115,500.706 914.547,500.706 C 904.975,500.706 897.217,492.948 897.217,483.378 C 897.217,473.808 904.975,466.048 914.547,466.048 C 924.116,466.048 931.875,473.808 931.875,483.378 z"
   id="path477"
   style="fill:#c2c2b2" />
				<path
   d="M 984.042,483.378 C 984.042,492.948 976.284,500.706 966.714,500.706 C 957.142,500.706 949.384,492.948 949.384,483.378 C 949.384,473.808 957.142,466.048 966.714,466.048 C 976.284,466.048 984.042,473.808 984.042,483.378 z"
   id="path479"
   style="fill:#c2c2b2" />
				<path
   d="M 1036.208,483.378 C 1036.208,492.948 1028.448,500.706 1018.88,500.706 C 1009.308,500.706 1001.55,492.948 1001.55,483.378 C 1001.55,473.808 1009.308,466.048 1018.88,466.048 C 1028.448,466.048 1036.208,473.808 1036.208,483.378 z"
   id="path481"
   style="fill:#c2c2b2" />
				<path
   d="M 1088.374,483.378 C 1088.374,492.948 1080.616,500.706 1071.046,500.706 C 1061.474,500.706 1053.716,492.948 1053.716,483.378 C 1053.716,473.808 1061.474,466.048 1071.046,466.048 C 1080.616,466.048 1088.374,473.808 1088.374,483.378 z"
   id="path483"
   style="fill:#c2c2b2" />
				<path
   d="M 1140.54,483.378 C 1140.54,492.948 1132.782,500.706 1123.212,500.706 C 1113.64,500.706 1105.882,492.948 1105.882,483.378 C 1105.882,473.808 1113.64,466.048 1123.212,466.048 C 1132.782,466.048 1140.54,473.808 1140.54,483.378 z"
   id="path485"
   style="fill:#c2c2b2" />
				<path
   d="M 1192.706,483.378 C 1192.706,492.948 1184.948,500.706 1175.378,500.706 C 1165.806,500.706 1158.048,492.948 1158.048,483.378 C 1158.048,473.808 1165.806,466.048 1175.378,466.048 C 1184.948,466.048 1192.706,473.808 1192.706,483.378 z"
   id="path487"
   style="fill:#c2c2b2" />
			</g>
			<g
   id="g489"
   transform="translate(0.142,-39.123441)">
				<path
   d="M 45.046,534.384 C 45.046,543.954 37.288,551.712 27.718,551.712 C 18.147,551.712 10.388,543.954 10.388,534.384 C 10.388,524.814 18.147,517.054 27.718,517.054 C 37.288,517.054 45.046,524.813 45.046,534.384 z"
   id="path491"
   style="fill:#c2c2b2" />
				<path
   d="M 97.212,534.384 C 97.212,543.954 89.454,551.712 79.884,551.712 C 70.314,551.712 62.554,543.954 62.554,534.384 C 62.554,524.814 70.314,517.054 79.884,517.054 C 89.454,517.054 97.212,524.813 97.212,534.384 z"
   id="path493"
   style="fill:#c2c2b2" />
				<path
   d="M 149.379,534.384 C 149.379,543.954 141.621,551.712 132.05,551.712 C 122.48,551.712 114.721,543.954 114.721,534.384 C 114.721,524.814 122.48,517.054 132.05,517.054 C 141.621,517.054 149.379,524.813 149.379,534.384 z"
   id="path495"
   style="fill:#c2c2b2" />
				<path
   d="M 201.546,534.384 C 201.546,543.954 193.788,551.712 184.217,551.712 C 174.646,551.712 166.888,543.954 166.888,534.384 C 166.888,524.814 174.646,517.054 184.217,517.054 C 193.788,517.054 201.546,524.813 201.546,534.384 z"
   id="path497"
   style="fill:#c2c2b2" />
				<path
   d="M 253.712,534.384 C 253.712,543.954 245.954,551.712 236.384,551.712 C 226.813,551.712 219.054,543.954 219.054,534.384 C 219.054,524.814 226.813,517.054 236.384,517.054 C 245.954,517.054 253.712,524.813 253.712,534.384 z"
   id="path499"
   style="fill:#c2c2b2" />
				<path
   d="M 305.879,534.384 C 305.879,543.954 298.12,551.712 288.55,551.712 C 278.98,551.712 271.221,543.954 271.221,534.384 C 271.221,524.814 278.98,517.054 288.55,517.054 C 298.12,517.054 305.879,524.813 305.879,534.384 z"
   id="path501"
   style="fill:#c2c2b2" />
				<path
   d="M 358.046,534.384 C 358.046,543.954 350.287,551.712 340.717,551.712 C 331.146,551.712 323.388,543.954 323.388,534.384 C 323.388,524.814 331.146,517.054 340.717,517.054 C 350.287,517.054 358.046,524.813 358.046,534.384 z"
   id="path503"
   style="fill:#c2c2b2" />
				<path
   d="M 410.212,534.384 C 410.212,543.954 402.454,551.712 392.884,551.712 C 383.313,551.712 375.554,543.954 375.554,534.384 C 375.554,524.814 383.313,517.054 392.884,517.054 C 402.454,517.054 410.212,524.813 410.212,534.384 z"
   id="path505"
   style="fill:#c2c2b2" />
				<path
   d="M 462.378,534.384 C 462.378,543.954 454.62,551.712 445.05,551.712 C 435.48,551.712 427.72,543.954 427.72,534.384 C 427.72,524.814 435.48,517.054 445.05,517.054 C 454.62,517.054 462.378,524.813 462.378,534.384 z"
   id="path507"
   style="fill:#c2c2b2" />
				<path
   d="M 514.545,534.384 C 514.545,543.954 506.787,551.712 497.216,551.712 C 487.646,551.712 479.887,543.954 479.887,534.384 C 479.887,524.814 487.646,517.054 497.216,517.054 C 506.787,517.054 514.545,524.813 514.545,534.384 z"
   id="path509"
   style="fill:#c2c2b2" />
				<path
   d="M 566.712,534.384 C 566.712,543.954 558.954,551.712 549.384,551.712 C 539.812,551.712 532.054,543.954 532.054,534.384 C 532.054,524.814 539.812,517.054 549.384,517.054 C 558.954,517.054 566.712,524.813 566.712,534.384 z"
   id="path511"
   style="fill:#c2c2b2" />
				<path
   d="M 618.877,534.384 C 618.877,543.954 611.119,551.712 601.549,551.712 C 591.977,551.712 584.219,543.954 584.219,534.384 C 584.219,524.814 591.977,517.054 601.549,517.054 C 611.12,517.054 618.877,524.813 618.877,534.384 z"
   id="path513"
   style="fill:#c2c2b2" />
				<path
   d="M 671.043,534.384 C 671.043,543.954 663.285,551.712 653.715,551.712 C 644.143,551.712 636.385,543.954 636.385,534.384 C 636.385,524.814 644.143,517.054 653.715,517.054 C 663.286,517.054 671.043,524.813 671.043,534.384 z"
   id="path515"
   style="fill:#c2c2b2" />
				<path
   d="M 723.209,534.384 C 723.209,543.954 715.451,551.712 705.881,551.712 C 696.309,551.712 688.553,543.954 688.553,534.384 C 688.553,524.814 696.309,517.054 705.881,517.054 C 715.452,517.054 723.209,524.813 723.209,534.384 z"
   id="path517"
   style="fill:#c2c2b2" />
				<path
   d="M 775.377,534.384 C 775.377,543.954 767.617,551.712 758.047,551.712 C 748.477,551.712 740.719,543.954 740.719,534.384 C 740.719,524.814 748.477,517.054 758.047,517.054 C 767.617,517.054 775.377,524.813 775.377,534.384 z"
   id="path519"
   style="fill:#c2c2b2" />
				<path
   d="M 827.542,534.384 C 827.542,543.954 819.784,551.712 810.214,551.712 C 800.644,551.712 792.886,543.954 792.886,534.384 C 792.886,524.814 800.644,517.054 810.214,517.054 C 819.784,517.054 827.542,524.813 827.542,534.384 z"
   id="path521"
   style="fill:#c2c2b2" />
				<path
   d="M 879.709,534.384 C 879.709,543.954 871.949,551.712 862.381,551.712 C 852.809,551.712 845.051,543.954 845.051,534.384 C 845.051,524.814 852.809,517.054 862.381,517.054 C 871.95,517.054 879.709,524.813 879.709,534.384 z"
   id="path523"
   style="fill:#c2c2b2" />
				<path
   d="M 931.875,534.384 C 931.875,543.954 924.115,551.712 914.547,551.712 C 904.975,551.712 897.217,543.954 897.217,534.384 C 897.217,524.814 904.975,517.054 914.547,517.054 C 924.116,517.054 931.875,524.813 931.875,534.384 z"
   id="path525"
   style="fill:#c2c2b2" />
				<path
   d="M 984.042,534.384 C 984.042,543.954 976.284,551.712 966.714,551.712 C 957.142,551.712 949.384,543.954 949.384,534.384 C 949.384,524.814 957.142,517.054 966.714,517.054 C 976.284,517.054 984.042,524.813 984.042,534.384 z"
   id="path527"
   style="fill:#c2c2b2" />
				<path
   d="M 1036.208,534.384 C 1036.208,543.954 1028.448,551.712 1018.88,551.712 C 1009.308,551.712 1001.55,543.954 1001.55,534.384 C 1001.55,524.814 1009.308,517.054 1018.88,517.054 C 1028.448,517.054 1036.208,524.813 1036.208,534.384 z"
   id="path529"
   style="fill:#c2c2b2" />
				<path
   d="M 1088.374,534.384 C 1088.374,543.954 1080.616,551.712 1071.046,551.712 C 1061.474,551.712 1053.716,543.954 1053.716,534.384 C 1053.716,524.814 1061.474,517.054 1071.046,517.054 C 1080.616,517.054 1088.374,524.813 1088.374,534.384 z"
   id="path531"
   style="fill:#c2c2b2" />
				<path
   d="M 1140.54,534.384 C 1140.54,543.954 1132.782,551.712 1123.212,551.712 C 1113.64,551.712 1105.882,543.954 1105.882,534.384 C 1105.882,524.814 1113.64,517.054 1123.212,517.054 C 1132.782,517.054 1140.54,524.813 1140.54,534.384 z"
   id="path533"
   style="fill:#c2c2b2" />
				<path
   d="M 1192.706,534.384 C 1192.706,543.954 1184.948,551.712 1175.378,551.712 C 1165.806,551.712 1158.048,543.954 1158.048,534.384 C 1158.048,524.814 1165.806,517.054 1175.378,517.054 C 1184.948,517.054 1192.706,524.813 1192.706,534.384 z"
   id="path535"
   style="fill:#c2c2b2" />
			</g>
			<g
   id="g537"
   transform="translate(0.142,-39.123441)">
				<path
   d="M 45.046,585.39 C 45.046,594.96 37.288,602.718 27.718,602.718 C 18.147,602.718 10.388,594.96 10.388,585.39 C 10.388,575.82 18.147,568.06 27.718,568.06 C 37.288,568.06 45.046,575.819 45.046,585.39 z"
   id="path539"
   style="fill:#c2c2b2" />
				<path
   d="M 97.212,585.39 C 97.212,594.96 89.454,602.718 79.884,602.718 C 70.314,602.718 62.554,594.96 62.554,585.39 C 62.554,575.82 70.314,568.06 79.884,568.06 C 89.454,568.06 97.212,575.819 97.212,585.39 z"
   id="path541"
   style="fill:#c2c2b2" />
				<path
   d="M 149.379,585.39 C 149.379,594.96 141.621,602.718 132.05,602.718 C 122.48,602.718 114.721,594.96 114.721,585.39 C 114.721,575.82 122.48,568.06 132.05,568.06 C 141.621,568.06 149.379,575.819 149.379,585.39 z"
   id="path543"
   style="fill:#c2c2b2" />
				<path
   d="M 201.546,585.39 C 201.546,594.96 193.788,602.718 184.217,602.718 C 174.646,602.718 166.888,594.96 166.888,585.39 C 166.888,575.82 174.646,568.06 184.217,568.06 C 193.788,568.06 201.546,575.819 201.546,585.39 z"
   id="path545"
   style="fill:#c2c2b2" />
				<path
   d="M 253.712,585.39 C 253.712,594.96 245.954,602.718 236.384,602.718 C 226.813,602.718 219.054,594.96 219.054,585.39 C 219.054,575.82 226.813,568.06 236.384,568.06 C 245.954,568.06 253.712,575.819 253.712,585.39 z"
   id="path547"
   style="fill:#c2c2b2" />
				<path
   d="M 305.879,585.39 C 305.879,594.96 298.12,602.718 288.55,602.718 C 278.98,602.718 271.221,594.96 271.221,585.39 C 271.221,575.82 278.98,568.06 288.55,568.06 C 298.12,568.06 305.879,575.819 305.879,585.39 z"
   id="path549"
   style="fill:#c2c2b2" />
				<path
   d="M 358.046,585.39 C 358.046,594.96 350.287,602.718 340.717,602.718 C 331.146,602.718 323.388,594.96 323.388,585.39 C 323.388,575.82 331.146,568.06 340.717,568.06 C 350.287,568.06 358.046,575.819 358.046,585.39 z"
   id="path551"
   style="fill:#c2c2b2" />
				<path
   d="M 410.212,585.39 C 410.212,594.96 402.454,602.718 392.884,602.718 C 383.313,602.718 375.554,594.96 375.554,585.39 C 375.554,575.82 383.313,568.06 392.884,568.06 C 402.454,568.06 410.212,575.819 410.212,585.39 z"
   id="path553"
   style="fill:#c2c2b2" />
				<path
   d="M 462.378,585.39 C 462.378,594.96 454.62,602.718 445.05,602.718 C 435.48,602.718 427.72,594.96 427.72,585.39 C 427.72,575.82 435.48,568.06 445.05,568.06 C 454.62,568.06 462.378,575.819 462.378,585.39 z"
   id="path555"
   style="fill:#c2c2b2" />
				<path
   d="M 514.545,585.39 C 514.545,594.96 506.787,602.718 497.216,602.718 C 487.646,602.718 479.887,594.96 479.887,585.39 C 479.887,575.82 487.646,568.06 497.216,568.06 C 506.787,568.06 514.545,575.819 514.545,585.39 z"
   id="path557"
   style="fill:#c2c2b2" />
				<path
   d="M 566.712,585.39 C 566.712,594.96 558.954,602.718 549.384,602.718 C 539.812,602.718 532.054,594.96 532.054,585.39 C 532.054,575.82 539.812,568.06 549.384,568.06 C 558.954,568.06 566.712,575.819 566.712,585.39 z"
   id="path559"
   style="fill:#c2c2b2" />
				<path
   d="M 618.877,585.39 C 618.877,594.96 611.119,602.718 601.549,602.718 C 591.977,602.718 584.219,594.96 584.219,585.39 C 584.219,575.82 591.977,568.06 601.549,568.06 C 611.12,568.06 618.877,575.819 618.877,585.39 z"
   id="path561"
   style="fill:#c2c2b2" />
				<path
   d="M 671.043,585.39 C 671.043,594.96 663.285,602.718 653.715,602.718 C 644.143,602.718 636.385,594.96 636.385,585.39 C 636.385,575.82 644.143,568.06 653.715,568.06 C 663.286,568.06 671.043,575.819 671.043,585.39 z"
   id="path563"
   style="fill:#c2c2b2" />
				<path
   d="M 723.209,585.39 C 723.209,594.96 715.451,602.718 705.881,602.718 C 696.309,602.718 688.553,594.96 688.553,585.39 C 688.553,575.82 696.309,568.06 705.881,568.06 C 715.452,568.06 723.209,575.819 723.209,585.39 z"
   id="path565"
   style="fill:#c2c2b2" />
				<path
   d="M 775.377,585.39 C 775.377,594.96 767.617,602.718 758.047,602.718 C 748.477,602.718 740.719,594.96 740.719,585.39 C 740.719,575.82 748.477,568.06 758.047,568.06 C 767.617,568.06 775.377,575.819 775.377,585.39 z"
   id="path567"
   style="fill:#c2c2b2" />
				<path
   d="M 827.542,585.39 C 827.542,594.96 819.784,602.718 810.214,602.718 C 800.644,602.718 792.886,594.96 792.886,585.39 C 792.886,575.82 800.644,568.06 810.214,568.06 C 819.784,568.06 827.542,575.819 827.542,585.39 z"
   id="path569"
   style="fill:#c2c2b2" />
				<path
   d="M 879.709,585.39 C 879.709,594.96 871.949,602.718 862.381,602.718 C 852.809,602.718 845.051,594.96 845.051,585.39 C 845.051,575.82 852.809,568.06 862.381,568.06 C 871.95,568.06 879.709,575.819 879.709,585.39 z"
   id="path571"
   style="fill:#c2c2b2" />
				<path
   d="M 931.875,585.39 C 931.875,594.96 924.115,602.718 914.547,602.718 C 904.975,602.718 897.217,594.96 897.217,585.39 C 897.217,575.82 904.975,568.06 914.547,568.06 C 924.116,568.06 931.875,575.819 931.875,585.39 z"
   id="path573"
   style="fill:#c2c2b2" />
				<path
   d="M 984.042,585.39 C 984.042,594.96 976.284,602.718 966.714,602.718 C 957.142,602.718 949.384,594.96 949.384,585.39 C 949.384,575.82 957.142,568.06 966.714,568.06 C 976.284,568.06 984.042,575.819 984.042,585.39 z"
   id="path575"
   style="fill:#c2c2b2" />
				<path
   d="M 1036.208,585.39 C 1036.208,594.96 1028.448,602.718 1018.88,602.718 C 1009.308,602.718 1001.55,594.96 1001.55,585.39 C 1001.55,575.82 1009.308,568.06 1018.88,568.06 C 1028.448,568.06 1036.208,575.819 1036.208,585.39 z"
   id="path577"
   style="fill:#c2c2b2" />
				<path
   d="M 1088.374,585.39 C 1088.374,594.96 1080.616,602.718 1071.046,602.718 C 1061.474,602.718 1053.716,594.96 1053.716,585.39 C 1053.716,575.82 1061.474,568.06 1071.046,568.06 C 1080.616,568.06 1088.374,575.819 1088.374,585.39 z"
   id="path579"
   style="fill:#c2c2b2" />
				<path
   d="M 1140.54,585.39 C 1140.54,594.96 1132.782,602.718 1123.212,602.718 C 1113.64,602.718 1105.882,594.96 1105.882,585.39 C 1105.882,575.82 1113.64,568.06 1123.212,568.06 C 1132.782,568.06 1140.54,575.819 1140.54,585.39 z"
   id="path581"
   style="fill:#c2c2b2" />
				<path
   d="M 1192.706,585.39 C 1192.706,594.96 1184.948,602.718 1175.378,602.718 C 1165.806,602.718 1158.048,594.96 1158.048,585.39 C 1158.048,575.82 1165.806,568.06 1175.378,568.06 C 1184.948,568.06 1192.706,575.819 1192.706,585.39 z"
   id="path583"
   style="fill:#c2c2b2" />
			</g>
			<g
   id="g585"
   transform="translate(0.142,-39.123441)">
				<path
   d="M 45.046,636.396 C 45.046,645.966 37.288,653.724 27.718,653.724 C 18.147,653.724 10.388,645.966 10.388,636.396 C 10.388,626.826 18.147,619.066 27.718,619.066 C 37.288,619.065 45.046,626.825 45.046,636.396 z"
   id="path587"
   style="fill:#c2c2b2" />
				<path
   d="M 97.212,636.396 C 97.212,645.966 89.454,653.724 79.884,653.724 C 70.314,653.724 62.554,645.966 62.554,636.396 C 62.554,626.826 70.314,619.066 79.884,619.066 C 89.454,619.066 97.212,626.825 97.212,636.396 z"
   id="path589"
   style="fill:#c2c2b2" />
				<path
   d="M 149.379,636.396 C 149.379,645.966 141.621,653.724 132.05,653.724 C 122.48,653.724 114.721,645.966 114.721,636.396 C 114.721,626.826 122.48,619.066 132.05,619.066 C 141.621,619.065 149.379,626.825 149.379,636.396 z"
   id="path591"
   style="fill:#c2c2b2" />
				<path
   d="M 201.546,636.396 C 201.546,645.966 193.788,653.724 184.217,653.724 C 174.646,653.724 166.888,645.966 166.888,636.396 C 166.888,626.826 174.646,619.066 184.217,619.066 C 193.788,619.066 201.546,626.825 201.546,636.396 z"
   id="path593"
   style="fill:#c2c2b2" />
				<path
   d="M 253.712,636.396 C 253.712,645.966 245.954,653.724 236.384,653.724 C 226.813,653.724 219.054,645.966 219.054,636.396 C 219.054,626.826 226.813,619.066 236.384,619.066 C 245.954,619.065 253.712,626.825 253.712,636.396 z"
   id="path595"
   style="fill:#c2c2b2" />
				<path
   d="M 305.879,636.396 C 305.879,645.966 298.12,653.724 288.55,653.724 C 278.98,653.724 271.221,645.966 271.221,636.396 C 271.221,626.826 278.98,619.066 288.55,619.066 C 298.12,619.066 305.879,626.825 305.879,636.396 z"
   id="path597"
   style="fill:#c2c2b2" />
				<path
   d="M 358.046,636.396 C 358.046,645.966 350.287,653.724 340.717,653.724 C 331.146,653.724 323.388,645.966 323.388,636.396 C 323.388,626.826 331.146,619.066 340.717,619.066 C 350.287,619.065 358.046,626.825 358.046,636.396 z"
   id="path599"
   style="fill:#c2c2b2" />
				<path
   d="M 410.212,636.396 C 410.212,645.966 402.454,653.724 392.884,653.724 C 383.313,653.724 375.554,645.966 375.554,636.396 C 375.554,626.826 383.313,619.066 392.884,619.066 C 402.454,619.065 410.212,626.825 410.212,636.396 z"
   id="path601"
   style="fill:#c2c2b2" />
				<path
   d="M 462.378,636.396 C 462.378,645.966 454.62,653.724 445.05,653.724 C 435.48,653.724 427.72,645.966 427.72,636.396 C 427.72,626.826 435.48,619.066 445.05,619.066 C 454.62,619.066 462.378,626.825 462.378,636.396 z"
   id="path603"
   style="fill:#c2c2b2" />
				<path
   d="M 514.545,636.396 C 514.545,645.966 506.787,653.724 497.216,653.724 C 487.646,653.724 479.887,645.966 479.887,636.396 C 479.887,626.826 487.646,619.066 497.216,619.066 C 506.787,619.065 514.545,626.825 514.545,636.396 z"
   id="path605"
   style="fill:#c2c2b2" />
				<path
   d="M 566.712,636.396 C 566.712,645.966 558.954,653.724 549.384,653.724 C 539.812,653.724 532.054,645.966 532.054,636.396 C 532.054,626.826 539.812,619.066 549.384,619.066 C 558.954,619.065 566.712,626.825 566.712,636.396 z"
   id="path607"
   style="fill:#c2c2b2" />
				<path
   d="M 618.877,636.396 C 618.877,645.966 611.119,653.724 601.549,653.724 C 591.977,653.724 584.219,645.966 584.219,636.396 C 584.219,626.826 591.977,619.066 601.549,619.066 C 611.12,619.065 618.877,626.825 618.877,636.396 z"
   id="path609"
   style="fill:#c2c2b2" />
				<path
   d="M 671.043,636.396 C 671.043,645.966 663.285,653.724 653.715,653.724 C 644.143,653.724 636.385,645.966 636.385,636.396 C 636.385,626.826 644.143,619.066 653.715,619.066 C 663.286,619.065 671.043,626.825 671.043,636.396 z"
   id="path611"
   style="fill:#c2c2b2" />
				<path
   d="M 723.209,636.396 C 723.209,645.966 715.451,653.724 705.881,653.724 C 696.309,653.724 688.553,645.966 688.553,636.396 C 688.553,626.826 696.309,619.066 705.881,619.066 C 715.452,619.065 723.209,626.825 723.209,636.396 z"
   id="path613"
   style="fill:#c2c2b2" />
				<path
   d="M 775.377,636.396 C 775.377,645.966 767.617,653.724 758.047,653.724 C 748.477,653.724 740.719,645.966 740.719,636.396 C 740.719,626.826 748.477,619.066 758.047,619.066 C 767.617,619.066 775.377,626.825 775.377,636.396 z"
   id="path615"
   style="fill:#c2c2b2" />
				<path
   d="M 827.542,636.396 C 827.542,645.966 819.784,653.724 810.214,653.724 C 800.644,653.724 792.886,645.966 792.886,636.396 C 792.886,626.826 800.644,619.066 810.214,619.066 C 819.784,619.066 827.542,626.825 827.542,636.396 z"
   id="path617"
   style="fill:#c2c2b2" />
				<path
   d="M 879.709,636.396 C 879.709,645.966 871.949,653.724 862.381,653.724 C 852.809,653.724 845.051,645.966 845.051,636.396 C 845.051,626.826 852.809,619.066 862.381,619.066 C 871.95,619.065 879.709,626.825 879.709,636.396 z"
   id="path619"
   style="fill:#c2c2b2" />
				<path
   d="M 931.875,636.396 C 931.875,645.966 924.115,653.724 914.547,653.724 C 904.975,653.724 897.217,645.966 897.217,636.396 C 897.217,626.826 904.975,619.066 914.547,619.066 C 924.116,619.065 931.875,626.825 931.875,636.396 z"
   id="path621"
   style="fill:#c2c2b2" />
				<path
   d="M 984.042,636.396 C 984.042,645.966 976.284,653.724 966.714,653.724 C 957.142,653.724 949.384,645.966 949.384,636.396 C 949.384,626.826 957.142,619.066 966.714,619.066 C 976.284,619.065 984.042,626.825 984.042,636.396 z"
   id="path623"
   style="fill:#c2c2b2" />
				<path
   d="M 1036.208,636.396 C 1036.208,645.966 1028.448,653.724 1018.88,653.724 C 1009.308,653.724 1001.55,645.966 1001.55,636.396 C 1001.55,626.826 1009.308,619.066 1018.88,619.066 C 1028.448,619.065 1036.208,626.825 1036.208,636.396 z"
   id="path625"
   style="fill:#c2c2b2" />
				<path
   d="M 1088.374,636.396 C 1088.374,645.966 1080.616,653.724 1071.046,653.724 C 1061.474,653.724 1053.716,645.966 1053.716,636.396 C 1053.716,626.826 1061.474,619.066 1071.046,619.066 C 1080.616,619.065 1088.374,626.825 1088.374,636.396 z"
   id="path627"
   style="fill:#c2c2b2" />
				<path
   d="M 1140.54,636.396 C 1140.54,645.966 1132.782,653.724 1123.212,653.724 C 1113.64,653.724 1105.882,645.966 1105.882,636.396 C 1105.882,626.826 1113.64,619.066 1123.212,619.066 C 1132.782,619.065 1140.54,626.825 1140.54,636.396 z"
   id="path629"
   style="fill:#c2c2b2" />
				<path
   d="M 1192.706,636.396 C 1192.706,645.966 1184.948,653.724 1175.378,653.724 C 1165.806,653.724 1158.048,645.966 1158.048,636.396 C 1158.048,626.826 1165.806,619.066 1175.378,619.066 C 1184.948,619.065 1192.706,626.825 1192.706,636.396 z"
   id="path631"
   style="fill:#c2c2b2" />
			</g>
			<g
   id="g633"
   transform="translate(0.142,-39.123441)">
				<path
   d="M 45.046,687.401 C 45.046,696.971 37.288,704.729 27.718,704.729 C 18.147,704.729 10.388,696.971 10.388,687.401 C 10.388,677.831 18.147,670.071 27.718,670.071 C 37.288,670.071 45.046,677.831 45.046,687.401 z"
   id="path635"
   style="fill:#c2c2b2" />
				<path
   d="M 97.212,687.401 C 97.212,696.971 89.454,704.729 79.884,704.729 C 70.314,704.729 62.554,696.971 62.554,687.401 C 62.554,677.831 70.314,670.071 79.884,670.071 C 89.454,670.071 97.212,677.831 97.212,687.401 z"
   id="path637"
   style="fill:#c2c2b2" />
				<path
   d="M 149.379,687.401 C 149.379,696.971 141.621,704.729 132.05,704.729 C 122.48,704.729 114.721,696.971 114.721,687.401 C 114.721,677.831 122.48,670.071 132.05,670.071 C 141.621,670.071 149.379,677.831 149.379,687.401 z"
   id="path639"
   style="fill:#c2c2b2" />
				<path
   d="M 201.546,687.401 C 201.546,696.971 193.788,704.729 184.217,704.729 C 174.646,704.729 166.888,696.971 166.888,687.401 C 166.888,677.831 174.646,670.071 184.217,670.071 C 193.788,670.071 201.546,677.831 201.546,687.401 z"
   id="path641"
   style="fill:#c2c2b2" />
				<path
   d="M 253.712,687.401 C 253.712,696.971 245.954,704.729 236.384,704.729 C 226.813,704.729 219.054,696.971 219.054,687.401 C 219.054,677.831 226.813,670.071 236.384,670.071 C 245.954,670.071 253.712,677.831 253.712,687.401 z"
   id="path643"
   style="fill:#c2c2b2" />
				<path
   d="M 305.879,687.401 C 305.879,696.971 298.12,704.729 288.55,704.729 C 278.98,704.729 271.221,696.971 271.221,687.401 C 271.221,677.831 278.98,670.071 288.55,670.071 C 298.12,670.071 305.879,677.831 305.879,687.401 z"
   id="path645"
   style="fill:#c2c2b2" />
				<path
   d="M 358.046,687.401 C 358.046,696.971 350.287,704.729 340.717,704.729 C 331.146,704.729 323.388,696.971 323.388,687.401 C 323.388,677.831 331.146,670.071 340.717,670.071 C 350.287,670.071 358.046,677.831 358.046,687.401 z"
   id="path647"
   style="fill:#c2c2b2" />
				<path
   d="M 410.212,687.401 C 410.212,696.971 402.454,704.729 392.884,704.729 C 383.313,704.729 375.554,696.971 375.554,687.401 C 375.554,677.831 383.313,670.071 392.884,670.071 C 402.454,670.071 410.212,677.831 410.212,687.401 z"
   id="path649"
   style="fill:#c2c2b2" />
				<path
   d="M 462.378,687.401 C 462.378,696.971 454.62,704.729 445.05,704.729 C 435.48,704.729 427.72,696.971 427.72,687.401 C 427.72,677.831 435.48,670.071 445.05,670.071 C 454.62,670.071 462.378,677.831 462.378,687.401 z"
   id="path651"
   style="fill:#c2c2b2" />
				<path
   d="M 514.545,687.401 C 514.545,696.971 506.787,704.729 497.216,704.729 C 487.646,704.729 479.887,696.971 479.887,687.401 C 479.887,677.831 487.646,670.071 497.216,670.071 C 506.787,670.071 514.545,677.831 514.545,687.401 z"
   id="path653"
   style="fill:#c2c2b2" />
				<path
   d="M 566.712,687.401 C 566.712,696.971 558.954,704.729 549.384,704.729 C 539.812,704.729 532.054,696.971 532.054,687.401 C 532.054,677.831 539.812,670.071 549.384,670.071 C 558.954,670.071 566.712,677.831 566.712,687.401 z"
   id="path655"
   style="fill:#c2c2b2" />
				<path
   d="M 618.877,687.401 C 618.877,696.971 611.119,704.729 601.549,704.729 C 591.977,704.729 584.219,696.971 584.219,687.401 C 584.219,677.831 591.977,670.071 601.549,670.071 C 611.12,670.071 618.877,677.831 618.877,687.401 z"
   id="path657"
   style="fill:#c2c2b2" />
				<path
   d="M 671.043,687.401 C 671.043,696.971 663.285,704.729 653.715,704.729 C 644.143,704.729 636.385,696.971 636.385,687.401 C 636.385,677.831 644.143,670.071 653.715,670.071 C 663.286,670.071 671.043,677.831 671.043,687.401 z"
   id="path659"
   style="fill:#c2c2b2" />
				<path
   d="M 723.209,687.401 C 723.209,696.971 715.451,704.729 705.881,704.729 C 696.309,704.729 688.553,696.971 688.553,687.401 C 688.553,677.831 696.309,670.071 705.881,670.071 C 715.452,670.071 723.209,677.831 723.209,687.401 z"
   id="path661"
   style="fill:#c2c2b2" />
				<path
   d="M 775.377,687.401 C 775.377,696.971 767.617,704.729 758.047,704.729 C 748.477,704.729 740.719,696.971 740.719,687.401 C 740.719,677.831 748.477,670.071 758.047,670.071 C 767.617,670.071 775.377,677.831 775.377,687.401 z"
   id="path663"
   style="fill:#c2c2b2" />
				<path
   d="M 827.542,687.401 C 827.542,696.971 819.784,704.729 810.214,704.729 C 800.644,704.729 792.886,696.971 792.886,687.401 C 792.886,677.831 800.644,670.071 810.214,670.071 C 819.784,670.071 827.542,677.831 827.542,687.401 z"
   id="path665"
   style="fill:#c2c2b2" />
				<path
   d="M 879.709,687.401 C 879.709,696.971 871.949,704.729 862.381,704.729 C 852.809,704.729 845.051,696.971 845.051,687.401 C 845.051,677.831 852.809,670.071 862.381,670.071 C 871.95,670.071 879.709,677.831 879.709,687.401 z"
   id="path667"
   style="fill:#c2c2b2" />
				<path
   d="M 931.875,687.401 C 931.875,696.971 924.115,704.729 914.547,704.729 C 904.975,704.729 897.217,696.971 897.217,687.401 C 897.217,677.831 904.975,670.071 914.547,670.071 C 924.116,670.071 931.875,677.831 931.875,687.401 z"
   id="path669"
   style="fill:#c2c2b2" />
				<path
   d="M 984.042,687.401 C 984.042,696.971 976.284,704.729 966.714,704.729 C 957.142,704.729 949.384,696.971 949.384,687.401 C 949.384,677.831 957.142,670.071 966.714,670.071 C 976.284,670.071 984.042,677.831 984.042,687.401 z"
   id="path671"
   style="fill:#c2c2b2" />
				<path
   d="M 1036.208,687.401 C 1036.208,696.971 1028.448,704.729 1018.88,704.729 C 1009.308,704.729 1001.55,696.971 1001.55,687.401 C 1001.55,677.831 1009.308,670.071 1018.88,670.071 C 1028.448,670.071 1036.208,677.831 1036.208,687.401 z"
   id="path673"
   style="fill:#c2c2b2" />
				<path
   d="M 1088.374,687.401 C 1088.374,696.971 1080.616,704.729 1071.046,704.729 C 1061.474,704.729 1053.716,696.971 1053.716,687.401 C 1053.716,677.831 1061.474,670.071 1071.046,670.071 C 1080.616,670.071 1088.374,677.831 1088.374,687.401 z"
   id="path675"
   style="fill:#c2c2b2" />
				<path
   d="M 1140.54,687.401 C 1140.54,696.971 1132.782,704.729 1123.212,704.729 C 1113.64,704.729 1105.882,696.971 1105.882,687.401 C 1105.882,677.831 1113.64,670.071 1123.212,670.071 C 1132.782,670.071 1140.54,677.831 1140.54,687.401 z"
   id="path677"
   style="fill:#c2c2b2" />
				<path
   d="M 1192.706,687.401 C 1192.706,696.971 1184.948,704.729 1175.378,704.729 C 1165.806,704.729 1158.048,696.971 1158.048,687.401 C 1158.048,677.831 1165.806,670.071 1175.378,670.071 C 1184.948,670.071 1192.706,677.831 1192.706,687.401 z"
   id="path679"
   style="fill:#c2c2b2" />
			</g>
			<g
   id="g681"
   transform="translate(0.142,-39.123441)">
				<path
   d="M 45.046,738.407 C 45.046,747.977 37.288,755.735 27.718,755.735 C 18.147,755.735 10.388,747.977 10.388,738.407 C 10.388,728.837 18.147,721.077 27.718,721.077 C 37.288,721.077 45.046,728.837 45.046,738.407 z"
   id="path683"
   style="fill:#c2c2b2" />
				<path
   d="M 97.212,738.407 C 97.212,747.977 89.454,755.735 79.884,755.735 C 70.314,755.735 62.554,747.977 62.554,738.407 C 62.554,728.837 70.314,721.077 79.884,721.077 C 89.454,721.077 97.212,728.837 97.212,738.407 z"
   id="path685"
   style="fill:#c2c2b2" />
				<path
   d="M 149.379,738.407 C 149.379,747.977 141.621,755.735 132.05,755.735 C 122.48,755.735 114.721,747.977 114.721,738.407 C 114.721,728.837 122.48,721.077 132.05,721.077 C 141.621,721.077 149.379,728.837 149.379,738.407 z"
   id="path687"
   style="fill:#c2c2b2" />
				<path
   d="M 201.546,738.407 C 201.546,747.977 193.788,755.735 184.217,755.735 C 174.646,755.735 166.888,747.977 166.888,738.407 C 166.888,728.837 174.646,721.077 184.217,721.077 C 193.788,721.077 201.546,728.837 201.546,738.407 z"
   id="path689"
   style="fill:#c2c2b2" />
				<path
   d="M 253.712,738.407 C 253.712,747.977 245.954,755.735 236.384,755.735 C 226.813,755.735 219.054,747.977 219.054,738.407 C 219.054,728.837 226.813,721.077 236.384,721.077 C 245.954,721.077 253.712,728.837 253.712,738.407 z"
   id="path691"
   style="fill:#c2c2b2" />
				<path
   d="M 305.879,738.407 C 305.879,747.977 298.12,755.735 288.55,755.735 C 278.98,755.735 271.221,747.977 271.221,738.407 C 271.221,728.837 278.98,721.077 288.55,721.077 C 298.12,721.077 305.879,728.837 305.879,738.407 z"
   id="path693"
   style="fill:#c2c2b2" />
				<path
   d="M 358.046,738.407 C 358.046,747.977 350.287,755.735 340.717,755.735 C 331.146,755.735 323.388,747.977 323.388,738.407 C 323.388,728.837 331.146,721.077 340.717,721.077 C 350.287,721.077 358.046,728.837 358.046,738.407 z"
   id="path695"
   style="fill:#c2c2b2" />
				<path
   d="M 410.212,738.407 C 410.212,747.977 402.454,755.735 392.884,755.735 C 383.313,755.735 375.554,747.977 375.554,738.407 C 375.554,728.837 383.313,721.077 392.884,721.077 C 402.454,721.077 410.212,728.837 410.212,738.407 z"
   id="path697"
   style="fill:#c2c2b2" />
				<path
   d="M 462.378,738.407 C 462.378,747.977 454.62,755.735 445.05,755.735 C 435.48,755.735 427.72,747.977 427.72,738.407 C 427.72,728.837 435.48,721.077 445.05,721.077 C 454.62,721.077 462.378,728.837 462.378,738.407 z"
   id="path699"
   style="fill:#c2c2b2" />
				<path
   d="M 514.545,738.407 C 514.545,747.977 506.787,755.735 497.216,755.735 C 487.646,755.735 479.887,747.977 479.887,738.407 C 479.887,728.837 487.646,721.077 497.216,721.077 C 506.787,721.077 514.545,728.837 514.545,738.407 z"
   id="path701"
   style="fill:#c2c2b2" />
				<path
   d="M 566.712,738.407 C 566.712,747.977 558.954,755.735 549.384,755.735 C 539.812,755.735 532.054,747.977 532.054,738.407 C 532.054,728.837 539.812,721.077 549.384,721.077 C 558.954,721.077 566.712,728.837 566.712,738.407 z"
   id="path703"
   style="fill:#c2c2b2" />
				<path
   d="M 618.877,738.407 C 618.877,747.977 611.119,755.735 601.549,755.735 C 591.977,755.735 584.219,747.977 584.219,738.407 C 584.219,728.837 591.977,721.077 601.549,721.077 C 611.12,721.077 618.877,728.837 618.877,738.407 z"
   id="path705"
   style="fill:#c2c2b2" />
				<path
   d="M 671.043,738.407 C 671.043,747.977 663.285,755.735 653.715,755.735 C 644.143,755.735 636.385,747.977 636.385,738.407 C 636.385,728.837 644.143,721.077 653.715,721.077 C 663.286,721.077 671.043,728.837 671.043,738.407 z"
   id="path707"
   style="fill:#c2c2b2" />
				<path
   d="M 723.209,738.407 C 723.209,747.977 715.451,755.735 705.881,755.735 C 696.309,755.735 688.553,747.977 688.553,738.407 C 688.553,728.837 696.309,721.077 705.881,721.077 C 715.452,721.077 723.209,728.837 723.209,738.407 z"
   id="path709"
   style="fill:#c2c2b2" />
				<path
   d="M 775.377,738.407 C 775.377,747.977 767.617,755.735 758.047,755.735 C 748.477,755.735 740.719,747.977 740.719,738.407 C 740.719,728.837 748.477,721.077 758.047,721.077 C 767.617,721.077 775.377,728.837 775.377,738.407 z"
   id="path711"
   style="fill:#c2c2b2" />
				<path
   d="M 827.542,738.407 C 827.542,747.977 819.784,755.735 810.214,755.735 C 800.644,755.735 792.886,747.977 792.886,738.407 C 792.886,728.837 800.644,721.077 810.214,721.077 C 819.784,721.077 827.542,728.837 827.542,738.407 z"
   id="path713"
   style="fill:#c2c2b2" />
				<path
   d="M 879.709,738.407 C 879.709,747.977 871.949,755.735 862.381,755.735 C 852.809,755.735 845.051,747.977 845.051,738.407 C 845.051,728.837 852.809,721.077 862.381,721.077 C 871.95,721.077 879.709,728.837 879.709,738.407 z"
   id="path715"
   style="fill:#c2c2b2" />
				<path
   d="M 931.875,738.407 C 931.875,747.977 924.115,755.735 914.547,755.735 C 904.975,755.735 897.217,747.977 897.217,738.407 C 897.217,728.837 904.975,721.077 914.547,721.077 C 924.116,721.077 931.875,728.837 931.875,738.407 z"
   id="path717"
   style="fill:#c2c2b2" />
				<path
   d="M 984.042,738.407 C 984.042,747.977 976.284,755.735 966.714,755.735 C 957.142,755.735 949.384,747.977 949.384,738.407 C 949.384,728.837 957.142,721.077 966.714,721.077 C 976.284,721.077 984.042,728.837 984.042,738.407 z"
   id="path719"
   style="fill:#c2c2b2" />
				<path
   d="M 1036.208,738.407 C 1036.208,747.977 1028.448,755.735 1018.88,755.735 C 1009.308,755.735 1001.55,747.977 1001.55,738.407 C 1001.55,728.837 1009.308,721.077 1018.88,721.077 C 1028.448,721.077 1036.208,728.837 1036.208,738.407 z"
   id="path721"
   style="fill:#c2c2b2" />
				<path
   d="M 1088.374,738.407 C 1088.374,747.977 1080.616,755.735 1071.046,755.735 C 1061.474,755.735 1053.716,747.977 1053.716,738.407 C 1053.716,728.837 1061.474,721.077 1071.046,721.077 C 1080.616,721.077 1088.374,728.837 1088.374,738.407 z"
   id="path723"
   style="fill:#c2c2b2" />
				<path
   d="M 1140.54,738.407 C 1140.54,747.977 1132.782,755.735 1123.212,755.735 C 1113.64,755.735 1105.882,747.977 1105.882,738.407 C 1105.882,728.837 1113.64,721.077 1123.212,721.077 C 1132.782,721.077 1140.54,728.837 1140.54,738.407 z"
   id="path725"
   style="fill:#c2c2b2" />
				<path
   d="M 1192.706,738.407 C 1192.706,747.977 1184.948,755.735 1175.378,755.735 C 1165.806,755.735 1158.048,747.977 1158.048,738.407 C 1158.048,728.837 1165.806,721.077 1175.378,721.077 C 1184.948,721.077 1192.706,728.837 1192.706,738.407 z"
   id="path727"
   style="fill:#c2c2b2" />
			</g>
			<g
   id="g729"
   transform="translate(0.142,-39.123441)">
				<path
   d="M 45.046,789.413 C 45.046,798.983 37.288,806.741 27.718,806.741 C 18.147,806.741 10.388,798.983 10.388,789.413 C 10.388,779.843 18.147,772.083 27.718,772.083 C 37.288,772.083 45.046,779.843 45.046,789.413 z"
   id="path731"
   style="fill:#c2c2b2" />
				<path
   d="M 97.212,789.413 C 97.212,798.983 89.454,806.741 79.884,806.741 C 70.314,806.741 62.554,798.983 62.554,789.413 C 62.554,779.843 70.314,772.083 79.884,772.083 C 89.454,772.083 97.212,779.843 97.212,789.413 z"
   id="path733"
   style="fill:#c2c2b2" />
				<path
   d="M 149.379,789.413 C 149.379,798.983 141.621,806.741 132.05,806.741 C 122.48,806.741 114.721,798.983 114.721,789.413 C 114.721,779.843 122.48,772.083 132.05,772.083 C 141.621,772.083 149.379,779.843 149.379,789.413 z"
   id="path735"
   style="fill:#c2c2b2" />
				<path
   d="M 201.546,789.413 C 201.546,798.983 193.788,806.741 184.217,806.741 C 174.646,806.741 166.888,798.983 166.888,789.413 C 166.888,779.843 174.646,772.083 184.217,772.083 C 193.788,772.083 201.546,779.843 201.546,789.413 z"
   id="path737"
   style="fill:#c2c2b2" />
				<path
   d="M 253.712,789.413 C 253.712,798.983 245.954,806.741 236.384,806.741 C 226.813,806.741 219.054,798.983 219.054,789.413 C 219.054,779.843 226.813,772.083 236.384,772.083 C 245.954,772.083 253.712,779.843 253.712,789.413 z"
   id="path739"
   style="fill:#c2c2b2" />
				<path
   d="M 305.879,789.413 C 305.879,798.983 298.12,806.741 288.55,806.741 C 278.98,806.741 271.221,798.983 271.221,789.413 C 271.221,779.843 278.98,772.083 288.55,772.083 C 298.12,772.083 305.879,779.843 305.879,789.413 z"
   id="path741"
   style="fill:#c2c2b2" />
				<path
   d="M 358.046,789.413 C 358.046,798.983 350.287,806.741 340.717,806.741 C 331.146,806.741 323.388,798.983 323.388,789.413 C 323.388,779.843 331.146,772.083 340.717,772.083 C 350.287,772.083 358.046,779.843 358.046,789.413 z"
   id="path743"
   style="fill:#c2c2b2" />
				<path
   d="M 410.212,789.413 C 410.212,798.983 402.454,806.741 392.884,806.741 C 383.313,806.741 375.554,798.983 375.554,789.413 C 375.554,779.843 383.313,772.083 392.884,772.083 C 402.454,772.083 410.212,779.843 410.212,789.413 z"
   id="path745"
   style="fill:#c2c2b2" />
				<path
   d="M 462.378,789.413 C 462.378,798.983 454.62,806.741 445.05,806.741 C 435.48,806.741 427.72,798.983 427.72,789.413 C 427.72,779.843 435.48,772.083 445.05,772.083 C 454.62,772.083 462.378,779.843 462.378,789.413 z"
   id="path747"
   style="fill:#c2c2b2" />
				<path
   d="M 514.545,789.413 C 514.545,798.983 506.787,806.741 497.216,806.741 C 487.646,806.741 479.887,798.983 479.887,789.413 C 479.887,779.843 487.646,772.083 497.216,772.083 C 506.787,772.083 514.545,779.843 514.545,789.413 z"
   id="path749"
   style="fill:#c2c2b2" />
				<path
   d="M 566.712,789.413 C 566.712,798.983 558.954,806.741 549.384,806.741 C 539.812,806.741 532.054,798.983 532.054,789.413 C 532.054,779.843 539.812,772.083 549.384,772.083 C 558.954,772.083 566.712,779.843 566.712,789.413 z"
   id="path751"
   style="fill:#c2c2b2" />
				<path
   d="M 618.877,789.413 C 618.877,798.983 611.119,806.741 601.549,806.741 C 591.977,806.741 584.219,798.983 584.219,789.413 C 584.219,779.843 591.977,772.083 601.549,772.083 C 611.12,772.083 618.877,779.843 618.877,789.413 z"
   id="path753"
   style="fill:#c2c2b2" />
				<path
   d="M 671.043,789.413 C 671.043,798.983 663.285,806.741 653.715,806.741 C 644.143,806.741 636.385,798.983 636.385,789.413 C 636.385,779.843 644.143,772.083 653.715,772.083 C 663.286,772.083 671.043,779.843 671.043,789.413 z"
   id="path755"
   style="fill:#c2c2b2" />
				<path
   d="M 723.209,789.413 C 723.209,798.983 715.451,806.741 705.881,806.741 C 696.309,806.741 688.553,798.983 688.553,789.413 C 688.553,779.843 696.309,772.083 705.881,772.083 C 715.452,772.083 723.209,779.843 723.209,789.413 z"
   id="path757"
   style="fill:#c2c2b2" />
				<path
   d="M 775.377,789.413 C 775.377,798.983 767.617,806.741 758.047,806.741 C 748.477,806.741 740.719,798.983 740.719,789.413 C 740.719,779.843 748.477,772.083 758.047,772.083 C 767.617,772.083 775.377,779.843 775.377,789.413 z"
   id="path759"
   style="fill:#c2c2b2" />
				<path
   d="M 827.542,789.413 C 827.542,798.983 819.784,806.741 810.214,806.741 C 800.644,806.741 792.886,798.983 792.886,789.413 C 792.886,779.843 800.644,772.083 810.214,772.083 C 819.784,772.083 827.542,779.843 827.542,789.413 z"
   id="path761"
   style="fill:#c2c2b2" />
				<path
   d="M 879.709,789.413 C 879.709,798.983 871.949,806.741 862.381,806.741 C 852.809,806.741 845.051,798.983 845.051,789.413 C 845.051,779.843 852.809,772.083 862.381,772.083 C 871.95,772.083 879.709,779.843 879.709,789.413 z"
   id="path763"
   style="fill:#c2c2b2" />
				<path
   d="M 931.875,789.413 C 931.875,798.983 924.115,806.741 914.547,806.741 C 904.975,806.741 897.217,798.983 897.217,789.413 C 897.217,779.843 904.975,772.083 914.547,772.083 C 924.116,772.083 931.875,779.843 931.875,789.413 z"
   id="path765"
   style="fill:#c2c2b2" />
				<path
   d="M 984.042,789.413 C 984.042,798.983 976.284,806.741 966.714,806.741 C 957.142,806.741 949.384,798.983 949.384,789.413 C 949.384,779.843 957.142,772.083 966.714,772.083 C 976.284,772.083 984.042,779.843 984.042,789.413 z"
   id="path767"
   style="fill:#c2c2b2" />
				<path
   d="M 1036.208,789.413 C 1036.208,798.983 1028.448,806.741 1018.88,806.741 C 1009.308,806.741 1001.55,798.983 1001.55,789.413 C 1001.55,779.843 1009.308,772.083 1018.88,772.083 C 1028.448,772.083 1036.208,779.843 1036.208,789.413 z"
   id="path769"
   style="fill:#c2c2b2" />
				<path
   d="M 1088.374,789.413 C 1088.374,798.983 1080.616,806.741 1071.046,806.741 C 1061.474,806.741 1053.716,798.983 1053.716,789.413 C 1053.716,779.843 1061.474,772.083 1071.046,772.083 C 1080.616,772.083 1088.374,779.843 1088.374,789.413 z"
   id="path771"
   style="fill:#c2c2b2" />
				<path
   d="M 1140.54,789.413 C 1140.54,798.983 1132.782,806.741 1123.212,806.741 C 1113.64,806.741 1105.882,798.983 1105.882,789.413 C 1105.882,779.843 1113.64,772.083 1123.212,772.083 C 1132.782,772.083 1140.54,779.843 1140.54,789.413 z"
   id="path773"
   style="fill:#c2c2b2" />
				<path
   d="M 1192.706,789.413 C 1192.706,798.983 1184.948,806.741 1175.378,806.741 C 1165.806,806.741 1158.048,798.983 1158.048,789.413 C 1158.048,779.843 1165.806,772.083 1175.378,772.083 C 1184.948,772.083 1192.706,779.843 1192.706,789.413 z"
   id="path775"
   style="fill:#c2c2b2" />
			</g>
			<g
   id="g777"
   transform="translate(0.142,-39.123441)">
				<path
   d="M 45.046,840.419 C 45.046,849.989 37.288,857.747 27.718,857.747 C 18.147,857.747 10.388,849.989 10.388,840.419 C 10.388,830.849 18.147,823.089 27.718,823.089 C 37.288,823.089 45.046,830.849 45.046,840.419 z"
   id="path779"
   style="fill:#c2c2b2" />
				<path
   d="M 97.212,840.419 C 97.212,849.989 89.454,857.747 79.884,857.747 C 70.314,857.747 62.554,849.989 62.554,840.419 C 62.554,830.849 70.314,823.089 79.884,823.089 C 89.454,823.089 97.212,830.849 97.212,840.419 z"
   id="path781"
   style="fill:#c2c2b2" />
				<path
   d="M 149.379,840.419 C 149.379,849.989 141.621,857.747 132.05,857.747 C 122.48,857.747 114.721,849.989 114.721,840.419 C 114.721,830.849 122.48,823.089 132.05,823.089 C 141.621,823.089 149.379,830.849 149.379,840.419 z"
   id="path783"
   style="fill:#c2c2b2" />
				<path
   d="M 201.546,840.419 C 201.546,849.989 193.788,857.747 184.217,857.747 C 174.646,857.747 166.888,849.989 166.888,840.419 C 166.888,830.849 174.646,823.089 184.217,823.089 C 193.788,823.089 201.546,830.849 201.546,840.419 z"
   id="path785"
   style="fill:#c2c2b2" />
				<path
   d="M 253.712,840.419 C 253.712,849.989 245.954,857.747 236.384,857.747 C 226.813,857.747 219.054,849.989 219.054,840.419 C 219.054,830.849 226.813,823.089 236.384,823.089 C 245.954,823.089 253.712,830.849 253.712,840.419 z"
   id="path787"
   style="fill:#c2c2b2" />
				<path
   d="M 305.879,840.419 C 305.879,849.989 298.12,857.747 288.55,857.747 C 278.98,857.747 271.221,849.989 271.221,840.419 C 271.221,830.849 278.98,823.089 288.55,823.089 C 298.12,823.089 305.879,830.849 305.879,840.419 z"
   id="path789"
   style="fill:#c2c2b2" />
				<path
   d="M 358.046,840.419 C 358.046,849.989 350.287,857.747 340.717,857.747 C 331.146,857.747 323.388,849.989 323.388,840.419 C 323.388,830.849 331.146,823.089 340.717,823.089 C 350.287,823.089 358.046,830.849 358.046,840.419 z"
   id="path791"
   style="fill:#c2c2b2" />
				<path
   d="M 410.212,840.419 C 410.212,849.989 402.454,857.747 392.884,857.747 C 383.313,857.747 375.554,849.989 375.554,840.419 C 375.554,830.849 383.313,823.089 392.884,823.089 C 402.454,823.089 410.212,830.849 410.212,840.419 z"
   id="path793"
   style="fill:#c2c2b2" />
				<path
   d="M 462.378,840.419 C 462.378,849.989 454.62,857.747 445.05,857.747 C 435.48,857.747 427.72,849.989 427.72,840.419 C 427.72,830.849 435.48,823.089 445.05,823.089 C 454.62,823.089 462.378,830.849 462.378,840.419 z"
   id="path795"
   style="fill:#c2c2b2" />
				<path
   d="M 514.545,840.419 C 514.545,849.989 506.787,857.747 497.216,857.747 C 487.646,857.747 479.887,849.989 479.887,840.419 C 479.887,830.849 487.646,823.089 497.216,823.089 C 506.787,823.089 514.545,830.849 514.545,840.419 z"
   id="path797"
   style="fill:#c2c2b2" />
				<path
   d="M 566.712,840.419 C 566.712,849.989 558.954,857.747 549.384,857.747 C 539.812,857.747 532.054,849.989 532.054,840.419 C 532.054,830.849 539.812,823.089 549.384,823.089 C 558.954,823.089 566.712,830.849 566.712,840.419 z"
   id="path799"
   style="fill:#c2c2b2" />
				<path
   d="M 618.877,840.419 C 618.877,849.989 611.119,857.747 601.549,857.747 C 591.977,857.747 584.219,849.989 584.219,840.419 C 584.219,830.849 591.977,823.089 601.549,823.089 C 611.12,823.089 618.877,830.849 618.877,840.419 z"
   id="path801"
   style="fill:#c2c2b2" />
				<path
   d="M 671.043,840.419 C 671.043,849.989 663.285,857.747 653.715,857.747 C 644.143,857.747 636.385,849.989 636.385,840.419 C 636.385,830.849 644.143,823.089 653.715,823.089 C 663.286,823.089 671.043,830.849 671.043,840.419 z"
   id="path803"
   style="fill:#c2c2b2" />
				<path
   d="M 723.209,840.419 C 723.209,849.989 715.451,857.747 705.881,857.747 C 696.309,857.747 688.553,849.989 688.553,840.419 C 688.553,830.849 696.309,823.089 705.881,823.089 C 715.452,823.089 723.209,830.849 723.209,840.419 z"
   id="path805"
   style="fill:#c2c2b2" />
				<path
   d="M 775.377,840.419 C 775.377,849.989 767.617,857.747 758.047,857.747 C 748.477,857.747 740.719,849.989 740.719,840.419 C 740.719,830.849 748.477,823.089 758.047,823.089 C 767.617,823.089 775.377,830.849 775.377,840.419 z"
   id="path807"
   style="fill:#c2c2b2" />
				<path
   d="M 827.542,840.419 C 827.542,849.989 819.784,857.747 810.214,857.747 C 800.644,857.747 792.886,849.989 792.886,840.419 C 792.886,830.849 800.644,823.089 810.214,823.089 C 819.784,823.089 827.542,830.849 827.542,840.419 z"
   id="path809"
   style="fill:#c2c2b2" />
				<path
   d="M 879.709,840.419 C 879.709,849.989 871.949,857.747 862.381,857.747 C 852.809,857.747 845.051,849.989 845.051,840.419 C 845.051,830.849 852.809,823.089 862.381,823.089 C 871.95,823.089 879.709,830.849 879.709,840.419 z"
   id="path811"
   style="fill:#c2c2b2" />
				<path
   d="M 931.875,840.419 C 931.875,849.989 924.115,857.747 914.547,857.747 C 904.975,857.747 897.217,849.989 897.217,840.419 C 897.217,830.849 904.975,823.089 914.547,823.089 C 924.116,823.089 931.875,830.849 931.875,840.419 z"
   id="path813"
   style="fill:#c2c2b2" />
				<path
   d="M 984.042,840.419 C 984.042,849.989 976.284,857.747 966.714,857.747 C 957.142,857.747 949.384,849.989 949.384,840.419 C 949.384,830.849 957.142,823.089 966.714,823.089 C 976.284,823.089 984.042,830.849 984.042,840.419 z"
   id="path815"
   style="fill:#c2c2b2" />
				<path
   d="M 1036.208,840.419 C 1036.208,849.989 1028.448,857.747 1018.88,857.747 C 1009.308,857.747 1001.55,849.989 1001.55,840.419 C 1001.55,830.849 1009.308,823.089 1018.88,823.089 C 1028.448,823.089 1036.208,830.849 1036.208,840.419 z"
   id="path817"
   style="fill:#c2c2b2" />
				<path
   d="M 1088.374,840.419 C 1088.374,849.989 1080.616,857.747 1071.046,857.747 C 1061.474,857.747 1053.716,849.989 1053.716,840.419 C 1053.716,830.849 1061.474,823.089 1071.046,823.089 C 1080.616,823.089 1088.374,830.849 1088.374,840.419 z"
   id="path819"
   style="fill:#c2c2b2" />
				<path
   d="M 1140.54,840.419 C 1140.54,849.989 1132.782,857.747 1123.212,857.747 C 1113.64,857.747 1105.882,849.989 1105.882,840.419 C 1105.882,830.849 1113.64,823.089 1123.212,823.089 C 1132.782,823.089 1140.54,830.849 1140.54,840.419 z"
   id="path821"
   style="fill:#c2c2b2" />
				<path
   d="M 1192.706,840.419 C 1192.706,849.989 1184.948,857.747 1175.378,857.747 C 1165.806,857.747 1158.048,849.989 1158.048,840.419 C 1158.048,830.849 1165.806,823.089 1175.378,823.089 C 1184.948,823.089 1192.706,830.849 1192.706,840.419 z"
   id="path823"
   style="fill:#c2c2b2" />
			</g>
			<g
   id="g825"
   transform="translate(0.142,-39.123441)">
				<path
   d="M 45.046,891.425 C 45.046,881.855 37.288,874.095 27.718,874.095 C 18.147,874.095 10.388,881.855 10.388,891.425 C 10.388,894.548 11.226,897.47 12.671,900 L 42.763,900 C 44.208,897.47 45.046,894.548 45.046,891.425 z"
   id="path827"
   style="fill:#c2c2b2" />
				<path
   d="M 97.212,891.425 C 97.212,881.855 89.454,874.095 79.884,874.095 C 70.314,874.095 62.554,881.855 62.554,891.425 C 62.554,894.548 63.392,897.47 64.838,900 L 94.929,900 C 96.375,897.47 97.212,894.548 97.212,891.425 z"
   id="path829"
   style="fill:#c2c2b2" />
				<path
   d="M 149.379,891.425 C 149.379,881.855 141.621,874.095 132.05,874.095 C 122.48,874.095 114.721,881.855 114.721,891.425 C 114.721,894.548 115.559,897.47 117.004,900 L 147.096,900 C 148.542,897.47 149.379,894.548 149.379,891.425 z"
   id="path831"
   style="fill:#c2c2b2" />
				<path
   d="M 201.546,891.425 C 201.546,881.855 193.788,874.095 184.217,874.095 C 174.646,874.095 166.888,881.855 166.888,891.425 C 166.888,894.548 167.725,897.47 169.171,900 L 199.263,900 C 200.708,897.47 201.546,894.548 201.546,891.425 z"
   id="path833"
   style="fill:#c2c2b2" />
				<path
   d="M 253.712,891.425 C 253.712,881.855 245.954,874.095 236.384,874.095 C 226.813,874.095 219.054,881.855 219.054,891.425 C 219.054,894.548 219.892,897.47 221.337,900 L 251.429,900 C 252.875,897.47 253.712,894.548 253.712,891.425 z"
   id="path835"
   style="fill:#c2c2b2" />
				<path
   d="M 305.879,891.425 C 305.879,881.855 298.12,874.095 288.55,874.095 C 278.98,874.095 271.221,881.855 271.221,891.425 C 271.221,894.548 272.059,897.47 273.504,900 L 303.596,900 C 305.041,897.47 305.879,894.548 305.879,891.425 z"
   id="path837"
   style="fill:#c2c2b2" />
				<path
   d="M 358.046,891.425 C 358.046,881.855 350.287,874.095 340.717,874.095 C 331.146,874.095 323.388,881.855 323.388,891.425 C 323.388,894.548 324.225,897.47 325.671,900 L 355.763,900 C 357.208,897.47 358.046,894.548 358.046,891.425 z"
   id="path839"
   style="fill:#c2c2b2" />
				<path
   d="M 410.212,891.425 C 410.212,881.855 402.454,874.095 392.884,874.095 C 383.313,874.095 375.554,881.855 375.554,891.425 C 375.554,894.548 376.392,897.47 377.837,900 L 407.929,900 C 409.375,897.47 410.212,894.548 410.212,891.425 z"
   id="path841"
   style="fill:#c2c2b2" />
				<path
   d="M 462.378,891.425 C 462.378,881.855 454.62,874.095 445.05,874.095 C 435.48,874.095 427.72,881.855 427.72,891.425 C 427.72,894.548 428.558,897.47 430.004,900 L 460.095,900 C 461.541,897.47 462.378,894.548 462.378,891.425 z"
   id="path843"
   style="fill:#c2c2b2" />
				<path
   d="M 514.545,891.425 C 514.545,881.855 506.787,874.095 497.216,874.095 C 487.646,874.095 479.887,881.855 479.887,891.425 C 479.887,894.548 480.725,897.47 482.17,900 L 512.262,900 C 513.708,897.47 514.545,894.548 514.545,891.425 z"
   id="path845"
   style="fill:#c2c2b2" />
				<path
   d="M 566.712,891.425 C 566.712,881.855 558.954,874.095 549.384,874.095 C 539.812,874.095 532.054,881.855 532.054,891.425 C 532.054,894.548 532.891,897.47 534.337,900 L 564.429,900 C 565.875,897.47 566.712,894.548 566.712,891.425 z"
   id="path847"
   style="fill:#c2c2b2" />
				<path
   d="M 618.877,891.425 C 618.877,881.855 611.119,874.095 601.549,874.095 C 591.977,874.095 584.219,881.855 584.219,891.425 C 584.219,894.548 585.056,897.47 586.502,900 L 616.593,900 C 618.04,897.47 618.877,894.548 618.877,891.425 z"
   id="path849"
   style="fill:#c2c2b2" />
				<path
   d="M 671.043,891.425 C 671.043,881.855 663.285,874.095 653.715,874.095 C 644.143,874.095 636.385,881.855 636.385,891.425 C 636.385,894.548 637.223,897.47 638.668,900 L 668.76,900 C 670.206,897.47 671.043,894.548 671.043,891.425 z"
   id="path851"
   style="fill:#c2c2b2" />
				<path
   d="M 723.209,891.425 C 723.209,881.855 715.451,874.095 705.881,874.095 C 696.309,874.095 688.553,881.855 688.553,891.425 C 688.553,894.548 689.391,897.47 690.835,900 L 720.926,900 C 722.372,897.47 723.209,894.548 723.209,891.425 z"
   id="path853"
   style="fill:#c2c2b2" />
				<path
   d="M 775.377,891.425 C 775.377,881.855 767.617,874.095 758.047,874.095 C 748.477,874.095 740.719,881.855 740.719,891.425 C 740.719,894.548 741.557,897.47 743.002,900 L 773.094,900 C 774.54,897.47 775.377,894.548 775.377,891.425 z"
   id="path855"
   style="fill:#c2c2b2" />
				<path
   d="M 827.542,891.425 C 827.542,881.855 819.784,874.095 810.214,874.095 C 800.644,874.095 792.886,881.855 792.886,891.425 C 792.886,894.548 793.724,897.47 795.169,900 L 825.259,900 C 826.704,897.47 827.542,894.548 827.542,891.425 z"
   id="path857"
   style="fill:#c2c2b2" />
				<path
   d="M 879.709,891.425 C 879.709,881.855 871.949,874.095 862.381,874.095 C 852.809,874.095 845.051,881.855 845.051,891.425 C 845.051,894.548 845.889,897.47 847.334,900 L 877.426,900 C 878.872,897.47 879.709,894.548 879.709,891.425 z"
   id="path859"
   style="fill:#c2c2b2" />
				<path
   d="M 931.875,891.425 C 931.875,881.855 924.115,874.095 914.547,874.095 C 904.975,874.095 897.217,881.855 897.217,891.425 C 897.217,894.548 898.055,897.47 899.5,900 L 929.592,900 C 931.038,897.47 931.875,894.548 931.875,891.425 z"
   id="path861"
   style="fill:#c2c2b2" />
				<path
   d="M 984.042,891.425 C 984.042,881.855 976.284,874.095 966.714,874.095 C 957.142,874.095 949.384,881.855 949.384,891.425 C 949.384,894.548 950.222,897.47 951.667,900 L 981.759,900 C 983.204,897.47 984.042,894.548 984.042,891.425 z"
   id="path863"
   style="fill:#c2c2b2" />
				<path
   d="M 1036.208,891.425 C 1036.208,881.855 1028.448,874.095 1018.88,874.095 C 1009.308,874.095 1001.55,881.855 1001.55,891.425 C 1001.55,894.548 1002.388,897.47 1003.833,900 L 1033.925,900 C 1035.37,897.47 1036.208,894.548 1036.208,891.425 z"
   id="path865"
   style="fill:#c2c2b2" />
				<path
   d="M 1088.374,891.425 C 1088.374,881.855 1080.616,874.095 1071.046,874.095 C 1061.474,874.095 1053.716,881.855 1053.716,891.425 C 1053.716,894.548 1054.554,897.47 1055.999,900 L 1086.091,900 C 1087.536,897.47 1088.374,894.548 1088.374,891.425 z"
   id="path867"
   style="fill:#c2c2b2" />
				<path
   d="M 1140.54,891.425 C 1140.54,881.855 1132.782,874.095 1123.212,874.095 C 1113.64,874.095 1105.882,881.855 1105.882,891.425 C 1105.882,894.548 1106.72,897.47 1108.165,900 L 1138.257,900 C 1139.702,897.47 1140.54,894.548 1140.54,891.425 z"
   id="path869"
   style="fill:#c2c2b2" />
				<path
   d="M 1192.706,891.425 C 1192.706,881.855 1184.948,874.095 1175.378,874.095 C 1165.806,874.095 1158.048,881.855 1158.048,891.425 C 1158.048,894.548 1158.886,897.47 1160.331,900 L 1190.423,900 C 1191.868,897.47 1192.706,894.548 1192.706,891.425 z"
   id="path871"
   style="fill:#c2c2b2" />
			</g>
		</g>
		<g
   id="g873"
   transform="translate(0.142,-39.123441)">
			<path
   d="M 7.958,696.579 C 29.599,696.579 50.699,698.888 71.042,703.234 C 94.509,691.03 121.172,684.125 149.452,684.125 C 243.444,684.125 319.64,760.322 319.64,854.313 C 319.64,870.141 317.471,885.46 313.429,900.001 L 454.346,900.001 C 454.521,895.791 454.632,891.563 454.632,887.311 C 454.632,721.252 320.012,586.631 153.951,586.631 C 98.038,586.631 45.702,601.91 0.857,628.494 L 0.857,696.67 C 3.219,696.614 5.584,696.579 7.958,696.579 z"
   id="path875"
   style="fill:none;stroke:#ffffff;stroke-width:1.71599996;stroke-dasharray:2.5739, 4.2899" />
			<path
   d="M 1201.858,575.594 C 1121.563,595.046 1053.867,646.719 1013.223,716.163 C 1065.821,719.237 1114.787,735.819 1156.699,762.51 C 1169.957,757.42 1184.351,754.623 1199.401,754.623 C 1200.222,754.623 1201.041,754.638 1201.858,754.654"
   id="path877"
   style="fill:none;stroke:#ffffff;stroke-width:1.71599996;stroke-dasharray:2.5739, 4.2899" />
			<path
   d="M 292.39,900 C 258.653,801.082 174.766,725.4 71.043,703.234 C 41.526,718.585 17.08,742.33 0.858,771.307"
   id="path879"
   style="fill:none;stroke:#ffffff;stroke-width:1.71599996;stroke-dasharray:2.5739, 4.2899" />
			<path
   d="M 972.214,867.81 C 972.214,812.499 987.165,760.686 1013.223,716.164 C 1007.327,715.82 1001.393,715.625 995.411,715.625 C 870.582,715.625 763.529,791.694 718.057,900.001 L 973.932,900.001 C 972.806,889.423 972.214,878.686 972.214,867.81 z"
   id="path881"
   style="fill:none;stroke:#ffffff;stroke-width:1.71599996;stroke-dasharray:2.5739, 4.2899" />
			<path
   d="M 1201.858,797.717 C 1187.985,784.61 1172.869,772.808 1156.699,762.51 C 1111.966,779.682 1080.21,823.035 1080.21,873.813 C 1080.21,882.811 1081.214,891.573 1083.103,900.001"
   id="path883"
   style="fill:none;stroke:#ffffff;stroke-width:1.71599996;stroke-dasharray:2.5739, 4.2899" />
		</g>
	</g>
	<g
   id="Layer_3_2_"
   transform="translate(9.9998045e-4,-38.982441)">
		<path
   d="M 1201.858,899 L 1.858,899 L 1.858,0 L 1201.858,0 L 1201.858,899 z"
   id="path886"
   style="fill:none" />
		<path
   d="M 638.358,759.495 C 638.358,768.726 630.874,776.212 621.64,776.212 L 191.188,776.212 C 181.955,776.212 174.47,768.727 174.47,759.495 L 174.47,719.795 C 174.47,710.563 181.955,703.077 191.188,703.077 L 621.64,703.077 C 630.873,703.077 638.358,710.562 638.358,719.795 L 638.358,759.495 z"
   id="path888"
   style="fill:#f8601f" />
		<path
   d="M 638.358,845.495 C 638.358,854.726 630.874,862.212 621.64,862.212 L 191.188,862.212 C 181.955,862.212 174.47,854.727 174.47,845.495 L 174.47,805.795 C 174.47,796.563 181.955,789.077 191.188,789.077 L 621.64,789.077 C 630.873,789.077 638.358,796.562 638.358,805.795 L 638.358,845.495 z"
   id="path890"
   style="fill:#f8601f" />
		<path
   d="M 212.754,213.396 C 192.41,213.396 175.858,229.947 175.858,250.292 L 175.858,638.093 C 175.858,658.438 192.409,674.989 212.754,674.989 L 600.555,674.989 C 620.9,674.989 637.45,658.438 637.45,638.093 L 637.45,250.292 C 637.45,229.948 620.9,213.396 600.555,213.396 L 212.754,213.396 z"
   id="path892"
   style="fill:#f8601f" />
		<path
   d="M 625.419,634.73 C 625.419,650.32 612.781,662.958 597.191,662.958 L 216.117,662.958 C 200.528,662.958 187.889,650.32 187.889,634.73 L 187.889,253.655 C 187.889,238.066 200.528,225.427 216.117,225.427 L 597.192,225.427 C 612.782,225.427 625.42,238.066 625.42,253.655 L 625.42,634.73 L 625.419,634.73 z"
   id="path894"
   style="fill:none;stroke:#ffffff;stroke-width:1.71599996;stroke-dasharray:2.5739, 4.2899" />
		<path
   d="M 332.869,303.483 C 332.869,338.075 304.827,366.116 270.237,366.116 C 235.645,366.116 207.604,338.074 207.604,303.483 C 207.604,268.892 235.646,240.851 270.237,240.851 C 304.827,240.851 332.869,268.893 332.869,303.483 z"
   id="path896" />
		<path
   d="M 323.431,303.483 C 323.431,332.862 299.615,356.678 270.237,356.678 C 240.858,356.678 217.042,332.862 217.042,303.483 C 217.042,274.105 240.858,250.288 270.237,250.288 C 299.615,250.289 323.431,274.105 323.431,303.483 z"
   id="path898"
   style="fill:none;stroke:#ffffff;stroke-width:1.71599996;stroke-dasharray:2.5739, 4.2899" />
		<path
   d="M 469.671,303.483 C 469.671,338.075 441.629,366.116 407.038,366.116 C 372.447,366.116 344.406,338.074 344.406,303.483 C 344.406,268.892 372.447,240.851 407.038,240.851 C 441.629,240.851 469.671,268.893 469.671,303.483 z"
   id="path900" />
		<path
   d="M 606.473,303.483 C 606.473,338.075 578.432,366.116 543.841,366.116 C 509.25,366.116 481.208,338.074 481.208,303.483 C 481.208,268.892 509.25,240.851 543.841,240.851 C 578.433,240.851 606.473,268.893 606.473,303.483 z"
   id="path902" />
		<path
   d="M 332.869,444.192 C 332.869,478.783 304.827,506.825 270.237,506.825 C 235.645,506.825 207.604,478.783 207.604,444.192 C 207.604,409.601 235.646,381.56 270.237,381.56 C 304.827,381.56 332.869,409.602 332.869,444.192 z"
   id="path904" />
		<path
   d="M 469.671,444.192 C 469.671,478.783 441.629,506.825 407.038,506.825 C 372.447,506.825 344.406,478.783 344.406,444.192 C 344.406,409.601 372.447,381.56 407.038,381.56 C 441.629,381.56 469.671,409.602 469.671,444.192 z"
   id="path906" />
		<path
   d="M 606.473,444.192 C 606.473,478.783 578.432,506.825 543.841,506.825 C 509.25,506.825 481.208,478.783 481.208,444.192 C 481.208,409.601 509.25,381.56 543.841,381.56 C 578.433,381.56 606.473,409.602 606.473,444.192 z"
   id="path908" />
		<path
   d="M 332.869,584.901 C 332.869,619.491 304.827,647.533 270.237,647.533 C 235.645,647.533 207.604,619.491 207.604,584.901 C 207.604,550.31 235.646,522.268 270.237,522.268 C 304.827,522.269 332.869,550.311 332.869,584.901 z"
   id="path910" />
		<path
   d="M 469.671,584.901 C 469.671,619.491 441.629,647.533 407.038,647.533 C 372.447,647.533 344.406,619.491 344.406,584.901 C 344.406,550.31 372.447,522.268 407.038,522.268 C 441.629,522.269 469.671,550.311 469.671,584.901 z"
   id="path912" />
		<path
   d="M 606.473,584.901 C 606.473,619.491 578.432,647.533 543.841,647.533 C 509.25,647.533 481.208,619.491 481.208,584.901 C 481.208,550.31 509.25,522.268 543.841,522.268 C 578.433,522.269 606.473,550.311 606.473,584.901 z"
   id="path914" />
		<g
   id="g916">
			<path
   d="M 358.292,154.295 L 367.767,154.295 C 366.998,157.624 366.743,161.978 366.743,167.185 L 366.743,214.134 L 355.902,217.036 L 355.902,200.476 C 355.902,198.769 355.987,196.976 356.158,196.037 C 353.853,198.086 350.866,199.11 347.451,199.11 C 342.415,199.11 336.781,197.232 333.111,192.025 C 330.123,187.757 329.099,183.83 329.099,176.916 C 329.099,169.148 330.379,164.282 333.538,160.185 C 334.733,158.648 336.184,157.283 337.806,156.173 C 340.623,154.381 344.122,153.271 347.196,153.271 C 351.72,153.271 356.5,155.32 357.439,157.71 C 357.523,156.173 357.694,155.576 358.292,154.295 z M 355.902,165.819 C 354.28,164.112 351.89,162.831 349.329,162.831 C 347.451,162.831 345.488,163.685 344.378,164.794 C 341.902,167.27 341.647,171.623 341.647,175.464 C 341.647,182.89 342.586,185.964 344.037,187.5 C 345.317,188.866 347.366,189.72 349.329,189.72 C 351.89,189.72 354.537,188.012 355.902,186.391 L 355.902,165.819 L 355.902,165.819 z"
   id="path918"
   style="fill:#f8601f" />
			<path
   d="M 378.266,155.405 L 389.534,153.271 L 389.534,181.355 C 389.534,185.282 389.79,187.331 390.473,188.525 C 391.071,189.72 392.778,190.574 394.485,190.574 C 397.302,190.574 400.716,188.525 401.57,186.391 L 401.57,155.661 L 412.496,153.356 L 412.496,186.732 C 412.496,189.634 413.435,192.622 415.142,194.67 L 407.033,199.279 C 405.582,198.255 404.387,196.804 403.618,195.011 C 400.801,197.743 396.703,199.194 392.094,199.194 C 385.948,199.194 380.656,196.292 379.204,192.109 C 378.521,190.146 378.265,187.841 378.265,183.402 L 378.265,155.405 L 378.266,155.405 z"
   id="path920" />
			<path
   d="M 429.226,135.26 C 433.067,135.26 436.141,138.419 436.141,142.345 C 436.141,146.272 432.982,149.43 429.056,149.43 C 425.215,149.43 422.056,146.272 422.056,142.345 C 422.056,138.418 425.3,135.26 429.226,135.26 z M 423.336,155.149 L 434.774,153.357 L 434.774,198.086 L 423.336,198.086 L 423.336,155.149 z"
   id="path922" />
			<path
   d="M 443.823,156.173 L 453.981,153.271 C 455.005,155.064 455.603,156.942 455.603,158.734 C 458.249,156.856 458.761,156.514 460.64,155.49 C 462.945,154.295 465.932,153.612 468.493,153.612 C 473.359,153.612 477.627,156.173 478.993,159.928 C 479.591,161.55 479.847,163.428 479.847,166.159 L 479.847,198.084 L 468.579,198.084 L 468.579,169.659 C 468.579,164.708 467.725,163.257 464.738,163.257 C 462.433,163.257 459.446,164.794 456.8,167.184 L 456.8,198.085 L 445.36,198.085 L 445.36,166.416 C 445.36,162.661 444.848,159.076 443.823,156.173 z"
   id="path924" />
			<path
   d="M 512.624,154.295 L 509.722,161.892 L 502.381,161.892 L 502.381,184.171 C 502.381,189.72 503.405,191.171 507.332,191.171 C 508.356,191.171 509.381,190.915 511.43,190.317 L 512.881,197.146 C 509.552,198.512 506.565,199.109 503.577,199.109 C 497.772,199.109 493.077,196.548 491.797,192.707 C 491.114,190.829 491.028,189.976 491.028,185.964 L 491.028,161.892 L 486.675,161.892 L 486.675,154.466 L 491.028,154.466 C 491.028,150.198 491.028,147.296 491.455,144.052 L 503.064,141.15 C 502.637,145.162 502.381,149.857 502.381,154.296 L 512.624,154.296 L 512.624,154.295 z"
   id="path926"
   style="fill:#f8601f" />
			<path
   d="M 546.341,186.477 L 550.78,193.306 C 545.743,197.403 540.451,199.367 534.305,199.367 C 521.757,199.367 513.648,190.49 513.648,176.746 C 513.648,168.892 515.27,163.685 519.111,159.417 C 522.696,155.405 527.05,153.527 532.854,153.527 C 537.891,153.527 542.671,155.234 545.488,158.136 C 549.5,162.233 551.292,168.123 551.292,177.257 C 551.292,178.196 551.292,178.537 551.292,179.903 L 526.025,179.903 L 526.025,180.245 C 526.025,186.988 529.354,190.829 535.244,190.829 C 539.17,190.83 542.841,189.379 546.341,186.477 z M 526.195,171.539 L 539.426,171.539 L 539.426,171.027 C 539.426,167.783 539.085,166.076 538.06,164.454 C 536.951,162.746 535.329,161.893 533.024,161.893 C 528.67,161.893 526.195,165.308 526.195,171.368 L 526.195,171.539 L 526.195,171.539 z"
   id="path928" />
			<path
   d="M 581.254,154.295 L 578.352,161.892 L 571.011,161.892 L 571.011,184.171 C 571.011,189.72 572.035,191.171 575.962,191.171 C 576.986,191.171 578.011,190.915 580.06,190.317 L 581.511,197.146 C 578.182,198.512 575.194,199.109 572.206,199.109 C 566.401,199.109 561.706,196.548 560.426,192.707 C 559.743,190.829 559.658,189.976 559.658,185.964 L 559.658,161.892 L 555.304,161.892 L 555.304,154.466 L 559.658,154.466 C 559.658,150.198 559.658,147.296 560.085,144.052 L 571.694,141.15 C 571.267,145.162 571.011,149.857 571.011,154.296 L 581.254,154.296 L 581.254,154.295 z"
   id="path930"
   style="fill:#f8601f" />
			<path
   d="M 590.643,135.26 C 594.484,135.26 597.558,138.419 597.558,142.345 C 597.558,146.272 594.399,149.43 590.473,149.43 C 586.632,149.43 583.473,146.272 583.473,142.345 C 583.472,138.418 586.716,135.26 590.643,135.26 z M 584.752,155.149 L 596.19,153.357 L 596.19,198.086 L 584.752,198.086 L 584.752,155.149 z"
   id="path932" />
		</g>
		<path
   d="M 459.85,303.483 C 459.85,332.862 436.033,356.678 406.655,356.678 C 377.277,356.678 353.46,332.862 353.46,303.483 C 353.46,274.105 377.276,250.288 406.655,250.288 C 436.034,250.288 459.85,274.105 459.85,303.483 z"
   id="path934"
   style="fill:none;stroke:#ffffff;stroke-width:1.71599996;stroke-dasharray:2.5739, 4.2899" />
		<path
   d="M 597.126,303.483 C 597.126,332.862 573.31,356.678 543.932,356.678 C 514.553,356.678 490.737,332.862 490.737,303.483 C 490.737,274.105 514.553,250.288 543.932,250.288 C 573.311,250.289 597.126,274.105 597.126,303.483 z"
   id="path936"
   style="fill:none;stroke:#ffffff;stroke-width:1.71599996;stroke-dasharray:2.5739, 4.2899" />
		<path
   d="M 323.431,443.334 C 323.431,472.714 299.615,496.529 270.237,496.529 C 240.858,496.529 217.042,472.714 217.042,443.334 C 217.042,413.956 240.858,390.14 270.237,390.14 C 299.615,390.14 323.431,413.956 323.431,443.334 z"
   id="path938"
   style="fill:none;stroke:#ffffff;stroke-width:1.71599996;stroke-dasharray:2.5739, 4.2899" />
		<path
   d="M 459.85,443.334 C 459.85,472.714 436.033,496.529 406.655,496.529 C 377.277,496.529 353.46,472.714 353.46,443.334 C 353.46,413.956 377.276,390.14 406.655,390.14 C 436.034,390.14 459.85,413.956 459.85,443.334 z"
   id="path940"
   style="fill:none;stroke:#ffffff;stroke-width:1.71599996;stroke-dasharray:2.5739, 4.2899" />
		<path
   d="M 597.126,443.334 C 597.126,472.714 573.31,496.529 543.932,496.529 C 514.553,496.529 490.737,472.714 490.737,443.334 C 490.737,413.956 514.553,390.14 543.932,390.14 C 573.311,390.14 597.126,413.956 597.126,443.334 z"
   id="path942"
   style="fill:none;stroke:#ffffff;stroke-width:1.71599996;stroke-dasharray:2.5739, 4.2899" />
		<path
   d="M 323.431,584.901 C 323.431,614.28 299.615,638.096 270.237,638.096 C 240.858,638.096 217.042,614.28 217.042,584.901 C 217.042,555.522 240.858,531.707 270.237,531.707 C 299.615,531.707 323.431,555.522 323.431,584.901 z"
   id="path944"
   style="fill:none;stroke:#ffffff;stroke-width:1.71599996;stroke-dasharray:2.5739, 4.2899" />
		<path
   d="M 459.85,584.901 C 459.85,614.28 436.033,638.096 406.655,638.096 C 377.277,638.096 353.46,614.28 353.46,584.901 C 353.46,555.522 377.276,531.707 406.655,531.707 C 436.034,531.707 459.85,555.522 459.85,584.901 z"
   id="path946"
   style="fill:none;stroke:#ffffff;stroke-width:1.71599996;stroke-dasharray:2.5739, 4.2899" />
		<path
   d="M 597.126,584.901 C 597.126,614.28 573.31,638.096 543.932,638.096 C 514.553,638.096 490.737,614.28 490.737,584.901 C 490.737,555.522 514.553,531.707 543.932,531.707 C 573.311,531.707 597.126,555.522 597.126,584.901 z"
   id="path948"
   style="fill:none;stroke:#ffffff;stroke-width:1.71599996;stroke-dasharray:2.5739, 4.2899" />
		<path
   d="M 366.614,183.366 L 1201.48,183.366"
   id="path950"
   style="fill:none;stroke:#ffffff;stroke-width:1.71599996;stroke-dasharray:2.5739, 4.2899" />
	</g>
	<g
   id="Layer_2_2_"
   transform="translate(9.9998045e-4,-38.982441)">
		<g
   id="g953">
			<defs
   id="defs955">
				<path
   id="XMLID_2_"
   d="M 1066.131,577.612 C 1066.131,604.363 1044.445,626.047 1017.693,626.047 C 990.943,626.047 969.256,604.363 969.256,577.612 C 969.256,550.861 990.943,529.174 1017.693,529.174 C 1044.446,529.175 1066.131,550.861 1066.131,577.612 z" />
			</defs>
			<use
   xlink:href="#XMLID_2_"
   id="use958"
   style="fill:#f8601f"
   x="0"
   y="0"
   width="1203"
   height="901" />
			<clipPath
   id="XMLID_4_">
				<use
   xlink:href="#XMLID_2_"
   id="use961"
   x="0"
   y="0"
   width="1203"
   height="901" />
			</clipPath>
			<g
   id="g963">
				<path
   clip-path="url(#XMLID_4_)"
   d="M 1066.682,581.586 C 1066.682,599.177 1052.424,613.435 1034.833,613.435 C 1017.243,613.435 1002.985,599.177 1002.985,581.586 C 1002.985,563.996 1017.243,549.736 1034.833,549.736 C 1052.424,549.736 1066.682,563.996 1066.682,581.586 z"
   id="path965"
   style="fill:none;stroke:#ffffff;stroke-width:1.96270001;stroke-dasharray:2.9441, 4.9068" />
				<g
   id="g967">
					<path
   clip-path="url(#XMLID_4_)"
   d="M 1037.914,609.766 L 1032.286,603.443 C 1040.613,601.285 1050.328,593.42 1052.641,586.943 C 1050.328,588.022 1048.631,588.408 1046.395,588.408 C 1036.989,588.408 1029.818,581.007 1029.818,571.214 C 1029.818,560.805 1037.682,553.172 1048.477,553.172 C 1059.965,553.172 1066.905,561.113 1066.905,574.222 C 1066.905,584.553 1062.742,593.112 1054.26,600.283 C 1049.556,604.214 1043.388,607.838 1037.914,609.766 z M 1054.954,577.228 C 1055.494,575.377 1055.725,573.681 1055.725,571.445 C 1055.725,564.968 1052.872,561.113 1048.246,561.113 C 1043.851,561.113 1040.998,564.968 1040.998,570.905 C 1040.998,576.457 1044.083,580.081 1048.786,580.081 C 1051.33,580.08 1052.949,579.31 1054.954,577.228 z"
   id="path969"
   style="fill:#ffffff" />
				</g>
			</g>
		</g>
		<g
   id="g971">
			<defs
   id="defs973">
				<path
   id="XMLID_6_"
   d="M 939.424,577.612 C 939.424,604.363 917.739,626.047 890.989,626.047 C 864.238,626.047 842.552,604.363 842.552,577.612 C 842.552,550.861 864.238,529.174 890.989,529.174 C 917.74,529.175 939.424,550.861 939.424,577.612 z" />
			</defs>
			<use
   xlink:href="#XMLID_6_"
   id="use976"
   style="fill:#f8601f"
   x="0"
   y="0"
   width="1203"
   height="901" />
			<clipPath
   id="XMLID_8_">
				<use
   xlink:href="#XMLID_6_"
   id="use979"
   x="0"
   y="0"
   width="1203"
   height="901" />
			</clipPath>
			<path
   clip-path="url(#XMLID_8_)"
   d="M 927.69,592.737 C 927.69,612.855 911.382,629.162 891.266,629.162 C 871.148,629.162 854.84,612.855 854.84,592.737 C 854.84,572.621 871.148,556.312 891.266,556.312 C 911.382,556.312 927.69,572.621 927.69,592.737 z"
   id="path981"
   style="fill:none;stroke:#ffffff;stroke-width:1.96270001;stroke-dasharray:2.9441, 4.9068" />
			<g
   id="g983">
				<g
   id="g985">
					<path
   clip-path="url(#XMLID_8_)"
   d="M 899.34,597.971 C 902.27,598.819 905.662,600.746 907.899,602.906 C 910.057,604.911 911.292,607.918 911.292,611.233 C 911.292,618.25 906.203,624.11 898.724,625.961 C 896.256,626.577 893.404,626.886 890.628,626.886 C 885.462,626.886 881.838,626.038 878.445,624.033 C 873.895,621.257 871.583,617.171 871.583,612.082 C 871.583,606.299 875.284,600.978 880.681,599.051 C 878.908,598.512 876.749,596.739 875.362,594.811 C 873.896,592.729 873.049,590.108 873.049,587.409 C 873.049,578.928 880.528,573.144 891.554,573.144 C 901.963,573.144 909.288,578.696 909.288,586.561 C 909.287,591.803 905.354,596.352 899.34,597.971 z M 888.005,603.137 C 884.767,604.988 883.07,607.84 883.07,611.31 C 883.07,616.167 886.463,619.252 891.783,619.252 C 896.409,619.252 899.647,616.553 899.647,612.62 C 899.647,610.076 898.722,608.38 896.717,607.069 C 894.713,605.758 891.629,604.37 888.005,603.137 z M 891.552,593.807 C 893.403,592.882 894.097,592.419 895.407,591.263 C 897.18,589.567 897.797,588.179 897.797,586.251 C 897.797,582.704 895.33,580.699 890.781,580.699 C 886.54,580.699 883.687,583.012 883.687,586.482 C 883.687,588.949 884.998,590.568 888.39,592.341 C 889.625,592.959 890.165,593.19 891.552,593.807 z"
   id="path987"
   style="fill:#ffffff" />
				</g>
				<g
   id="g989">
					<path
   clip-path="url(#XMLID_8_)"
   d="M 899.34,597.971 C 902.27,598.819 905.662,600.746 907.899,602.906 C 910.057,604.911 911.292,607.918 911.292,611.233 C 911.292,618.25 906.203,624.11 898.724,625.961 C 896.256,626.577 893.404,626.886 890.628,626.886 C 885.462,626.886 881.838,626.038 878.445,624.033 C 873.895,621.257 871.583,617.171 871.583,612.082 C 871.583,606.299 875.284,600.978 880.681,599.051 C 878.908,598.512 876.749,596.739 875.362,594.811 C 873.896,592.729 873.049,590.108 873.049,587.409 C 873.049,578.928 880.528,573.144 891.554,573.144 C 901.963,573.144 909.288,578.696 909.288,586.561 C 909.287,591.803 905.354,596.352 899.34,597.971 z M 888.005,603.137 C 884.767,604.988 883.07,607.84 883.07,611.31 C 883.07,616.167 886.463,619.252 891.783,619.252 C 896.409,619.252 899.647,616.553 899.647,612.62 C 899.647,610.076 898.722,608.38 896.717,607.069 C 894.713,605.758 891.629,604.37 888.005,603.137 z M 891.552,593.807 C 893.403,592.882 894.097,592.419 895.407,591.263 C 897.18,589.567 897.797,588.179 897.797,586.251 C 897.797,582.704 895.33,580.699 890.781,580.699 C 886.54,580.699 883.687,583.012 883.687,586.482 C 883.687,588.949 884.998,590.568 888.39,592.341 C 889.625,592.959 890.165,593.19 891.552,593.807 z"
   id="path991"
   style="fill:#ffffff" />
				</g>
			</g>
		</g>
		<g
   id="g993">
			<defs
   id="defs995">
				<path
   id="XMLID_10_"
   d="M 812.72,577.612 C 812.72,604.363 791.034,626.047 764.283,626.047 C 737.532,626.047 715.846,604.363 715.846,577.612 C 715.846,550.861 737.532,529.174 764.283,529.174 C 791.034,529.174 812.72,550.861 812.72,577.612 z" />
			</defs>
			<use
   xlink:href="#XMLID_10_"
   id="use998"
   style="fill:#f8601f"
   x="0"
   y="0"
   width="1203"
   height="901" />
			<clipPath
   id="XMLID_12_">
				<use
   xlink:href="#XMLID_10_"
   id="use1001"
   x="0"
   y="0"
   width="1203"
   height="901" />
			</clipPath>
			<g
   id="g1003">
				<path
   clip-path="url(#XMLID_12_)"
   d="M 817.295,583.303 C 817.295,603.421 800.988,619.727 780.872,619.727 C 760.753,619.727 744.446,603.421 744.446,583.303 C 744.446,563.186 760.753,546.877 780.872,546.877 C 800.989,546.877 817.295,563.186 817.295,583.303 z"
   id="path1005"
   style="fill:none;stroke:#ffffff;stroke-width:2.24469995;stroke-dasharray:3.3671, 5.6118" />
				<g
   id="g1007">
					<path
   clip-path="url(#XMLID_12_)"
   d="M 778.032,575.514 L 780.345,566.184 L 812.497,566.184 L 810.801,575.205 C 808.026,579.214 805.404,583.532 803.167,587.618 C 801.779,590.317 795.148,603.425 793.684,611.213 L 792.373,618.152 L 781.038,621.005 C 783.12,612.369 784.353,608.437 786.59,602.5 C 788.595,596.948 790.6,592.399 793.375,587.002 C 796.459,580.987 798.155,578.443 800.546,575.205 C 799.697,575.436 798.541,575.514 797.462,575.514 L 778.032,575.514 L 778.032,575.514 z"
   id="path1009"
   style="fill:#ffffff" />
				</g>
			</g>
		</g>
		<g
   id="g1011">
			<defs
   id="defs1013">
				<path
   id="XMLID_14_"
   d="M 1066.131,443.541 C 1066.131,470.293 1044.445,491.978 1017.693,491.978 C 990.943,491.978 969.256,470.293 969.256,443.541 C 969.256,416.79 990.943,395.104 1017.693,395.104 C 1044.446,395.104 1066.131,416.79 1066.131,443.541 z" />
			</defs>
			<use
   xlink:href="#XMLID_14_"
   id="use1016"
   style="fill:#f8601f"
   x="0"
   y="0"
   width="1203"
   height="901" />
			<clipPath
   id="XMLID_16_">
				<use
   xlink:href="#XMLID_14_"
   id="use1019"
   x="0"
   y="0"
   width="1203"
   height="901" />
			</clipPath>
			<g
   id="g1021">
				<path
   clip-path="url(#XMLID_16_)"
   d="M 1031.221,437.158 C 1031.221,453.958 1017.603,467.579 1000.803,467.579 C 984,467.579 970.383,453.958 970.383,437.158 C 970.383,420.358 984,406.739 1000.803,406.739 C 1017.603,406.739 1031.221,420.358 1031.221,437.158 z"
   id="path1023"
   style="fill:none;stroke:#ffffff;stroke-width:1.87460005;stroke-dasharray:2.8119, 4.6865" />
				<g
   id="g1025">
					<path
   clip-path="url(#XMLID_16_)"
   d="M 999.983,402.519 L 1002.219,409.921 L 1001.833,410.075 C 996.281,412.003 993.197,413.622 990.19,416.089 C 988.725,417.245 987.414,418.556 986.335,420.021 C 984.484,422.334 983.02,425.033 982.172,427.731 C 984.253,426.035 987.107,425.187 990.422,425.187 C 999.751,425.187 1006.922,432.281 1006.922,441.456 C 1006.922,451.403 999.058,459.036 988.88,459.036 C 977.622,459.036 969.526,450.015 969.526,437.293 C 969.526,433.515 970.219,429.505 971.531,426.19 C 973.227,421.795 976.311,417.323 980.167,413.699 C 983.637,410.46 987.8,407.685 992.966,405.294 C 995.897,403.83 997.053,403.444 999.983,402.519 z M 981.015,436.06 C 981.015,436.368 981.015,436.522 980.938,436.677 C 980.861,438.142 980.784,439.453 980.784,440.686 C 980.784,447.24 983.638,451.095 988.418,451.095 C 993.044,451.095 996.051,447.394 996.051,441.611 C 996.051,436.676 993.353,433.515 989.034,433.515 C 986.567,433.515 984.099,434.286 981.015,436.06 z"
   id="path1027"
   style="fill:#ffffff" />
				</g>
			</g>
		</g>
		<path
   d="M 939.424,443.541 C 939.424,470.293 917.739,491.978 890.989,491.978 C 864.238,491.978 842.552,470.293 842.552,443.541 C 842.552,416.79 864.238,395.104 890.989,395.104 C 917.74,395.104 939.424,416.79 939.424,443.541 z"
   id="path1029"
   style="fill:#f7b98b" />
		<g
   id="g1031">
			<defs
   id="defs1033">
				<path
   id="XMLID_18_"
   d="M 939.424,443.541 C 939.424,470.293 917.739,491.978 890.989,491.978 C 864.238,491.978 842.552,470.293 842.552,443.541 C 842.552,416.79 864.238,395.104 890.989,395.104 C 917.74,395.104 939.424,416.79 939.424,443.541 z" />
			</defs>
			<use
   xlink:href="#XMLID_18_"
   id="use1036"
   style="fill:#f8601f"
   x="0"
   y="0"
   width="1203"
   height="901" />
			<clipPath
   id="XMLID_19_">
				<use
   xlink:href="#XMLID_18_"
   id="use1039"
   x="0"
   y="0"
   width="1203"
   height="901" />
			</clipPath>
			<g
   id="g1041">
				<path
   clip-path="url(#XMLID_19_)"
   d="M 935.125,454.318 C 935.125,472.857 920.1,487.885 901.563,487.885 C 883.023,487.885 867.997,472.857 867.997,454.318 C 867.997,435.781 883.023,420.754 901.563,420.754 C 920.099,420.754 935.125,435.781 935.125,454.318 z"
   id="path1043"
   style="fill:none;stroke:#ffffff;stroke-width:2.06850004;stroke-dasharray:3.1027, 5.1712" />
				<g
   id="g1045">
					<path
   clip-path="url(#XMLID_19_)"
   d="M 897.808,434.83 L 924.1,434.83 L 922.558,443.62 L 907.446,443.62 L 906.367,454.261 C 907.986,453.952 908.602,453.875 909.991,453.875 C 919.552,453.875 926.182,460.043 926.182,468.833 C 926.182,480.244 916.081,488.418 901.894,488.418 C 899.427,488.418 898.501,488.341 896.035,487.878 L 893.799,480.244 C 896.729,481.015 898.811,481.324 901.047,481.324 C 909.22,481.324 915.003,476.698 915.003,470.066 C 915.003,465.131 911.61,461.893 906.598,461.893 C 903.437,461.893 900.276,462.51 895.341,464.052 L 897.808,434.83 z"
   id="path1047"
   style="fill:#ffffff" />
				</g>
			</g>
		</g>
		<g
   id="g1049">
			<defs
   id="defs1051">
				<path
   id="XMLID_20_"
   d="M 812.72,443.541 C 812.72,470.293 791.034,491.978 764.283,491.978 C 737.532,491.978 715.846,470.293 715.846,443.541 C 715.846,416.79 737.532,395.104 764.283,395.104 C 791.034,395.104 812.72,416.79 812.72,443.541 z" />
			</defs>
			<use
   xlink:href="#XMLID_20_"
   id="use1054"
   style="fill:#f8601f"
   x="0"
   y="0"
   width="1203"
   height="901" />
			<clipPath
   id="XMLID_21_">
				<use
   xlink:href="#XMLID_20_"
   id="use1057"
   x="0"
   y="0"
   width="1203"
   height="901" />
			</clipPath>
			<g
   id="g1059">
				<path
   clip-path="url(#XMLID_21_)"
   d="M 798.564,460.326 C 798.564,478.23 784.049,492.745 766.144,492.745 C 748.238,492.745 733.722,478.23 733.722,460.326 C 733.722,442.419 748.238,427.903 766.144,427.903 C 784.049,427.903 798.564,442.419 798.564,460.326 z"
   id="path1061"
   style="fill:none;stroke:#ffffff;stroke-width:1.99800003;stroke-dasharray:2.9969, 4.9949" />
				<g
   id="g1063">
					<path
   clip-path="url(#XMLID_21_)"
   d="M 759.441,437.239 L 770.082,437.239 L 758.978,462.221 C 758.669,462.838 756.511,467.464 755.508,468.466 C 756.279,468.312 756.357,468.312 757.127,468.312 L 765.84,468.312 C 766.766,468.312 767.691,468.389 767.691,468.389 C 767.691,468.389 767.614,467.387 767.614,467.001 C 767.614,464.842 767.768,462.529 768.154,458.751 L 769.002,449.73 L 777.099,447.879 L 777.099,461.526 C 777.099,463.299 777.099,464.688 777.022,466.076 C 776.945,467.772 776.868,468.388 776.868,468.388 C 776.868,468.388 778.41,468.311 779.335,468.311 L 782.573,468.311 L 782.573,477.178 L 779.103,477.178 C 777.638,477.178 776.713,477.024 776.713,477.024 C 776.713,477.024 777.099,478.027 777.099,479.8 L 777.099,490.671 L 767.306,491.905 L 767.306,478.874 C 767.306,478.181 767.46,476.946 767.46,476.946 C 767.46,476.946 766.535,477.177 764.993,477.177 L 744.56,477.177 L 744.56,470.16 L 759.441,437.239 z"
   id="path1065"
   style="fill:#ffffff" />
				</g>
			</g>
		</g>
		<g
   id="g1067">
			<defs
   id="defs1069">
				<path
   id="XMLID_22_"
   d="M 1066.131,313.324 C 1066.131,340.075 1044.445,361.76 1017.693,361.76 C 990.943,361.76 969.256,340.075 969.256,313.324 C 969.256,286.573 990.943,264.887 1017.693,264.887 C 1044.446,264.888 1066.131,286.573 1066.131,313.324 z" />
			</defs>
			<use
   xlink:href="#XMLID_22_"
   id="use1072"
   style="fill:#f8601f"
   x="0"
   y="0"
   width="1203"
   height="901" />
			<clipPath
   id="XMLID_23_">
				<use
   xlink:href="#XMLID_22_"
   id="use1075"
   x="0"
   y="0"
   width="1203"
   height="901" />
			</clipPath>
			<g
   id="g1077">
				<path
   clip-path="url(#XMLID_23_)"
   d="M 1069.971,316.182 C 1069.971,333.773 1055.713,348.031 1038.122,348.031 C 1020.531,348.031 1006.273,333.773 1006.273,316.182 C 1006.273,298.593 1020.531,284.333 1038.122,284.333 C 1055.713,284.333 1069.971,298.593 1069.971,316.182 z"
   id="path1079"
   style="fill:none;stroke:#ffffff;stroke-width:1.96270001;stroke-dasharray:2.9441, 4.9068" />
				<g
   id="g1081">
					<path
   clip-path="url(#XMLID_23_)"
   d="M 1037.831,315.58 L 1037.831,306.944 L 1038.447,307.021 C 1040.375,307.175 1042.148,307.252 1043.151,307.252 C 1048.856,307.252 1051.71,305.247 1051.71,301.161 C 1051.71,297.846 1049.628,295.378 1045.155,295.378 C 1039.989,295.378 1036.057,297.768 1033.744,299.696 L 1028.347,293.142 C 1030.738,291.292 1032.665,290.212 1035.286,289.056 C 1039.064,287.514 1042.843,286.666 1046.544,286.666 C 1056.182,286.666 1063.198,292.372 1063.198,300.082 C 1063.198,304.246 1061.347,307.87 1058.109,310.029 C 1057.106,310.646 1056.644,310.877 1055.255,311.417 C 1061.038,313.345 1064.431,317.74 1064.431,323.137 C 1064.431,333.778 1053.251,341.179 1037.29,341.179 C 1034.899,341.179 1033.82,341.179 1030.891,340.794 L 1028.423,333.623 C 1030.814,334.086 1031.816,334.163 1034.283,334.163 C 1045,334.163 1052.325,329.305 1052.325,322.288 C 1052.325,319.744 1051.014,317.431 1048.932,316.428 C 1047.467,315.811 1045.154,315.503 1041.761,315.503 C 1040.759,315.503 1039.68,315.503 1038.6,315.58 L 1037.831,315.58 L 1037.831,315.58 z"
   id="path1083"
   style="fill:#ffffff" />
				</g>
			</g>
		</g>
		<g
   id="g1085">
			<defs
   id="defs1087">
				<path
   id="XMLID_24_"
   d="M 939.424,313.324 C 939.424,340.075 917.739,361.76 890.989,361.76 C 864.238,361.76 842.552,340.075 842.552,313.324 C 842.552,286.573 864.238,264.887 890.989,264.887 C 917.74,264.888 939.424,286.573 939.424,313.324 z" />
			</defs>
			<use
   xlink:href="#XMLID_24_"
   id="use1090"
   style="fill:#f8601f"
   x="0"
   y="0"
   width="1203"
   height="901" />
			<clipPath
   id="XMLID_25_">
				<use
   xlink:href="#XMLID_24_"
   id="use1093"
   x="0"
   y="0"
   width="1203"
   height="901" />
			</clipPath>
			<g
   id="g1095">
				<path
   clip-path="url(#XMLID_25_)"
   d="M 909.958,292.304 C 909.958,307.683 897.492,320.149 882.113,320.149 C 866.734,320.149 854.268,307.683 854.268,292.304 C 854.268,276.926 866.734,264.459 882.113,264.459 C 897.492,264.459 909.958,276.925 909.958,292.304 z"
   id="path1097"
   style="fill:none;stroke:#ffffff;stroke-width:1.71599996;stroke-dasharray:2.5739, 4.2899" />
				<g
   id="g1099">
					<path
   clip-path="url(#XMLID_25_)"
   d="M 901.381,297.045 L 899.145,305.681 L 866.993,305.681 L 866.993,296.274 C 869.691,294.886 870.386,294.886 874.934,292.265 C 885.575,286.251 888.273,282.781 888.273,279.234 C 888.273,275.841 885.729,274.068 882.105,274.068 C 878.79,274.068 875.936,275.456 871.619,279.003 L 865.451,272.604 C 871.002,267.669 876.939,264.97 884.881,264.97 C 894.057,264.97 899.917,270.059 899.917,277.616 C 899.917,283.244 896.832,287.023 892.669,290.107 C 889.893,292.189 885.267,294.733 882.106,296.43 C 881.72,296.661 880.873,297.047 880.101,297.432 C 881.797,297.201 885.036,297.046 887.58,297.046 L 901.381,297.046 L 901.381,297.045 z"
   id="path1101"
   style="fill:#ffffff" />
				</g>
			</g>
		</g>
		<g
   id="g1103">
			<defs
   id="defs1105">
				<path
   id="XMLID_26_"
   d="M 812.72,313.324 C 812.72,340.075 791.034,361.76 764.283,361.76 C 737.532,361.76 715.846,340.075 715.846,313.324 C 715.846,286.573 737.532,264.887 764.283,264.887 C 791.034,264.887 812.72,286.573 812.72,313.324 z" />
			</defs>
			<use
   xlink:href="#XMLID_26_"
   id="use1108"
   style="fill:#f8601f"
   x="0"
   y="0"
   width="1203"
   height="901" />
			<clipPath
   id="XMLID_27_">
				<use
   xlink:href="#XMLID_26_"
   id="use1111"
   x="0"
   y="0"
   width="1203"
   height="901" />
			</clipPath>
			<g
   id="g1113">
				<g
   id="g1115">
					<path
   clip-path="url(#XMLID_27_)"
   d="M 763.758,321.782 L 770.697,321.782 L 770.697,353.626 L 776.866,353.626 L 776.866,362.03 L 752.424,362.03 L 752.424,353.626 L 760.751,353.626 L 760.751,333.656 C 757.898,335.429 754.891,336.971 751.498,338.128 L 748.877,332.576 L 763.758,321.782 z"
   id="path1117"
   style="fill:#ffffff" />
				</g>
				<path
   clip-path="url(#XMLID_27_)"
   d="M 792.128,335.631 C 792.128,351.01 779.662,363.476 764.283,363.476 C 748.904,363.476 736.438,351.01 736.438,335.631 C 736.438,320.253 748.904,307.786 764.283,307.786 C 779.662,307.786 792.128,320.253 792.128,335.631 z"
   id="path1119"
   style="fill:none;stroke:#ffffff;stroke-width:1.71599996;stroke-dasharray:2.5739, 4.2899" />
			</g>
		</g>
	</g>
	<g
   id="Layer_1_2_"
   transform="translate(9.9998045e-4,-38.982441)">
		<g
   id="g1122">
			<path
   d="M 355.382,754.487 C 356.407,754.412 357.257,754.137 357.782,753.562 C 358.382,752.887 358.632,751.912 358.632,749.012 L 358.632,738.837 L 360.832,738.837 L 360.832,749.861 C 360.832,752.212 360.457,753.736 359.382,754.837 C 358.407,755.812 356.807,756.212 355.632,756.212 L 355.382,754.487 z M 359.683,736.612 C 358.858,736.612 358.308,735.963 358.308,735.187 C 358.308,734.411 358.883,733.787 359.733,733.787 C 360.583,733.787 361.133,734.412 361.133,735.187 C 361.133,735.962 360.608,736.612 359.708,736.612 L 359.683,736.612 z"
   id="path1124" />
			<path
   d="M 374.558,747.638 C 374.558,748.888 374.583,749.988 374.658,750.938 L 372.708,750.938 L 372.583,748.963 L 372.533,748.963 C 371.983,749.938 370.683,751.213 368.533,751.213 C 366.633,751.213 364.358,750.138 364.358,745.912 L 364.358,738.838 L 366.558,738.838 L 366.558,745.513 C 366.558,747.813 367.283,749.388 369.258,749.388 C 370.733,749.388 371.758,748.363 372.158,747.363 C 372.283,747.063 372.358,746.663 372.358,746.238 L 372.358,738.839 L 374.558,738.839 L 374.558,747.638 L 374.558,747.638 z"
   id="path1126" />
			<path
   d="M 388.557,749.162 C 388.557,751.963 387.982,753.638 386.832,754.713 C 385.632,755.787 383.932,756.162 382.407,756.162 C 380.957,756.162 379.357,755.812 378.382,755.162 L 378.932,753.463 C 379.732,753.987 380.982,754.438 382.482,754.438 C 384.732,754.438 386.382,753.263 386.382,750.188 L 386.382,748.863 L 386.332,748.863 C 385.682,749.988 384.357,750.888 382.482,750.888 C 379.482,750.888 377.332,748.338 377.332,744.963 C 377.332,740.862 380.007,738.563 382.807,738.563 C 384.907,738.563 386.032,739.638 386.582,740.638 L 386.632,740.638 L 386.707,738.838 L 388.657,738.838 C 388.582,739.688 388.557,740.662 388.557,742.138 L 388.557,749.162 L 388.557,749.162 z M 386.357,743.588 C 386.357,743.237 386.332,742.912 386.232,742.612 C 385.832,741.312 384.782,740.262 383.157,740.262 C 381.057,740.262 379.557,742.036 379.557,744.862 C 379.557,747.213 380.782,749.213 383.132,749.213 C 384.507,749.213 385.732,748.362 386.182,746.938 C 386.307,746.588 386.357,746.163 386.357,745.763 L 386.357,743.588 z"
   id="path1128" />
			<path
   d="M 400.707,748.037 C 400.707,749.088 400.757,750.112 400.882,750.937 L 398.907,750.937 L 398.707,749.412 L 398.632,749.412 C 397.982,750.362 396.657,751.213 394.932,751.213 C 392.482,751.213 391.232,749.487 391.232,747.737 C 391.232,744.812 393.832,743.213 398.507,743.237 L 398.507,742.987 C 398.507,741.987 398.232,740.162 395.757,740.187 C 394.607,740.187 393.432,740.512 392.582,741.087 L 392.082,739.611 C 393.082,738.986 394.557,738.561 396.082,738.561 C 399.807,738.561 400.707,741.086 400.707,743.511 L 400.707,748.037 z M 398.557,744.763 C 396.157,744.713 393.432,745.138 393.432,747.488 C 393.432,748.938 394.382,749.589 395.482,749.589 C 397.082,749.589 398.107,748.589 398.457,747.564 C 398.532,747.339 398.557,747.089 398.557,746.864 L 398.557,744.763 L 398.557,744.763 z"
   id="path1130" />
			<path
   d="M 414.682,733.188 L 414.682,747.813 C 414.682,748.888 414.707,750.113 414.782,750.938 L 412.807,750.938 L 412.707,748.838 L 412.657,748.838 C 411.982,750.188 410.532,751.213 408.557,751.213 C 405.632,751.213 403.357,748.737 403.357,745.063 C 403.332,741.013 405.857,738.563 408.782,738.563 C 410.657,738.563 411.907,739.438 412.432,740.388 L 412.482,740.388 L 412.482,733.188 L 414.682,733.188 z M 412.482,743.763 C 412.482,743.463 412.457,743.113 412.382,742.813 C 412.057,741.438 410.857,740.288 409.207,740.288 C 406.932,740.288 405.582,742.288 405.582,744.938 C 405.582,747.413 406.807,749.438 409.157,749.438 C 410.632,749.438 411.982,748.438 412.382,746.813 C 412.457,746.513 412.482,746.213 412.482,745.863 L 412.482,743.763 z"
   id="path1132" />
			<path
   d="M 423.257,751.213 C 420.007,751.213 417.457,748.813 417.457,744.987 C 417.457,740.937 420.132,738.562 423.457,738.562 C 426.932,738.562 429.282,741.087 429.282,744.762 C 429.282,749.262 426.157,751.212 423.282,751.212 L 423.257,751.212 L 423.257,751.213 z M 423.332,749.562 C 425.432,749.562 427.007,747.587 427.007,744.837 C 427.007,742.786 425.982,740.212 423.382,740.212 C 420.807,740.212 419.682,742.611 419.682,744.911 C 419.682,747.561 421.182,749.561 423.307,749.561 L 423.332,749.561 L 423.332,749.562 z"
   id="path1134" />
			<path
   d="M 432.082,742.612 C 432.082,741.187 432.057,739.963 431.982,738.838 L 433.907,738.838 L 434.007,741.213 L 434.082,741.213 C 434.632,739.588 435.982,738.563 437.457,738.563 C 437.682,738.563 437.857,738.588 438.057,738.638 L 438.057,740.688 C 437.807,740.663 437.582,740.638 437.282,740.638 C 435.732,740.638 434.632,741.813 434.332,743.438 C 434.282,743.763 434.257,744.113 434.257,744.488 L 434.257,750.938 L 432.057,750.938 L 432.082,742.612 z"
   id="path1136" />
			<path
   d="M 454.056,748.037 C 454.056,749.088 454.106,750.112 454.231,750.937 L 452.256,750.937 L 452.056,749.412 L 451.981,749.412 C 451.331,750.362 450.006,751.213 448.281,751.213 C 445.831,751.213 444.581,749.487 444.581,747.737 C 444.581,744.812 447.181,743.213 451.856,743.237 L 451.856,742.987 C 451.856,741.987 451.581,740.162 449.106,740.187 C 447.956,740.187 446.781,740.512 445.931,741.087 L 445.431,739.611 C 446.431,738.986 447.906,738.561 449.431,738.561 C 453.156,738.561 454.056,741.086 454.056,743.511 L 454.056,748.037 z M 451.906,744.763 C 449.506,744.713 446.781,745.138 446.781,747.488 C 446.781,748.938 447.731,749.589 448.831,749.589 C 450.431,749.589 451.456,748.589 451.806,747.564 C 451.881,747.339 451.906,747.089 451.906,746.864 L 451.906,744.763 L 451.906,744.763 z"
   id="path1138"
   style="fill:#ffffff" />
			<path
   d="M 468.256,752.812 L 468.256,754.062 L 455.756,754.062 L 455.756,752.812 L 468.256,752.812 z"
   id="path1140"
   style="fill:#ffffff" />
			<path
   d="M 475.456,734.312 C 476.506,734.112 477.881,733.962 479.631,733.962 C 481.781,733.962 483.356,734.462 484.356,735.361 C 485.281,736.161 485.856,737.386 485.856,738.886 C 485.856,740.41 485.406,741.611 484.531,742.486 C 483.381,743.712 481.506,744.337 479.381,744.337 C 478.731,744.337 478.131,744.312 477.631,744.187 L 477.631,750.937 L 475.456,750.937 L 475.456,734.312 L 475.456,734.312 z M 477.631,742.412 C 478.106,742.537 478.731,742.588 479.431,742.588 C 482.081,742.588 483.656,741.287 483.656,739.013 C 483.656,736.763 482.081,735.688 479.681,735.688 C 478.731,735.688 478.006,735.788 477.631,735.863 L 477.631,742.412 z"
   id="path1142" />
			<path
   d="M 496.559,748.037 C 496.559,749.088 496.609,750.112 496.734,750.937 L 494.759,750.937 L 494.559,749.412 L 494.484,749.412 C 493.834,750.362 492.509,751.213 490.784,751.213 C 488.334,751.213 487.084,749.487 487.084,747.737 C 487.084,744.812 489.684,743.213 494.359,743.237 L 494.359,742.987 C 494.359,741.987 494.084,740.162 491.609,740.187 C 490.459,740.187 489.284,740.512 488.434,741.087 L 487.934,739.611 C 488.934,738.986 490.409,738.561 491.934,738.561 C 495.659,738.561 496.559,741.086 496.559,743.511 L 496.559,748.037 z M 494.409,744.763 C 492.009,744.713 489.284,745.138 489.284,747.488 C 489.284,748.938 490.234,749.589 491.334,749.589 C 492.934,749.589 493.959,748.589 494.309,747.564 C 494.384,747.339 494.409,747.089 494.409,746.864 L 494.409,744.763 L 494.409,744.763 z"
   id="path1144" />
			<path
   d="M 500.084,733.188 L 502.284,733.188 L 502.284,740.763 L 502.334,740.763 C 503.109,739.412 504.509,738.563 506.459,738.563 C 509.459,738.563 511.559,741.063 511.559,744.713 C 511.559,749.063 508.809,751.213 506.109,751.213 C 504.359,751.213 502.984,750.537 502.059,748.938 L 502.009,748.938 L 501.884,750.938 L 499.984,750.938 C 500.059,750.113 500.084,748.888 500.084,747.813 L 500.084,733.188 L 500.084,733.188 z M 502.284,746.088 C 502.284,746.362 502.309,746.638 502.359,746.888 C 502.784,748.412 504.084,749.463 505.659,749.463 C 507.984,749.463 509.334,747.588 509.334,744.813 C 509.334,742.363 508.084,740.288 505.734,740.288 C 504.234,740.288 502.834,741.339 502.409,742.988 C 502.334,743.263 502.284,743.563 502.284,743.913 L 502.284,746.088 z"
   id="path1146" />
			<path
   d="M 514.309,733.188 L 516.509,733.188 L 516.509,750.938 L 514.309,750.938 L 514.309,733.188 z"
   id="path1148" />
			<path
   d="M 525.083,751.213 C 521.833,751.213 519.283,748.813 519.283,744.987 C 519.283,740.937 521.958,738.562 525.283,738.562 C 528.758,738.562 531.108,741.087 531.108,744.762 C 531.108,749.262 527.983,751.212 525.108,751.212 L 525.083,751.212 L 525.083,751.213 z M 525.158,749.562 C 527.258,749.562 528.833,747.587 528.833,744.837 C 528.833,742.786 527.808,740.212 525.208,740.212 C 522.633,740.212 521.508,742.611 521.508,744.911 C 521.508,747.561 523.008,749.561 525.133,749.561 L 525.158,749.561 L 525.158,749.562 z"
   id="path1150" />
			<path
   d="M 544.558,752.812 L 544.558,754.062 L 532.058,754.062 L 532.058,752.812 L 544.558,752.812 z"
   id="path1152" />
		</g>
		<path
   d="M 606.858,741.5 C 606.858,754.479 596.337,765 583.358,765 C 570.379,765 559.858,754.479 559.858,741.5 C 559.858,728.521 570.379,718 583.358,718 C 596.337,718 606.858,728.521 606.858,741.5 z"
   id="path1154" />
		<g
   id="g1156">
			<path
   d="M 582.933,736.8 L 582.883,736.8 L 580.058,738.325 L 579.633,736.65 L 583.183,734.75 L 585.058,734.75 L 585.058,751 L 582.933,751 L 582.933,736.8 z"
   id="path1158"
   style="fill:#ffffff" />
		</g>
		<g
   id="g1160">
			<path
   d="M 374.033,837.487 C 375.058,837.412 375.908,837.137 376.433,836.562 C 377.033,835.887 377.283,834.912 377.283,832.012 L 377.283,821.837 L 379.483,821.837 L 379.483,832.861 C 379.483,835.212 379.108,836.736 378.033,837.837 C 377.058,838.812 375.458,839.212 374.283,839.212 L 374.033,837.487 z M 378.333,819.612 C 377.508,819.612 376.958,818.963 376.958,818.187 C 376.958,817.411 377.533,816.787 378.383,816.787 C 379.233,816.787 379.783,817.412 379.783,818.187 C 379.783,818.962 379.258,819.612 378.358,819.612 L 378.333,819.612 z"
   id="path1162" />
			<path
   d="M 393.208,830.638 C 393.208,831.888 393.233,832.988 393.308,833.938 L 391.358,833.938 L 391.233,831.963 L 391.183,831.963 C 390.633,832.938 389.333,834.213 387.183,834.213 C 385.283,834.213 383.008,833.138 383.008,828.912 L 383.008,821.838 L 385.208,821.838 L 385.208,828.513 C 385.208,830.813 385.933,832.388 387.908,832.388 C 389.383,832.388 390.408,831.363 390.808,830.363 C 390.933,830.063 391.008,829.663 391.008,829.238 L 391.008,821.839 L 393.208,821.839 L 393.208,830.638 L 393.208,830.638 z"
   id="path1164" />
			<path
   d="M 407.208,832.162 C 407.208,834.963 406.633,836.638 405.483,837.713 C 404.283,838.787 402.583,839.162 401.058,839.162 C 399.608,839.162 398.008,838.812 397.033,838.162 L 397.583,836.463 C 398.383,836.987 399.633,837.438 401.133,837.438 C 403.383,837.438 405.033,836.263 405.033,833.188 L 405.033,831.863 L 404.983,831.863 C 404.333,832.988 403.008,833.888 401.133,833.888 C 398.133,833.888 395.983,831.338 395.983,827.963 C 395.983,823.862 398.658,821.563 401.458,821.563 C 403.558,821.563 404.683,822.638 405.233,823.638 L 405.283,823.638 L 405.358,821.838 L 407.308,821.838 C 407.233,822.688 407.208,823.662 407.208,825.138 L 407.208,832.162 L 407.208,832.162 z M 405.008,826.588 C 405.008,826.237 404.983,825.912 404.883,825.612 C 404.483,824.312 403.433,823.262 401.808,823.262 C 399.708,823.262 398.208,825.036 398.208,827.862 C 398.208,830.213 399.433,832.213 401.783,832.213 C 403.158,832.213 404.383,831.362 404.833,829.938 C 404.958,829.588 405.008,829.163 405.008,828.763 L 405.008,826.588 z"
   id="path1166" />
			<path
   d="M 419.357,831.037 C 419.357,832.088 419.407,833.112 419.532,833.937 L 417.557,833.937 L 417.357,832.412 L 417.282,832.412 C 416.632,833.362 415.307,834.213 413.582,834.213 C 411.132,834.213 409.882,832.487 409.882,830.737 C 409.882,827.812 412.482,826.213 417.157,826.237 L 417.157,825.987 C 417.157,824.987 416.882,823.162 414.407,823.187 C 413.257,823.187 412.082,823.512 411.232,824.087 L 410.732,822.611 C 411.732,821.986 413.207,821.561 414.732,821.561 C 418.457,821.561 419.357,824.086 419.357,826.511 L 419.357,831.037 z M 417.208,827.763 C 414.808,827.713 412.083,828.138 412.083,830.488 C 412.083,831.938 413.033,832.589 414.133,832.589 C 415.733,832.589 416.758,831.589 417.108,830.564 C 417.183,830.339 417.208,830.089 417.208,829.864 L 417.208,827.763 L 417.208,827.763 z"
   id="path1168" />
			<path
   d="M 433.333,816.188 L 433.333,830.813 C 433.333,831.888 433.358,833.113 433.433,833.938 L 431.458,833.938 L 431.358,831.838 L 431.308,831.838 C 430.633,833.188 429.183,834.213 427.208,834.213 C 424.283,834.213 422.008,831.737 422.008,828.063 C 421.983,824.013 424.508,821.563 427.433,821.563 C 429.308,821.563 430.558,822.438 431.083,823.388 L 431.133,823.388 L 431.133,816.188 L 433.333,816.188 z M 431.132,826.763 C 431.132,826.463 431.107,826.113 431.032,825.813 C 430.707,824.438 429.507,823.288 427.857,823.288 C 425.582,823.288 424.232,825.288 424.232,827.938 C 424.232,830.413 425.457,832.438 427.807,832.438 C 429.282,832.438 430.632,831.438 431.032,829.813 C 431.107,829.513 431.132,829.213 431.132,828.863 L 431.132,826.763 z"
   id="path1170" />
			<path
   d="M 441.907,834.213 C 438.657,834.213 436.107,831.813 436.107,827.987 C 436.107,823.937 438.782,821.562 442.107,821.562 C 445.582,821.562 447.932,824.087 447.932,827.762 C 447.932,832.262 444.807,834.212 441.932,834.212 L 441.907,834.212 L 441.907,834.213 z M 441.982,832.562 C 444.082,832.562 445.657,830.587 445.657,827.837 C 445.657,825.786 444.632,823.212 442.032,823.212 C 439.457,823.212 438.332,825.611 438.332,827.911 C 438.332,830.561 439.832,832.561 441.957,832.561 L 441.982,832.561 L 441.982,832.562 z"
   id="path1172" />
			<path
   d="M 450.732,825.612 C 450.732,824.187 450.707,822.963 450.632,821.838 L 452.557,821.838 L 452.657,824.213 L 452.732,824.213 C 453.282,822.588 454.632,821.563 456.107,821.563 C 456.332,821.563 456.507,821.588 456.707,821.638 L 456.707,823.688 C 456.457,823.663 456.232,823.638 455.932,823.638 C 454.382,823.638 453.282,824.813 452.982,826.438 C 452.932,826.763 452.907,827.113 452.907,827.488 L 452.907,833.938 L 450.707,833.938 L 450.732,825.612 z"
   id="path1174" />
			<path
   d="M 464.182,816.188 L 466.382,816.188 L 466.382,823.763 L 466.432,823.763 C 467.207,822.412 468.607,821.563 470.557,821.563 C 473.557,821.563 475.657,824.063 475.657,827.713 C 475.657,832.063 472.907,834.213 470.207,834.213 C 468.457,834.213 467.082,833.537 466.157,831.938 L 466.107,831.938 L 465.982,833.938 L 464.082,833.938 C 464.157,833.113 464.182,831.888 464.182,830.813 L 464.182,816.188 L 464.182,816.188 z M 466.382,829.088 C 466.382,829.362 466.407,829.638 466.457,829.888 C 466.882,831.412 468.182,832.463 469.757,832.463 C 472.082,832.463 473.432,830.588 473.432,827.813 C 473.432,825.363 472.182,823.288 469.832,823.288 C 468.332,823.288 466.932,824.339 466.507,825.988 C 466.432,826.263 466.382,826.563 466.382,826.913 L 466.382,829.088 z"
   id="path1176"
   style="fill:#ffffff" />
			<path
   d="M 489.082,835.812 L 489.082,837.062 L 476.582,837.062 L 476.582,835.812 L 489.082,835.812 z"
   id="path1178"
   style="fill:#ffffff" />
			<path
   d="M 496.256,817.088 L 498.456,817.088 L 498.456,832.112 L 505.656,832.112 L 505.656,833.937 L 496.256,833.937 L 496.256,817.088 z"
   id="path1180" />
			<path
   d="M 508.883,828.263 C 508.933,831.238 510.808,832.463 513.008,832.463 C 514.583,832.463 515.558,832.188 516.358,831.862 L 516.758,833.412 C 515.983,833.763 514.633,834.187 512.708,834.187 C 509.008,834.187 506.758,831.712 506.758,828.087 C 506.758,824.411 508.933,821.536 512.458,821.536 C 516.408,821.536 517.433,825.012 517.433,827.236 C 517.433,827.686 517.408,828.036 517.358,828.286 L 508.883,828.263 z M 515.309,826.688 C 515.334,825.313 514.734,823.113 512.284,823.113 C 510.034,823.113 509.084,825.163 508.909,826.688 L 515.309,826.688 z"
   id="path1182" />
			<path
   d="M 525.083,834.213 C 521.833,834.213 519.283,831.813 519.283,827.987 C 519.283,823.937 521.958,821.562 525.283,821.562 C 528.758,821.562 531.108,824.087 531.108,827.762 C 531.108,832.262 527.983,834.212 525.108,834.212 L 525.083,834.212 L 525.083,834.213 z M 525.158,832.562 C 527.258,832.562 528.833,830.587 528.833,827.837 C 528.833,825.786 527.808,823.212 525.208,823.212 C 522.633,823.212 521.508,825.611 521.508,827.911 C 521.508,830.561 523.008,832.561 525.133,832.561 L 525.158,832.561 L 525.158,832.562 z"
   id="path1184" />
			<path
   d="M 544.558,835.812 L 544.558,837.062 L 532.058,837.062 L 532.058,835.812 L 544.558,835.812 z"
   id="path1186" />
		</g>
		<path
   d="M 606.858,824.5 C 606.858,837.479 596.337,848 583.358,848 C 570.379,848 559.858,837.479 559.858,824.5 C 559.858,811.521 570.379,801 583.358,801 C 596.337,801 606.858,811.521 606.858,824.5 z"
   id="path1188" />
		<g
   id="g1190">
			<path
   d="M 583.333,834.275 C 580.158,834.275 577.983,831.299 577.933,825.924 C 577.933,820.449 580.308,817.474 583.608,817.474 C 587.008,817.474 588.983,820.525 588.983,825.7 C 588.983,831.224 586.908,834.275 583.358,834.275 L 583.333,834.275 z M 583.433,832.575 C 585.658,832.575 586.733,829.95 586.733,825.8 C 586.733,821.8 585.733,819.175 583.433,819.175 C 581.433,819.175 580.133,821.725 580.133,825.8 C 580.083,830.026 581.383,832.575 583.408,832.575 L 583.433,832.575 z"
   id="path1192"
   style="fill:#ffffff" />
		</g>
		<g
   id="g1194">
			<path
   d="M 309.525,189.027 C 309.525,193.434 305.953,197.007 301.545,197.007 L 187.572,197.007 C 183.164,197.007 179.591,193.434 179.591,189.027 L 179.591,170.075 C 179.591,165.668 183.164,162.095 187.572,162.095 L 301.545,162.095 C 305.953,162.095 309.525,165.668 309.525,170.075 L 309.525,189.027 L 309.525,189.027 z"
   id="path1196" />
			<g
   id="g1198">
				<path
   d="M 192.731,176.366 L 194.518,181.462 C 194.819,182.308 195.063,183.06 195.251,183.812 L 195.308,183.812 C 195.515,183.06 195.778,182.308 196.079,181.462 L 197.847,176.366 L 199.576,176.366 L 196.004,185.467 L 194.424,185.467 L 190.964,176.366 L 192.731,176.366 z"
   id="path1200"
   style="fill:#ffffff" />
				<path
   d="M 204.634,185.673 C 202.189,185.673 200.271,183.868 200.271,180.991 C 200.271,177.945 202.283,176.158 204.784,176.158 C 207.397,176.158 209.165,178.057 209.165,180.821 C 209.165,184.206 206.815,185.673 204.652,185.673 L 204.634,185.673 L 204.634,185.673 z M 204.69,184.432 C 206.27,184.432 207.454,182.947 207.454,180.878 C 207.454,179.336 206.683,177.399 204.727,177.399 C 202.79,177.399 201.944,179.204 201.944,180.934 C 201.944,182.927 203.072,184.432 204.671,184.432 L 204.69,184.432 L 204.69,184.432 z"
   id="path1202"
   style="fill:#ffffff" />
				<path
   d="M 211.252,172.116 L 212.906,172.116 L 212.906,185.466 L 211.252,185.466 L 211.252,172.116 z"
   id="path1204"
   style="fill:#ffffff" />
				<path
   d="M 216.292,176.366 L 218.078,181.462 C 218.379,182.308 218.623,183.06 218.811,183.812 L 218.868,183.812 C 219.075,183.06 219.338,182.308 219.639,181.462 L 221.407,176.366 L 223.137,176.366 L 219.564,185.467 L 217.985,185.467 L 214.525,176.366 L 216.292,176.366 z"
   id="path1206"
   style="fill:#ffffff" />
				<path
   d="M 225.43,181.198 C 225.468,183.435 226.878,184.357 228.533,184.357 C 229.718,184.357 230.451,184.15 231.053,183.906 L 231.354,185.072 C 230.771,185.335 229.755,185.655 228.308,185.655 C 225.525,185.655 223.833,183.794 223.833,181.067 C 223.833,178.303 225.469,176.141 228.12,176.141 C 231.091,176.141 231.862,178.754 231.862,180.428 C 231.862,180.766 231.843,181.03 231.806,181.218 L 225.43,181.198 z M 230.262,180.013 C 230.281,178.979 229.829,177.325 227.987,177.325 C 226.295,177.325 225.58,178.867 225.448,180.013 L 230.262,180.013 z"
   id="path1208"
   style="fill:#ffffff" />
				<path
   d="M 233.929,179.205 C 233.929,178.133 233.91,177.212 233.854,176.366 L 235.302,176.366 L 235.377,178.152 L 235.434,178.152 C 235.848,176.93 236.863,176.159 237.973,176.159 C 238.142,176.159 238.274,176.178 238.424,176.216 L 238.424,177.758 C 238.236,177.739 238.067,177.72 237.841,177.72 C 236.675,177.72 235.848,178.604 235.622,179.826 C 235.584,180.071 235.566,180.334 235.566,180.616 L 235.566,185.467 L 233.911,185.467 L 233.929,179.205 z"
   id="path1210"
   style="fill:#ffffff" />
				<path
   d="M 250.457,183.285 C 250.457,184.075 250.495,184.846 250.589,185.466 L 249.104,185.466 L 248.953,184.319 L 248.897,184.319 C 248.408,185.033 247.412,185.673 246.114,185.673 C 244.271,185.673 243.331,184.375 243.331,183.059 C 243.331,180.859 245.287,179.656 248.803,179.674 L 248.803,179.486 C 248.803,178.734 248.596,177.361 246.735,177.38 C 245.87,177.38 244.986,177.625 244.347,178.057 L 243.971,176.947 C 244.723,176.477 245.832,176.157 246.979,176.157 C 249.781,176.157 250.458,178.056 250.458,179.88 L 250.458,183.285 L 250.457,183.285 z M 248.839,180.822 C 247.034,180.784 244.985,181.104 244.985,182.872 C 244.985,183.962 245.699,184.452 246.527,184.452 C 247.73,184.452 248.501,183.7 248.764,182.929 C 248.821,182.76 248.839,182.572 248.839,182.403 L 248.839,180.822 L 248.839,180.822 z"
   id="path1212"
   style="fill:#ffffff" />
				<path
   d="M 254.856,188.136 C 255.627,188.08 256.266,187.873 256.661,187.44 C 257.112,186.933 257.3,186.199 257.3,184.018 L 257.3,176.365 L 258.955,176.365 L 258.955,184.657 C 258.955,186.425 258.673,187.572 257.864,188.399 C 257.131,189.132 255.927,189.433 255.044,189.433 L 254.856,188.136 z M 258.09,174.692 C 257.47,174.692 257.056,174.203 257.056,173.62 C 257.056,173.037 257.489,172.567 258.128,172.567 C 258.768,172.567 259.181,173.037 259.181,173.62 C 259.181,174.203 258.786,174.692 258.109,174.692 L 258.09,174.692 z"
   id="path1214"
   style="fill:#ffffff" />
				<path
   d="M 269.278,182.984 C 269.278,183.924 269.297,184.752 269.353,185.466 L 267.886,185.466 L 267.792,183.981 L 267.754,183.981 C 267.34,184.714 266.362,185.673 264.745,185.673 C 263.316,185.673 261.605,184.864 261.605,181.687 L 261.605,176.366 L 263.26,176.366 L 263.26,181.387 C 263.26,183.116 263.805,184.301 265.291,184.301 C 266.4,184.301 267.171,183.53 267.472,182.778 C 267.566,182.552 267.622,182.252 267.622,181.932 L 267.622,176.367 L 269.277,176.367 L 269.277,182.984 L 269.278,182.984 z"
   id="path1216"
   style="fill:#ffffff" />
				<path
   d="M 279.808,184.131 C 279.808,186.237 279.375,187.497 278.511,188.305 C 277.608,189.114 276.33,189.395 275.183,189.395 C 274.092,189.395 272.889,189.132 272.156,188.643 L 272.57,187.364 C 273.172,187.759 274.112,188.097 275.24,188.097 C 276.932,188.097 278.174,187.213 278.174,184.901 L 278.174,183.904 L 278.136,183.904 C 277.647,184.75 276.65,185.427 275.24,185.427 C 272.984,185.427 271.367,183.509 271.367,180.97 C 271.367,177.887 273.379,176.157 275.485,176.157 C 277.065,176.157 277.911,176.966 278.324,177.718 L 278.362,177.718 L 278.418,176.364 L 279.885,176.364 C 279.828,177.003 279.81,177.737 279.81,178.846 L 279.81,184.131 L 279.808,184.131 z M 278.153,179.938 C 278.153,179.675 278.134,179.431 278.059,179.205 C 277.758,178.227 276.968,177.437 275.746,177.437 C 274.166,177.437 273.038,178.772 273.038,180.896 C 273.038,182.664 273.959,184.168 275.727,184.168 C 276.761,184.168 277.682,183.529 278.021,182.457 C 278.115,182.193 278.152,181.874 278.152,181.573 L 278.152,179.938 L 278.153,179.938 z"
   id="path1218"
   style="fill:#ffffff" />
				<path
   d="M 288.946,183.285 C 288.946,184.075 288.984,184.846 289.078,185.466 L 287.592,185.466 L 287.442,184.319 L 287.386,184.319 C 286.897,185.033 285.901,185.673 284.603,185.673 C 282.76,185.673 281.82,184.375 281.82,183.059 C 281.82,180.859 283.776,179.656 287.292,179.674 L 287.292,179.486 C 287.292,178.734 287.085,177.361 285.224,177.38 C 284.359,177.38 283.475,177.625 282.836,178.057 L 282.46,176.947 C 283.212,176.477 284.321,176.157 285.468,176.157 C 288.27,176.157 288.947,178.056 288.947,179.88 L 288.947,183.285 L 288.946,183.285 z M 287.329,180.822 C 285.524,180.784 283.475,181.104 283.475,182.872 C 283.475,183.962 284.189,184.452 285.017,184.452 C 286.22,184.452 286.991,183.7 287.254,182.929 C 287.311,182.76 287.329,182.572 287.329,182.403 L 287.329,180.822 z"
   id="path1220"
   style="fill:#ffffff" />
				<path
   d="M 291.616,179.205 C 291.616,178.133 291.597,177.212 291.541,176.366 L 292.989,176.366 L 293.064,178.152 L 293.121,178.152 C 293.535,176.93 294.55,176.159 295.66,176.159 C 295.829,176.159 295.961,176.178 296.111,176.216 L 296.111,177.758 C 295.923,177.739 295.754,177.72 295.528,177.72 C 294.362,177.72 293.535,178.604 293.309,179.826 C 293.271,180.071 293.253,180.334 293.253,180.616 L 293.253,185.467 L 291.598,185.467 L 291.616,179.205 z"
   id="path1222"
   style="fill:#ffffff" />
			</g>
		</g>
		<g
   id="g1224">
			<path
   d="M 963.436,850.752 C 963.436,855.159 959.863,858.732 955.456,858.732 L 841.483,858.732 C 837.075,858.732 833.502,855.159 833.502,850.752 L 833.502,831.802 C 833.502,827.393 837.075,823.82 841.483,823.82 L 955.456,823.82 C 959.863,823.82 963.436,827.393 963.436,831.802 L 963.436,850.752 L 963.436,850.752 z"
   id="path1226"
   style="fill:#f8601f" />
			<g
   id="g1228">
				<path
   d="M 848.597,836.419 C 847.976,836.419 847.563,835.931 847.563,835.348 C 847.563,834.765 847.995,834.294 848.634,834.294 C 849.273,834.294 849.687,834.765 849.687,835.348 C 849.687,835.931 849.274,836.419 848.616,836.419 L 848.597,836.419 z M 847.807,847.193 L 847.807,838.092 L 849.461,838.092 L 849.461,847.193 L 847.807,847.193 z"
   id="path1230" />
				<path
   d="M 852.207,840.556 C 852.207,839.597 852.188,838.845 852.132,838.093 L 853.599,838.093 L 853.693,839.578 L 853.731,839.578 C 854.182,838.732 855.235,837.886 856.74,837.886 C 858,837.886 859.955,838.638 859.955,841.759 L 859.955,847.194 L 858.301,847.194 L 858.301,841.948 C 858.301,840.481 857.755,839.24 856.195,839.24 C 855.124,839.24 854.277,840.011 853.976,840.932 C 853.901,841.139 853.864,841.44 853.864,841.703 L 853.864,847.193 L 852.209,847.193 L 852.209,840.556 L 852.207,840.556 z"
   id="path1232" />
				<path
   d="M 862.417,845.52 C 862.925,845.821 863.79,846.16 864.617,846.16 C 865.802,846.16 866.366,845.577 866.366,844.806 C 866.366,844.016 865.896,843.583 864.692,843.132 C 863.038,842.53 862.266,841.647 862.266,840.556 C 862.266,839.089 863.47,837.886 865.407,837.886 C 866.328,837.886 867.136,838.13 867.626,838.45 L 867.231,839.635 C 866.874,839.428 866.215,839.109 865.369,839.109 C 864.391,839.109 863.865,839.672 863.865,840.349 C 863.865,841.12 864.391,841.458 865.576,841.911 C 867.137,842.493 867.965,843.283 867.965,844.656 C 867.965,846.273 866.704,847.401 864.58,847.401 C 863.583,847.401 862.662,847.137 862.022,846.761 L 862.417,845.52 z"
   id="path1234" />
				<path
   d="M 872.082,835.911 L 872.082,838.093 L 874.451,838.093 L 874.451,839.353 L 872.082,839.353 L 872.082,844.26 C 872.082,845.389 872.402,846.028 873.323,846.028 C 873.774,846.028 874.038,845.991 874.282,845.916 L 874.357,847.176 C 874.038,847.288 873.53,847.402 872.89,847.402 C 872.119,847.402 871.498,847.138 871.104,846.706 C 870.653,846.199 870.464,845.391 870.464,844.318 L 870.464,839.354 L 869.054,839.354 L 869.054,838.094 L 870.464,838.094 L 870.464,836.42 L 872.082,835.911 z"
   id="path1236" />
				<path
   d="M 876.332,840.932 C 876.332,839.861 876.312,838.939 876.257,838.093 L 877.704,838.093 L 877.779,839.879 L 877.836,839.879 C 878.25,838.656 879.265,837.886 880.374,837.886 C 880.544,837.886 880.675,837.905 880.825,837.943 L 880.825,839.485 C 880.637,839.465 880.469,839.447 880.243,839.447 C 879.077,839.447 878.25,840.331 878.024,841.553 C 877.986,841.797 877.967,842.061 877.967,842.342 L 877.967,847.194 L 876.312,847.194 L 876.332,840.932 z"
   id="path1238" />
				<path
   d="M 890.04,844.711 C 890.04,845.651 890.059,846.479 890.115,847.193 L 888.648,847.193 L 888.554,845.708 L 888.516,845.708 C 888.103,846.441 887.125,847.4 885.508,847.4 C 884.078,847.4 882.367,846.591 882.367,843.414 L 882.367,838.093 L 884.022,838.093 L 884.022,843.114 C 884.022,844.843 884.567,846.028 886.052,846.028 C 887.161,846.028 887.932,845.257 888.234,844.506 C 888.328,844.28 888.384,843.979 888.384,843.659 L 888.384,838.094 L 890.038,838.094 L 890.038,844.711 L 890.04,844.711 z"
   id="path1240" />
				<path
   d="M 899.272,846.874 C 898.839,847.08 897.88,847.4 896.659,847.4 C 893.913,847.4 892.127,845.539 892.127,842.737 C 892.127,839.935 894.045,837.885 897.016,837.885 C 897.995,837.885 898.859,838.129 899.31,838.374 L 898.934,839.634 C 898.539,839.427 897.919,839.201 897.016,839.201 C 894.929,839.201 893.801,840.762 893.801,842.661 C 893.801,844.766 895.155,846.064 896.96,846.064 C 897.899,846.064 898.521,845.838 898.99,845.631 L 899.272,846.874 z"
   id="path1242" />
				<path
   d="M 907.696,846.874 C 907.263,847.08 906.304,847.4 905.083,847.4 C 902.337,847.4 900.551,845.539 900.551,842.737 C 900.551,839.935 902.469,837.885 905.44,837.885 C 906.419,837.885 907.283,838.129 907.734,838.374 L 907.358,839.634 C 906.963,839.427 906.343,839.201 905.44,839.201 C 903.353,839.201 902.225,840.762 902.225,842.661 C 902.225,844.766 903.579,846.064 905.384,846.064 C 906.323,846.064 906.945,845.838 907.414,845.631 L 907.696,846.874 z"
   id="path1244" />
				<path
   d="M 910.422,836.419 C 909.801,836.419 909.388,835.931 909.388,835.348 C 909.388,834.765 909.821,834.294 910.459,834.294 C 911.099,834.294 911.513,834.765 911.513,835.348 C 911.513,835.931 911.099,836.419 910.441,836.419 L 910.422,836.419 z M 909.632,847.193 L 909.632,838.092 L 911.287,838.092 L 911.287,847.193 L 909.632,847.193 z"
   id="path1246" />
				<path
   d="M 917.737,847.4 C 915.293,847.4 913.375,845.594 913.375,842.717 C 913.375,839.671 915.387,837.885 917.888,837.885 C 920.501,837.885 922.269,839.784 922.269,842.548 C 922.269,845.933 919.918,847.4 917.756,847.4 L 917.737,847.4 z M 917.792,846.159 C 919.372,846.159 920.557,844.674 920.557,842.605 C 920.557,841.063 919.786,839.126 917.83,839.126 C 915.893,839.126 915.047,840.931 915.047,842.661 C 915.047,844.654 916.176,846.158 917.774,846.158 L 917.792,846.158 L 917.792,846.159 z"
   id="path1248" />
				<path
   d="M 924.355,840.556 C 924.355,839.597 924.336,838.845 924.28,838.093 L 925.747,838.093 L 925.841,839.578 L 925.879,839.578 C 926.33,838.732 927.383,837.886 928.888,837.886 C 930.148,837.886 932.103,838.638 932.103,841.759 L 932.103,847.194 L 930.449,847.194 L 930.449,841.948 C 930.449,840.481 929.903,839.24 928.343,839.24 C 927.272,839.24 926.425,840.011 926.124,840.932 C 926.049,841.139 926.012,841.44 926.012,841.703 L 926.012,847.193 L 924.357,847.193 L 924.357,840.556 L 924.355,840.556 z"
   id="path1250" />
				<path
   d="M 935.731,842.925 C 935.769,845.163 937.179,846.084 938.834,846.084 C 940.019,846.084 940.752,845.877 941.354,845.633 L 941.655,846.799 C 941.072,847.062 940.057,847.382 938.609,847.382 C 935.826,847.382 934.134,845.52 934.134,842.793 C 934.134,840.029 935.77,837.867 938.421,837.867 C 941.392,837.867 942.162,840.48 942.162,842.154 C 942.162,842.492 942.143,842.756 942.105,842.943 L 935.731,842.925 z M 940.564,841.74 C 940.583,840.706 940.131,839.052 938.289,839.052 C 936.597,839.052 935.882,840.594 935.75,841.74 L 940.564,841.74 z"
   id="path1252" />
				<path
   d="M 943.986,845.52 C 944.494,845.821 945.358,846.16 946.186,846.16 C 947.371,846.16 947.934,845.577 947.934,844.806 C 947.934,844.016 947.464,843.583 946.261,843.132 C 944.606,842.53 943.835,841.647 943.835,840.556 C 943.835,839.089 945.038,837.886 946.975,837.886 C 947.897,837.886 948.705,838.13 949.194,838.45 L 948.799,839.635 C 948.442,839.428 947.783,839.109 946.938,839.109 C 945.959,839.109 945.433,839.672 945.433,840.349 C 945.433,841.12 945.959,841.458 947.145,841.911 C 948.706,842.493 949.533,843.283 949.533,844.656 C 949.533,846.273 948.273,847.401 946.148,847.401 C 945.152,847.401 944.23,847.137 943.59,846.761 L 943.986,845.52 z"
   id="path1254" />
			</g>
		</g>
		<g
   id="g1256">
			<path
   d="M 1062.98,850.752 C 1062.98,855.159 1059.408,858.732 1055,858.732 L 988.035,858.732 C 983.627,858.732 980.054,855.159 980.054,850.752 L 980.054,831.801 C 980.054,827.393 983.627,823.82 988.035,823.82 L 1055,823.82 C 1059.408,823.82 1062.98,827.393 1062.98,831.801 L 1062.98,850.752 z"
   id="path1258"
   style="fill:#f8601f" />
			<g
   id="g1260">
				<path
   d="M 997.628,846.874 C 997.195,847.08 996.236,847.4 995.015,847.4 C 992.27,847.4 990.483,845.539 990.483,842.737 C 990.483,839.935 992.401,837.885 995.373,837.885 C 996.351,837.885 997.215,838.129 997.667,838.374 L 997.29,839.634 C 996.895,839.427 996.275,839.201 995.373,839.201 C 993.285,839.201 992.157,840.762 992.157,842.661 C 992.157,844.766 993.511,846.064 995.316,846.064 C 996.256,846.064 996.877,845.838 997.346,845.631 L 997.628,846.874 z"
   id="path1262" />
				<path
   d="M 999.584,840.932 C 999.584,839.861 999.564,838.939 999.509,838.093 L 1000.956,838.093 L 1001.031,839.879 L 1001.088,839.879 C 1001.502,838.656 1002.517,837.886 1003.626,837.886 C 1003.796,837.886 1003.927,837.905 1004.077,837.943 L 1004.077,839.485 C 1003.889,839.465 1003.721,839.447 1003.494,839.447 C 1002.329,839.447 1001.502,840.331 1001.275,841.553 C 1001.238,841.797 1001.219,842.061 1001.219,842.342 L 1001.219,847.194 L 999.564,847.194 L 999.584,840.932 z"
   id="path1264" />
				<path
   d="M 1006.654,842.925 C 1006.692,845.163 1008.102,846.084 1009.757,846.084 C 1010.942,846.084 1011.675,845.877 1012.277,845.633 L 1012.578,846.799 C 1011.995,847.062 1010.98,847.382 1009.532,847.382 C 1006.75,847.382 1005.057,845.52 1005.057,842.793 C 1005.057,840.029 1006.693,837.867 1009.344,837.867 C 1012.315,837.867 1013.085,840.48 1013.085,842.154 C 1013.085,842.492 1013.066,842.756 1013.028,842.943 L 1006.654,842.925 z M 1011.487,841.74 C 1011.506,840.706 1011.054,839.052 1009.212,839.052 C 1007.52,839.052 1006.805,840.594 1006.673,841.74 L 1011.487,841.74 z M 1011.881,834.294 L 1009.587,836.983 L 1008.421,836.983 L 1010.076,834.294 L 1011.881,834.294 z"
   id="path1266" />
				<path
   d="M 1022.994,833.843 L 1022.994,844.843 C 1022.994,845.652 1023.013,846.573 1023.069,847.194 L 1021.584,847.194 L 1021.509,845.615 L 1021.472,845.615 C 1020.964,846.63 1019.873,847.401 1018.388,847.401 C 1016.188,847.401 1014.477,845.54 1014.477,842.775 C 1014.458,839.729 1016.357,837.886 1018.557,837.886 C 1019.967,837.886 1020.908,838.544 1021.302,839.259 L 1021.34,839.259 L 1021.34,833.843 L 1022.994,833.843 z M 1021.339,841.797 C 1021.339,841.571 1021.32,841.308 1021.264,841.082 C 1021.02,840.048 1020.117,839.184 1018.875,839.184 C 1017.164,839.184 1016.149,840.688 1016.149,842.681 C 1016.149,844.542 1017.07,846.066 1018.837,846.066 C 1019.946,846.066 1020.962,845.314 1021.263,844.091 C 1021.32,843.865 1021.338,843.64 1021.338,843.376 L 1021.338,841.797 L 1021.339,841.797 z"
   id="path1268" />
				<path
   d="M 1026.529,836.419 C 1025.909,836.419 1025.495,835.931 1025.495,835.348 C 1025.495,834.765 1025.928,834.294 1026.567,834.294 C 1027.206,834.294 1027.62,834.765 1027.62,835.348 C 1027.62,835.931 1027.206,836.419 1026.548,836.419 L 1026.529,836.419 z M 1025.739,847.193 L 1025.739,838.092 L 1027.394,838.092 L 1027.394,847.193 L 1025.739,847.193 z"
   id="path1270" />
				<path
   d="M 1032.132,835.911 L 1032.132,838.093 L 1034.501,838.093 L 1034.501,839.353 L 1032.132,839.353 L 1032.132,844.26 C 1032.132,845.389 1032.451,846.028 1033.373,846.028 C 1033.824,846.028 1034.087,845.991 1034.332,845.916 L 1034.407,847.176 C 1034.087,847.288 1033.579,847.402 1032.94,847.402 C 1032.169,847.402 1031.548,847.138 1031.154,846.706 C 1030.702,846.199 1030.514,845.391 1030.514,844.318 L 1030.514,839.354 L 1029.104,839.354 L 1029.104,838.094 L 1030.514,838.094 L 1030.514,836.42 L 1032.132,835.911 z"
   id="path1272" />
				<path
   d="M 1039.957,847.4 C 1037.513,847.4 1035.595,845.594 1035.595,842.717 C 1035.595,839.671 1037.607,837.885 1040.108,837.885 C 1042.722,837.885 1044.49,839.784 1044.49,842.548 C 1044.49,845.933 1042.139,847.4 1039.977,847.4 L 1039.957,847.4 z M 1040.013,846.159 C 1041.592,846.159 1042.777,844.674 1042.777,842.605 C 1042.777,841.063 1042.006,839.126 1040.051,839.126 C 1038.113,839.126 1037.268,840.931 1037.268,842.661 C 1037.268,844.654 1038.396,846.158 1039.995,846.158 L 1040.013,846.158 L 1040.013,846.159 z"
   id="path1274" />
				<path
   d="M 1046.35,845.52 C 1046.858,845.821 1047.722,846.16 1048.55,846.16 C 1049.735,846.16 1050.298,845.577 1050.298,844.806 C 1050.298,844.016 1049.828,843.583 1048.625,843.132 C 1046.97,842.53 1046.199,841.647 1046.199,840.556 C 1046.199,839.089 1047.402,837.886 1049.339,837.886 C 1050.261,837.886 1051.069,838.13 1051.558,838.45 L 1051.163,839.635 C 1050.806,839.428 1050.147,839.109 1049.302,839.109 C 1048.323,839.109 1047.797,839.672 1047.797,840.349 C 1047.797,841.12 1048.323,841.458 1049.509,841.911 C 1051.07,842.493 1051.897,843.283 1051.897,844.656 C 1051.897,846.273 1050.637,847.401 1048.512,847.401 C 1047.516,847.401 1046.594,847.137 1045.954,846.761 L 1046.35,845.52 z"
   id="path1276" />
			</g>
		</g>
	</g>
<image
   y="27.30398"
   x="8.8232222"
   id="image3685"
   height="137.98286"
   width="140"
   sodipodi:absref="/home/pmoleri/quin-te-ti.activity/src/gui/terron.png"
   xlink:href="terron.png" /></svg>