aboutsummaryrefslogtreecommitdiff
path: root/tests/figs/plotting/mixed-model-fit-for-nlme-object.svg
blob: 9d7fe5cf9056d75466051cbea60b6881b53d5dd9 (plain) (blame)
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
<?xml version='1.0' encoding='UTF-8' ?>
<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 720.00 576.00'>
<defs>
  <style type='text/css'><![CDATA[
    line, polyline, polygon, path, rect, circle {
      fill: none;
      stroke: #000000;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-miterlimit: 10.00;
    }
  ]]></style>
</defs>
<rect width='100%' height='100%' style='stroke: none; fill: #FFFFFF;'/>
<defs>
  <clipPath id='cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA='>
    <rect x='19.96' y='5.70' width='680.08' height='75.63' />
  </clipPath>
</defs>
<line x1='238.69' y1='29.26' x2='252.94' y2='29.26' style='stroke-width: 1.50;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='238.69' y1='38.77' x2='252.94' y2='38.77' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='238.69' y1='48.27' x2='252.94' y2='48.27' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='238.69' y1='57.77' x2='252.94' y2='57.77' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='299.52' y1='29.26' x2='313.78' y2='29.26' style='stroke-width: 0.75; stroke: #28E2E5; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='299.52' y1='38.77' x2='313.78' y2='38.77' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='299.52' y1='48.27' x2='313.78' y2='48.27' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='299.52' y1='57.77' x2='313.78' y2='57.77' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='360.36' y1='29.26' x2='374.61' y2='29.26' style='stroke-width: 0.75; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='360.36' y1='38.77' x2='374.61' y2='38.77' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='360.36' y1='48.27' x2='374.61' y2='48.27' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='360.36' y1='57.77' x2='374.61' y2='57.77' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='421.19' y1='29.26' x2='435.45' y2='29.26' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='421.19' y1='38.77' x2='435.45' y2='38.77' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='421.19' y1='48.27' x2='435.45' y2='48.27' style='stroke-width: 0.75; stroke: #F5C710; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='421.19' y1='57.77' x2='435.45' y2='57.77' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<circle cx='245.81' cy='38.77' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polyline points='245.81,45.50 248.21,49.66 243.41,49.66 245.81,45.50 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='243.29' y1='57.77' x2='248.33' y2='57.77' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='245.81' y1='60.29' x2='245.81' y2='55.25' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='304.87' y1='31.04' x2='308.43' y2='27.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='304.87' y1='27.48' x2='308.43' y2='31.04' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polyline points='304.13,38.77 306.65,36.25 309.17,38.77 306.65,41.29 304.13,38.77 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polyline points='306.65,51.04 309.05,46.89 304.25,46.89 306.65,51.04 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<rect x='304.87' y='55.99' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='304.87' y1='59.56' x2='308.43' y2='55.99' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='304.87' y1='55.99' x2='308.43' y2='59.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='365.70' y1='31.04' x2='369.27' y2='27.48' style='stroke-width: 0.75;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='365.70' y1='27.48' x2='369.27' y2='31.04' style='stroke-width: 0.75;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='364.96' y1='29.26' x2='370.00' y2='29.26' style='stroke-width: 0.75;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='367.48' y1='31.78' x2='367.48' y2='26.74' style='stroke-width: 0.75;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='364.96' y1='38.77' x2='370.00' y2='38.77' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='367.48' y1='41.29' x2='367.48' y2='36.25' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polyline points='364.96,38.77 367.48,36.25 370.00,38.77 367.48,41.29 364.96,38.77 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<circle cx='367.48' cy='48.27' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='365.70' y1='48.27' x2='369.27' y2='48.27' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='367.48' y1='50.05' x2='367.48' y2='46.49' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polyline points='367.48,60.55 369.88,55.70 365.08,55.70 367.48,60.55 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polyline points='367.48,55.00 369.88,59.85 365.08,59.85 367.48,55.00 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='426.54' y1='29.26' x2='430.10' y2='29.26' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='428.32' y1='31.04' x2='428.32' y2='27.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<rect x='426.54' y='27.48' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<circle cx='428.32' cy='38.77' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='426.54' y1='40.55' x2='430.10' y2='36.98' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='426.54' y1='36.98' x2='430.10' y2='40.55' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polyline points='428.32,46.49 430.10,50.05 426.54,50.05 428.32,46.49 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<rect x='426.54' y='46.49' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polygon points='426.54,59.56 430.10,59.56 430.10,55.99 426.54,55.99 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='260.07' y='31.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='37.31px' lengthAdjust='spacingAndGlyphs'>Population</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='260.07' y='41.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>1</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='260.07' y='50.99' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>2</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='260.07' y='60.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>3</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='320.91' y='31.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>4</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='320.91' y='41.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>5</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='320.91' y='50.99' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>6</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='320.91' y='60.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>7</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='381.74' y='31.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>8</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='381.74' y='41.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>9</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='381.74' y='50.99' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>10</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='381.74' y='60.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.19px' lengthAdjust='spacingAndGlyphs'>11</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='442.58' y='31.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>12</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='442.58' y='41.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>13</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='442.58' y='50.99' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>14</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='442.58' y='60.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>15</text></g>
<defs>
  <clipPath id='cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ='>
    <rect x='38.97' y='102.24' width='301.08' height='186.63' />
  </clipPath>
</defs>
<polyline points='50.12,124.58 52.44,128.85 55.81,134.81 57.09,137.00 61.50,144.26 66.38,151.80 67.19,153.00 72.87,161.09 78.56,168.59 82.64,173.62 84.25,175.54 89.94,181.98 95.63,187.97 101.32,193.53 107.01,198.70 112.70,203.51 115.16,205.49 118.39,207.99 124.08,212.17 129.77,216.06 135.46,219.70 141.15,223.10 146.83,226.27 152.52,229.25 158.21,232.03 163.90,234.64 169.59,237.09 175.28,239.39 180.97,241.55 186.66,243.58 189.50,244.55 192.35,245.49 198.04,247.29 203.73,248.99 209.42,250.59 215.11,252.10 220.79,253.52 226.48,254.87 232.17,256.14 237.86,257.34 243.55,258.48 249.24,259.56 254.93,260.59 259.20,261.32 260.62,261.56 266.31,262.48 272.00,263.35 277.69,264.18 283.38,264.97 289.07,265.72 294.76,266.43 300.44,267.11 306.13,267.76 311.82,268.37 317.51,268.96 323.20,269.52 328.89,270.05 ' style='stroke-width: 1.50;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<defs>
  <clipPath id='cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA='>
    <rect x='0.00' y='0.00' width='720.00' height='576.00' />
  </clipPath>
</defs>
<line x1='50.12' y1='288.88' x2='328.89' y2='288.88' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='50.12' y1='288.88' x2='50.12' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='96.58' y1='288.88' x2='96.58' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='143.04' y1='288.88' x2='143.04' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='189.50' y1='288.88' x2='189.50' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='235.97' y1='288.88' x2='235.97' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='282.43' y1='288.88' x2='282.43' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='328.89' y1='288.88' x2='328.89' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='47.92' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='92.19' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='138.65' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='185.11' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>60</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='231.58' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>80</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='275.84' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='13.17px' lengthAdjust='spacingAndGlyphs'>100</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='322.30' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='13.17px' lengthAdjust='spacingAndGlyphs'>120</text></g>
<line x1='38.97' y1='281.96' x2='38.97' y2='125.15' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='281.96' x2='34.21' y2='281.96' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='250.60' x2='34.21' y2='250.60' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='219.24' x2='34.21' y2='219.24' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='187.88' x2='34.21' y2='187.88' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='156.51' x2='34.21' y2='156.51' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='125.15' x2='34.21' y2='125.15' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,284.16) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,254.99) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,223.63) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,192.27) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>60</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,160.90) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>80</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,131.74) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='13.17px' lengthAdjust='spacingAndGlyphs'>100</text></g>
<polyline points='38.97,288.88 340.04,288.88 340.04,102.24 38.97,102.24 38.97,288.88 ' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<defs>
  <clipPath id='cpMC4wMHwzNjAuMDB8MzE3LjM5fDgyLjI5'>
    <rect x='0.00' y='82.29' width='360.00' height='235.10' />
  </clipPath>
</defs>
<g clip-path='url(#cpMC4wMHwzNjAuMDB8MzE3LjM5fDgyLjI5)'><text x='180.87' y='324.99' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='17.27px' lengthAdjust='spacingAndGlyphs'>Time</text></g>
<g clip-path='url(#cpMC4wMHwzNjAuMDB8MzE3LjM5fDgyLjI5)'><text transform='translate(8.55,206.76) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='22.41px' lengthAdjust='spacingAndGlyphs'>parent</text></g>
<defs>
  <clipPath id='cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ='>
    <rect x='38.97' y='102.24' width='301.08' height='186.63' />
  </clipPath>
</defs>
<circle cx='50.12' cy='117.47' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='50.12' cy='130.95' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='52.44' cy='129.86' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='52.44' cy='142.40' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='57.09' cy='156.51' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='57.09' cy='131.42' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='66.38' cy='160.59' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='66.38' cy='166.24' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='82.64' cy='174.55' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='82.64' cy='183.33' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='115.16' cy='203.87' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='115.16' cy='200.58' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='189.50' cy='231.16' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='189.50' cy='231.00' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='259.20' cy='246.99' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='259.20' cy='247.46' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='328.89' cy='253.27' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='328.89' cy='254.68' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,126.17 52.44,131.83 55.81,139.39 57.09,142.09 61.50,150.69 66.38,159.08 67.19,160.37 72.87,168.71 78.56,175.93 82.64,180.52 84.25,182.21 89.94,187.71 95.63,192.55 101.32,196.84 107.01,200.67 112.70,204.10 115.16,205.48 118.39,207.20 124.08,210.03 129.77,212.61 135.46,214.99 141.15,217.19 146.83,219.24 152.52,221.17 158.21,222.97 163.90,224.68 169.59,226.30 175.28,227.85 180.97,229.32 186.66,230.73 189.50,231.42 192.35,232.09 198.04,233.40 203.73,234.65 209.42,235.87 215.11,237.04 220.79,238.18 226.48,239.28 232.17,240.35 237.86,241.39 243.55,242.40 249.24,243.39 254.93,244.34 259.20,245.04 260.62,245.27 266.31,246.18 272.00,247.06 277.69,247.92 283.38,248.75 289.07,249.57 294.76,250.36 300.44,251.14 306.13,251.89 311.82,252.63 317.51,253.34 323.20,254.04 328.89,254.73 ' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,120.34 52.52,124.50 47.72,124.50 50.12,120.34 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,123.01 52.52,127.16 47.72,127.16 50.12,123.01 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='52.44,130.38 54.84,134.53 50.04,134.53 52.44,130.38 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='52.44,128.65 54.84,132.81 50.04,132.81 52.44,128.65 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='57.09,137.43 59.49,141.59 54.69,141.59 57.09,137.43 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='57.09,141.51 59.49,145.67 54.69,145.67 57.09,141.51 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='66.38,141.67 68.78,145.82 63.98,145.82 66.38,141.67 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='66.38,151.23 68.78,155.39 63.98,155.39 66.38,151.23 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='82.64,169.27 85.04,173.42 80.24,173.42 82.64,169.27 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='82.64,161.43 85.04,165.58 80.24,165.58 82.64,161.43 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='115.16,202.51 117.56,206.67 112.76,206.67 115.16,202.51 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='115.16,205.49 117.56,209.65 112.76,209.65 115.16,205.49 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='189.50,232.46 191.90,236.62 187.10,236.62 189.50,232.46 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='189.50,228.23 191.90,232.39 187.10,232.39 189.50,228.23 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='259.20,238.42 261.60,242.58 256.80,242.58 259.20,238.42 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='259.20,240.46 261.60,244.62 256.80,244.62 259.20,240.46 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='328.89,248.46 331.29,252.61 326.49,252.61 328.89,248.46 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='328.89,251.44 331.29,255.59 326.49,255.59 328.89,251.44 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,125.23 52.44,129.71 55.81,135.87 57.09,138.11 61.50,145.44 66.38,152.89 67.19,154.06 72.87,161.84 78.56,168.87 82.64,173.49 84.25,175.23 89.94,181.00 95.63,186.24 101.32,191.01 107.01,195.36 112.70,199.33 115.16,200.95 118.39,202.97 124.08,206.32 129.77,209.39 135.46,212.23 141.15,214.85 146.83,217.28 152.52,219.54 158.21,221.64 163.90,223.61 169.59,225.45 175.28,227.18 180.97,228.80 186.66,230.34 189.50,231.07 192.35,231.79 198.04,233.16 203.73,234.47 209.42,235.71 215.11,236.89 220.79,238.02 226.48,239.11 232.17,240.15 237.86,241.15 243.55,242.11 249.24,243.03 254.93,243.93 259.20,244.57 260.62,244.79 266.31,245.62 272.00,246.43 277.69,247.21 283.38,247.97 289.07,248.71 294.76,249.43 300.44,250.12 306.13,250.80 311.82,251.46 317.51,252.11 323.20,252.73 328.89,253.34 ' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='47.60' y1='141.15' x2='52.64' y2='141.15' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='143.67' x2='50.12' y2='138.63' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='47.60' y1='127.97' x2='52.64' y2='127.97' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='130.49' x2='50.12' y2='125.45' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='49.92' y1='126.25' x2='54.96' y2='126.25' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='128.77' x2='52.44' y2='123.73' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='49.92' y1='127.19' x2='54.96' y2='127.19' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='129.71' x2='52.44' y2='124.67' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='54.57' y1='129.86' x2='59.61' y2='129.86' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='132.38' x2='57.09' y2='127.34' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='54.57' y1='140.68' x2='59.61' y2='140.68' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='143.20' x2='57.09' y2='138.16' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='63.86' y1='150.55' x2='68.90' y2='150.55' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='153.07' x2='66.38' y2='148.03' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='63.86' y1='152.12' x2='68.90' y2='152.12' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='154.64' x2='66.38' y2='149.60' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.12' y1='164.04' x2='85.16' y2='164.04' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='166.56' x2='82.64' y2='161.52' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.12' y1='175.49' x2='85.16' y2='175.49' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='178.01' x2='82.64' y2='172.97' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='112.64' y1='193.84' x2='117.68' y2='193.84' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='196.36' x2='115.16' y2='191.31' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='112.64' y1='196.81' x2='117.68' y2='196.81' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='199.33' x2='115.16' y2='194.29' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='186.98' y1='234.29' x2='192.02' y2='234.29' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='236.81' x2='189.50' y2='231.77' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='186.98' y1='237.43' x2='192.02' y2='237.43' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='239.95' x2='189.50' y2='234.91' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='256.68' y1='252.95' x2='261.72' y2='252.95' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='255.47' x2='259.20' y2='250.43' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='256.68' y1='252.95' x2='261.72' y2='252.95' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='255.47' x2='259.20' y2='250.43' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='326.37' y1='267.54' x2='331.41' y2='267.54' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='270.06' x2='328.89' y2='265.02' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='326.37' y1='263.77' x2='331.41' y2='263.77' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='266.29' x2='328.89' y2='261.25' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,126.05 52.44,129.73 55.81,134.87 57.09,136.77 61.50,143.09 66.38,149.68 67.19,150.73 72.87,157.87 78.56,164.52 82.64,169.01 84.25,170.73 89.94,176.53 95.63,181.95 101.32,187.02 107.01,191.77 112.70,196.22 115.16,198.07 118.39,200.40 124.08,204.32 129.77,208.00 135.46,211.46 141.15,214.71 146.83,217.77 152.52,220.66 158.21,223.39 163.90,225.96 169.59,228.38 175.28,230.68 180.97,232.85 186.66,234.91 189.50,235.90 192.35,236.86 198.04,238.70 203.73,240.46 209.42,242.12 215.11,243.70 220.79,245.21 226.48,246.64 232.17,248.01 237.86,249.31 243.55,250.55 249.24,251.73 254.93,252.86 259.20,253.67 260.62,253.94 266.31,254.97 272.00,255.95 277.69,256.90 283.38,257.80 289.07,258.67 294.76,259.50 300.44,260.29 306.13,261.05 311.82,261.79 317.51,262.49 323.20,263.17 328.89,263.81 ' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='124.58' x2='51.90' y2='121.02' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='121.02' x2='51.90' y2='124.58' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='123.17' x2='51.90' y2='119.61' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='119.61' x2='51.90' y2='123.17' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='121.92' x2='54.22' y2='118.35' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='118.35' x2='54.22' y2='121.92' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='142.14' x2='54.22' y2='138.58' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='138.58' x2='54.22' y2='142.14' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='143.71' x2='58.87' y2='140.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='140.15' x2='58.87' y2='143.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='143.87' x2='58.87' y2='140.30' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='140.30' x2='58.87' y2='143.87' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='148.57' x2='68.16' y2='145.01' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='145.01' x2='68.16' y2='148.57' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='164.10' x2='68.16' y2='160.53' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='160.53' x2='68.16' y2='164.10' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='176.49' x2='84.42' y2='172.92' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='172.92' x2='84.42' y2='176.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='167.55' x2='84.42' y2='163.98' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='163.98' x2='84.42' y2='167.55' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='202.83' x2='116.95' y2='199.27' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='199.27' x2='116.95' y2='202.83' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='205.18' x2='116.95' y2='201.62' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='201.62' x2='116.95' y2='205.18' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='240.31' x2='191.29' y2='236.74' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='236.74' x2='191.29' y2='240.31' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='240.15' x2='191.29' y2='236.59' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='236.59' x2='191.29' y2='240.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='258.50' x2='260.98' y2='254.93' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='254.93' x2='260.98' y2='258.50' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='258.97' x2='260.98' y2='255.41' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='255.41' x2='260.98' y2='258.97' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='269.32' x2='330.67' y2='265.75' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='265.75' x2='330.67' y2='269.32' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='270.57' x2='330.67' y2='267.01' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='267.01' x2='330.67' y2='270.57' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,125.37 52.44,129.39 55.81,134.99 57.09,137.06 61.50,143.91 66.38,151.04 67.19,152.18 72.87,159.85 78.56,166.98 82.64,171.78 84.25,173.61 89.94,179.77 95.63,185.51 101.32,190.85 107.01,195.83 112.70,200.48 115.16,202.39 118.39,204.81 124.08,208.87 129.77,212.66 135.46,216.20 141.15,219.52 146.83,222.64 152.52,225.56 158.21,228.30 163.90,230.88 169.59,233.30 175.28,235.58 180.97,237.73 186.66,239.75 189.50,240.72 192.35,241.66 198.04,243.47 203.73,245.17 209.42,246.78 215.11,248.31 220.79,249.75 226.48,251.12 232.17,252.42 237.86,253.65 243.55,254.82 249.24,255.94 254.93,256.99 259.20,257.75 260.62,258.00 266.31,258.96 272.00,259.87 277.69,260.74 283.38,261.57 289.07,262.37 294.76,263.12 300.44,263.85 306.13,264.54 311.82,265.20 317.51,265.83 323.20,266.44 328.89,267.02 ' style='stroke-width: 0.75; stroke: #28E2E5; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='47.60,113.86 50.12,111.34 52.64,113.86 50.12,116.38 47.60,113.86 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='47.60,113.39 50.12,110.87 52.64,113.39 50.12,115.91 47.60,113.39 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='49.92,133.31 52.44,130.79 54.96,133.31 52.44,135.83 49.92,133.31 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='49.92,145.85 52.44,143.33 54.96,145.85 52.44,148.37 49.92,145.85 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='54.57,144.91 57.09,142.39 59.61,144.91 57.09,147.43 54.57,144.91 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='54.57,144.44 57.09,141.92 59.61,144.44 57.09,146.96 54.57,144.44 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='63.86,164.67 66.38,162.15 68.90,164.67 66.38,167.19 63.86,164.67 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='63.86,168.75 66.38,166.22 68.90,168.75 66.38,171.27 63.86,168.75 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='80.12,193.21 82.64,190.69 85.16,193.21 82.64,195.73 80.12,193.21 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='80.12,190.86 82.64,188.34 85.16,190.86 82.64,193.38 80.12,190.86 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='112.64,207.95 115.16,205.43 117.68,207.95 115.16,210.47 112.64,207.95 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='112.64,206.69 115.16,204.17 117.68,206.69 115.16,209.21 112.64,206.69 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='186.98,239.00 189.50,236.48 192.02,239.00 189.50,241.52 186.98,239.00 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='186.98,234.29 189.50,231.77 192.02,234.29 189.50,236.81 186.98,234.29 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='256.68,251.70 259.20,249.18 261.72,251.70 259.20,254.22 256.68,251.70 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='256.68,250.60 259.20,248.08 261.72,250.60 259.20,253.12 256.68,250.60 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='326.37,260.48 328.89,257.96 331.41,260.48 328.89,263.00 326.37,260.48 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='326.37,261.26 328.89,258.74 331.41,261.26 328.89,263.78 326.37,261.26 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,123.45 52.44,131.69 55.81,142.22 57.09,145.84 61.50,156.90 66.38,167.01 67.19,168.50 72.87,177.77 78.56,185.27 82.64,189.81 84.25,191.44 89.94,196.59 95.63,200.97 101.32,204.74 107.01,208.05 112.70,211.00 115.16,212.19 118.39,213.67 124.08,216.11 129.77,218.37 135.46,220.48 141.15,222.46 146.83,224.34 152.52,226.13 158.21,227.84 163.90,229.48 169.59,231.06 175.28,232.58 180.97,234.05 186.66,235.47 189.50,236.16 192.35,236.84 198.04,238.17 203.73,239.46 209.42,240.70 215.11,241.91 220.79,243.09 226.48,244.23 232.17,245.33 237.86,246.40 243.55,247.44 249.24,248.45 254.93,249.43 259.20,250.15 260.62,250.39 266.31,251.31 272.00,252.20 277.69,253.07 283.38,253.92 289.07,254.74 294.76,255.53 300.44,256.31 306.13,257.06 311.82,257.78 317.51,258.49 323.20,259.18 328.89,259.84 ' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,123.69 52.52,119.53 47.72,119.53 50.12,123.69 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,123.06 52.52,118.90 47.72,118.90 50.12,123.06 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='52.44,138.12 54.84,133.96 50.04,133.96 52.44,138.12 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='52.44,143.45 54.84,139.29 50.04,139.29 52.44,143.45 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='57.09,137.80 59.49,133.64 54.69,133.64 57.09,137.80 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='57.09,144.39 59.49,140.23 54.69,140.23 57.09,144.39 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='66.38,151.29 68.78,147.13 63.98,147.13 66.38,151.29 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='66.38,150.66 68.78,146.50 63.98,146.50 66.38,150.66 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='82.64,172.14 85.04,167.99 80.24,167.99 82.64,172.14 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='82.64,186.88 85.04,182.73 80.24,182.73 82.64,186.88 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='115.16,191.27 117.56,187.12 112.76,187.12 115.16,191.27 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='115.16,204.29 117.56,200.13 112.76,200.13 115.16,204.29 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='189.50,228.75 191.90,224.60 187.10,224.60 189.50,228.75 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='189.50,230.79 191.90,226.63 187.10,226.63 189.50,230.79 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='259.20,240.36 261.60,236.20 256.80,236.20 259.20,240.36 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='259.20,241.30 261.60,237.14 256.80,237.14 259.20,241.30 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='328.89,250.08 331.29,245.92 326.49,245.92 328.89,250.08 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='328.89,253.37 331.29,249.22 326.49,249.22 328.89,253.37 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,125.17 52.44,129.71 55.81,135.91 57.09,138.16 61.50,145.46 66.38,152.81 67.19,153.95 72.87,161.53 78.56,168.30 82.64,172.71 84.25,174.37 89.94,179.81 95.63,184.72 101.32,189.15 107.01,193.16 112.70,196.81 115.16,198.29 118.39,200.13 124.08,203.17 129.77,205.96 135.46,208.53 141.15,210.90 146.83,213.10 152.52,215.15 158.21,217.06 163.90,218.85 169.59,220.53 175.28,222.12 180.97,223.62 186.66,225.04 189.50,225.72 192.35,226.39 198.04,227.68 203.73,228.92 209.42,230.10 215.11,231.23 220.79,232.32 226.48,233.38 232.17,234.39 237.86,235.38 243.55,236.33 249.24,237.25 254.93,238.15 259.20,238.81 260.62,239.02 266.31,239.87 272.00,240.70 277.69,241.51 283.38,242.29 289.07,243.06 294.76,243.81 300.44,244.54 306.13,245.25 311.82,245.95 317.51,246.64 323.20,247.31 328.89,247.96 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='48.34' y='130.27' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='133.83' x2='51.90' y2='130.27' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='130.27' x2='51.90' y2='133.83' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='48.34' y='115.22' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='118.78' x2='51.90' y2='115.22' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='115.22' x2='51.90' y2='118.78' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='50.66' y='127.13' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='130.70' x2='54.22' y2='127.13' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='127.13' x2='54.22' y2='130.70' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='50.66' y='137.33' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='140.89' x2='54.22' y2='137.33' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='137.33' x2='54.22' y2='140.89' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='55.30' y='159.59' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='163.16' x2='58.87' y2='159.59' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='159.59' x2='58.87' y2='163.16' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='55.30' y='142.97' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='146.53' x2='58.87' y2='142.97' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='142.97' x2='58.87' y2='146.53' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='64.60' y='173.86' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='177.43' x2='68.16' y2='173.86' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='173.86' x2='68.16' y2='177.43' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='64.60' y='154.42' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='157.98' x2='68.16' y2='154.42' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='154.42' x2='68.16' y2='157.98' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='80.86' y='186.88' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='190.44' x2='84.42' y2='186.88' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='186.88' x2='84.42' y2='190.44' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='80.86' y='191.58' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='195.15' x2='84.42' y2='191.58' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='191.58' x2='84.42' y2='195.15' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='113.38' y='225.92' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='229.49' x2='116.95' y2='225.92' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='225.92' x2='116.95' y2='229.49' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='113.38' y='224.20' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='227.76' x2='116.95' y2='224.20' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='224.20' x2='116.95' y2='227.76' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='187.72' y='255.41' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='258.97' x2='191.29' y2='255.41' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='255.41' x2='191.29' y2='258.97' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='187.72' y='255.88' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='259.44' x2='191.29' y2='255.88' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='255.88' x2='191.29' y2='259.44' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='257.42' y='264.03' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='267.59' x2='260.98' y2='264.03' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='264.03' x2='260.98' y2='267.59' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='257.42' y='265.28' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='268.85' x2='260.98' y2='265.28' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='265.28' x2='260.98' y2='268.85' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='327.11' y='270.62' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='274.18' x2='330.67' y2='270.62' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='270.62' x2='330.67' y2='274.18' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='327.11' y='267.95' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='271.51' x2='330.67' y2='267.95' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='267.95' x2='330.67' y2='271.51' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,125.59 52.44,132.78 55.81,142.42 57.09,145.86 61.50,156.86 66.38,167.63 67.19,169.27 72.87,179.99 78.56,189.27 82.64,195.16 84.25,197.33 89.94,204.37 95.63,210.53 101.32,215.96 107.01,220.75 112.70,225.01 115.16,226.71 118.39,228.81 124.08,232.21 129.77,235.28 135.46,238.05 141.15,240.57 146.83,242.87 152.52,244.97 158.21,246.91 163.90,248.70 169.59,250.36 175.28,251.91 180.97,253.35 186.66,254.70 189.50,255.34 192.35,255.96 198.04,257.15 203.73,258.27 209.42,259.33 215.11,260.33 220.79,261.28 226.48,262.18 232.17,263.04 237.86,263.85 243.55,264.63 249.24,265.36 254.93,266.07 259.20,266.57 260.62,266.74 266.31,267.38 272.00,267.99 277.69,268.58 283.38,269.14 289.07,269.67 294.76,270.19 300.44,270.68 306.13,271.14 311.82,271.59 317.51,272.02 323.20,272.44 328.89,272.83 ' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='131.48' x2='51.90' y2='127.92' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='127.92' x2='51.90' y2='131.48' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='47.60' y1='129.70' x2='52.64' y2='129.70' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='132.22' x2='50.12' y2='127.18' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='115.17' x2='51.90' y2='111.61' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='111.61' x2='51.90' y2='115.17' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='47.60' y1='113.39' x2='52.64' y2='113.39' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='115.91' x2='50.12' y2='110.87' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='129.76' x2='54.22' y2='126.19' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='126.19' x2='54.22' y2='129.76' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='49.92' y1='127.97' x2='54.96' y2='127.97' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='130.49' x2='52.44' y2='125.45' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='145.59' x2='54.22' y2='142.03' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='142.03' x2='54.22' y2='145.59' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='49.92' y1='143.81' x2='54.96' y2='143.81' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='146.33' x2='52.44' y2='141.29' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='149.36' x2='58.87' y2='145.79' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='145.79' x2='58.87' y2='149.36' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='54.57' y1='147.58' x2='59.61' y2='147.58' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='150.10' x2='57.09' y2='145.06' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='165.51' x2='58.87' y2='161.95' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='161.95' x2='58.87' y2='165.51' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='54.57' y1='163.73' x2='59.61' y2='163.73' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='166.25' x2='57.09' y2='161.21' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='173.98' x2='68.16' y2='170.41' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='170.41' x2='68.16' y2='173.98' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='63.86' y1='172.19' x2='68.90' y2='172.19' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='174.72' x2='66.38' y2='169.67' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='179.15' x2='68.16' y2='175.59' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='175.59' x2='68.16' y2='179.15' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='63.86' y1='177.37' x2='68.90' y2='177.37' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='179.89' x2='66.38' y2='174.85' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='209.73' x2='84.42' y2='206.17' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='206.17' x2='84.42' y2='209.73' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.12' y1='207.95' x2='85.16' y2='207.95' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='210.47' x2='82.64' y2='205.43' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='204.24' x2='84.42' y2='200.68' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='200.68' x2='84.42' y2='204.24' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.12' y1='202.46' x2='85.16' y2='202.46' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='204.98' x2='82.64' y2='199.94' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='228.39' x2='116.95' y2='224.83' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='224.83' x2='116.95' y2='228.39' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='112.64' y1='226.61' x2='117.68' y2='226.61' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='229.13' x2='115.16' y2='224.09' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='225.72' x2='116.95' y2='222.16' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='222.16' x2='116.95' y2='225.72' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='112.64' y1='223.94' x2='117.68' y2='223.94' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='226.46' x2='115.16' y2='221.42' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='247.05' x2='191.29' y2='243.49' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='243.49' x2='191.29' y2='247.05' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='186.98' y1='245.27' x2='192.02' y2='245.27' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='247.79' x2='189.50' y2='242.75' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='246.11' x2='191.29' y2='242.55' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='242.55' x2='191.29' y2='246.11' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='186.98' y1='244.33' x2='192.02' y2='244.33' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='246.85' x2='189.50' y2='241.81' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='255.52' x2='260.98' y2='251.96' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='251.96' x2='260.98' y2='255.52' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='256.68' y1='253.74' x2='261.72' y2='253.74' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='256.26' x2='259.20' y2='251.22' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='255.83' x2='260.98' y2='252.27' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='252.27' x2='260.98' y2='255.83' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='256.68' y1='254.05' x2='261.72' y2='254.05' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='256.57' x2='259.20' y2='251.53' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='263.67' x2='330.67' y2='260.11' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='260.11' x2='330.67' y2='263.67' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='326.37' y1='261.89' x2='331.41' y2='261.89' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='264.41' x2='328.89' y2='259.37' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='262.73' x2='330.67' y2='259.17' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='259.17' x2='330.67' y2='262.73' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='326.37' y1='260.95' x2='331.41' y2='260.95' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='263.47' x2='328.89' y2='258.43' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,124.56 52.44,134.69 55.81,147.58 57.09,151.98 61.50,165.33 66.38,177.36 67.19,179.11 72.87,189.87 78.56,198.36 82.64,203.36 84.25,205.13 89.94,210.58 95.63,215.04 101.32,218.74 107.01,221.86 112.70,224.53 115.16,225.58 118.39,226.86 124.08,228.92 129.77,230.77 135.46,232.45 141.15,234.00 146.83,235.45 152.52,236.80 158.21,238.09 163.90,239.31 169.59,240.48 175.28,241.60 180.97,242.68 186.66,243.72 189.50,244.23 192.35,244.73 198.04,245.71 203.73,246.66 209.42,247.58 215.11,248.48 220.79,249.35 226.48,250.20 232.17,251.02 237.86,251.82 243.55,252.60 249.24,253.36 254.93,254.10 259.20,254.65 260.62,254.83 266.31,255.53 272.00,256.21 277.69,256.88 283.38,257.53 289.07,258.16 294.76,258.77 300.44,259.37 306.13,259.96 311.82,260.53 317.51,261.08 323.20,261.62 328.89,262.15 ' style='stroke-width: 0.75; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='47.60' y1='109.16' x2='52.64' y2='109.16' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='111.68' x2='50.12' y2='106.64' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='47.60,109.16 50.12,106.64 52.64,109.16 50.12,111.68 47.60,109.16 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='47.60' y1='139.11' x2='52.64' y2='139.11' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='141.63' x2='50.12' y2='136.59' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='47.60,139.11 50.12,136.59 52.64,139.11 50.12,141.63 47.60,139.11 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='49.92' y1='127.19' x2='54.96' y2='127.19' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='129.71' x2='52.44' y2='124.67' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='49.92,127.19 52.44,124.67 54.96,127.19 52.44,129.71 49.92,127.19 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='49.92' y1='118.25' x2='54.96' y2='118.25' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='120.77' x2='52.44' y2='115.73' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='49.92,118.25 52.44,115.73 54.96,118.25 52.44,120.77 49.92,118.25 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='54.57' y1='149.61' x2='59.61' y2='149.61' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='152.13' x2='57.09' y2='147.09' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='54.57,149.61 57.09,147.09 59.61,149.61 57.09,152.13 54.57,149.61 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='54.57' y1='140.52' x2='59.61' y2='140.52' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='143.04' x2='57.09' y2='138.00' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='54.57,140.52 57.09,138.00 59.61,140.52 57.09,143.04 54.57,140.52 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='63.86' y1='158.55' x2='68.90' y2='158.55' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='161.07' x2='66.38' y2='156.03' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='63.86,158.55 66.38,156.03 68.90,158.55 66.38,161.07 63.86,158.55 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='63.86' y1='164.98' x2='68.90' y2='164.98' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='167.50' x2='66.38' y2='162.46' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='63.86,164.98 66.38,162.46 68.90,164.98 66.38,167.50 63.86,164.98 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.12' y1='192.27' x2='85.16' y2='192.27' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='194.79' x2='82.64' y2='189.75' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='80.12,192.27 82.64,189.75 85.16,192.27 82.64,194.79 80.12,192.27 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.12' y1='183.80' x2='85.16' y2='183.80' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='186.32' x2='82.64' y2='181.28' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='80.12,183.80 82.64,181.28 85.16,183.80 82.64,186.32 80.12,183.80 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='112.64' y1='215.32' x2='117.68' y2='215.32' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='217.84' x2='115.16' y2='212.80' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='112.64,215.32 115.16,212.80 117.68,215.32 115.16,217.84 112.64,215.32 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='112.64' y1='211.08' x2='117.68' y2='211.08' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='213.60' x2='115.16' y2='208.56' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='112.64,211.08 115.16,208.56 117.68,211.08 115.16,213.60 112.64,211.08 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='186.98' y1='244.17' x2='192.02' y2='244.17' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='246.69' x2='189.50' y2='241.65' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='186.98,244.17 189.50,241.65 192.02,244.17 189.50,246.69 186.98,244.17 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='186.98' y1='242.76' x2='192.02' y2='242.76' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='245.28' x2='189.50' y2='240.24' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='186.98,242.76 189.50,240.24 192.02,242.76 189.50,245.28 186.98,242.76 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='256.68' y1='253.74' x2='261.72' y2='253.74' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='256.26' x2='259.20' y2='251.22' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='256.68,253.74 259.20,251.22 261.72,253.74 259.20,256.26 256.68,253.74 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='256.68' y1='258.28' x2='261.72' y2='258.28' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='260.80' x2='259.20' y2='255.76' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='256.68,258.28 259.20,255.76 261.72,258.28 259.20,260.80 256.68,258.28 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='326.37' y1='268.16' x2='331.41' y2='268.16' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='270.68' x2='328.89' y2='265.64' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='326.37,268.16 328.89,265.64 331.41,268.16 328.89,270.68 326.37,268.16 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='326.37' y1='262.36' x2='331.41' y2='262.36' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='264.88' x2='328.89' y2='259.84' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='326.37,262.36 328.89,259.84 331.41,262.36 328.89,264.88 326.37,262.36 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,123.22 52.44,129.81 55.81,138.63 57.09,141.78 61.50,151.83 66.38,161.67 67.19,163.17 72.87,172.95 78.56,181.42 82.64,186.80 84.25,188.78 89.94,195.21 95.63,200.86 101.32,205.84 107.01,210.26 112.70,214.20 115.16,215.78 118.39,217.74 124.08,220.93 129.77,223.82 135.46,226.46 141.15,228.88 146.83,231.11 152.52,233.17 158.21,235.09 163.90,236.89 169.59,238.57 175.28,240.15 180.97,241.65 186.66,243.06 189.50,243.75 192.35,244.41 198.04,245.69 203.73,246.91 209.42,248.08 215.11,249.20 220.79,250.28 226.48,251.31 232.17,252.30 237.86,253.25 243.55,254.17 249.24,255.06 254.93,255.92 259.20,256.54 260.62,256.74 266.31,257.54 272.00,258.31 277.69,259.05 283.38,259.77 289.07,260.47 294.76,261.14 300.44,261.80 306.13,262.43 311.82,263.04 317.51,263.63 323.20,264.20 328.89,264.76 ' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='50.12' cy='122.80' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='122.80' x2='51.90' y2='122.80' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='124.58' x2='50.12' y2='121.02' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='50.12' cy='123.11' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='123.11' x2='51.90' y2='123.11' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='124.89' x2='50.12' y2='121.33' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='52.44' cy='126.09' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='126.09' x2='54.22' y2='126.09' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='127.87' x2='52.44' y2='124.31' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='52.44' cy='122.80' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='122.80' x2='54.22' y2='122.80' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='124.58' x2='52.44' y2='121.02' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='57.09' cy='136.28' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='136.28' x2='58.87' y2='136.28' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='138.07' x2='57.09' y2='134.50' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='57.09' cy='139.11' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='139.11' x2='58.87' y2='139.11' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='140.89' x2='57.09' y2='137.33' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='66.38' cy='159.81' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='159.81' x2='68.16' y2='159.81' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='161.59' x2='66.38' y2='158.02' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='66.38' cy='147.58' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='147.58' x2='68.16' y2='147.58' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='149.36' x2='66.38' y2='145.79' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='82.64' cy='165.14' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='165.14' x2='84.42' y2='165.14' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='166.92' x2='82.64' y2='163.36' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='82.64' cy='165.61' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='165.61' x2='84.42' y2='165.61' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='167.39' x2='82.64' y2='163.83' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='115.16' cy='202.62' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='202.62' x2='116.95' y2='202.62' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='204.40' x2='115.16' y2='200.83' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='115.16' cy='191.17' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='191.17' x2='116.95' y2='191.17' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='192.95' x2='115.16' y2='189.39' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='189.50' cy='235.39' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='235.39' x2='191.29' y2='235.39' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='237.17' x2='189.50' y2='233.61' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='189.50' cy='235.23' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='235.23' x2='191.29' y2='235.23' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='237.02' x2='189.50' y2='233.45' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='259.20' cy='245.27' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='245.27' x2='260.98' y2='245.27' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='247.05' x2='259.20' y2='243.49' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='259.20' cy='249.66' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='249.66' x2='260.98' y2='249.66' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='251.44' x2='259.20' y2='247.88' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='328.89' cy='261.73' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='261.73' x2='330.67' y2='261.73' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='263.52' x2='328.89' y2='259.95' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='328.89' cy='259.38' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='259.38' x2='330.67' y2='259.38' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='261.16' x2='328.89' y2='257.60' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,123.88 52.44,127.88 55.81,133.43 57.09,135.47 61.50,142.20 66.38,149.17 67.19,150.27 72.87,157.70 78.56,164.55 82.64,169.13 84.25,170.87 89.94,176.71 95.63,182.11 101.32,187.12 107.01,191.76 112.70,196.08 115.16,197.86 118.39,200.10 124.08,203.84 129.77,207.33 135.46,210.60 141.15,213.65 146.83,216.52 152.52,219.20 158.21,221.73 163.90,224.11 169.59,226.35 175.28,228.47 180.97,230.47 186.66,232.36 189.50,233.27 192.35,234.16 198.04,235.86 203.73,237.48 209.42,239.02 215.11,240.48 220.79,241.88 226.48,243.22 232.17,244.49 237.86,245.71 243.55,246.88 249.24,248.00 254.93,249.07 259.20,249.85 260.62,250.10 266.31,251.09 272.00,252.05 277.69,252.96 283.38,253.85 289.07,254.70 294.76,255.51 300.44,256.30 306.13,257.07 311.82,257.80 317.51,258.51 323.20,259.20 328.89,259.87 ' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,131.06 52.52,126.21 47.72,126.21 50.12,131.06 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,125.52 52.52,130.37 47.72,130.37 50.12,125.52 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,129.65 52.52,124.80 47.72,124.80 50.12,129.65 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,124.10 52.52,128.95 47.72,128.95 50.12,124.10 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='52.44,135.45 54.84,130.60 50.04,130.60 52.44,135.45 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='52.44,129.91 54.84,134.76 50.04,134.76 52.44,129.91 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='52.44,117.57 54.84,112.72 50.04,112.72 52.44,117.57 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='52.44,112.03 54.84,116.88 50.04,116.88 52.44,112.03 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='57.09,140.47 59.49,135.62 54.69,135.62 57.09,140.47 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='57.09,134.92 59.49,139.77 54.69,139.77 57.09,134.92 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='57.09,144.54 59.49,139.69 54.69,139.69 57.09,144.54 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='57.09,139.00 59.49,143.85 54.69,143.85 57.09,139.00 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='66.38,142.66 68.78,137.81 63.98,137.81 66.38,142.66 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='66.38,137.12 68.78,141.97 63.98,141.97 66.38,137.12 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='66.38,157.87 68.78,153.02 63.98,153.02 66.38,157.87 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='66.38,152.33 68.78,157.18 63.98,157.18 66.38,152.33 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='82.64,168.54 85.04,163.69 80.24,163.69 82.64,168.54 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='82.64,162.99 85.04,167.84 80.24,167.84 82.64,162.99 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='82.64,172.77 85.04,167.92 80.24,167.92 82.64,172.77 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='82.64,167.23 85.04,172.08 80.24,172.08 82.64,167.23 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='115.16,188.30 117.56,183.45 112.76,183.45 115.16,188.30 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='115.16,182.75 117.56,187.60 112.76,187.60 115.16,182.75 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='115.16,183.59 117.56,178.74 112.76,178.74 115.16,183.59 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='115.16,178.05 117.56,182.90 112.76,182.90 115.16,178.05 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='189.50,224.21 191.90,219.36 187.10,219.36 189.50,224.21 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='189.50,218.66 191.90,223.51 187.10,223.51 189.50,218.66 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='189.50,225.77 191.90,220.92 187.10,220.92 189.50,225.77 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='189.50,220.23 191.90,225.08 187.10,225.08 189.50,220.23 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='259.20,244.12 261.60,239.27 256.80,239.27 259.20,244.12 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='259.20,238.58 261.60,243.43 256.80,243.43 259.20,238.58 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='259.20,237.69 261.60,232.84 256.80,232.84 259.20,237.69 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='259.20,232.15 261.60,237.00 256.80,237.00 259.20,232.15 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='328.89,252.12 331.29,247.27 326.49,247.27 328.89,252.12 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='328.89,246.58 331.29,251.42 326.49,251.42 328.89,246.58 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='328.89,251.96 331.29,247.11 326.49,247.11 328.89,251.96 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='328.89,246.42 331.29,251.27 326.49,251.27 328.89,246.42 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,125.44 52.44,128.76 55.81,133.38 57.09,135.08 61.50,140.73 66.38,146.61 67.19,147.55 72.87,153.87 78.56,159.74 82.64,163.69 84.25,165.19 89.94,170.27 95.63,174.99 101.32,179.40 107.01,183.52 112.70,187.37 115.16,188.96 118.39,190.97 124.08,194.35 129.77,197.52 135.46,200.50 141.15,203.30 146.83,205.94 152.52,208.43 158.21,210.78 163.90,213.00 169.59,215.11 175.28,217.11 180.97,219.01 186.66,220.81 189.50,221.68 192.35,222.53 198.04,224.17 203.73,225.74 209.42,227.23 215.11,228.66 220.79,230.03 226.48,231.35 232.17,232.61 237.86,233.82 243.55,234.99 249.24,236.12 254.93,237.20 259.20,237.99 260.62,238.25 266.31,239.26 272.00,240.24 277.69,241.18 283.38,242.10 289.07,242.99 294.76,243.85 300.44,244.68 306.13,245.49 311.82,246.28 317.51,247.05 323.20,247.79 328.89,248.52 ' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='137.70' x2='51.90' y2='137.70' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='139.48' x2='50.12' y2='135.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='48.34' y='135.91' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='123.11' x2='51.90' y2='123.11' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='124.89' x2='50.12' y2='121.33' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='48.34' y='121.33' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='127.50' x2='54.22' y2='127.50' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='129.29' x2='52.44' y2='125.72' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='50.66' y='125.72' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='132.99' x2='54.22' y2='132.99' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='134.77' x2='52.44' y2='131.21' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='50.66' y='131.21' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='120.76' x2='58.87' y2='120.76' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='122.54' x2='57.09' y2='118.98' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='55.30' y='118.98' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='139.89' x2='58.87' y2='139.89' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='141.67' x2='57.09' y2='138.11' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='55.30' y='138.11' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='160.28' x2='68.16' y2='160.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='162.06' x2='66.38' y2='158.50' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='64.60' y='158.50' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='145.54' x2='68.16' y2='145.54' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='147.32' x2='66.38' y2='143.75' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='64.60' y='143.75' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='174.23' x2='84.42' y2='174.23' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='176.02' x2='82.64' y2='172.45' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='80.86' y='172.45' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='171.57' x2='84.42' y2='171.57' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='173.35' x2='82.64' y2='169.79' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='80.86' y='169.79' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='201.52' x2='116.95' y2='201.52' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='203.30' x2='115.16' y2='199.74' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='113.38' y='199.74' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='199.64' x2='116.95' y2='199.64' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='201.42' x2='115.16' y2='197.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='113.38' y='197.86' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='236.17' x2='191.29' y2='236.17' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='237.96' x2='189.50' y2='234.39' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='187.72' y='234.39' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='236.49' x2='191.29' y2='236.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='238.27' x2='189.50' y2='234.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='187.72' y='234.71' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='253.74' x2='260.98' y2='253.74' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='255.52' x2='259.20' y2='251.96' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='257.42' y='251.96' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='249.19' x2='260.98' y2='249.19' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='250.97' x2='259.20' y2='247.41' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='257.42' y='247.41' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='260.32' x2='330.67' y2='260.32' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='262.11' x2='328.89' y2='258.54' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='327.11' y='258.54' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='261.26' x2='330.67' y2='261.26' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='263.05' x2='328.89' y2='259.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='327.11' y='259.48' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,125.46 52.44,129.50 55.81,135.11 57.09,137.17 61.50,143.97 66.38,151.01 67.19,152.12 72.87,159.62 78.56,166.54 82.64,171.16 84.25,172.92 89.94,178.81 95.63,184.26 101.32,189.31 107.01,194.00 112.70,198.34 115.16,200.13 118.39,202.39 124.08,206.15 129.77,209.66 135.46,212.94 141.15,216.00 146.83,218.87 152.52,221.56 158.21,224.08 163.90,226.46 169.59,228.69 175.28,230.80 180.97,232.79 186.66,234.67 189.50,235.57 192.35,236.45 198.04,238.13 203.73,239.73 209.42,241.25 215.11,242.70 220.79,244.08 226.48,245.39 232.17,246.64 237.86,247.83 243.55,248.98 249.24,250.07 254.93,251.12 259.20,251.87 260.62,252.12 266.31,253.08 272.00,254.01 277.69,254.90 283.38,255.75 289.07,256.57 294.76,257.36 300.44,258.12 306.13,258.86 311.82,259.56 317.51,260.25 323.20,260.91 328.89,261.54 ' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='50.12' cy='125.31' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='127.09' x2='51.90' y2='123.53' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='123.53' x2='51.90' y2='127.09' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='50.12' cy='128.60' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='130.38' x2='51.90' y2='126.82' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='126.82' x2='51.90' y2='130.38' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='52.44' cy='126.88' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='128.66' x2='54.22' y2='125.09' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='125.09' x2='54.22' y2='128.66' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='52.44' cy='115.74' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='117.52' x2='54.22' y2='113.96' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='113.96' x2='54.22' y2='117.52' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='57.09' cy='138.64' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='140.42' x2='58.87' y2='136.86' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='136.86' x2='58.87' y2='140.42' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='57.09' cy='126.41' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='128.19' x2='58.87' y2='124.62' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='124.62' x2='58.87' y2='128.19' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='66.38' cy='152.91' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='154.69' x2='68.16' y2='151.13' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='151.13' x2='68.16' y2='154.69' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='66.38' cy='150.08' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='151.87' x2='68.16' y2='148.30' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='148.30' x2='68.16' y2='151.87' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='82.64' cy='173.61' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='175.39' x2='84.42' y2='171.82' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='171.82' x2='84.42' y2='175.39' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='82.64' cy='180.19' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='181.97' x2='84.42' y2='178.41' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='178.41' x2='84.42' y2='181.97' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='115.16' cy='205.75' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='207.53' x2='116.95' y2='203.97' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='203.97' x2='116.95' y2='207.53' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='115.16' cy='204.03' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='205.81' x2='116.95' y2='202.25' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='202.25' x2='116.95' y2='205.81' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='189.50' cy='243.86' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='245.64' x2='191.29' y2='242.08' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='242.08' x2='191.29' y2='245.64' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='189.50' cy='239.94' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='241.72' x2='191.29' y2='238.16' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='238.16' x2='191.29' y2='241.72' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='259.20' cy='258.44' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='260.22' x2='260.98' y2='256.66' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='256.66' x2='260.98' y2='260.22' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='259.20' cy='252.17' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='253.95' x2='260.98' y2='250.39' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='250.39' x2='260.98' y2='253.95' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='328.89' cy='262.52' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='264.30' x2='330.67' y2='260.74' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='260.74' x2='330.67' y2='264.30' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='328.89' cy='261.11' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='262.89' x2='330.67' y2='259.33' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='259.33' x2='330.67' y2='262.89' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,123.24 52.44,127.85 55.81,134.22 57.09,136.55 61.50,144.20 66.38,152.05 67.19,153.29 72.87,161.56 78.56,169.12 82.64,174.13 84.25,176.02 89.94,182.34 95.63,188.13 101.32,193.44 107.01,198.33 112.70,202.83 115.16,204.67 118.39,206.98 124.08,210.82 129.77,214.38 135.46,217.67 141.15,220.74 146.83,223.59 152.52,226.24 158.21,228.72 163.90,231.05 169.59,233.22 175.28,235.26 180.97,237.19 186.66,238.99 189.50,239.86 192.35,240.70 198.04,242.31 203.73,243.84 209.42,245.28 215.11,246.65 220.79,247.95 226.48,249.19 232.17,250.37 237.86,251.49 243.55,252.57 249.24,253.59 254.93,254.57 259.20,255.28 260.62,255.51 266.31,256.41 272.00,257.27 277.69,258.10 283.38,258.89 289.07,259.66 294.76,260.39 300.44,261.10 306.13,261.78 311.82,262.43 317.51,263.06 323.20,263.67 328.89,264.26 ' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,116.00 51.90,119.56 48.34,119.56 50.12,116.00 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='48.34' y='116.00' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,122.43 51.90,125.99 48.34,125.99 50.12,122.43 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='48.34' y='122.43' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='52.44,126.35 54.22,129.91 50.66,129.91 52.44,126.35 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='50.66' y='126.35' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='52.44,116.31 54.22,119.88 50.66,119.88 52.44,116.31 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='50.66' y='116.31' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='57.09,141.56 58.87,145.12 55.30,145.12 57.09,141.56 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='55.30' y='141.56' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='57.09,145.64 58.87,149.20 55.30,149.20 57.09,145.64 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='55.30' y='145.64' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='66.38,156.61 68.16,160.18 64.60,160.18 66.38,156.61 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='64.60' y='156.61' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='66.38,155.67 68.16,159.24 64.60,159.24 66.38,155.67 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='64.60' y='155.67' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='82.64,186.72 84.42,190.29 80.86,190.29 82.64,186.72 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='80.86' y='186.72' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='82.64,177.94 84.42,181.50 80.86,181.50 82.64,177.94 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='80.86' y='177.94' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='115.16,207.11 116.95,210.67 113.38,210.67 115.16,207.11 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='113.38' y='207.11' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='115.16,204.28 116.95,207.85 113.38,207.85 115.16,204.28 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='113.38' y='204.28' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='189.50,238.94 191.29,242.50 187.72,242.50 189.50,238.94 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='187.72' y='238.94' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='189.50,239.72 191.29,243.29 187.72,243.29 189.50,239.72 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='187.72' y='239.72' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='259.20,253.05 260.98,256.62 257.42,256.62 259.20,253.05 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='257.42' y='253.05' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='259.20,249.76 260.98,253.32 257.42,253.32 259.20,249.76 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='257.42' y='249.76' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='328.89,262.15 330.67,265.71 327.11,265.71 328.89,262.15 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='327.11' y='262.15' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='328.89,261.83 330.67,265.40 327.11,265.40 328.89,261.83 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='327.11' y='261.83' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,123.25 52.44,129.14 55.81,137.11 57.09,139.98 61.50,149.20 66.38,158.35 67.19,159.77 72.87,169.03 78.56,177.17 82.64,182.41 84.25,184.35 89.94,190.71 95.63,196.35 101.32,201.39 107.01,205.89 112.70,209.95 115.16,211.57 118.39,213.60 124.08,216.92 129.77,219.93 135.46,222.69 141.15,225.23 146.83,227.56 152.52,229.72 158.21,231.73 163.90,233.61 169.59,235.36 175.28,237.01 180.97,238.57 186.66,240.04 189.50,240.74 192.35,241.43 198.04,242.75 203.73,244.01 209.42,245.21 215.11,246.36 220.79,247.47 226.48,248.52 232.17,249.54 237.86,250.52 243.55,251.46 249.24,252.36 254.93,253.24 259.20,253.88 260.62,254.08 266.31,254.90 272.00,255.69 277.69,256.46 283.38,257.20 289.07,257.91 294.76,258.61 300.44,259.28 306.13,259.93 311.82,260.57 317.51,261.18 323.20,261.77 328.89,262.35 ' style='stroke-width: 0.75; stroke: #F5C710; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='48.34,118.94 51.90,118.94 51.90,115.37 48.34,115.37 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='48.34,117.21 51.90,117.21 51.90,113.65 48.34,113.65 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='50.66,128.19 54.22,128.19 54.22,124.62 50.66,124.62 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='50.66,130.85 54.22,130.85 54.22,127.29 50.66,127.29 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='55.30,146.38 58.87,146.38 58.87,142.81 55.30,142.81 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='55.30,140.42 58.87,140.42 58.87,136.86 55.30,136.86 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='64.60,162.53 68.16,162.53 68.16,158.97 64.60,158.97 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='64.60,164.57 68.16,164.57 68.16,161.00 64.60,161.00 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='80.86,186.37 84.42,186.37 84.42,182.80 80.86,182.80 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='80.86,193.11 84.42,193.11 84.42,189.54 80.86,189.54 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='113.38,213.81 116.95,213.81 116.95,210.24 113.38,210.24 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='113.38,210.36 116.95,210.36 116.95,206.79 113.38,206.79 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='187.72,237.96 191.29,237.96 191.29,234.39 187.72,234.39 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='187.72,238.27 191.29,238.27 191.29,234.71 187.72,234.71 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='257.42,250.81 260.98,250.81 260.98,247.25 257.42,247.25 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='257.42,249.40 260.98,249.40 260.98,245.84 257.42,245.84 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='327.11,259.91 330.67,259.91 330.67,256.35 327.11,256.35 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='327.11,255.05 330.67,255.05 330.67,251.48 327.11,251.48 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,122.60 52.44,129.34 55.81,138.30 57.09,141.47 61.50,151.50 66.38,161.18 67.19,162.64 72.87,172.08 78.56,180.12 82.64,185.16 84.25,187.01 89.94,192.93 95.63,198.06 101.32,202.54 107.01,206.47 112.70,209.94 115.16,211.33 118.39,213.04 124.08,215.82 129.77,218.34 135.46,220.63 141.15,222.73 146.83,224.67 152.52,226.48 158.21,228.16 163.90,229.75 169.59,231.25 175.28,232.67 180.97,234.02 186.66,235.31 189.50,235.94 192.35,236.55 198.04,237.74 203.73,238.88 209.42,239.99 215.11,241.05 220.79,242.09 226.48,243.09 232.17,244.06 237.86,245.00 243.55,245.92 249.24,246.81 254.93,247.68 259.20,248.31 260.62,248.52 266.31,249.34 272.00,250.14 277.69,250.92 283.38,251.68 289.07,252.42 294.76,253.14 300.44,253.84 306.13,254.53 311.82,255.20 317.51,255.85 323.20,256.49 328.89,257.11 ' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<defs>
  <clipPath id='cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0'>
    <rect x='398.97' y='102.24' width='301.08' height='186.63' />
  </clipPath>
</defs>
<defs>
  <clipPath id='cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA='>
    <rect x='0.00' y='0.00' width='720.00' height='576.00' />
  </clipPath>
</defs>
<line x1='410.12' y1='288.88' x2='684.42' y2='288.88' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='410.12' y1='288.88' x2='410.12' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='464.98' y1='288.88' x2='464.98' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='519.84' y1='288.88' x2='519.84' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='574.70' y1='288.88' x2='574.70' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='629.56' y1='288.88' x2='629.56' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='684.42' y1='288.88' x2='684.42' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='407.92' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='460.59' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='515.45' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='570.31' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>60</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='625.17' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>80</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='677.84' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='13.17px' lengthAdjust='spacingAndGlyphs'>100</text></g>
<line x1='398.97' y1='271.22' x2='398.97' y2='119.90' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='271.22' x2='394.21' y2='271.22' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='233.39' x2='394.21' y2='233.39' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='195.56' x2='394.21' y2='195.56' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='157.73' x2='394.21' y2='157.73' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='119.90' x2='394.21' y2='119.90' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,274.74) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='7.03px' lengthAdjust='spacingAndGlyphs'>-4</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,236.91) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='7.03px' lengthAdjust='spacingAndGlyphs'>-2</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,197.76) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,159.92) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>2</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,122.09) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>4</text></g>
<polyline points='398.97,288.88 700.04,288.88 700.04,102.24 398.97,102.24 398.97,288.88 ' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<defs>
  <clipPath id='cpMzYwLjAwfDcyMC4wMHwzMTcuMzl8ODIuMjk='>
    <rect x='360.00' y='82.29' width='360.00' height='235.10' />
  </clipPath>
</defs>
<g clip-path='url(#cpMzYwLjAwfDcyMC4wMHwzMTcuMzl8ODIuMjk=)'><text x='532.82' y='324.99' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='33.38px' lengthAdjust='spacingAndGlyphs'>Predicted</text></g>
<g clip-path='url(#cpMzYwLjAwfDcyMC4wMHwzMTcuMzl8ODIuMjk=)'><text transform='translate(368.55,233.76) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='76.41px' lengthAdjust='spacingAndGlyphs'>Standardized residual</text></g>
<defs>
  <clipPath id='cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0'>
    <rect x='398.97' y='102.24' width='301.08' height='186.63' />
  </clipPath>
</defs>
<line x1='398.97' y1='195.56' x2='700.04' y2='195.56' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='682.64' cy='157.35' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='682.64' cy='216.54' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='672.74' cy='186.90' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='672.74' cy='241.96' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='654.79' cy='258.86' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='654.79' cy='148.74' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='625.07' cy='202.18' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='625.07' cy='226.95' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='587.57' cy='169.36' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='587.57' cy='207.90' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='543.90' cy='188.48' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='543.90' cy='174.03' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='498.53' cy='194.40' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='498.53' cy='193.72' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='474.71' cy='204.14' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='474.71' cy='206.20' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='457.76' cy='189.15' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='457.76' cy='195.35' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='684.28,183.49 686.68,187.65 681.88,187.65 684.28,183.49 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='684.28,195.19 686.68,199.35 681.88,199.35 684.28,195.19 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='676.45,207.87 678.85,212.03 674.05,212.03 676.45,207.87 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='676.45,200.30 678.85,204.46 674.05,204.46 676.45,200.30 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='661.75,201.98 664.15,206.14 659.35,206.14 661.75,201.98 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='661.75,219.87 664.15,224.03 659.35,224.03 661.75,219.87 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='635.89,155.68 638.29,159.83 633.49,159.83 635.89,155.68 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='635.89,197.66 638.29,201.82 633.49,201.82 635.89,197.66 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='599.86,186.40 602.26,190.55 597.46,190.55 599.86,186.40 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='599.86,151.98 602.26,156.14 597.46,156.14 599.86,151.98 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='551.83,211.80 554.23,215.96 549.43,215.96 551.83,211.80 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='551.83,224.88 554.23,229.03 549.43,229.03 551.83,224.88 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='499.14,211.05 501.54,215.21 496.74,215.21 499.14,211.05 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='499.14,192.47 501.54,196.63 496.74,196.63 499.14,192.47 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='475.52,177.94 477.92,182.10 473.12,182.10 475.52,177.94 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='475.52,186.89 477.92,191.05 473.12,191.05 475.52,186.89 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='460.18,183.50 462.58,187.66 457.78,187.66 460.18,183.50 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='460.18,196.58 462.58,200.73 457.78,200.73 460.18,196.58 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='680.33' y1='261.82' x2='685.37' y2='261.82' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.85' y1='264.34' x2='682.85' y2='259.30' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='680.33' y1='204.01' x2='685.37' y2='204.01' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.85' y1='206.53' x2='682.85' y2='201.49' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='673.90' y1='180.29' x2='678.94' y2='180.29' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='676.42' y1='182.81' x2='676.42' y2='177.77' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='673.90' y1='184.42' x2='678.94' y2='184.42' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='676.42' y1='186.94' x2='676.42' y2='181.90' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='661.58' y1='165.21' x2='666.62' y2='165.21' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='664.10' y1='167.73' x2='664.10' y2='162.69' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='661.58' y1='212.69' x2='666.62' y2='212.69' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='664.10' y1='215.21' x2='664.10' y2='210.17' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='638.99' y1='199.38' x2='644.03' y2='199.38' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='641.51' y1='201.90' x2='641.51' y2='196.86' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='638.99' y1='206.27' x2='644.03' y2='206.27' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='641.51' y1='208.79' x2='641.51' y2='203.75' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='605.18' y1='173.75' x2='610.22' y2='173.75' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='607.70' y1='176.27' x2='607.70' y2='171.23' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='605.18' y1='223.99' x2='610.22' y2='223.99' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='607.70' y1='226.51' x2='607.70' y2='221.47' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='554.36' y1='176.99' x2='559.40' y2='176.99' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='556.88' y1='179.51' x2='556.88' y2='174.47' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='554.36' y1='190.07' x2='559.40' y2='190.07' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='556.88' y1='192.59' x2='556.88' y2='187.55' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='488.18' y1='188.53' x2='493.22' y2='188.53' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='490.70' y1='191.05' x2='490.70' y2='186.01' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='488.18' y1='202.29' x2='493.22' y2='202.29' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='490.70' y1='204.81' x2='490.70' y2='199.77' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='457.09' y1='192.41' x2='462.13' y2='192.41' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='459.61' y1='194.93' x2='459.61' y2='189.89' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='457.09' y1='192.41' x2='462.13' y2='192.41' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='459.61' y1='194.93' x2='459.61' y2='189.89' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='439.35' y1='211.90' x2='444.39' y2='211.90' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='441.87' y1='214.42' x2='441.87' y2='209.38' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='439.35' y1='195.38' x2='444.39' y2='195.38' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='441.87' y1='197.90' x2='441.87' y2='192.86' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.26' y1='186.06' x2='685.82' y2='182.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.26' y1='182.49' x2='685.82' y2='186.06' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.26' y1='179.86' x2='685.82' y2='176.30' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.26' y1='176.30' x2='685.82' y2='179.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='675.23' y1='156.72' x2='678.79' y2='153.16' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='675.23' y1='153.16' x2='678.79' y2='156.72' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='675.23' y1='245.51' x2='678.79' y2='241.94' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='675.23' y1='241.94' x2='678.79' y2='245.51' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='661.81' y1='218.73' x2='665.38' y2='215.17' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='661.81' y1='215.17' x2='665.38' y2='218.73' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='661.81' y1='219.42' x2='665.38' y2='215.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='661.81' y1='215.86' x2='665.38' y2='219.42' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='637.35' y1='178.67' x2='640.91' y2='175.11' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='637.35' y1='175.11' x2='640.91' y2='178.67' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='637.35' y1='246.81' x2='640.91' y2='243.25' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='637.35' y1='243.25' x2='640.91' y2='246.81' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='601.07' y1='210.17' x2='604.64' y2='206.61' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='601.07' y1='206.61' x2='604.64' y2='210.17' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='601.07' y1='170.94' x2='604.64' y2='167.38' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='601.07' y1='167.38' x2='604.64' y2='170.94' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='547.53' y1='191.44' x2='551.09' y2='187.88' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='547.53' y1='187.88' x2='551.09' y2='191.44' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='547.53' y1='201.77' x2='551.09' y2='198.20' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='547.53' y1='198.20' x2='551.09' y2='201.77' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='480.48' y1='187.71' x2='484.04' y2='184.14' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='480.48' y1='184.14' x2='484.04' y2='187.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='480.48' y1='187.02' x2='484.04' y2='183.46' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='480.48' y1='183.46' x2='484.04' y2='187.02' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='450.69' y1='192.79' x2='454.25' y2='189.23' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='450.69' y1='189.23' x2='454.25' y2='192.79' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='450.69' y1='194.86' x2='454.25' y2='191.29' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='450.69' y1='191.29' x2='454.25' y2='194.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='434.48' y1='199.61' x2='438.04' y2='196.05' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='434.48' y1='196.05' x2='438.04' y2='199.61' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='434.48' y1='205.12' x2='438.04' y2='201.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='434.48' y1='201.56' x2='438.04' y2='205.12' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='684.87,153.46 687.39,150.94 689.91,153.46 687.39,155.98 684.87,153.46 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='684.87,151.40 687.39,148.88 689.91,151.40 687.39,153.92 684.87,151.40 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='670.47,202.65 672.99,200.13 675.51,202.65 672.99,205.17 670.47,202.65 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='670.47,257.71 672.99,255.19 675.51,257.71 672.99,260.23 670.47,257.71 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='645.71,191.46 648.23,188.94 650.75,191.46 648.23,193.98 645.71,191.46 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='645.71,189.40 648.23,186.88 650.75,189.40 648.23,191.92 645.71,189.40 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='608.67,185.26 611.19,182.74 613.71,185.26 611.19,187.78 608.67,185.26 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='608.67,203.16 611.19,200.64 613.71,203.16 611.19,205.68 608.67,203.16 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='568.80,210.47 571.32,207.95 573.84,210.47 571.32,212.99 568.80,210.47 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='568.80,200.14 571.32,197.62 573.84,200.14 571.32,202.66 568.80,200.14 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='529.65,176.94 532.17,174.42 534.69,176.94 532.17,179.46 529.65,176.94 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='529.65,171.43 532.17,168.91 534.69,171.43 532.17,173.95 529.65,171.43 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='487.72,208.02 490.24,205.50 492.76,208.02 490.24,210.54 487.72,208.02 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='487.72,187.37 490.24,184.85 492.76,187.37 490.24,189.89 487.72,187.37 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='463.25,202.36 465.77,199.84 468.29,202.36 465.77,204.88 463.25,202.36 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='463.25,197.54 465.77,195.02 468.29,197.54 465.77,200.06 463.25,197.54 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='446.29,198.35 448.81,195.83 451.33,198.35 448.81,200.87 446.29,198.35 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='446.29,201.80 448.81,199.28 451.33,201.80 448.81,204.32 446.29,201.80 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='684.40,179.68 686.80,175.53 682.00,175.53 684.40,179.68 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='684.40,176.93 686.80,172.77 682.00,172.77 684.40,176.93 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='676.45,223.06 678.85,218.90 674.05,218.90 676.45,223.06 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='676.45,246.46 678.85,242.30 674.05,242.30 676.45,246.46 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='661.67,184.60 664.07,180.44 659.27,180.44 661.67,184.60 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='661.67,213.50 664.07,209.35 659.27,209.35 661.67,213.50 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='636.04,179.49 638.44,175.33 633.64,175.33 636.04,179.49 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='636.04,176.74 638.44,172.58 633.64,172.58 636.04,176.74 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='601.22,183.66 603.62,179.51 598.82,179.51 601.22,183.66 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='601.22,248.36 603.62,244.20 598.82,244.20 601.22,248.36 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='556.49,155.39 558.89,151.24 554.09,151.24 556.49,155.39 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='556.49,212.52 558.89,208.36 554.09,208.36 556.49,212.52 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='508.50,199.46 510.90,195.31 506.10,195.31 508.50,199.46 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='508.50,208.41 510.90,204.25 506.10,204.25 508.50,208.41 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='485.61,192.96 488.01,188.81 483.21,188.81 485.61,192.96 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='485.61,197.09 488.01,192.94 483.21,192.94 485.61,197.09 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='469.59,195.45 471.99,191.29 467.19,191.29 469.59,195.45 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='469.59,209.90 471.99,205.75 467.19,205.75 469.59,209.90 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='681.87' y='222.12' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='681.87' y1='225.69' x2='685.43' y2='222.12' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='681.87' y1='222.12' x2='685.43' y2='225.69' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='681.87' y='156.05' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='681.87' y1='159.62' x2='685.43' y2='156.05' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='681.87' y1='156.05' x2='685.43' y2='159.62' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='669.29' y='176.81' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='669.29' y1='180.37' x2='672.86' y2='176.81' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='669.29' y1='176.81' x2='672.86' y2='180.37' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='669.29' y='221.54' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='669.29' y1='225.11' x2='672.86' y2='221.54' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='669.29' y1='221.54' x2='672.86' y2='225.11' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='646.41' y='261.85' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='646.41' y1='265.41' x2='649.97' y2='261.85' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='646.41' y1='261.85' x2='649.97' y2='265.41' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='646.41' y='188.90' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='646.41' y1='192.46' x2='649.97' y2='188.90' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='646.41' y1='188.90' x2='649.97' y2='192.46' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='608.34' y='228.98' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='608.34' y1='232.54' x2='611.91' y2='228.98' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='608.34' y1='228.98' x2='611.91' y2='232.54' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='608.34' y='143.63' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='608.34' y1='147.20' x2='611.91' y2='143.63' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='608.34' y1='143.63' x2='611.91' y2='147.20' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='560.18' y='165.25' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='560.18' y1='168.82' x2='563.74' y2='165.25' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='560.18' y1='165.25' x2='563.74' y2='168.82' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='560.18' y='185.90' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='560.18' y1='189.46' x2='563.74' y2='185.90' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='560.18' y1='185.90' x2='563.74' y2='189.46' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='504.99' y='198.15' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='504.99' y1='201.72' x2='508.55' y2='198.15' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='504.99' y1='198.15' x2='508.55' y2='201.72' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='504.99' y='190.58' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='504.99' y1='194.15' x2='508.55' y2='190.58' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='504.99' y1='190.58' x2='508.55' y2='194.15' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='454.91' y='201.89' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='454.91' y1='205.45' x2='458.47' y2='201.89' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='454.91' y1='201.89' x2='458.47' y2='205.45' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='454.91' y='203.95' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='454.91' y1='207.52' x2='458.47' y2='203.95' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='454.91' y1='203.95' x2='458.47' y2='207.52' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='435.25' y='190.43' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='435.25' y1='193.99' x2='438.82' y2='190.43' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='435.25' y1='190.43' x2='438.82' y2='193.99' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='435.25' y='195.94' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='435.25' y1='199.50' x2='438.82' y2='195.94' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='435.25' y1='195.94' x2='438.82' y2='199.50' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='424.31' y='191.88' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='424.31' y1='195.45' x2='427.88' y2='191.88' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='424.31' y1='191.88' x2='427.88' y2='195.45' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='424.31' y='180.18' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='424.31' y1='183.75' x2='427.88' y2='180.18' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='424.31' y1='180.18' x2='427.88' y2='183.75' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='683.67' y1='219.89' x2='687.24' y2='216.33' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='683.67' y1='216.33' x2='687.24' y2='219.89' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.94' y1='218.11' x2='687.98' y2='218.11' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='685.46' y1='220.63' x2='685.46' y2='215.59' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='683.67' y1='148.32' x2='687.24' y2='144.75' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='683.67' y1='144.75' x2='687.24' y2='148.32' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.94' y1='146.53' x2='687.98' y2='146.53' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='685.46' y1='149.05' x2='685.46' y2='144.01' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='665.95' y1='167.84' x2='669.51' y2='164.28' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='665.95' y1='164.28' x2='669.51' y2='167.84' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='665.21' y1='166.06' x2='670.25' y2='166.06' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='667.73' y1='168.58' x2='667.73' y2='163.54' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='665.95' y1='237.36' x2='669.51' y2='233.79' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='665.95' y1='233.79' x2='669.51' y2='237.36' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='665.21' y1='235.57' x2='670.25' y2='235.57' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='667.73' y1='238.09' x2='667.73' y2='233.05' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='635.71' y1='178.00' x2='639.27' y2='174.44' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='635.71' y1='174.44' x2='639.27' y2='178.00' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='634.97' y1='176.22' x2='640.01' y2='176.22' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='637.49' y1='178.74' x2='637.49' y2='173.70' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='635.71' y1='248.89' x2='639.27' y2='245.33' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='635.71' y1='245.33' x2='639.27' y2='248.89' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='634.97' y1='247.11' x2='640.01' y2='247.11' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='637.49' y1='249.63' x2='637.49' y2='244.59' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='591.32' y1='174.68' x2='594.88' y2='171.12' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='591.32' y1='171.12' x2='594.88' y2='174.68' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='590.58' y1='172.90' x2='595.62' y2='172.90' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='593.10' y1='175.42' x2='593.10' y2='170.38' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='591.32' y1='197.39' x2='594.88' y2='193.83' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='591.32' y1='193.83' x2='594.88' y2='197.39' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='590.58' y1='195.61' x2='595.62' y2='195.61' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='593.10' y1='198.13' x2='593.10' y2='193.09' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='545.83' y1='217.48' x2='549.40' y2='213.91' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='545.83' y1='213.91' x2='549.40' y2='217.48' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='545.10' y1='215.70' x2='550.14' y2='215.70' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='547.62' y1='218.22' x2='547.62' y2='213.18' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='545.83' y1='193.39' x2='549.40' y2='189.83' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='545.83' y1='189.83' x2='549.40' y2='193.39' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='545.10' y1='191.61' x2='550.14' y2='191.61' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='547.62' y1='194.13' x2='547.62' y2='189.09' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='506.97' y1='201.87' x2='510.53' y2='198.31' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='506.97' y1='198.31' x2='510.53' y2='201.87' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='506.23' y1='200.09' x2='511.27' y2='200.09' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='508.75' y1='202.61' x2='508.75' y2='197.57' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='506.97' y1='190.17' x2='510.53' y2='186.61' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='506.97' y1='186.61' x2='510.53' y2='190.17' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='506.23' y1='188.39' x2='511.27' y2='188.39' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='508.75' y1='190.91' x2='508.75' y2='185.87' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='474.33' y1='201.89' x2='477.90' y2='198.32' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='474.33' y1='198.32' x2='477.90' y2='201.89' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='473.60' y1='200.10' x2='478.64' y2='200.10' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='476.12' y1='202.62' x2='476.12' y2='197.58' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='474.33' y1='197.76' x2='477.90' y2='194.19' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='474.33' y1='194.19' x2='477.90' y2='197.76' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='473.60' y1='195.98' x2='478.64' y2='195.98' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='476.12' y1='198.50' x2='476.12' y2='193.46' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='456.12' y1='193.35' x2='459.68' y2='189.78' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='456.12' y1='189.78' x2='459.68' y2='193.35' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.38' y1='191.57' x2='460.42' y2='191.57' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='457.90' y1='194.09' x2='457.90' y2='189.05' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='456.12' y1='194.72' x2='459.68' y2='191.16' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='456.12' y1='191.16' x2='459.68' y2='194.72' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.38' y1='192.94' x2='460.42' y2='192.94' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='457.90' y1='195.46' x2='457.90' y2='190.42' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='443.00' y1='196.22' x2='446.56' y2='192.66' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='443.00' y1='192.66' x2='446.56' y2='196.22' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='442.26' y1='194.44' x2='447.30' y2='194.44' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='444.78' y1='196.96' x2='444.78' y2='191.92' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='443.00' y1='192.09' x2='446.56' y2='188.53' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='443.00' y1='188.53' x2='446.56' y2='192.09' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='442.26' y1='190.31' x2='447.30' y2='190.31' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='444.78' y1='192.83' x2='444.78' y2='187.79' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='685.28' y1='133.83' x2='690.32' y2='133.83' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='687.80' y1='136.35' x2='687.80' y2='131.31' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='685.28,133.83 687.80,131.31 690.32,133.83 687.80,136.35 685.28,133.83 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='685.28' y1='265.29' x2='690.32' y2='265.29' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='687.80' y1='267.81' x2='687.80' y2='262.77' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='685.28,265.29 687.80,262.77 690.32,265.29 687.80,267.81 685.28,265.29 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='673.76' y1='184.07' x2='678.80' y2='184.07' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='676.28' y1='186.59' x2='676.28' y2='181.55' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='673.76,184.07 676.28,181.55 678.80,184.07 676.28,186.59 673.76,184.07 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='673.76' y1='144.84' x2='678.80' y2='144.84' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='676.28' y1='147.36' x2='676.28' y2='142.32' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='673.76,144.84 676.28,142.32 678.80,144.84 676.28,147.36 673.76,144.84 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='652.81' y1='229.93' x2='657.85' y2='229.93' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='655.33' y1='232.45' x2='655.33' y2='227.41' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='652.81,229.93 655.33,227.41 657.85,229.93 655.33,232.45 652.81,229.93 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='652.81' y1='190.01' x2='657.85' y2='190.01' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='655.33' y1='192.53' x2='655.33' y2='187.49' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='652.81,190.01 655.33,187.49 657.85,190.01 655.33,192.53 652.81,190.01 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='618.03' y1='181.89' x2='623.07' y2='181.89' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='620.55' y1='184.41' x2='620.55' y2='179.37' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='618.03,181.89 620.55,179.37 623.07,181.89 620.55,184.41 618.03,181.89 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='618.03' y1='210.11' x2='623.07' y2='210.11' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='620.55' y1='212.63' x2='620.55' y2='207.59' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='618.03,210.11 620.55,207.59 623.07,210.11 620.55,212.63 618.03,210.11 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='574.07' y1='219.57' x2='579.11' y2='219.57' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='576.59' y1='222.09' x2='576.59' y2='217.05' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='574.07,219.57 576.59,217.05 579.11,219.57 576.59,222.09 574.07,219.57 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='574.07' y1='182.41' x2='579.11' y2='182.41' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='576.59' y1='184.93' x2='576.59' y2='179.89' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='574.07,182.41 576.59,179.89 579.11,182.41 576.59,184.93 574.07,182.41 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='523.36' y1='193.52' x2='528.40' y2='193.52' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='525.88' y1='196.04' x2='525.88' y2='191.00' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='523.36,193.52 525.88,191.00 528.40,193.52 525.88,196.04 523.36,193.52 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='523.36' y1='174.94' x2='528.40' y2='174.94' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='525.88' y1='177.46' x2='525.88' y2='172.42' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='523.36,174.94 525.88,172.42 528.40,174.94 525.88,177.46 523.36,174.94 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='474.45' y1='197.43' x2='479.49' y2='197.43' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='476.97' y1='199.95' x2='476.97' y2='194.91' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='474.45,197.43 476.97,194.91 479.49,197.43 476.97,199.95 474.45,197.43 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='474.45' y1='191.24' x2='479.49' y2='191.24' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='476.97' y1='193.76' x2='476.97' y2='188.72' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='474.45,191.24 476.97,188.72 479.49,191.24 476.97,193.76 474.45,191.24 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='452.07' y1='183.27' x2='457.11' y2='183.27' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='454.59' y1='185.79' x2='454.59' y2='180.75' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='452.07,183.27 454.59,180.75 457.11,183.27 454.59,185.79 452.07,183.27 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='452.07' y1='203.23' x2='457.11' y2='203.23' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='454.59' y1='205.75' x2='454.59' y2='200.71' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='452.07,203.23 454.59,200.71 457.11,203.23 454.59,205.75 452.07,203.23 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='437.70' y1='210.52' x2='442.74' y2='210.52' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='440.22' y1='213.04' x2='440.22' y2='208.00' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='437.70,210.52 440.22,208.00 442.74,210.52 440.22,213.04 437.70,210.52 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='437.70' y1='185.05' x2='442.74' y2='185.05' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='440.22' y1='187.57' x2='440.22' y2='182.53' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='437.70,185.05 440.22,182.53 442.74,185.05 440.22,187.57 437.70,185.05 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='686.65' cy='190.82' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='684.87' y1='190.82' x2='688.43' y2='190.82' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='686.65' y1='192.60' x2='686.65' y2='189.04' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='686.65' cy='192.19' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='684.87' y1='192.19' x2='688.43' y2='192.19' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='686.65' y1='193.98' x2='686.65' y2='190.41' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='679.65' cy='187.72' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='677.87' y1='187.72' x2='681.43' y2='187.72' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='679.65' y1='189.50' x2='679.65' y2='185.94' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='679.65' cy='173.27' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='677.87' y1='173.27' x2='681.43' y2='173.27' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='679.65' y1='175.05' x2='679.65' y2='171.48' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='666.37' cy='199.14' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='664.59' y1='199.14' x2='668.15' y2='199.14' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='666.37' y1='200.92' x2='666.37' y2='197.35' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='666.37' cy='211.52' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='664.59' y1='211.52' x2='668.15' y2='211.52' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='666.37' y1='213.31' x2='666.37' y2='209.74' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='642.41' cy='242.24' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='640.63' y1='242.24' x2='644.19' y2='242.24' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='642.41' y1='244.03' x2='642.41' y2='240.46' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='642.41' cy='188.56' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='640.63' y1='188.56' x2='644.19' y2='188.56' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='642.41' y1='190.34' x2='642.41' y2='186.78' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='607.50' cy='178.05' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='605.71' y1='178.05' x2='609.28' y2='178.05' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='607.50' y1='179.83' x2='607.50' y2='176.27' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='607.50' cy='180.12' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='605.71' y1='180.12' x2='609.28' y2='180.12' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='607.50' y1='181.90' x2='607.50' y2='178.33' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='557.24' cy='216.45' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='555.46' y1='216.45' x2='559.02' y2='216.45' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='557.24' y1='218.23' x2='557.24' y2='214.66' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='557.24' cy='166.21' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='555.46' y1='166.21' x2='559.02' y2='166.21' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='557.24' y1='167.99' x2='557.24' y2='164.42' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='495.29' cy='204.87' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='493.51' y1='204.87' x2='497.08' y2='204.87' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='495.29' y1='206.65' x2='495.29' y2='203.08' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='495.29' cy='204.18' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='493.51' y1='204.18' x2='497.08' y2='204.18' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='495.29' y1='205.96' x2='495.29' y2='202.40' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='466.29' cy='175.45' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='464.51' y1='175.45' x2='468.07' y2='175.45' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='466.29' y1='177.24' x2='466.29' y2='173.67' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='466.29' cy='194.72' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='464.51' y1='194.72' x2='468.07' y2='194.72' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='466.29' y1='196.51' x2='466.29' y2='192.94' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='448.77' cy='203.76' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='446.99' y1='203.76' x2='450.55' y2='203.76' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='448.77' y1='205.54' x2='448.77' y2='201.98' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='448.77' cy='193.43' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='446.99' y1='193.43' x2='450.55' y2='193.43' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='448.77' y1='195.22' x2='448.77' y2='191.65' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='683.92,210.83 686.32,205.98 681.52,205.98 683.92,210.83 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='683.92,205.29 686.32,210.14 681.52,210.14 683.92,205.29 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='683.92,204.64 686.32,199.79 681.52,199.79 683.92,204.64 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='683.92,199.10 686.32,203.95 681.52,203.95 683.92,199.10 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='678.12,215.54 680.52,210.69 675.72,210.69 678.12,215.54 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='678.12,210.00 680.52,214.85 675.72,214.85 678.12,210.00 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='678.12,137.08 680.52,132.23 675.72,132.23 678.12,137.08 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='678.12,131.54 680.52,136.39 675.72,136.39 678.12,131.54 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='667.05,209.79 669.45,204.94 664.65,204.94 667.05,209.79 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='667.05,204.25 669.45,209.10 664.65,209.10 667.05,204.25 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='667.05,227.69 669.45,222.84 664.65,222.84 667.05,227.69 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='667.05,222.14 669.45,226.99 664.65,226.99 667.05,222.14 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='646.88,168.83 649.28,163.98 644.48,163.98 646.88,168.83 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='646.88,163.29 649.28,168.14 644.48,168.14 646.88,163.29 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='646.88,235.59 649.28,230.74 644.48,230.74 646.88,235.59 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='646.88,230.05 649.28,234.90 644.48,234.90 646.88,230.05 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='617.02,207.46 619.42,202.61 614.62,202.61 617.02,207.46 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='617.02,201.92 619.42,206.77 614.62,206.77 617.02,201.92 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='617.02,226.04 619.42,221.20 614.62,221.20 617.02,226.04 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='617.02,220.50 619.42,225.35 614.62,225.35 617.02,220.50 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='572.80,183.25 575.20,178.40 570.40,178.40 572.80,183.25 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='572.80,177.70 575.20,182.55 570.40,182.55 572.80,177.70 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='572.80,162.60 575.20,157.75 570.40,157.75 572.80,162.60 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='572.80,157.06 575.20,161.91 570.40,161.91 572.80,157.06 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='515.56,197.24 517.96,192.39 513.16,192.39 515.56,197.24 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='515.56,191.70 517.96,196.55 513.16,196.55 515.56,191.70 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='515.56,204.12 517.96,199.27 513.16,199.27 515.56,204.12 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='515.56,198.58 517.96,203.43 513.16,203.43 515.56,198.58 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='487.04,213.07 489.44,208.22 484.64,208.22 487.04,213.07 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='487.04,207.53 489.44,212.38 484.64,212.38 487.04,207.53 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='487.04,184.85 489.44,180.00 484.64,180.00 487.04,184.85 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='487.04,179.31 489.44,184.16 484.64,184.16 487.04,179.31 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='468.62,201.97 471.02,197.12 466.22,197.12 468.62,201.97 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='468.62,196.43 471.02,201.28 466.22,201.28 468.62,196.43 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='468.62,201.28 471.02,196.43 466.22,196.43 468.62,201.28 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='468.62,195.74 471.02,200.59 466.22,200.59 468.62,195.74 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.11' y1='249.28' x2='685.67' y2='249.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='683.89' y1='251.06' x2='683.89' y2='247.50' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='682.11' y='247.50' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.11' y1='185.28' x2='685.67' y2='185.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='683.89' y1='187.06' x2='683.89' y2='183.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='682.11' y='183.49' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='675.04' y1='186.81' x2='678.60' y2='186.81' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='676.82' y1='188.60' x2='676.82' y2='185.03' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='675.04' y='185.03' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='675.04' y1='210.90' x2='678.60' y2='210.90' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='676.82' y1='212.68' x2='676.82' y2='209.12' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='675.04' y='209.12' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='661.62' y1='123.56' x2='665.19' y2='123.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='663.41' y1='125.34' x2='663.41' y2='121.77' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='661.62' y='121.77' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='661.62' y1='207.52' x2='665.19' y2='207.52' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='663.41' y1='209.30' x2='663.41' y2='205.74' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='661.62' y='205.74' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='637.41' y1='236.25' x2='640.98' y2='236.25' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='639.20' y1='238.03' x2='639.20' y2='234.47' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='637.41' y='234.47' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='637.41' y1='171.55' x2='640.98' y2='171.55' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='639.20' y1='173.34' x2='639.20' y2='169.77' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='637.41' y='169.77' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='602.16' y1='209.04' x2='605.72' y2='209.04' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='603.94' y1='210.82' x2='603.94' y2='207.26' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='602.16' y='207.26' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='602.16' y1='197.34' x2='605.72' y2='197.34' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='603.94' y1='199.12' x2='603.94' y2='195.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='602.16' y='195.56' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='551.48' y1='201.65' x2='555.04' y2='201.65' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='553.26' y1='203.43' x2='553.26' y2='199.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='551.48' y='199.86' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='551.48' y1='193.39' x2='555.04' y2='193.39' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='553.26' y1='195.17' x2='553.26' y2='191.61' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='551.48' y='191.61' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='489.49' y1='198.21' x2='493.05' y2='198.21' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='491.27' y1='199.99' x2='491.27' y2='196.43' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='489.49' y='196.43' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='489.49' y1='199.58' x2='493.05' y2='199.58' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='491.27' y1='201.37' x2='491.27' y2='197.80' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='489.49' y='197.80' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='460.97' y1='203.74' x2='464.53' y2='203.74' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='462.75' y1='205.52' x2='462.75' y2='201.96' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='460.97' y='201.96' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='460.97' y1='183.78' x2='464.53' y2='183.78' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='462.75' y1='185.56' x2='462.75' y2='182.00' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='460.97' y='182.00' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='444.06' y1='190.21' x2='447.62' y2='190.21' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='445.84' y1='191.99' x2='445.84' y2='188.43' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='444.06' y='188.43' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='444.06' y1='194.34' x2='447.62' y2='194.34' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='445.84' y1='196.12' x2='445.84' y2='192.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='444.06' y='192.56' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='687.77' cy='204.65' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='685.99' y1='206.43' x2='689.55' y2='202.87' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='685.99' y1='202.87' x2='689.55' y2='206.43' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='687.77' cy='219.10' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='685.99' y1='220.88' x2='689.55' y2='217.32' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='685.99' y1='217.32' x2='689.55' y2='220.88' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='679.70' cy='191.29' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='677.92' y1='193.07' x2='681.48' y2='189.50' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='677.92' y1='189.50' x2='681.48' y2='193.07' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='679.70' cy='142.42' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='677.92' y1='144.20' x2='681.48' y2='140.64' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='677.92' y1='140.64' x2='681.48' y2='144.20' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='664.48' cy='204.72' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='662.70' y1='206.50' x2='666.27' y2='202.94' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='662.70' y1='202.94' x2='666.27' y2='206.50' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='664.48' cy='151.04' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='662.70' y1='152.82' x2='666.27' y2='149.26' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='662.70' y1='149.26' x2='666.27' y2='152.82' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='637.37' cy='199.32' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='635.59' y1='201.10' x2='639.15' y2='197.54' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='635.59' y1='197.54' x2='639.15' y2='201.10' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='637.37' cy='186.93' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='635.59' y1='188.72' x2='639.15' y2='185.15' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='635.59' y1='185.15' x2='639.15' y2='188.72' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='598.75' cy='193.28' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='596.97' y1='195.06' x2='600.54' y2='191.50' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='596.97' y1='191.50' x2='600.54' y2='195.06' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='598.75' cy='222.19' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='596.97' y1='223.97' x2='600.54' y2='220.41' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='596.97' y1='220.41' x2='600.54' y2='223.97' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='545.32' cy='200.30' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='543.54' y1='202.09' x2='547.10' y2='198.52' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='543.54' y1='198.52' x2='547.10' y2='202.09' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='545.32' cy='192.73' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='543.54' y1='194.52' x2='547.10' y2='190.95' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='543.54' y1='190.95' x2='547.10' y2='194.52' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='483.77' cy='213.11' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='481.99' y1='214.89' x2='485.55' y2='211.33' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='481.99' y1='211.33' x2='485.55' y2='214.89' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='483.77' cy='195.91' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='481.99' y1='197.69' x2='485.55' y2='194.12' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='481.99' y1='194.12' x2='485.55' y2='197.69' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='456.79' cy='209.43' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.01' y1='211.22' x2='458.58' y2='207.65' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.01' y1='207.65' x2='458.58' y2='211.22' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='456.79' cy='181.91' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.01' y1='183.69' x2='458.58' y2='180.12' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.01' y1='180.12' x2='458.58' y2='183.69' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='441.09' cy='187.94' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='439.31' y1='189.72' x2='442.88' y2='186.16' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='439.31' y1='186.16' x2='442.88' y2='189.72' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='441.09' cy='181.75' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='439.31' y1='183.53' x2='442.88' y2='179.96' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='439.31' y1='179.96' x2='442.88' y2='183.53' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='687.75,169.77 689.53,173.34 685.97,173.34 687.75,169.77 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='685.97' y='169.77' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='687.75,197.99 689.53,201.55 685.97,201.55 687.75,197.99 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='685.97' y='197.99' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='677.44,189.33 679.22,192.89 675.66,192.89 677.44,189.33 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='675.66' y='189.33' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='677.44,145.28 679.22,148.85 675.66,148.85 677.44,145.28 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='675.66' y='145.28' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='658.49,208.54 660.27,212.10 656.70,212.10 658.49,208.54 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='656.70' y='208.54' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='658.49,226.43 660.27,230.00 656.70,230.00 658.49,226.43 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='656.70' y='226.43' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='626.34,193.96 628.13,197.53 624.56,197.53 626.34,193.96 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='624.56' y='193.96' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='626.34,189.83 628.13,193.40 624.56,193.40 626.34,189.83 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='624.56' y='189.83' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='584.27,220.54 586.05,224.11 582.49,224.11 584.27,220.54 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='582.49' y='220.54' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='584.27,182.00 586.05,185.56 582.49,185.56 584.27,182.00 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='582.49' y='182.00' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='533.25,181.99 535.03,185.55 531.46,185.55 533.25,181.99 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='531.46' y='181.99' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='533.25,169.60 535.03,173.17 531.46,173.17 533.25,169.60 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='531.46' y='169.60' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='482.23,193.69 484.01,197.26 480.44,197.26 482.23,193.69 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='480.44' y='193.69' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='482.23,197.13 484.01,200.70 480.44,200.70 482.23,197.13 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='480.44' y='197.13' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='459.25,197.99 461.03,201.55 457.47,201.55 459.25,197.99 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='457.47' y='197.99' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='459.25,183.54 461.03,187.10 457.47,187.10 459.25,183.54 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='457.47' y='183.54' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='444.42,200.70 446.20,204.27 442.64,204.27 444.42,200.70 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='442.64' y='200.70' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polyline points='444.42,199.33 446.20,202.89 442.64,202.89 444.42,199.33 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='442.64' y='199.33' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='687.11,173.45 690.67,173.45 690.67,169.89 687.11,169.89 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='687.11,165.88 690.67,165.88 690.67,162.32 687.11,162.32 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='675.31,184.45 678.87,184.45 678.87,180.88 675.31,180.88 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='675.31,196.15 678.87,196.15 678.87,192.58 675.31,192.58 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='654.09,211.05 657.65,211.05 657.65,207.48 654.09,207.48 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='654.09,184.89 657.65,184.89 657.65,181.33 654.09,181.33 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='619.62,195.46 623.19,195.46 623.19,191.90 619.62,191.90 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='619.62,204.41 623.19,204.41 623.19,200.84 619.62,200.84 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='577.67,194.81 581.23,194.81 581.23,191.24 577.67,191.24 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='577.67,224.40 581.23,224.40 581.23,220.84 577.67,220.84 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='531.90,200.40 535.46,200.40 535.46,196.84 531.90,196.84 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='531.90,185.26 535.46,185.26 535.46,181.70 531.90,181.70 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='488.85,198.39 492.41,198.39 492.41,194.83 488.85,194.83 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='488.85,199.77 492.41,199.77 492.41,196.20 488.85,196.20 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='467.20,200.51 470.77,200.51 470.77,196.95 467.20,196.95 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='467.20,194.32 470.77,194.32 470.77,190.75 467.20,190.75 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='451.82,201.82 455.38,201.82 455.38,198.26 451.82,198.26 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='451.82,180.49 455.38,180.49 455.38,176.92 451.82,176.92 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<defs>
  <clipPath id='cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU='>
    <rect x='38.97' y='337.35' width='301.08' height='190.18' />
  </clipPath>
</defs>
<polyline points='50.12,520.49 52.44,515.67 55.81,508.97 57.09,506.51 61.50,498.38 66.38,489.97 67.19,488.64 72.87,479.68 78.56,471.44 82.64,465.94 84.25,463.85 89.94,456.86 95.63,450.43 101.32,444.51 107.01,439.05 112.70,434.03 115.16,431.97 118.39,429.40 124.08,425.13 129.77,421.20 135.46,417.58 141.15,414.25 146.83,411.18 152.52,408.36 158.21,405.76 163.90,403.37 169.59,401.18 175.28,399.16 180.97,397.31 186.66,395.62 189.50,394.83 192.35,394.07 198.04,392.65 203.73,391.35 209.42,390.17 215.11,389.10 220.79,388.13 226.48,387.25 232.17,386.46 237.86,385.74 243.55,385.11 249.24,384.54 254.93,384.04 259.20,383.71 260.62,383.61 266.31,383.23 272.00,382.90 277.69,382.63 283.38,382.40 289.07,382.22 294.76,382.08 300.44,381.98 306.13,381.92 311.82,381.89 317.51,381.90 323.20,381.94 328.89,382.00 ' style='stroke-width: 1.50;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<defs>
  <clipPath id='cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA='>
    <rect x='0.00' y='0.00' width='720.00' height='576.00' />
  </clipPath>
</defs>
<line x1='50.12' y1='527.53' x2='328.89' y2='527.53' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='50.12' y1='527.53' x2='50.12' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='96.58' y1='527.53' x2='96.58' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='143.04' y1='527.53' x2='143.04' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='189.50' y1='527.53' x2='189.50' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='235.97' y1='527.53' x2='235.97' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='282.43' y1='527.53' x2='282.43' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='328.89' y1='527.53' x2='328.89' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='47.92' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='92.19' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='138.65' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='185.11' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>60</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='231.58' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>80</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='275.84' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='13.17px' lengthAdjust='spacingAndGlyphs'>100</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='322.30' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='13.17px' lengthAdjust='spacingAndGlyphs'>120</text></g>
<line x1='38.97' y1='520.49' x2='38.97' y2='373.13' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='520.49' x2='34.21' y2='520.49' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='483.65' x2='34.21' y2='483.65' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='446.81' x2='34.21' y2='446.81' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='409.97' x2='34.21' y2='409.97' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='373.13' x2='34.21' y2='373.13' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,522.68) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,488.04) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>10</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,451.20) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,414.36) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>30</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,377.52) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<polyline points='38.97,527.53 340.04,527.53 340.04,337.35 38.97,337.35 38.97,527.53 ' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<defs>
  <clipPath id='cpMC4wMHwzNjAuMDB8NTc2LjAwfDMxNy4zOQ=='>
    <rect x='0.00' y='317.39' width='360.00' height='258.61' />
  </clipPath>
</defs>
<g clip-path='url(#cpMC4wMHwzNjAuMDB8NTc2LjAwfDMxNy4zOQ==)'><text x='180.87' y='563.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='17.27px' lengthAdjust='spacingAndGlyphs'>Time</text></g>
<g clip-path='url(#cpMC4wMHwzNjAuMDB8NTc2LjAwfDMxNy4zOQ==)'><text transform='translate(8.55,437.93) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='10.98px' lengthAdjust='spacingAndGlyphs'>m1</text></g>
<defs>
  <clipPath id='cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU='>
    <rect x='38.97' y='337.35' width='301.08' height='190.18' />
  </clipPath>
</defs>
<circle cx='52.44' cy='511.64' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='52.44' cy='513.49' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='57.09' cy='498.75' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='57.09' cy='504.28' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='66.38' cy='486.59' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='66.38' cy='490.65' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='82.64' cy='459.33' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='82.64' cy='470.01' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='115.16' cy='433.91' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='115.16' cy='432.07' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='189.50' cy='404.81' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='189.50' cy='419.91' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='259.20' cy='401.86' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='259.20' cy='408.86' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='328.89' cy='388.60' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='328.89' cy='403.70' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,514.17 55.81,505.75 57.09,502.75 61.50,493.23 66.38,483.98 67.19,482.57 72.87,473.45 78.56,465.63 82.64,460.70 84.25,458.88 89.94,453.05 95.63,447.98 101.32,443.54 107.01,439.65 112.70,436.21 115.16,434.84 118.39,433.15 124.08,430.42 129.77,427.98 135.46,425.77 141.15,423.77 146.83,421.95 152.52,420.28 158.21,418.74 163.90,417.32 169.59,416.01 175.28,414.79 180.97,413.66 186.66,412.60 189.50,412.09 192.35,411.60 198.04,410.67 203.73,409.80 209.42,408.97 215.11,408.20 220.79,407.47 226.48,406.78 232.17,406.14 237.86,405.53 243.55,404.95 249.24,404.42 254.93,403.91 259.20,403.55 260.62,403.43 266.31,402.99 272.00,402.57 277.69,402.18 283.38,401.81 289.07,401.47 294.76,401.16 300.44,400.87 306.13,400.60 311.82,400.36 317.51,400.14 323.20,399.93 328.89,399.75 ' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='52.44,517.35 54.84,521.50 50.04,521.50 52.44,517.35 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='52.44,510.71 54.84,514.87 50.04,514.87 52.44,510.71 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='57.09,503.72 59.49,507.87 54.69,507.87 57.09,503.72 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='57.09,511.45 59.49,515.61 54.69,515.61 57.09,511.45 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='66.38,488.24 68.78,492.40 63.98,492.40 66.38,488.24 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='66.38,492.66 68.78,496.82 63.98,496.82 66.38,492.66 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='82.64,464.30 85.04,468.45 80.24,468.45 82.64,464.30 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='82.64,471.66 85.04,475.82 80.24,475.82 82.64,471.66 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='115.16,451.03 117.56,455.19 112.76,455.19 115.16,451.03 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='115.16,437.03 117.56,441.19 112.76,441.19 115.16,437.03 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='189.50,421.19 191.90,425.35 187.10,425.35 189.50,421.19 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='189.50,424.14 191.90,428.30 187.10,428.30 189.50,424.14 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='259.20,407.56 261.60,411.72 256.80,411.72 259.20,407.56 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='259.20,407.19 261.60,411.35 256.80,411.35 259.20,407.19 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='328.89,417.51 331.29,421.67 326.49,421.67 328.89,417.51 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='328.89,407.19 331.29,411.35 326.49,411.35 328.89,407.19 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,515.98 55.81,509.79 57.09,507.55 61.50,500.23 66.38,492.82 67.19,491.66 72.87,483.98 78.56,477.09 82.64,472.59 84.25,470.91 89.94,465.35 95.63,460.35 101.32,455.84 107.01,451.78 112.70,448.12 115.16,446.64 118.39,444.81 124.08,441.81 129.77,439.10 135.46,436.64 141.15,434.41 146.83,432.38 152.52,430.53 158.21,428.85 163.90,427.32 169.59,425.91 175.28,424.63 180.97,423.46 186.66,422.38 189.50,421.88 192.35,421.40 198.04,420.49 203.73,419.66 209.42,418.90 215.11,418.20 220.79,417.55 226.48,416.96 232.17,416.41 237.86,415.91 243.55,415.44 249.24,415.02 254.93,414.63 259.20,414.36 260.62,414.27 266.31,413.94 272.00,413.64 277.69,413.37 283.38,413.12 289.07,412.89 294.76,412.69 300.44,412.51 306.13,412.35 311.82,412.20 317.51,412.07 323.20,411.97 328.89,411.87 ' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='49.92' y1='513.49' x2='54.96' y2='513.49' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='516.01' x2='52.44' y2='510.97' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='54.57' y1='508.33' x2='59.61' y2='508.33' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='510.85' x2='57.09' y2='505.81' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='54.57' y1='512.75' x2='59.61' y2='512.75' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='515.27' x2='57.09' y2='510.23' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='63.86' y1='483.65' x2='68.90' y2='483.65' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='486.17' x2='66.38' y2='481.13' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='63.86' y1='486.96' x2='68.90' y2='486.96' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='489.48' x2='66.38' y2='484.44' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.12' y1='469.28' x2='85.16' y2='469.28' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='471.80' x2='82.64' y2='466.76' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.12' y1='462.65' x2='85.16' y2='462.65' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='465.17' x2='82.64' y2='460.13' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='112.64' y1='437.96' x2='117.68' y2='437.96' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='440.48' x2='115.16' y2='435.44' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='112.64' y1='435.39' x2='117.68' y2='435.39' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='437.91' x2='115.16' y2='432.86' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='186.98' y1='404.81' x2='192.02' y2='404.81' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='407.33' x2='189.50' y2='402.29' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='186.98' y1='387.86' x2='192.02' y2='387.86' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='390.38' x2='189.50' y2='385.34' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='256.68' y1='386.02' x2='261.72' y2='386.02' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='388.54' x2='259.20' y2='383.50' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='256.68' y1='394.86' x2='261.72' y2='394.86' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='397.38' x2='259.20' y2='392.34' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='326.37' y1='387.49' x2='331.41' y2='387.49' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='390.01' x2='328.89' y2='384.97' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='326.37' y1='378.28' x2='331.41' y2='378.28' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='380.80' x2='328.89' y2='375.76' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,516.13 55.81,510.05 57.09,507.81 61.50,500.38 66.38,492.66 67.19,491.43 72.87,483.13 78.56,475.44 82.64,470.28 84.25,468.31 89.94,461.70 95.63,455.57 101.32,449.88 107.01,444.60 112.70,439.70 115.16,437.68 118.39,435.15 124.08,430.92 129.77,427.00 135.46,423.35 141.15,419.97 146.83,416.83 152.52,413.91 158.21,411.20 163.90,408.68 169.59,406.35 175.28,404.18 180.97,402.17 186.66,400.31 189.50,399.43 192.35,398.58 198.04,396.98 203.73,395.50 209.42,394.13 215.11,392.86 220.79,391.70 226.48,390.62 232.17,389.63 237.86,388.72 243.55,387.89 249.24,387.13 254.93,386.43 259.20,385.95 260.62,385.80 266.31,385.23 272.00,384.71 277.69,384.25 283.38,383.83 289.07,383.47 294.76,383.14 300.44,382.86 306.13,382.62 311.82,382.42 317.51,382.25 323.20,382.11 328.89,382.01 ' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='513.79' x2='54.22' y2='510.23' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='510.23' x2='54.22' y2='513.79' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='509.37' x2='54.22' y2='505.81' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='505.81' x2='54.22' y2='509.37' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='502.37' x2='58.87' y2='498.81' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='498.81' x2='58.87' y2='502.37' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='510.11' x2='58.87' y2='506.55' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='506.55' x2='58.87' y2='510.11' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='484.32' x2='68.16' y2='480.76' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='480.76' x2='68.16' y2='484.32' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='485.43' x2='68.16' y2='481.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='481.86' x2='68.16' y2='485.43' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='452.64' x2='84.42' y2='449.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='449.08' x2='84.42' y2='452.64' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='468.11' x2='84.42' y2='464.55' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='464.55' x2='84.42' y2='468.11' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='417.27' x2='116.95' y2='413.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='413.71' x2='116.95' y2='417.27' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='420.22' x2='116.95' y2='416.66' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='416.66' x2='116.95' y2='420.22' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='374.91' x2='191.29' y2='371.34' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='371.34' x2='191.29' y2='374.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='368.64' x2='191.29' y2='365.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='365.08' x2='191.29' y2='368.64' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='360.91' x2='260.98' y2='357.34' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='357.34' x2='260.98' y2='360.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='354.65' x2='260.98' y2='351.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='351.08' x2='260.98' y2='354.65' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='357.22' x2='330.67' y2='353.66' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='353.66' x2='330.67' y2='357.22' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='347.65' x2='330.67' y2='344.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='344.08' x2='330.67' y2='347.65' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,514.89 55.81,507.11 57.09,504.24 61.50,494.77 66.38,484.95 67.19,483.39 72.87,472.89 78.56,463.21 82.64,456.73 84.25,454.27 89.94,446.02 95.63,438.40 101.32,431.36 107.01,424.86 112.70,418.86 115.16,416.41 118.39,413.32 124.08,408.20 129.77,403.47 135.46,399.10 141.15,395.06 146.83,391.34 152.52,387.89 158.21,384.72 163.90,381.79 169.59,379.08 175.28,376.59 180.97,374.30 186.66,372.18 189.50,371.19 192.35,370.24 198.04,368.45 203.73,366.81 209.42,365.31 215.11,363.93 220.79,362.68 226.48,361.53 232.17,360.49 237.86,359.54 243.55,358.69 249.24,357.92 254.93,357.23 259.20,356.76 260.62,356.61 266.31,356.07 272.00,355.59 277.69,355.17 283.38,354.81 289.07,354.50 294.76,354.25 300.44,354.04 306.13,353.88 311.82,353.76 317.51,353.68 323.20,353.64 328.89,353.63 ' style='stroke-width: 0.75; stroke: #28E2E5; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='49.92,515.33 52.44,512.81 54.96,515.33 52.44,517.85 49.92,515.33 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='49.92,512.38 52.44,509.86 54.96,512.38 52.44,514.90 49.92,512.38 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='54.57,502.07 57.09,499.55 59.61,502.07 57.09,504.59 54.57,502.07 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='54.57,500.22 57.09,497.70 59.61,500.22 57.09,502.74 54.57,500.22 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='63.86,485.12 66.38,482.60 68.90,485.12 66.38,487.64 63.86,485.12 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='63.86,482.54 66.38,480.02 68.90,482.54 66.38,485.06 63.86,482.54 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='80.12,457.86 82.64,455.34 85.16,457.86 82.64,460.38 80.12,457.86 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='80.12,465.23 82.64,462.71 85.16,465.23 82.64,467.75 80.12,465.23 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='112.64,442.75 115.16,440.23 117.68,442.75 115.16,445.27 112.64,442.75 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='112.64,440.91 115.16,438.39 117.68,440.91 115.16,443.43 112.64,440.91 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='186.98,422.86 189.50,420.34 192.02,422.86 189.50,425.38 186.98,422.86 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='186.98,421.75 189.50,419.23 192.02,421.75 189.50,424.27 186.98,421.75 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='256.68,421.02 259.20,418.50 261.72,421.02 259.20,423.54 256.68,421.02 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='256.68,416.60 259.20,414.08 261.72,416.60 259.20,419.12 256.68,416.60 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='326.37,412.54 328.89,410.02 331.41,412.54 328.89,415.06 326.37,412.54 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='326.37,430.96 328.89,428.44 331.41,430.96 328.89,433.48 326.37,430.96 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,512.96 55.81,503.36 57.09,500.08 61.50,490.06 66.38,480.96 67.19,479.63 72.87,471.37 78.56,464.76 82.64,460.81 84.25,459.40 89.94,454.99 95.63,451.32 101.32,448.21 107.01,445.54 112.70,443.21 115.16,442.28 118.39,441.14 124.08,439.30 129.77,437.63 135.46,436.11 141.15,434.70 146.83,433.40 152.52,432.19 158.21,431.05 163.90,429.98 169.59,428.98 175.28,428.03 180.97,427.14 186.66,426.29 189.50,425.89 192.35,425.49 198.04,424.73 203.73,424.02 209.42,423.35 215.11,422.71 220.79,422.11 226.48,421.54 232.17,421.01 237.86,420.51 243.55,420.04 249.24,419.60 254.93,419.19 259.20,418.91 260.62,418.81 266.31,418.46 272.00,418.13 277.69,417.83 283.38,417.55 289.07,417.30 294.76,417.07 300.44,416.86 306.13,416.68 311.82,416.51 317.51,416.37 323.20,416.24 328.89,416.13 ' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='52.44,512.94 54.84,508.78 50.04,508.78 52.44,512.94 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='52.44,512.20 54.84,508.05 50.04,508.05 52.44,512.20 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='57.09,511.47 59.49,507.31 54.69,507.31 57.09,511.47 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='57.09,519.20 59.49,515.05 54.69,515.05 57.09,519.20 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='66.38,495.63 68.78,491.47 63.98,491.47 66.38,495.63 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='66.38,498.94 68.78,494.79 63.98,494.79 66.38,498.94 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='82.64,473.15 85.04,469.00 80.24,469.00 82.64,473.15 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='82.64,479.79 85.04,475.63 80.24,475.63 82.64,479.79 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='115.16,455.10 117.56,450.95 112.76,450.95 115.16,455.10 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='115.16,456.94 117.56,452.79 112.76,452.79 115.16,456.94 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='189.50,444.05 191.90,439.89 187.10,439.89 189.50,444.05 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='189.50,440.37 191.90,436.21 187.10,436.21 189.50,440.37 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='259.20,430.79 261.60,426.63 256.80,426.63 259.20,430.79 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='259.20,427.84 261.60,423.68 256.80,423.68 259.20,427.84 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='328.89,434.47 331.29,430.32 326.49,430.32 328.89,434.47 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='328.89,435.95 331.29,431.79 326.49,431.79 328.89,435.95 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,516.34 55.81,510.69 57.09,508.64 61.50,502.03 66.38,495.40 67.19,494.37 72.87,487.59 78.56,481.57 82.64,477.68 84.25,476.23 89.94,471.47 95.63,467.24 101.32,463.45 107.01,460.07 112.70,457.03 115.16,455.81 118.39,454.31 124.08,451.85 129.77,449.64 135.46,447.64 141.15,445.83 146.83,444.18 152.52,442.68 158.21,441.31 163.90,440.06 169.59,438.91 175.28,437.86 180.97,436.89 186.66,435.99 189.50,435.57 192.35,435.16 198.04,434.40 203.73,433.68 209.42,433.02 215.11,432.41 220.79,431.84 226.48,431.30 232.17,430.80 237.86,430.34 243.55,429.90 249.24,429.49 254.93,429.11 259.20,428.84 260.62,428.76 266.31,428.42 272.00,428.11 277.69,427.82 283.38,427.55 289.07,427.30 294.76,427.06 300.44,426.84 306.13,426.64 311.82,426.46 317.51,426.28 323.20,426.12 328.89,425.98 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='50.66' y='512.44' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='516.00' x2='54.22' y2='512.44' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='512.44' x2='54.22' y2='516.00' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='50.66' y='505.07' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='508.64' x2='54.22' y2='505.07' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='505.07' x2='54.22' y2='508.64' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='55.30' y='492.18' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='495.74' x2='58.87' y2='492.18' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='492.18' x2='58.87' y2='495.74' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='55.30' y='499.92' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='503.48' x2='58.87' y2='499.92' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='499.92' x2='58.87' y2='503.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='64.60' y='468.60' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='472.17' x2='68.16' y2='468.60' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='468.60' x2='68.16' y2='472.17' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='64.60' y='467.13' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='470.69' x2='68.16' y2='467.13' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='467.13' x2='68.16' y2='470.69' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='80.86' y='431.39' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='434.96' x2='84.42' y2='431.39' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='431.39' x2='84.42' y2='434.96' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='80.86' y='450.55' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='454.11' x2='84.42' y2='450.55' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='450.55' x2='84.42' y2='454.11' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='113.38' y='400.82' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='404.38' x2='116.95' y2='400.82' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='400.82' x2='116.95' y2='404.38' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='113.38' y='405.97' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='409.54' x2='116.95' y2='405.97' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='405.97' x2='116.95' y2='409.54' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='187.72' y='389.76' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='393.33' x2='191.29' y2='389.76' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='389.76' x2='191.29' y2='393.33' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='187.72' y='387.18' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='390.75' x2='191.29' y2='387.18' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='387.18' x2='191.29' y2='390.75' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='257.42' y='395.66' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='399.22' x2='260.98' y2='395.66' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='395.66' x2='260.98' y2='399.22' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='257.42' y='377.24' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='380.80' x2='260.98' y2='377.24' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='377.24' x2='260.98' y2='380.80' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='327.11' y='395.66' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='399.22' x2='330.67' y2='395.66' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='395.66' x2='330.67' y2='399.22' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='327.11' y='373.92' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='377.49' x2='330.67' y2='373.92' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='373.92' x2='330.67' y2='377.49' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,512.52 55.81,501.86 57.09,498.07 61.50,485.98 66.38,474.20 67.19,472.40 72.87,460.78 78.56,450.80 82.64,444.51 84.25,442.21 89.94,434.80 95.63,428.39 101.32,422.83 107.01,417.99 112.70,413.77 115.16,412.11 118.39,410.08 124.08,406.84 129.77,404.00 135.46,401.49 141.15,399.28 146.83,397.32 152.52,395.58 158.21,394.03 163.90,392.66 169.59,391.43 175.28,390.34 180.97,389.38 186.66,388.51 189.50,388.12 192.35,387.75 198.04,387.07 203.73,386.47 209.42,385.94 215.11,385.48 220.79,385.08 226.48,384.73 232.17,384.44 237.86,384.19 243.55,383.99 249.24,383.83 254.93,383.71 259.20,383.64 260.62,383.62 266.31,383.57 272.00,383.55 277.69,383.56 283.38,383.60 289.07,383.66 294.76,383.75 300.44,383.87 306.13,384.01 311.82,384.16 317.51,384.34 323.20,384.54 328.89,384.76 ' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='513.06' x2='54.22' y2='509.49' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='509.49' x2='54.22' y2='513.06' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='49.92' y1='511.28' x2='54.96' y2='511.28' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='513.80' x2='52.44' y2='508.76' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='509.74' x2='54.22' y2='506.18' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='506.18' x2='54.22' y2='509.74' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='49.92' y1='507.96' x2='54.96' y2='507.96' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='510.48' x2='52.44' y2='505.44' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='493.90' x2='58.87' y2='490.34' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='490.34' x2='58.87' y2='493.90' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='54.57' y1='492.12' x2='59.61' y2='492.12' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='494.64' x2='57.09' y2='489.60' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='488.37' x2='58.87' y2='484.81' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='484.81' x2='58.87' y2='488.37' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='54.57' y1='486.59' x2='59.61' y2='486.59' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='489.11' x2='57.09' y2='484.07' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='459.64' x2='68.16' y2='456.08' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='456.08' x2='68.16' y2='459.64' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='63.86' y1='457.86' x2='68.90' y2='457.86' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='460.38' x2='66.38' y2='455.34' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='460.38' x2='68.16' y2='456.81' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='456.81' x2='68.16' y2='460.38' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='63.86' y1='458.59' x2='68.90' y2='458.59' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='461.11' x2='66.38' y2='456.07' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='430.54' x2='84.42' y2='426.97' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='426.97' x2='84.42' y2='430.54' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.12' y1='428.75' x2='85.16' y2='428.75' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='431.27' x2='82.64' y2='426.23' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='441.22' x2='84.42' y2='437.66' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='437.66' x2='84.42' y2='441.22' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.12' y1='439.44' x2='85.16' y2='439.44' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='441.96' x2='82.64' y2='436.92' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='397.01' x2='116.95' y2='393.45' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='393.45' x2='116.95' y2='397.01' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='112.64' y1='395.23' x2='117.68' y2='395.23' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='397.75' x2='115.16' y2='392.71' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='391.49' x2='116.95' y2='387.92' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='387.92' x2='116.95' y2='391.49' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='112.64' y1='389.70' x2='117.68' y2='389.70' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='392.22' x2='115.16' y2='387.18' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='377.12' x2='191.29' y2='373.55' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='373.55' x2='191.29' y2='377.12' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='186.98' y1='375.34' x2='192.02' y2='375.34' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='377.86' x2='189.50' y2='372.82' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='399.22' x2='191.29' y2='395.66' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='395.66' x2='191.29' y2='399.22' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='186.98' y1='397.44' x2='192.02' y2='397.44' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='399.96' x2='189.50' y2='394.92' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='382.64' x2='260.98' y2='379.08' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='379.08' x2='260.98' y2='382.64' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='256.68' y1='380.86' x2='261.72' y2='380.86' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='383.38' x2='259.20' y2='378.34' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='396.27' x2='260.98' y2='392.71' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='392.71' x2='260.98' y2='396.27' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='256.68' y1='394.49' x2='261.72' y2='394.49' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='397.01' x2='259.20' y2='391.97' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='374.91' x2='330.67' y2='371.34' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='371.34' x2='330.67' y2='374.91' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='326.37' y1='373.13' x2='331.41' y2='373.13' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='375.65' x2='328.89' y2='370.61' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='393.70' x2='330.67' y2='390.13' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='390.13' x2='330.67' y2='393.70' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='326.37' y1='391.91' x2='331.41' y2='391.91' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='394.43' x2='328.89' y2='389.39' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,508.25 55.81,492.74 57.09,487.45 61.50,471.47 66.38,457.17 67.19,455.10 72.87,442.44 78.56,432.58 82.64,426.85 84.25,424.85 89.94,418.73 95.63,413.85 101.32,409.90 107.01,406.67 112.70,404.00 115.16,402.98 118.39,401.75 124.08,399.84 129.77,398.19 135.46,396.75 141.15,395.47 146.83,394.33 152.52,393.30 158.21,392.36 163.90,391.51 169.59,390.72 175.28,389.99 180.97,389.31 186.66,388.68 189.50,388.39 192.35,388.10 198.04,387.56 203.73,387.05 209.42,386.58 215.11,386.15 220.79,385.74 226.48,385.37 232.17,385.02 237.86,384.71 243.55,384.42 249.24,384.16 254.93,383.92 259.20,383.76 260.62,383.71 266.31,383.52 272.00,383.35 277.69,383.21 283.38,383.08 289.07,382.98 294.76,382.90 300.44,382.84 306.13,382.80 311.82,382.77 317.51,382.77 323.20,382.78 328.89,382.81 ' style='stroke-width: 0.75; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='49.92' y1='505.38' x2='54.96' y2='505.38' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='507.90' x2='52.44' y2='502.86' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='49.92,505.38 52.44,502.86 54.96,505.38 52.44,507.90 49.92,505.38 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='49.92' y1='509.07' x2='54.96' y2='509.07' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='511.59' x2='52.44' y2='506.55' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='49.92,509.07 52.44,506.55 54.96,509.07 52.44,511.59 49.92,509.07 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='54.57' y1='487.70' x2='59.61' y2='487.70' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='490.22' x2='57.09' y2='485.18' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='54.57,487.70 57.09,485.18 59.61,487.70 57.09,490.22 54.57,487.70 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='54.57' y1='493.22' x2='59.61' y2='493.22' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='495.74' x2='57.09' y2='490.70' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='54.57,493.22 57.09,490.70 59.61,493.22 57.09,495.74 54.57,493.22 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='63.86' y1='461.17' x2='68.90' y2='461.17' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='463.69' x2='66.38' y2='458.65' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='63.86,461.17 66.38,458.65 68.90,461.17 66.38,463.69 63.86,461.17 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='63.86' y1='469.28' x2='68.90' y2='469.28' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='471.80' x2='66.38' y2='466.76' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='63.86,469.28 66.38,466.76 68.90,469.28 66.38,471.80 63.86,469.28 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.12' y1='429.12' x2='85.16' y2='429.12' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='431.64' x2='82.64' y2='426.60' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='80.12,429.12 82.64,426.60 85.16,429.12 82.64,431.64 80.12,429.12 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.12' y1='429.86' x2='85.16' y2='429.86' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='432.38' x2='82.64' y2='427.34' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='80.12,429.86 82.64,427.34 85.16,429.86 82.64,432.38 80.12,429.86 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='112.64' y1='391.91' x2='117.68' y2='391.91' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='394.43' x2='115.16' y2='389.39' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='112.64,391.91 115.16,389.39 117.68,391.91 115.16,394.43 112.64,391.91 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='112.64' y1='404.81' x2='117.68' y2='404.81' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='407.33' x2='115.16' y2='402.29' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='112.64,404.81 115.16,402.29 117.68,404.81 115.16,407.33 112.64,404.81 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='186.98' y1='361.70' x2='192.02' y2='361.70' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='364.22' x2='189.50' y2='359.18' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='186.98,361.70 189.50,359.18 192.02,361.70 189.50,364.22 186.98,361.70 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='186.98' y1='355.44' x2='192.02' y2='355.44' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='357.96' x2='189.50' y2='352.92' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='186.98,355.44 189.50,352.92 192.02,355.44 189.50,357.96 186.98,355.44 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='256.68' y1='361.70' x2='261.72' y2='361.70' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='364.22' x2='259.20' y2='359.18' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='256.68,361.70 259.20,359.18 261.72,361.70 259.20,364.22 256.68,361.70 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='256.68' y1='358.76' x2='261.72' y2='358.76' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='361.28' x2='259.20' y2='356.24' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='256.68,358.76 259.20,356.24 261.72,358.76 259.20,361.28 256.68,358.76 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='326.37' y1='344.39' x2='331.41' y2='344.39' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='346.91' x2='328.89' y2='341.87' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='326.37,344.39 328.89,341.87 331.41,344.39 328.89,346.91 326.37,344.39 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='326.37' y1='353.23' x2='331.41' y2='353.23' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='355.75' x2='328.89' y2='350.71' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='326.37,353.23 328.89,350.71 331.41,353.23 328.89,355.75 326.37,353.23 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,511.20 55.81,498.79 57.09,494.37 61.50,480.31 66.38,466.63 67.19,464.54 72.87,451.04 78.56,439.46 82.64,432.16 84.25,429.48 89.94,420.86 95.63,413.39 101.32,406.89 107.01,401.22 112.70,396.24 115.16,394.27 118.39,391.86 124.08,387.98 129.77,384.55 135.46,381.49 141.15,378.75 146.83,376.29 152.52,374.08 158.21,372.08 163.90,370.27 169.59,368.62 175.28,367.12 180.97,365.76 186.66,364.50 189.50,363.92 192.35,363.36 198.04,362.31 203.73,361.35 209.42,360.47 215.11,359.66 220.79,358.92 226.48,358.25 232.17,357.63 237.86,357.07 243.55,356.56 249.24,356.10 254.93,355.68 259.20,355.40 260.62,355.31 266.31,354.98 272.00,354.70 277.69,354.44 283.38,354.23 289.07,354.05 294.76,353.90 300.44,353.78 306.13,353.69 311.82,353.63 317.51,353.60 323.20,353.60 328.89,353.62 ' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='52.44' cy='514.59' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='514.59' x2='54.22' y2='514.59' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='516.37' x2='52.44' y2='512.81' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='52.44' cy='517.17' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='517.17' x2='54.22' y2='517.17' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='518.95' x2='52.44' y2='515.39' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='57.09' cy='507.22' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='507.22' x2='58.87' y2='507.22' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='509.01' x2='57.09' y2='505.44' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='57.09' cy='503.91' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='503.91' x2='58.87' y2='503.91' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='505.69' x2='57.09' y2='502.13' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='66.38' cy='483.28' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='483.28' x2='68.16' y2='483.28' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='485.06' x2='66.38' y2='481.50' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='66.38' cy='479.96' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='479.96' x2='68.16' y2='479.96' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='481.74' x2='66.38' y2='478.18' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='82.64' cy='456.02' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='456.02' x2='84.42' y2='456.02' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='457.80' x2='82.64' y2='454.23' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='82.64' cy='457.86' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='457.86' x2='84.42' y2='457.86' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='459.64' x2='82.64' y2='456.08' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='115.16' cy='416.60' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='416.60' x2='116.95' y2='416.60' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='418.38' x2='115.16' y2='414.81' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='115.16' cy='417.33' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='417.33' x2='116.95' y2='417.33' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='419.12' x2='115.16' y2='415.55' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='189.50' cy='383.81' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='383.81' x2='191.29' y2='383.81' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='385.59' x2='189.50' y2='382.03' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='189.50' cy='391.18' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='391.18' x2='191.29' y2='391.18' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='392.96' x2='189.50' y2='389.39' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='259.20' cy='368.34' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='368.34' x2='260.98' y2='368.34' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='370.12' x2='259.20' y2='366.55' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='259.20' cy='361.34' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='361.34' x2='260.98' y2='361.34' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='363.12' x2='259.20' y2='359.55' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='328.89' cy='355.07' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='355.07' x2='330.67' y2='355.07' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='356.86' x2='328.89' y2='353.29' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='328.89' cy='349.55' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='349.55' x2='330.67' y2='349.55' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='351.33' x2='328.89' y2='347.77' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,514.92 55.81,507.22 57.09,504.40 61.50,495.10 66.38,485.53 67.19,484.02 72.87,473.88 78.56,464.59 82.64,458.42 84.25,456.08 89.94,448.28 95.63,441.12 101.32,434.55 107.01,428.51 112.70,422.96 115.16,420.69 118.39,417.85 124.08,413.14 129.77,408.81 135.46,404.81 141.15,401.13 146.83,397.72 152.52,394.58 158.21,391.68 163.90,388.99 169.59,386.51 175.28,384.22 180.97,382.09 186.66,380.13 189.50,379.20 192.35,378.31 198.04,376.63 203.73,375.07 209.42,373.63 215.11,372.30 220.79,371.07 226.48,369.93 232.17,368.89 237.86,367.92 243.55,367.03 249.24,366.21 254.93,365.46 259.20,364.94 260.62,364.78 266.31,364.15 272.00,363.58 277.69,363.06 283.38,362.59 289.07,362.17 294.76,361.79 300.44,361.46 306.13,361.16 311.82,360.91 317.51,360.69 323.20,360.50 328.89,360.34 ' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='52.44,518.10 54.84,513.25 50.04,513.25 52.44,518.10 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='52.44,512.56 54.84,517.41 50.04,517.41 52.44,512.56 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='52.44,517.36 54.84,512.51 50.04,512.51 52.44,517.36 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='52.44,511.82 54.84,516.67 50.04,516.67 52.44,511.82 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='57.09,516.99 59.49,512.14 54.69,512.14 57.09,516.99 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='57.09,511.45 59.49,516.30 54.69,516.30 57.09,511.45 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='57.09,509.99 59.49,505.14 54.69,505.14 57.09,509.99 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='57.09,504.45 59.49,509.30 54.69,509.30 57.09,504.45 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='66.38,501.52 68.78,496.67 63.98,496.67 66.38,501.52 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='66.38,495.98 68.78,500.83 63.98,500.83 66.38,495.98 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='66.38,503.36 68.78,498.51 63.98,498.51 66.38,503.36 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='66.38,497.82 68.78,502.67 63.98,502.67 66.38,497.82 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='82.64,480.89 85.04,476.04 80.24,476.04 82.64,480.89 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='82.64,475.35 85.04,480.20 80.24,480.20 82.64,475.35 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='82.64,487.52 85.04,482.67 80.24,482.67 82.64,487.52 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='82.64,481.98 85.04,486.83 80.24,486.83 82.64,481.98 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='115.16,461.73 117.56,456.88 112.76,456.88 115.16,461.73 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='115.16,456.19 117.56,461.04 112.76,461.04 115.16,456.19 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='115.16,449.21 117.56,444.36 112.76,444.36 115.16,449.21 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='115.16,443.67 117.56,448.52 112.76,448.52 115.16,443.67 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='189.50,421.95 191.90,417.10 187.10,417.10 189.50,421.95 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='189.50,416.40 191.90,421.25 187.10,421.25 189.50,416.40 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='189.50,429.68 191.90,424.83 187.10,424.83 189.50,429.68 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='189.50,424.14 191.90,428.99 187.10,428.99 189.50,424.14 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='259.20,425.63 261.60,420.78 256.80,420.78 259.20,425.63 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='259.20,420.09 261.60,424.94 256.80,424.94 259.20,420.09 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='259.20,426.37 261.60,421.52 256.80,421.52 259.20,426.37 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='259.20,420.83 261.60,425.67 256.80,425.67 259.20,420.83 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='328.89,409.42 331.29,404.57 326.49,404.57 328.89,409.42 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='328.89,403.88 331.29,408.73 326.49,408.73 328.89,403.88 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='328.89,413.47 331.29,408.62 326.49,408.62 328.89,413.47 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='328.89,407.93 331.29,412.78 326.49,412.78 328.89,407.93 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,517.00 55.81,512.16 57.09,510.38 61.50,504.49 66.38,498.38 67.19,497.42 72.87,490.90 78.56,484.89 82.64,480.87 84.25,479.34 89.94,474.21 95.63,469.48 101.32,465.10 107.01,461.05 112.70,457.30 115.16,455.76 118.39,453.82 124.08,450.60 129.77,447.61 135.46,444.84 141.15,442.27 146.83,439.87 152.52,437.65 158.21,435.58 163.90,433.66 169.59,431.86 175.28,430.19 180.97,428.64 186.66,427.18 189.50,426.50 192.35,425.83 198.04,424.57 203.73,423.39 209.42,422.28 215.11,421.26 220.79,420.30 226.48,419.40 232.17,418.56 237.86,417.78 243.55,417.04 249.24,416.36 254.93,415.72 259.20,415.27 260.62,415.13 266.31,414.57 272.00,414.06 277.69,413.58 283.38,413.13 289.07,412.72 294.76,412.33 300.44,411.98 306.13,411.65 311.82,411.34 317.51,411.06 323.20,410.81 328.89,410.58 ' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='519.38' x2='54.22' y2='519.38' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='521.16' x2='52.44' y2='517.60' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='50.66' y='517.60' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='511.28' x2='54.22' y2='511.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='513.06' x2='52.44' y2='509.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='50.66' y='509.49' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='506.85' x2='58.87' y2='506.85' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='508.64' x2='57.09' y2='505.07' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='55.30' y='505.07' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='505.75' x2='58.87' y2='505.75' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='507.53' x2='57.09' y2='503.97' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='55.30' y='503.97' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='494.70' x2='68.16' y2='494.70' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='496.48' x2='66.38' y2='492.92' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='64.60' y='492.92' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='497.28' x2='68.16' y2='497.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='499.06' x2='66.38' y2='495.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='64.60' y='495.49' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='475.91' x2='84.42' y2='475.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='477.69' x2='82.64' y2='474.13' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='80.86' y='474.13' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='478.49' x2='84.42' y2='478.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='480.27' x2='82.64' y2='476.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='80.86' y='476.71' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='453.44' x2='116.95' y2='453.44' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='455.22' x2='115.16' y2='451.65' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='113.38' y='451.65' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='453.81' x2='116.95' y2='453.81' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='455.59' x2='115.16' y2='452.02' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='113.38' y='452.02' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='415.49' x2='191.29' y2='415.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='417.27' x2='189.50' y2='413.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='187.72' y='413.71' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='421.75' x2='191.29' y2='421.75' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='423.54' x2='189.50' y2='419.97' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='187.72' y='419.97' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='401.86' x2='260.98' y2='401.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='403.64' x2='259.20' y2='400.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='257.42' y='400.08' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='414.39' x2='260.98' y2='414.39' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='416.17' x2='259.20' y2='412.60' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='257.42' y='412.60' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='394.12' x2='330.67' y2='394.12' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='395.91' x2='328.89' y2='392.34' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='327.11' y='392.34' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='409.23' x2='330.67' y2='409.23' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='411.01' x2='328.89' y2='407.45' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='327.11' y='407.45' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,516.43 55.81,510.81 57.09,508.76 61.50,501.98 66.38,495.00 67.19,493.89 72.87,486.50 78.56,479.73 82.64,475.24 84.25,473.54 89.94,467.85 95.63,462.64 101.32,457.86 107.01,453.47 112.70,449.43 115.16,447.78 118.39,445.72 124.08,442.31 129.77,439.16 135.46,436.27 141.15,433.60 146.83,431.15 152.52,428.88 158.21,426.79 163.90,424.86 169.59,423.08 175.28,421.44 180.97,419.92 186.66,418.52 189.50,417.86 192.35,417.22 198.04,416.03 203.73,414.93 209.42,413.91 215.11,412.97 220.79,412.11 226.48,411.32 232.17,410.59 237.86,409.92 243.55,409.30 249.24,408.74 254.93,408.23 259.20,407.88 260.62,407.76 266.31,407.34 272.00,406.96 277.69,406.61 283.38,406.30 289.07,406.03 294.76,405.79 300.44,405.57 306.13,405.39 311.82,405.23 317.51,405.10 323.20,405.00 328.89,404.92 ' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='52.44' cy='517.17' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='518.95' x2='54.22' y2='515.39' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='515.39' x2='54.22' y2='518.95' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='52.44' cy='520.12' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='521.90' x2='54.22' y2='518.34' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='518.34' x2='54.22' y2='521.90' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='57.09' cy='507.22' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='509.01' x2='58.87' y2='505.44' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='505.44' x2='58.87' y2='509.01' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='57.09' cy='502.07' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='503.85' x2='58.87' y2='500.28' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='500.28' x2='58.87' y2='503.85' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='66.38' cy='492.49' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='494.27' x2='68.16' y2='490.71' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='490.71' x2='68.16' y2='494.27' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='66.38' cy='496.54' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='498.32' x2='68.16' y2='494.76' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='494.76' x2='68.16' y2='498.32' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='82.64' cy='477.75' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='479.53' x2='84.42' y2='475.97' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='475.97' x2='84.42' y2='479.53' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='82.64' cy='472.59' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='474.38' x2='84.42' y2='470.81' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='470.81' x2='84.42' y2='474.38' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='115.16' cy='443.49' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='445.27' x2='116.95' y2='441.71' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='441.71' x2='116.95' y2='445.27' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='115.16' cy='451.59' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='453.38' x2='116.95' y2='449.81' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='449.81' x2='116.95' y2='453.38' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='189.50' cy='419.54' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='421.33' x2='191.29' y2='417.76' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='417.76' x2='191.29' y2='421.33' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='189.50' cy='406.65' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='408.43' x2='191.29' y2='404.87' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='404.87' x2='191.29' y2='408.43' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='259.20' cy='419.91' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='421.69' x2='260.98' y2='418.13' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='418.13' x2='260.98' y2='421.69' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='259.20' cy='400.02' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='401.80' x2='260.98' y2='398.24' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='398.24' x2='260.98' y2='401.80' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='328.89' cy='405.54' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='407.33' x2='330.67' y2='403.76' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='403.76' x2='330.67' y2='407.33' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='328.89' cy='403.33' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='405.12' x2='330.67' y2='401.55' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='401.55' x2='330.67' y2='405.12' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,516.02 55.81,509.88 57.09,507.64 61.50,500.29 66.38,492.79 67.19,491.61 72.87,483.76 78.56,476.64 82.64,471.95 84.25,470.18 89.94,464.33 95.63,459.00 101.32,454.17 107.01,449.76 112.70,445.76 115.16,444.13 118.39,442.10 124.08,438.77 129.77,435.73 135.46,432.96 141.15,430.42 146.83,428.10 152.52,425.98 158.21,424.03 163.90,422.26 169.59,420.63 175.28,419.13 180.97,417.77 186.66,416.51 189.50,415.93 192.35,415.37 198.04,414.31 203.73,413.35 209.42,412.47 215.11,411.67 220.79,410.93 226.48,410.26 232.17,409.65 237.86,409.10 243.55,408.60 249.24,408.15 254.93,407.74 259.20,407.46 260.62,407.38 266.31,407.05 272.00,406.76 277.69,406.51 283.38,406.29 289.07,406.10 294.76,405.94 300.44,405.81 306.13,405.71 311.82,405.63 317.51,405.57 323.20,405.54 328.89,405.52 ' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='52.44,512.44 54.22,516.00 50.66,516.00 52.44,512.44 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='50.66' y='512.44' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='52.44,509.86 54.22,513.43 50.66,513.43 52.44,509.86 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='50.66' y='509.86' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='57.09,497.34 58.87,500.90 55.30,500.90 57.09,497.34 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='55.30' y='497.34' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='57.09,498.81 58.87,502.37 55.30,502.37 57.09,498.81 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='55.30' y='498.81' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='66.38,485.18 68.16,488.74 64.60,488.74 66.38,485.18 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='64.60' y='485.18' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='66.38,471.92 68.16,475.48 64.60,475.48 66.38,471.92 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='64.60' y='471.92' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='82.64,446.87 84.42,450.43 80.86,450.43 82.64,446.87 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='80.86' y='446.87' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='82.64,451.29 84.42,454.85 80.86,454.85 82.64,451.29 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='80.86' y='451.29' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='115.16,431.02 116.95,434.59 113.38,434.59 115.16,431.02 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='113.38' y='431.02' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='115.16,421.08 116.95,424.64 113.38,424.64 115.16,421.08 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='113.38' y='421.08' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='189.50,397.50 191.29,401.06 187.72,401.06 189.50,397.50 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='187.72' y='397.50' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='189.50,386.82 191.29,390.38 187.72,390.38 189.50,386.82 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='187.72' y='386.82' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='259.20,399.34 260.98,402.91 257.42,402.91 259.20,399.34 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='257.42' y='399.34' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='259.20,383.87 260.98,387.43 257.42,387.43 259.20,383.87 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='257.42' y='383.87' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='328.89,396.03 330.67,399.59 327.11,399.59 328.89,396.03 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='327.11' y='396.03' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='328.89,392.34 330.67,395.91 327.11,395.91 328.89,392.34 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='327.11' y='392.34' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,513.91 55.81,505.05 57.09,501.87 61.50,491.67 66.38,481.59 67.19,480.04 72.87,469.92 78.56,461.10 82.64,455.47 84.25,453.39 89.94,446.63 95.63,440.70 101.32,435.48 107.01,430.87 112.70,426.79 115.16,425.17 118.39,423.17 124.08,419.95 129.77,417.07 135.46,414.50 141.15,412.18 146.83,410.10 152.52,408.23 158.21,406.53 163.90,404.99 169.59,403.59 175.28,402.31 180.97,401.15 186.66,400.09 189.50,399.59 192.35,399.12 198.04,398.23 203.73,397.41 209.42,396.66 215.11,395.98 220.79,395.35 226.48,394.77 232.17,394.25 237.86,393.77 243.55,393.33 249.24,392.93 254.93,392.57 259.20,392.32 260.62,392.24 266.31,391.95 272.00,391.68 277.69,391.45 283.38,391.25 289.07,391.07 294.76,390.92 300.44,390.79 306.13,390.69 311.82,390.61 317.51,390.55 323.20,390.51 328.89,390.49 ' style='stroke-width: 0.75; stroke: #F5C710; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='50.66,513.06 54.22,513.06 54.22,509.49 50.66,509.49 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='50.66,514.90 54.22,514.90 54.22,511.34 50.66,511.34 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='55.30,501.64 58.87,501.64 58.87,498.07 55.30,498.07 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='55.30,499.43 58.87,499.43 58.87,495.86 55.30,495.86 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='64.60,486.90 68.16,486.90 68.16,483.34 64.60,483.34 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='64.60,472.90 68.16,472.90 68.16,469.34 64.60,469.34 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='80.86,462.22 84.42,462.22 84.42,458.65 80.86,458.65 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='80.86,455.22 84.42,455.22 84.42,451.65 80.86,451.65 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='113.38,427.59 116.95,427.59 116.95,424.02 113.38,424.02 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='113.38,428.33 116.95,428.33 116.95,424.76 113.38,424.76 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='187.72,400.33 191.29,400.33 191.29,396.76 187.72,396.76 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='187.72,399.96 191.29,399.96 191.29,396.39 187.72,396.39 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='257.42,390.38 260.98,390.38 260.98,386.82 257.42,386.82 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='257.42,396.27 260.98,396.27 260.98,392.71 257.42,392.71 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='327.11,383.38 330.67,383.38 330.67,379.82 327.11,379.82 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='327.11,402.54 330.67,402.54 330.67,398.97 327.11,398.97 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,512.79 55.81,502.60 57.09,499.00 61.50,487.65 66.38,476.77 67.19,475.12 72.87,464.59 78.56,455.70 82.64,450.18 84.25,448.17 89.94,441.77 95.63,436.31 101.32,431.61 107.01,427.56 112.70,424.05 115.16,422.67 118.39,420.99 124.08,418.30 129.77,415.93 135.46,413.82 141.15,411.94 146.83,410.25 152.52,408.72 158.21,407.34 163.90,406.07 169.59,404.92 175.28,403.86 180.97,402.88 186.66,401.97 189.50,401.54 192.35,401.13 198.04,400.35 203.73,399.62 209.42,398.95 215.11,398.31 220.79,397.72 226.48,397.17 232.17,396.66 237.86,396.18 243.55,395.73 249.24,395.32 254.93,394.93 259.20,394.66 260.62,394.58 266.31,394.25 272.00,393.94 277.69,393.66 283.38,393.41 289.07,393.18 294.76,392.97 300.44,392.78 306.13,392.61 311.82,392.46 317.51,392.33 323.20,392.23 328.89,392.14 ' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<defs>
  <clipPath id='cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1'>
    <rect x='398.97' y='337.35' width='301.08' height='190.18' />
  </clipPath>
</defs>
<defs>
  <clipPath id='cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA='>
    <rect x='0.00' y='0.00' width='720.00' height='576.00' />
  </clipPath>
</defs>
<line x1='410.12' y1='527.53' x2='656.27' y2='527.53' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='410.12' y1='527.53' x2='410.12' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='471.66' y1='527.53' x2='471.66' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='533.20' y1='527.53' x2='533.20' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='594.73' y1='527.53' x2='594.73' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='656.27' y1='527.53' x2='656.27' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='407.92' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='467.27' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>10</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='528.81' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='590.34' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>30</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='651.88' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<line x1='398.97' y1='509.54' x2='398.97' y2='355.34' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='509.54' x2='394.21' y2='509.54' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='470.99' x2='394.21' y2='470.99' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='432.44' x2='394.21' y2='432.44' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='393.89' x2='394.21' y2='393.89' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='355.34' x2='394.21' y2='355.34' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,513.05) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='7.03px' lengthAdjust='spacingAndGlyphs'>-4</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,474.50) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='7.03px' lengthAdjust='spacingAndGlyphs'>-2</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,434.63) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,396.08) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>2</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,357.53) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>4</text></g>
<polyline points='398.97,527.53 700.04,527.53 700.04,337.35 398.97,337.35 398.97,527.53 ' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<defs>
  <clipPath id='cpMzYwLjAwfDcyMC4wMHw1NzYuMDB8MzE3LjM5'>
    <rect x='360.00' y='317.39' width='360.00' height='258.61' />
  </clipPath>
</defs>
<g clip-path='url(#cpMzYwLjAwfDcyMC4wMHw1NzYuMDB8MzE3LjM5)'><text x='532.82' y='563.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='33.38px' lengthAdjust='spacingAndGlyphs'>Predicted</text></g>
<g clip-path='url(#cpMzYwLjAwfDcyMC4wMHw1NzYuMDB8MzE3LjM5)'><text transform='translate(368.55,470.64) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='76.41px' lengthAdjust='spacingAndGlyphs'>Standardized residual</text></g>
<defs>
  <clipPath id='cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1'>
    <rect x='398.97' y='337.35' width='301.08' height='190.18' />
  </clipPath>
</defs>
<line x1='398.97' y1='432.44' x2='700.04' y2='432.44' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='420.66' cy='427.63' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='420.66' cy='431.13' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='439.74' cy='424.82' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='439.74' cy='435.34' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='471.11' cy='437.42' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='471.11' cy='445.14' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='509.99' cy='429.84' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='509.99' cy='450.18' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='553.19' cy='430.67' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='553.19' cy='427.17' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='591.18' cy='418.57' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='591.18' cy='447.32' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='605.45' cy='429.22' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='605.45' cy='442.55' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='611.79' cy='411.20' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='611.79' cy='439.96' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='417.65,437.55 420.05,441.71 415.25,441.71 417.65,437.55 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='417.65,424.93 420.05,429.08 415.25,429.08 417.65,424.93 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='431.73,427.64 434.13,431.80 429.33,431.80 431.73,427.64 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='431.73,442.37 434.13,446.53 429.33,446.53 431.73,442.37 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='456.34,426.23 458.74,430.39 453.94,430.39 456.34,426.23 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='456.34,434.65 458.74,438.81 453.94,438.81 456.34,434.65 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='490.12,419.15 492.52,423.31 487.72,423.31 490.12,419.15 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='490.12,433.18 492.52,437.33 487.72,437.33 490.12,433.18 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='533.47,443.30 535.87,447.46 531.07,447.46 533.47,443.30 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='533.47,416.65 535.87,420.81 531.07,420.81 533.47,416.65 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='574.83,433.63 577.23,437.79 572.43,437.79 574.83,433.63 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='574.83,439.24 577.23,443.40 572.43,443.40 574.83,439.24 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='587.40,422.01 589.80,426.17 585.00,426.17 587.40,422.01 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='587.40,421.31 589.80,425.47 585.00,425.47 587.40,421.31 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='591.55,445.67 593.95,449.83 589.15,449.83 591.55,445.67 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='591.55,426.04 593.95,430.19 589.15,430.19 591.55,426.04 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='414.88' y1='427.41' x2='419.92' y2='427.41' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='417.40' y1='429.93' x2='417.40' y2='424.89' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.78' y1='433.43' x2='433.82' y2='433.43' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='431.30' y1='435.95' x2='431.30' y2='430.91' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.78' y1='441.85' x2='433.82' y2='441.85' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='431.30' y1='444.37' x2='431.30' y2='439.33' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='454.09' y1='415.29' x2='459.13' y2='415.29' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='456.61' y1='417.81' x2='456.61' y2='412.77' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='454.09' y1='421.60' x2='459.13' y2='421.60' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='456.61' y1='424.12' x2='456.61' y2='419.08' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='491.47' y1='430.53' x2='496.51' y2='430.53' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='493.99' y1='433.05' x2='493.99' y2='428.01' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='491.47' y1='417.91' x2='496.51' y2='417.91' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='493.99' y1='420.43' x2='493.99' y2='415.39' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='545.91' y1='432.97' x2='550.95' y2='432.97' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='548.43' y1='435.49' x2='548.43' y2='430.45' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='545.91' y1='428.06' x2='550.95' y2='428.06' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='548.43' y1='430.58' x2='548.43' y2='425.54' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='609.82' y1='442.68' x2='614.86' y2='442.68' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='612.34' y1='445.20' x2='612.34' y2='440.16' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='609.82' y1='410.42' x2='614.86' y2='410.42' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='612.34' y1='412.94' x2='612.34' y2='407.90' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='632.33' y1='432.56' x2='637.37' y2='432.56' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='634.85' y1='435.08' x2='634.85' y2='430.04' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='632.33' y1='449.40' x2='637.37' y2='449.40' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='634.85' y1='451.92' x2='634.85' y2='446.88' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='638.91' y1='442.88' x2='643.95' y2='442.88' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='641.43' y1='445.40' x2='641.43' y2='440.36' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='638.91' y1='425.34' x2='643.95' y2='425.34' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='641.43' y1='427.86' x2='641.43' y2='422.82' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='417.68' y1='428.74' x2='421.25' y2='425.18' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='417.68' y1='425.18' x2='421.25' y2='428.74' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='417.68' y1='420.32' x2='421.25' y2='416.76' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='417.68' y1='416.76' x2='421.25' y2='420.32' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='435.47' y1='427.27' x2='439.03' y2='423.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='435.47' y1='423.71' x2='439.03' y2='427.27' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='435.47' y1='442.00' x2='439.03' y2='438.43' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='435.47' y1='438.43' x2='439.03' y2='442.00' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='467.70' y1='429.64' x2='471.26' y2='426.07' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='467.70' y1='426.07' x2='471.26' y2='429.64' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='467.70' y1='431.74' x2='471.26' y2='428.18' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='467.70' y1='428.18' x2='471.26' y2='431.74' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='514.84' y1='423.04' x2='518.40' y2='419.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='514.84' y1='419.48' x2='518.40' y2='423.04' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='514.84' y1='452.50' x2='518.40' y2='448.93' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='514.84' y1='448.93' x2='518.40' y2='452.50' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='582.19' y1='432.48' x2='585.76' y2='428.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='582.19' y1='428.91' x2='585.76' y2='432.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='582.19' y1='438.09' x2='585.76' y2='434.52' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='582.19' y1='434.52' x2='585.76' y2='438.09' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='657.73' y1='437.90' x2='661.29' y2='434.34' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='657.73' y1='434.34' x2='661.29' y2='437.90' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='657.73' y1='425.98' x2='661.29' y2='422.42' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='657.73' y1='422.42' x2='661.29' y2='425.98' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='681.83' y1='438.72' x2='685.39' y2='435.16' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='681.83' y1='435.16' x2='685.39' y2='438.72' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='681.83' y1='426.80' x2='685.39' y2='423.24' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='681.83' y1='423.24' x2='685.39' y2='426.80' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='687.05' y1='437.66' x2='690.62' y2='434.10' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='687.05' y1='434.10' x2='690.62' y2='437.66' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='687.05' y1='419.43' x2='690.62' y2='415.87' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='687.05' y1='415.87' x2='690.62' y2='419.43' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='420.16,436.94 422.69,434.42 425.21,436.94 422.69,439.46 420.16,436.94 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='420.16,431.33 422.69,428.81 425.21,431.33 422.69,433.85 420.16,431.33 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='441.69,436.23 444.21,433.71 446.73,436.23 444.21,438.75 441.69,436.23 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='441.69,432.72 444.21,430.20 446.73,432.72 444.21,435.24 441.69,432.72 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='473.63,440.36 476.15,437.84 478.67,440.36 476.15,442.88 473.63,440.36 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='473.63,435.45 476.15,432.93 478.67,435.45 476.15,437.97 473.63,435.45 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='507.28,426.82 509.80,424.30 512.32,426.82 509.80,429.34 507.28,426.82 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='507.28,440.84 509.80,438.32 512.32,440.84 509.80,443.36 507.28,440.84 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='538.23,433.33 540.75,430.81 543.27,433.33 540.75,435.85 538.23,433.33 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='538.23,429.83 540.75,427.31 543.27,429.83 540.75,432.35 538.23,429.83 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='565.62,426.68 568.14,424.16 570.66,426.68 568.14,429.20 565.62,426.68 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='565.62,424.57 568.14,422.05 570.66,424.57 568.14,427.09 565.62,424.57 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='577.28,436.46 579.80,433.94 582.32,436.46 579.80,438.98 577.28,436.46 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='577.28,428.04 579.80,425.52 582.32,428.04 579.80,430.56 577.28,428.04 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='581.91,425.60 584.43,423.08 586.95,425.60 584.43,428.12 581.91,425.60 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='581.91,460.67 584.43,458.15 586.95,460.67 584.43,463.19 581.91,460.67 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='417.05,423.47 419.45,419.31 414.65,419.31 417.05,423.47 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='417.05,422.07 419.45,417.91 414.65,417.91 417.05,422.07 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='429.90,435.31 432.30,431.15 427.50,431.15 429.90,435.31 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='429.90,450.04 432.30,445.88 427.50,445.88 429.90,450.04 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='452.02,430.37 454.42,426.21 449.62,426.21 452.02,430.37 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='452.02,436.68 454.42,432.52 449.62,432.52 452.02,436.68 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='481.62,421.32 484.02,417.16 479.22,417.16 481.62,421.32 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='481.62,433.94 484.02,429.79 479.22,429.79 481.62,433.94 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='518.15,428.58 520.55,424.42 515.75,424.42 518.15,428.58 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='518.15,432.08 520.55,427.93 515.75,427.93 518.15,432.08 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='551.97,446.08 554.37,441.92 549.57,441.92 551.97,446.08 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='551.97,439.07 554.37,434.91 549.57,434.91 551.97,439.07 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='563.20,433.63 565.60,429.48 560.80,429.48 563.20,433.63 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='563.20,428.02 565.60,423.87 560.80,423.87 563.20,428.02 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='567.98,446.10 570.38,441.94 565.58,441.94 567.98,446.10 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='567.98,448.91 570.38,444.75 565.58,444.75 567.98,448.91 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='421.64' y='433.90' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='421.64' y1='437.46' x2='425.21' y2='433.90' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='421.64' y1='433.90' x2='425.21' y2='437.46' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='421.64' y='419.87' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='421.64' y1='423.44' x2='425.21' y2='419.87' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='421.64' y1='419.87' x2='425.21' y2='423.44' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='445.79' y='422.84' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='445.79' y1='426.40' x2='449.35' y2='422.84' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='445.79' y1='422.84' x2='449.35' y2='426.40' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='445.79' y='437.57' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='445.79' y1='441.13' x2='449.35' y2='437.57' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='445.79' y1='437.57' x2='449.35' y2='441.13' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='485.65' y='423.39' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='485.65' y1='426.95' x2='489.22' y2='423.39' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='485.65' y1='423.39' x2='489.22' y2='426.95' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='485.65' y='420.58' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='485.65' y1='424.15' x2='489.22' y2='420.58' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='485.65' y1='420.58' x2='489.22' y2='424.15' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='535.24' y='409.07' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='535.24' y1='412.64' x2='538.81' y2='409.07' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='535.24' y1='409.07' x2='538.81' y2='412.64' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='535.24' y='445.54' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='535.24' y1='449.10' x2='538.81' y2='445.54' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='535.24' y1='445.54' x2='538.81' y2='449.10' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='589.37' y='412.54' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='589.37' y1='416.11' x2='592.93' y2='412.54' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='589.37' y1='412.54' x2='592.93' y2='416.11' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='589.37' y='422.36' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='589.37' y1='425.93' x2='592.93' y2='422.36' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='589.37' y1='422.36' x2='592.93' y2='425.93' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='629.45' y='437.18' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='629.45' y1='440.74' x2='633.01' y2='437.18' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='629.45' y1='437.18' x2='633.01' y2='440.74' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='629.45' y='432.27' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='629.45' y1='435.83' x2='633.01' y2='432.27' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='629.45' y1='432.27' x2='633.01' y2='435.83' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='636.93' y='456.93' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='636.93' y1='460.49' x2='640.49' y2='456.93' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='636.93' y1='456.93' x2='640.49' y2='460.49' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='636.93' y='421.86' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='636.93' y1='425.43' x2='640.49' y2='421.86' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='636.93' y1='421.86' x2='640.49' y2='425.43' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='635.06' y='454.80' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='635.06' y1='458.36' x2='638.62' y2='454.80' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='635.06' y1='454.80' x2='638.62' y2='458.36' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='635.06' y='413.42' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='635.06' y1='416.98' x2='638.62' y2='413.42' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='635.06' y1='413.42' x2='638.62' y2='416.98' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.77' y1='439.98' x2='432.34' y2='436.41' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.77' y1='436.41' x2='432.34' y2='439.98' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.03' y1='438.20' x2='433.07' y2='438.20' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='430.55' y1='440.72' x2='430.55' y2='435.68' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.77' y1='433.67' x2='432.34' y2='430.10' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.77' y1='430.10' x2='432.34' y2='433.67' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.03' y1='431.88' x2='433.07' y2='431.88' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='430.55' y1='434.40' x2='430.55' y2='429.36' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='463.52' y1='443.11' x2='467.08' y2='439.54' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='463.52' y1='439.54' x2='467.08' y2='443.11' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='462.78' y1='441.32' x2='467.82' y2='441.32' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='465.30' y1='443.84' x2='465.30' y2='438.80' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='463.52' y1='432.59' x2='467.08' y2='429.02' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='463.52' y1='429.02' x2='467.08' y2='432.59' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='462.78' y1='430.80' x2='467.82' y2='430.80' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='465.30' y1='433.32' x2='465.30' y2='428.28' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='514.10' y1='435.53' x2='517.66' y2='431.96' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='514.10' y1='431.96' x2='517.66' y2='435.53' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='513.36' y1='433.74' x2='518.40' y2='433.74' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='515.88' y1='436.26' x2='515.88' y2='431.22' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='514.10' y1='436.93' x2='517.66' y2='433.36' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='514.10' y1='433.36' x2='517.66' y2='436.93' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='513.36' y1='435.15' x2='518.40' y2='435.15' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='515.88' y1='437.67' x2='515.88' y2='432.63' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='564.74' y1='437.84' x2='568.30' y2='434.27' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='564.74' y1='434.27' x2='568.30' y2='437.84' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='564.00' y1='436.05' x2='569.04' y2='436.05' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='566.52' y1='438.57' x2='566.52' y2='433.53' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='564.74' y1='458.17' x2='568.30' y2='454.61' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='564.74' y1='454.61' x2='568.30' y2='458.17' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='564.00' y1='456.39' x2='569.04' y2='456.39' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='566.52' y1='458.91' x2='566.52' y2='453.87' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='604.63' y1='419.47' x2='608.19' y2='415.91' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='604.63' y1='415.91' x2='608.19' y2='419.47' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='603.89' y1='417.69' x2='608.93' y2='417.69' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='606.41' y1='420.21' x2='606.41' y2='415.17' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='604.63' y1='408.95' x2='608.19' y2='405.39' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='604.63' y1='405.39' x2='608.19' y2='408.95' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='603.89' y1='407.17' x2='608.93' y2='407.17' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='606.41' y1='409.69' x2='606.41' y2='404.65' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='629.00' y1='409.37' x2='632.56' y2='405.81' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='629.00' y1='405.81' x2='632.56' y2='409.37' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='628.26' y1='407.59' x2='633.30' y2='407.59' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='630.78' y1='410.11' x2='630.78' y2='405.07' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='629.00' y1='451.45' x2='632.56' y2='447.89' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='629.00' y1='447.89' x2='632.56' y2='451.45' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='628.26' y1='449.67' x2='633.30' y2='449.67' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='630.78' y1='452.19' x2='630.78' y2='447.15' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='636.73' y1='428.71' x2='640.30' y2='425.14' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='636.73' y1='425.14' x2='640.30' y2='428.71' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='635.99' y1='426.93' x2='641.03' y2='426.93' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='638.51' y1='429.45' x2='638.51' y2='424.41' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='636.73' y1='454.66' x2='640.30' y2='451.09' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='636.73' y1='451.09' x2='640.30' y2='454.66' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='635.99' y1='452.88' x2='641.03' y2='452.88' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='638.51' y1='455.40' x2='638.51' y2='450.36' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='638.32' y1='415.79' x2='641.89' y2='412.23' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='638.32' y1='412.23' x2='641.89' y2='415.79' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='637.58' y1='414.01' x2='642.62' y2='414.01' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='640.10' y1='416.53' x2='640.10' y2='411.49' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='638.32' y1='451.56' x2='641.89' y2='448.00' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='638.32' y1='448.00' x2='641.89' y2='451.56' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='637.58' y1='449.78' x2='642.62' y2='449.78' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='640.10' y1='452.30' x2='640.10' y2='447.26' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='423.11' y1='421.36' x2='428.15' y2='421.36' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='425.63' y1='423.88' x2='425.63' y2='418.84' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='423.11,421.36 425.63,418.84 428.15,421.36 425.63,423.88 423.11,421.36 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='423.11' y1='428.38' x2='428.15' y2='428.38' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='425.63' y1='430.90' x2='425.63' y2='425.86' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='423.11,428.38 425.63,425.86 428.15,428.38 425.63,430.90 423.11,428.38 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='451.22' y1='419.74' x2='456.26' y2='419.74' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='453.74' y1='422.26' x2='453.74' y2='417.22' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='451.22,419.74 453.74,417.22 456.26,419.74 453.74,422.26 451.22,419.74 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='451.22' y1='430.26' x2='456.26' y2='430.26' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='453.74' y1='432.78' x2='453.74' y2='427.74' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='451.22,430.26 453.74,427.74 456.26,430.26 453.74,432.78 451.22,430.26 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='497.57' y1='422.06' x2='502.61' y2='422.06' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='500.09' y1='424.58' x2='500.09' y2='419.54' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='497.57,422.06 500.09,419.54 502.61,422.06 500.09,424.58 497.57,422.06 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='497.57' y1='437.49' x2='502.61' y2='437.49' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='500.09' y1='440.01' x2='500.09' y2='434.96' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='497.57,437.49 500.09,434.96 502.61,437.49 500.09,440.01 497.57,437.49 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='555.14' y1='426.66' x2='560.18' y2='426.66' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='557.66' y1='429.18' x2='557.66' y2='424.14' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='555.14,426.66 557.66,424.14 560.18,426.66 557.66,429.18 555.14,426.66 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='555.14' y1='428.06' x2='560.18' y2='428.06' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='557.66' y1='430.58' x2='557.66' y2='425.54' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='555.14,428.06 557.66,425.54 560.18,428.06 557.66,430.58 555.14,428.06 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='618.43' y1='427.95' x2='623.47' y2='427.95' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='620.95' y1='430.47' x2='620.95' y2='425.43' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='618.43,427.95 620.95,425.43 623.47,427.95 620.95,430.47 618.43,427.95 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='618.43' y1='452.50' x2='623.47' y2='452.50' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='620.95' y1='455.02' x2='620.95' y2='449.98' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='618.43,452.50 620.95,449.98 623.47,452.50 620.95,455.02 618.43,452.50 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='669.13' y1='428.22' x2='674.17' y2='428.22' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='671.65' y1='430.74' x2='671.65' y2='425.70' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='669.13,428.22 671.65,425.70 674.17,428.22 671.65,430.74 669.13,428.22 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='669.13' y1='416.30' x2='674.17' y2='416.30' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='671.65' y1='418.82' x2='671.65' y2='413.78' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='669.13,416.30 671.65,413.78 674.17,416.30 671.65,418.82 669.13,416.30 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='683.36' y1='444.44' x2='688.40' y2='444.44' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='685.88' y1='446.96' x2='685.88' y2='441.92' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='683.36,444.44 685.88,441.92 688.40,444.44 685.88,446.96 683.36,444.44 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='683.36' y1='438.83' x2='688.40' y2='438.83' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='685.88' y1='441.35' x2='685.88' y2='436.31' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='683.36,438.83 685.88,436.31 688.40,438.83 685.88,441.35 683.36,438.83 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='686.33' y1='414.86' x2='691.37' y2='414.86' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='688.85' y1='417.38' x2='688.85' y2='412.34' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='686.33,414.86 688.85,412.34 691.37,414.86 688.85,417.38 686.33,414.86 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='686.33' y1='431.70' x2='691.37' y2='431.70' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='688.85' y1='434.22' x2='688.85' y2='429.18' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='686.33,431.70 688.85,429.18 691.37,431.70 688.85,434.22 686.33,431.70 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='419.41' cy='431.81' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='417.63' y1='431.81' x2='421.19' y2='431.81' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='419.41' y1='433.59' x2='419.41' y2='430.02' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='419.41' cy='436.71' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='417.63' y1='436.71' x2='421.19' y2='436.71' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='419.41' y1='438.50' x2='419.41' y2='434.93' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='436.99' cy='437.82' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='435.21' y1='437.82' x2='438.77' y2='437.82' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='436.99' y1='439.60' x2='436.99' y2='436.03' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='436.99' cy='431.50' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='435.21' y1='431.50' x2='438.77' y2='431.50' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='436.99' y1='433.29' x2='436.99' y2='429.72' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='468.51' cy='428.15' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='466.73' y1='428.15' x2='470.29' y2='428.15' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='468.51' y1='429.94' x2='468.51' y2='426.37' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='468.51' cy='421.84' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='466.73' y1='421.84' x2='470.29' y2='421.84' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='468.51' y1='423.62' x2='468.51' y2='420.06' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='513.80' cy='427.86' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='512.01' y1='427.86' x2='515.58' y2='427.86' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='513.80' y1='429.64' x2='513.80' y2='426.08' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='513.80' cy='431.37' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='512.01' y1='431.37' x2='515.58' y2='431.37' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='513.80' y1='433.15' x2='513.80' y2='429.59' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='576.82' cy='424.64' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='575.03' y1='424.64' x2='578.60' y2='424.64' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='576.82' y1='426.42' x2='576.82' y2='422.86' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='576.82' cy='426.04' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='575.03' y1='426.04' x2='578.60' y2='426.04' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='576.82' y1='427.83' x2='576.82' y2='424.26' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='646.12' cy='441.21' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='644.34' y1='441.21' x2='647.91' y2='441.21' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='646.12' y1='442.99' x2='646.12' y2='439.43' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='646.12' cy='455.24' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='644.34' y1='455.24' x2='647.91' y2='455.24' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='646.12' y1='457.02' x2='646.12' y2='453.45' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='669.94' cy='438.90' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='668.16' y1='438.90' x2='671.72' y2='438.90' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='669.94' y1='440.68' x2='669.94' y2='437.12' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='669.94' cy='425.57' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='668.16' y1='425.57' x2='671.72' y2='425.57' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='669.94' y1='427.35' x2='669.94' y2='423.79' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='677.62' cy='422.40' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='675.84' y1='422.40' x2='679.41' y2='422.40' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='677.62' y1='424.19' x2='677.62' y2='420.62' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='677.62' cy='411.88' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='675.84' y1='411.88' x2='679.41' y2='411.88' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='677.62' y1='413.67' x2='677.62' y2='410.10' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='415.94,432.02 418.34,427.17 413.54,427.17 415.94,432.02 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='415.94,426.48 418.34,431.33 413.54,431.33 415.94,426.48 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='415.94,430.62 418.34,425.77 413.54,425.77 415.94,430.62 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='415.94,425.08 418.34,429.93 413.54,429.93 415.94,425.08 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='427.01,442.53 429.41,437.68 424.61,437.68 427.01,442.53 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='427.01,436.99 429.41,441.84 424.61,441.84 427.01,436.99 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='427.01,429.21 429.41,424.36 424.61,424.36 427.01,429.21 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='427.01,423.67 429.41,428.52 424.61,428.52 427.01,423.67 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='447.04,435.91 449.44,431.06 444.64,431.06 447.04,435.91 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='447.04,430.36 449.44,435.21 444.64,435.21 447.04,430.36 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='447.04,439.41 449.44,434.56 444.64,434.56 447.04,439.41 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='447.04,433.87 449.44,438.72 444.64,438.72 447.04,433.87 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='476.30,429.98 478.70,425.13 473.90,425.13 476.30,429.98 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='476.30,424.44 478.70,429.29 473.90,429.29 476.30,424.44 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='476.30,442.60 478.70,437.75 473.90,437.75 476.30,442.60 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='476.30,437.06 478.70,441.91 473.90,441.91 476.30,437.06 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='518.24,441.31 520.64,436.46 515.84,436.46 518.24,441.31 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='518.24,435.77 520.64,440.62 515.84,440.62 518.24,435.77 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='518.24,417.47 520.64,412.62 515.84,412.62 518.24,417.47 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='518.24,411.92 520.64,416.77 515.84,416.77 518.24,411.92 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='567.12,421.27 569.52,416.42 564.72,416.42 567.12,421.27 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='567.12,415.73 569.52,420.58 564.72,420.58 567.12,415.73 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='567.12,436.00 569.52,431.15 564.72,431.15 567.12,436.00 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='567.12,430.46 569.52,435.31 564.72,435.31 567.12,430.46 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='585.87,449.65 588.27,444.80 583.47,444.80 585.87,449.65 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='585.87,444.11 588.27,448.96 583.47,448.96 585.87,444.11 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='585.87,451.05 588.27,446.20 583.47,446.20 585.87,451.05 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='585.87,445.51 588.27,450.36 583.47,450.36 585.87,445.51 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='593.71,427.73 596.11,422.88 591.31,422.88 593.71,427.73 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='593.71,422.19 596.11,427.04 591.31,427.04 593.71,422.19 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='593.71,435.45 596.11,430.60 591.31,430.60 593.71,435.45 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='593.71,429.91 596.11,434.76 591.31,434.76 593.71,429.91 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='415.11' y1='438.05' x2='418.67' y2='438.05' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='416.89' y1='439.84' x2='416.89' y2='436.27' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='415.11' y='436.27' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='415.11' y1='422.63' x2='418.67' y2='422.63' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='416.89' y1='424.41' x2='416.89' y2='420.84' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='415.11' y='420.84' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='427.93' y1='428.82' x2='431.49' y2='428.82' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='429.71' y1='430.60' x2='429.71' y2='427.04' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='427.93' y='427.04' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='427.93' y1='426.72' x2='431.49' y2='426.72' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='429.71' y1='428.50' x2='429.71' y2='424.93' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='427.93' y='424.93' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='450.91' y1='431.87' x2='454.48' y2='431.87' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='452.70' y1='433.65' x2='452.70' y2='430.09' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='450.91' y='430.09' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='450.91' y1='436.78' x2='454.48' y2='436.78' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='452.70' y1='438.56' x2='452.70' y2='435.00' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='450.91' y='435.00' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='483.92' y1='433.72' x2='487.48' y2='433.72' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='485.70' y1='435.50' x2='485.70' y2='431.94' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='483.92' y='431.94' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='483.92' y1='438.63' x2='487.48' y2='438.63' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='485.70' y1='440.41' x2='485.70' y2='436.85' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='483.92' y='436.85' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='529.78' y1='443.20' x2='533.34' y2='443.20' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='531.56' y1='444.98' x2='531.56' y2='441.42' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='529.78' y='441.42' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='529.78' y1='443.90' x2='533.34' y2='443.90' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='531.56' y1='445.68' x2='531.56' y2='442.12' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='529.78' y='442.12' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='579.77' y1='427.94' x2='583.34' y2='427.94' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='581.55' y1='429.72' x2='581.55' y2='426.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='579.77' y='426.15' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='579.77' y1='439.86' x2='583.34' y2='439.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='581.55' y1='441.64' x2='581.55' y2='438.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='579.77' y='438.08' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='596.44' y1='420.99' x2='600.01' y2='420.99' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='598.23' y1='422.77' x2='598.23' y2='419.20' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='596.44' y='419.20' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='596.44' y1='444.83' x2='600.01' y2='444.83' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='598.23' y1='446.61' x2='598.23' y2='443.05' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='596.44' y='443.05' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='601.39' y1='411.89' x2='604.95' y2='411.89' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='603.17' y1='413.68' x2='603.17' y2='410.11' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='601.39' y='410.11' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='601.39' y1='440.65' x2='604.95' y2='440.65' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='603.17' y1='442.43' x2='603.17' y2='438.87' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='601.39' y='438.87' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='417.57' cy='434.62' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='415.79' y1='436.40' x2='419.35' y2='432.84' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='415.79' y1='432.84' x2='419.35' y2='436.40' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='417.57' cy='440.23' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='415.79' y1='442.01' x2='419.35' y2='438.45' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='415.79' y1='438.45' x2='419.35' y2='442.01' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='431.58' cy='431.65' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='429.80' y1='433.43' x2='433.36' y2='429.87' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='429.80' y1='429.87' x2='433.36' y2='433.43' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='431.58' cy='421.83' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='429.80' y1='423.61' x2='433.36' y2='420.05' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='429.80' y1='420.05' x2='433.36' y2='423.61' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='456.38' cy='431.86' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='454.60' y1='433.64' x2='458.16' y2='430.08' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='454.60' y1='430.08' x2='458.16' y2='433.64' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='456.38' cy='439.57' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='454.60' y1='441.36' x2='458.16' y2='437.79' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='454.60' y1='437.79' x2='458.16' y2='441.36' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='491.19' cy='443.48' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='489.41' y1='445.26' x2='492.97' y2='441.70' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='489.41' y1='441.70' x2='492.97' y2='445.26' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='491.19' cy='433.66' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='489.41' y1='435.44' x2='492.97' y2='431.88' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='489.41' y1='431.88' x2='492.97' y2='435.44' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='537.66' cy='431.22' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='535.88' y1='433.00' x2='539.45' y2='429.44' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='535.88' y1='429.44' x2='539.45' y2='433.00' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='537.66' cy='446.65' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='535.88' y1='448.43' x2='539.45' y2='444.87' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='535.88' y1='444.87' x2='539.45' y2='448.43' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='584.78' cy='439.32' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='583.00' y1='441.11' x2='586.56' y2='437.54' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='583.00' y1='437.54' x2='586.56' y2='441.11' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='584.78' cy='414.78' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='583.00' y1='416.56' x2='586.56' y2='413.00' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='583.00' y1='413.00' x2='586.56' y2='416.56' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='598.92' cy='456.14' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='597.13' y1='457.92' x2='600.70' y2='454.36' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='597.13' y1='454.36' x2='600.70' y2='457.92' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='598.92' cy='418.27' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='597.13' y1='420.05' x2='600.70' y2='416.48' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='597.13' y1='416.48' x2='600.70' y2='420.05' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='602.16' cy='432.48' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='600.38' y1='434.26' x2='603.94' y2='430.70' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='600.38' y1='430.70' x2='603.94' y2='434.26' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='602.16' cy='428.27' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='600.38' y1='430.06' x2='603.94' y2='426.49' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='600.38' y1='426.49' x2='603.94' y2='430.06' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='421.09,431.24 422.88,434.81 419.31,434.81 421.09,431.24 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='419.31' y='431.24' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='421.09,426.33 422.88,429.90 419.31,429.90 421.09,426.33 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='419.31' y='426.33' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='441.21,425.42 442.99,428.98 439.43,428.98 441.21,425.42 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='439.43' y='425.42' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='441.21,428.22 442.99,431.79 439.43,431.79 441.21,428.22 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='439.43' y='428.22' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='475.09,440.88 476.87,444.44 473.31,444.44 475.09,440.88 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='473.31' y='440.88' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='475.09,415.63 476.87,419.20 473.31,419.20 475.09,415.63 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='473.31' y='415.63' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='518.72,417.67 520.50,421.23 516.94,421.23 518.72,417.67 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='516.94' y='417.67' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='518.72,426.08 520.50,429.65 516.94,429.65 518.72,426.08 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='516.94' y='426.08' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='569.34,445.19 571.12,448.76 567.56,448.76 569.34,445.19 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='567.56' y='445.19' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='569.34,426.26 571.12,429.82 567.56,429.82 569.34,426.26 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='567.56' y='426.26' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='612.06,430.06 613.84,433.63 610.28,433.63 612.06,430.06 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='610.28' y='430.06' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='612.06,409.72 613.84,413.29 610.28,413.29 612.06,409.72 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='610.28' y='409.72' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='624.21,447.42 625.99,450.98 622.43,450.98 624.21,447.42 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='622.43' y='447.42' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='624.21,417.96 625.99,421.53 622.43,421.53 624.21,417.96 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='622.43' y='417.96' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='627.26,444.58 629.05,448.15 625.48,448.15 627.26,444.58 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='625.48' y='444.58' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polyline points='627.26,437.57 629.05,441.13 625.48,441.13 627.26,437.57 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='625.48' y='437.57' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='421.19,431.34 424.75,431.34 424.75,427.77 421.19,427.77 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='421.19,434.84 424.75,434.84 424.75,431.28 421.19,431.28 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='444.23,435.85 447.79,435.85 447.79,432.28 444.23,432.28 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='444.23,431.64 447.79,431.64 447.79,428.08 444.23,428.08 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='481.37,450.12 484.93,450.12 484.93,446.56 481.37,446.56 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='481.37,423.47 484.93,423.47 484.93,419.91 481.37,419.91 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='525.77,453.74 529.34,453.74 529.34,450.18 525.77,450.18 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='525.77,440.42 529.34,440.42 529.34,436.85 525.77,436.85 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='571.72,440.18 575.29,440.18 575.29,436.62 571.72,436.62 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='571.72,441.59 575.29,441.59 575.29,438.02 571.72,438.02 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='607.02,428.51 610.59,428.51 610.59,424.95 607.02,424.95 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='607.02,427.81 610.59,427.81 610.59,424.25 607.02,424.25 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='618.51,422.67 622.08,422.67 622.08,419.11 618.51,419.11 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='618.51,433.89 622.08,433.89 622.08,430.33 618.51,430.33 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='622.74,414.16 626.30,414.16 626.30,410.60 622.74,410.60 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='622.74,450.63 626.30,450.63 626.30,447.07 622.74,447.07 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
</svg>

Contact - Imprint